:root {
    --color-primary: #1A3C34;
    /* Deep Forest Green */
    --color-secondary: #2C5282;
    /* Ocean Blue */
    --color-accent: #D4A017;
    /* Gold/Sand */
    --color-text: #2D3748;
    --color-text-light: #718096;
    --color-bg: #F9F9F7;
    /* Off-white / Cream */
    --color-white: #ffffff;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    --border-radius: 8px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);

    --transition: all 0.3s ease;
}

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Utilities */
.btn {
    display: inline-block;
    padding: 0.8rem 1.6rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-primary);
    border: 2px solid var(--color-accent);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-accent);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-white);
    color: var(--color-white);
}

.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
}

.section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-lg);
        align-items: center;
    }
}

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

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 50px;
    /* Adjust based on logo aspect ratio */
    width: auto;
    object-fit: contain;
}


.nav-links {
    display: none;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
        gap: 2rem;
        align-items: center;
    }

    .menu-toggle {
        display: none;
    }
}

.nav-links li a {
    color: var(--color-primary);
    font-weight: 500;
}

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

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

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(26, 60, 52, 0.4), rgba(26, 60, 52, 0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.hero-logo {
    height: 80px;
    width: auto;
    margin-bottom: 0.2rem;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.brand-text {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: lowercase;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.sub-h1 {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 400;
    margin-top: 0.5rem;
    color: var(--color-accent);
}

.hero-lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.8;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid white;
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        top: 6px;
        opacity: 1;
    }

    100% {
        top: 20px;
        opacity: 0;
    }
}

/* Intro */
.intro {
    text-align: center;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
}

.intro h2 {
    color: var(--color-primary);
}

.intro .lead {
    font-size: 1.2rem;
    color: var(--color-secondary);
    font-weight: 500;
}

/* Snapshot */
.snapshot-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--color-accent);
}

.snapshot-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    color: var(--color-text);
}

.snapshot-list li:last-child {
    border-bottom: none;
}

.snapshot-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

/* View Sections (Valley & Sea) */
.view-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.view-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    /* Parallax Effect */
    background-attachment: fixed;
}

.valley-view .view-bg {
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 60%), url('DJI_0140.JPG');
    left: 0;
    width: 100%;
}

.sea-view .view-bg {
    background-image: linear-gradient(-90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 60%), url('DJI_0075.JPG');
    left: 0;
    width: 100%;
}

.valley-view .view-content,
.sea-view .view-content {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 3rem;
    max-width: 550px;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.sea-view .container {
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 768px) {

    .valley-view .view-bg,
    .sea-view .view-bg {
        width: 100%;
        left: 0;
        right: 0;
        opacity: 0.3;
    }

    .view-section {
        background: var(--color-primary);
    }

    .valley-view .view-content,
    .sea-view .view-content {
        background: white;
        margin: 2rem 0;
    }
}

.sub-head {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-primary);
}

.feature-grid {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    text-align: center;
}

.feature-item .icon {
    font-size: 1.5rem;
}

/* Features Dark */
.features-dark {
    background-color: var(--color-primary);
    color: white;
}

.feature-block h3 {
    color: var(--color-accent);
}

.check-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.check-list li::before {
    content: '✓';
    color: var(--color-accent);
    position: absolute;
    left: 0;
}

.features-dark p {
    color: rgba(255, 255, 255, 0.8);
}

/* Pricing */
.pricing {
    background-color: #f0f4f8;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.pricing-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    /* Softer initial shadow */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy transition */
    position: relative;
    top: 0;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.pricing-card.valley {
    border-top: 5px solid var(--color-primary);
}

.pricing-card.sea {
    border-top: 5px solid var(--color-secondary);
    background: rgba(255, 255, 255, 0.9);
    /* Slightly more opaque for sea view importance */
}

.card-header {
    padding: 2rem;
    text-align: center;
    background: #fcfcfc;
    border-bottom: 1px solid #eee;
}

.card-header h3 {
    color: var(--color-text);
}

.price {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
}

.price small {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-text-light);
}

.card-body {
    padding: 2rem;
}

.card-body ul {
    margin-bottom: 2rem;
}

.card-body li {
    text-align: center;
    padding: 0.5rem 0;
    color: var(--color-text);
}

.full-width {
    display: block;
    width: 100%;
}

.pricing-note {
    text-align: center;
    font-size: 0.8rem;
    margin-top: 2rem;
    font-style: italic;
}

/* Infra */
.infra-content h2 {
    color: var(--color-primary);
}

.check-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.check-list-grid li {
    padding-left: 1.5rem;
    position: relative;
}

.check-list-grid li::before {
    content: '•';
    color: var(--color-accent);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1rem;
}

.infra-img img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

/* Location */
.target-list {
    margin-top: 1rem;
}

.target-list li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    border-left: 3px solid var(--color-accent);
}

.location-map img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}

/* Final CTA */
.cta-final {
    position: relative;
    padding: 6rem 0;
    color: white;
    overflow: hidden;
}

.cta-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.cta-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 60, 52, 0.85);
    /* Heavy overlay for form readability */
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 100%;
    margin-top: 2rem;
}

.glass-panel h3 {
    margin-bottom: 1.5rem;
    color: white;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.9);
    font-family: inherit;
}

.trust-badges {
    margin-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.trust-badges span {
    margin: 0 0.5rem;
}

/* Footer */
footer {
    background: #111;
    color: white;
    padding: 3rem 0;
    font-size: 0.9rem;
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col.right {
        text-align: right;
    }
}

/* Mobile Menu Overlay */
.menu-overlay {
    display: flex;
    /* Toggle via JS */
    /* ... additional mobile styles if needed ... */
}