:root {
    --primary: #A2B975; /* Sage Green - Official Brand */
    --secondary: #000000; /* Solid Black - Official Brand Footer */
    --accent: #61CE70; /* Vibrant Green - Official Brand Accent */
    --bg-primary: #ffffff;
    --bg-secondary: #f9fbf9;
    --text-primary: #1a1a1a;
    --text-secondary: #54595F;
    --border: #e0e0e0;
    --glass: rgba(255, 255, 255, 0.95);
    
    /* Typography */
    --font-main: 'Outfit', 'Inter', sans-serif;
    --font-serif: 'Roboto Slab', serif;
    --font-mono: 'Space Mono', monospace;
    
    /* Spacing */
    --section-padding: 100px 8%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .serif {
    font-family: var(--font-serif);
    font-weight: 700;
}

/* Section Dividers */
.divider {
    position: relative;
    width: 100%;
    line-height: 0;
}
.divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}
.divider .shape-fill {
    fill: var(--bg-secondary);
}

/* Luxury Navbar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 12px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

nav.scrolled {
    padding: 8px 8%;
    background: white;
}



.logo img {
    height: 40px;
}

.hamburger {
    display: none;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    transition: 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: var(--section-padding);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/Drone_002-Cover.jpeg') no-repeat center/cover;
    animation: kenBurns 20s infinite alternate;
    z-index: 0;
}

@keyframes kenBurns {
    from { transform: scale(1); }
    to { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 2; /* Sits on top of particles */
}

.hero-content {
    position: relative;
    z-index: 3; /* Sits on top of everything */
    max-width: 1000px;
}

.hero h1 {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: -2px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.4);
    animation: slideUpFade 1s ease forwards;
    opacity: 0;
}

.hero p {
    font-size: 1.4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
    margin-bottom: 50px;
    opacity: 0;
    font-weight: 400;
    line-height: 1.5;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    animation: slideUpFade 1s ease forwards 0.3s;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideUpFade 1s ease forwards 0.6s;
    opacity: 0;
}

@keyframes slideUpFade {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}



/* Premium Card Styles */
.card {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1) !important;
}

.clickable-card {
    cursor: pointer;
}

.clickable-card:hover h3, .clickable-card:hover h2 {
    color: var(--primary) !important;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.2s; }
.reveal-delay-2 { transition-delay: 0.4s; }
.reveal-delay-3 { transition-delay: 0.6s; }
.reveal-delay-4 { transition-delay: 0.8s; }

/* Cookie Consent */
#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: white;
    color: var(--text-primary);
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10000;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border: 1px solid var(--border);
}

#cookie-banner button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 30px;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: 0.3s;
}

#cookie-banner button:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

/* Global Utility Styles */
.btn-cta { 
    background: var(--accent); /* Use brand Vibrant Green as per MD */
    color: white; 
    padding: 18px 40px; 
    border-radius: 50px; 
    text-decoration: none; 
    font-weight: 700; 
    display: inline-block; 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    box-shadow: 0 12px 24px rgba(97, 206, 112, 0.3); 
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
}

.btn-cta:hover { 
    background: var(--secondary); 
    transform: translateY(-5px) scale(1.02); 
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    color: white;
}

.btn-outline {
    padding: 16px 36px;
    border: 2px solid white;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: 700;
    backdrop-filter: blur(10px);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
}

.btn-outline:hover {
    background: white;
    color: var(--secondary);
    transform: translateY(-5px);
}


.footer-info p { 
    margin-bottom: 15px; 
    font-size: 1rem; 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    color: var(--text-primary); /* Default Dark Text */
}

footer .footer-info p {
    color: rgba(255,255,255,0.7); /* Light text only in footer */
    font-size: 0.9rem;
}


.footer-links a { 
    display: block; 
    color: rgba(255,255,255,0.6); 
    text-decoration: none; 
    margin-bottom: 12px; 
    font-size: 0.9rem;
    transition: 0.2s ease; 
}
.footer-links a:hover { 
    color: var(--primary); 
    padding-left: 8px; 
}

.footer-heading {
    color: white;
    margin-bottom: 30px; 
    text-transform: uppercase; 
    font-size: 0.75rem; 
    letter-spacing: 2px;
    font-weight: 800;
    opacity: 0.9;
}

/* --- Responsiveness --- */

@media (max-width: 1024px) {
    :root {
        --section-padding: 80px 5%;
    }
    .hero h1 { font-size: 3.5rem; }
}

@media (max-width: 768px) {
    nav {
        padding: 15px 5%;
    }
    .nav-links {
        display: none; /* Hidden by default on mobile */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 40px;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    .nav-links.active {
        display: flex;
    }
    .hamburger {
        display: block !important;
        cursor: pointer;
    }
    .hero h1 { font-size: 2.8rem; }
    .hero p { font-size: 1.1rem; }
    
    .grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.2rem; }
    .btn-cta { width: 100%; text-align: center; }
}


