:root {
    --bg-dark: #0a0a0a;
    --bg-card: #151515;
    --bg-card-glass: rgba(30, 30, 30, 0.6);
    --gold: #D4AF37;
    --gold-glow: rgba(212, 175, 55, 0.4);
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-main);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    /* Keeping this but verifying container width */
    width: 100%;
}

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
    /* Force scrollbar to prevent jumping */
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Helper Classes */
.btn-primary {
    background: var(--gold);
    color: #000;
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
    border-radius: 5px;
    font-weight: 600;
    display: inline-block;
    border: 2px solid var(--gold);
    box-shadow: 0 0 15px var(--gold-glow);
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold);
    box-shadow: 0 0 25px var(--gold-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    padding: 0.8rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    display: inline-block;
    border: 2px solid var(--text-white);
    margin-left: 1rem;
}

.btn-secondary:hover {
    background: var(--text-white);
    color: #000;
}

.highlight {
    color: var(--gold);
}

/* Navbar */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 50px;
    border-radius: 5px;
}

.logo-text h1 {
    font-size: 1.5rem;
    margin: 0;
    letter-spacing: 1px;
}

.logo-text span {
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.desktop-nav a {
    margin-left: 2rem;
    font-weight: 500;
    position: relative;
}

.desktop-nav a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

.desktop-nav a:not(.btn-primary):hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--bg-dark);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transform: translateY(-150%);
    transition: transform 0.4s ease;
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: url('images/hero-cabin.jpg') no-repeat center center/cover;
    /* Fallback if image missing */
    background-color: #000;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-subtitle {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

/* Stats */
.stats {
    background: var(--bg-dark);
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    gap: 2rem;
}

.stat-item h2 {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Values */
.values {
    padding: 4rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.value-card i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

/* Services */
.services {
    padding: 6rem 0;
    background: #0f0f0f;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: linear-gradient(145deg, #151515, #101010);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    background: rgba(40, 40, 40, 0.5);
    transform: translateY(-5px);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon i {
    font-size: 1.5rem;
    color: var(--gold);
}

.feature-list {
    list-style: none;
    margin-top: 1.5rem;
}

.feature-list li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-list li i {
    color: var(--gold);
    font-size: 0.8rem;
}

/* Deep Dive */
.deep-dive {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tag {
    color: var(--gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.deep-dive h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.dive-item {
    margin-top: 2rem;
    padding-left: 1.5rem;
    border-left: 2px solid var(--gold);
}

.dive-item h4 {
    margin-bottom: 0.5rem;
    color: #fff;
}

.dive-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.rounded-glow {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.rounded-glow:hover {
    transform: scale(1.02);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.1);
}

.check-list {
    list-style: none;
    margin-top: 2rem;
}

.check-list li {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
    color: var(--text-gray);
}

.check-list li strong {
    color: #fff;
    display: block;
    margin-bottom: 0.2rem;
}

.check-list li::before {
    content: '•';
    color: var(--gold);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.5rem;
    line-height: 1;
}

/* Compliance */
.compliance {
    padding: 6rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('images/drone-2.jpg') center/cover fixed;
    text-align: center;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.comp-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Experience */
.experience {
    padding: 6rem 0;
    background: #0d0d0d;
}

.clients-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    opacity: 0.7;
}

.clients-cloud span {
    font-size: 1.2rem;
    font-weight: 600;
    color: #777;
    padding: 0.5rem 1rem;
    border: 1px solid #333;
    border-radius: 5px;
}

.quote {
    font-size: 2rem;
    font-style: italic;
    color: var(--gold);
    margin-top: 3rem;
    font-family: serif;
}

/* CTA */
.cta-section {
    padding: 6rem 0;
}

.cta-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    padding: 4rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gold);
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.location {
    margin-top: 2rem;
    color: var(--text-gray);
}

/* Footer */
footer {
    background: #050505;
    padding-top: 4rem;
    border-top: 1px solid #222;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
}

.footer-brand h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-links h4 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer-links a {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    background: #000;
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.8rem;
    color: #555;
    border-top: 1px solid #111;
}

/* Mobile */
@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .desktop-nav {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .split-layout {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .header .btn-primary {
        display: none;
        /* Hide header btn on mobile, show in menu */
    }
}

/* Keyframe Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-up {
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

/* Scroll Anim Class */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, visibility;
}

.is-visible {
    opacity: 1;
    transform: none;
}

/* ... (Previous Styles) ... */

/* Previous CSS is mostly fine, but we need to update the Hero to be 2-column and add specific styling for the new elements */

/* RE-DEFINING HERO SECTION FOR NEW LAYOUT */
.hero {
    min-height: 100vh;
    height: auto;
    display: flex;
    align-items: center;
    position: relative;
    background: url('images/hero-cabin.jpg') no-repeat center center/cover;
    background-blend-mode: overlay;
    background-color: #000;
    padding-top: 100px;
    /* Increased for navbar safety */
    padding-bottom: 4rem;
    /* Add padding bottom for mobile/content overflow */
}

/* Updated Hero Layout */
.hero-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    /* Text wider than stats */
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text {
    text-align: left;
}

.hero-text h1 {
    font-size: 4rem;
    /* Big impact title */
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 1.5rem;
    max-width: 90%;
    line-height: 1.6;
}

.hero-extra {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    display: block;
}

/* Hero Stats Grid (Right Side) */
.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-box {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem 1rem;
    text-align: center;
    border-radius: 12px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    background: rgba(30, 30, 30, 0.9);
}

.stat-box h3 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.stat-box p {
    font-size: 0.9rem;
    color: #bbb;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Bottom Values */
.hero-values {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 4rem;
    z-index: 3;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.h-value-item h4 {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 0.3rem;
}

.h-value-item p {
    font-size: 0.8rem;
    color: #888;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

/* Navbar Tweaks for many items */
.desktop-nav a {
    margin-left: 1.5rem;
    /* Reduce spacing to fit more items */
    font-size: 0.9rem;
}


/* Adjust for Mobile */
@media (max-width: 992px) {
    .hero-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-description {
        margin: 0 auto 1.5rem auto;
    }

    .hero-stats {
        margin-top: 2rem;
    }

    .hero-values {
        display: none;
        /* Hide on mobile if too crowded */
    }

    .desktop-nav {
        display: none;
        /* Ensure hamburger is used */
    }

    .mobile-toggle {
        display: block;
    }
}