/* ===== VAAYA SHARED STYLES ===== */

:root {
    --green-deep: #19523e;
    --green-mid: #1e6b50;
    --green-light: #247a5c;
    --green-pale: #e8f5ee;
    --green-wash: #f4faf7;
    --cream: #faf8f5;
    --cream-dark: #f0ece6;
    --gold: #c8a84e;
    --gold-light: #e8d69c;
    --text-dark: #0d1f18;
    --text-mid: #3a5a4c;
    --text-light: #6b8a7c;
    --white: #ffffff;
    --border: rgba(25, 82, 62, 0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; }

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ===== NOISE GRAIN OVERLAY ===== */
body::after {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 10000;
    opacity: 0.4;
}

/* ===== NAV ===== */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 1.25rem 3rem;
    display: flex; align-items: center; justify-content: space-between;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

nav.scrolled {
    background: rgba(250, 248, 245, 0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 1px 0 var(--border);
    padding: 0.9rem 3rem;
}

.nav-logo {
    font-family: 'DM Serif Display', serif;
    font-size: 1.6rem;
    color: var(--green-deep);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-logo span { color: var(--gold); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.9rem;
    color: var(--text-mid);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--green-deep);
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: var(--text-mid);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    cursor: pointer;
    background: none;
    border: none;
    font-family: 'Outfit', sans-serif;
    padding: 0;
}

.nav-dropdown-trigger:hover {
    color: var(--green-deep);
}

.nav-dropdown-trigger svg {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    transform: translateY(10px);
    background: var(--white);
    border-radius: 12px;
    padding: 0.5rem;
    min-width: 220px;
    box-shadow: 0 12px 40px rgba(25, 82, 62, 0.12);
    border: 1px solid var(--border);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 200;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-item {
    display: block;
    padding: 0.65rem 0.85rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.nav-dropdown-item:hover {
    background: var(--green-pale);
}

.nav-dropdown-item h4 {
    font-family: 'DM Serif Display', serif;
    font-size: 0.85rem;
    color: var(--green-deep);
    margin-bottom: 0.15rem;
}

.nav-dropdown-item p {
    font-size: 0.7rem;
    color: var(--text-mid);
    font-weight: 300;
    line-height: 1.4;
}

.nav-cta {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.65rem 1.5rem;
    background: var(--green-deep); color: var(--white);
    text-decoration: none; font-size: 0.875rem; font-weight: 500;
    border-radius: 100px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
}

.nav-cta:hover {
    background: var(--green-mid);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(25, 82, 62, 0.25);
}

/* ===== SECTIONS COMMON ===== */
section { padding: 7rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }

.section-label {
    display: inline-block;
    font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    width: 1.2rem; height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.15;
    color: var(--green-deep);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-mid);
    font-weight: 300;
    max-width: 550px;
}

/* ===== PAGE HERO (INTERIOR PAGES) ===== */
.page-hero {
    padding: 10rem 2rem 5rem;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero-gradient {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%, rgba(25, 82, 62, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 60% 80% at 80% 70%, rgba(200, 168, 78, 0.04) 0%, transparent 70%);
}

.page-hero .section-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    max-width: 700px;
    margin-bottom: 1.5rem;
}

.page-hero .section-desc {
    max-width: 600px;
    font-size: 1.15rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--green-deep);
}

.breadcrumb span {
    color: var(--text-mid);
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
    padding: 5rem 2rem;
}

.content-section.white {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.content-section.cream {
    background: var(--cream);
}

.content-section.green {
    background: var(--green-deep);
}

.content-section.green .section-label { color: var(--gold-light); }
.content-section.green .section-title { color: var(--white); }
.content-section.green .section-desc { color: rgba(255, 255, 255, 0.7); }
.content-section.green p { color: rgba(255, 255, 255, 0.8); }

/* ===== FEATURE GRID ===== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature-card {
    padding: 2rem;
    border-radius: 16px;
    background: var(--white);
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(25, 82, 62, 0.08);
    border-color: rgba(25, 82, 62, 0.2);
}

.feature-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: var(--green-pale);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
}

.feature-icon svg {
    width: 24px; height: 24px;
    color: var(--green-deep);
}

.feature-card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.2rem;
    color: var(--green-deep);
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-mid);
    font-weight: 300;
}

/* ===== PROCESS STEPS ===== */
.process-steps {
    margin-top: 3rem;
}

.process-step {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
}

.process-step:last-child {
    border-bottom: none;
}

.process-number {
    flex-shrink: 0;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--green-deep);
    display: flex; align-items: center; justify-content: center;
    font-family: 'DM Serif Display', serif;
    font-size: 1.2rem;
    color: var(--white);
}

.process-content h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.3rem;
    color: var(--green-deep);
    margin-bottom: 0.5rem;
}

.process-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-mid);
    font-weight: 300;
}

/* ===== TWO COLUMN LAYOUT ===== */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.two-col.reverse {
    direction: rtl;
}

.two-col.reverse > * {
    direction: ltr;
}

.two-col-content h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--green-deep);
    margin-bottom: 1rem;
}

.two-col-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-mid);
    font-weight: 300;
    margin-bottom: 1rem;
}

.two-col-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(25, 82, 62, 0.1);
}

.two-col-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--green-deep);
    text-align: center;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta-section .section-title {
    color: var(--white);
    max-width: 600px;
    margin: 0 auto 1rem;
}

.cta-section .section-desc {
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto 2rem;
}

.cta-button {
    display: inline-flex; align-items: center; gap: 0.75rem;
    padding: 1.1rem 2.5rem;
    background: var(--gold); color: var(--green-deep);
    text-decoration: none; font-size: 1rem; font-weight: 600;
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border: none;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
}

.cta-button:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 168, 78, 0.3);
}

/* ===== BULLET LIST ===== */
.bullet-list {
    list-style: none;
    margin-top: 1.5rem;
}

.bullet-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 1rem;
    color: var(--text-mid);
    font-weight: 300;
}

.bullet-list li::before {
    content: '';
    flex-shrink: 0;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
    margin-top: 0.5rem;
}

/* ===== FOOTER ===== */
footer {
    background: #0d2e22;
    padding: 4rem 2rem 3rem;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    text-align: left;
}

.footer-logo {
    font-family: 'DM Serif Display', serif;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.footer-logo span { color: var(--gold); }

.footer-tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

.footer-links {
    text-align: left;
}

.footer-links h4 {
    font-family: 'DM Serif Display', serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    font-weight: 400;
}

.footer-links a {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    margin-bottom: 0.6rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    margin-left: 1rem;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--gold);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    nav { padding: 1rem 2rem; }
    nav.scrolled { padding: 0.75rem 2rem; }

    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .two-col { grid-template-columns: 1fr; gap: 2rem; }
    .two-col.reverse { direction: ltr; }
}

/* ===== MOBILE NAVIGATION ===== */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: 1rem;
}

.mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
    color: var(--green-deep);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream);
    z-index: 999;
    padding: 5rem 2rem 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-close svg {
    width: 24px;
    height: 24px;
    color: var(--green-deep);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-menu-links a {
    font-size: 1.1rem;
    color: var(--text-dark);
    text-decoration: none;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s ease;
}

.mobile-menu-links a:hover {
    color: var(--green-deep);
}

.mobile-menu-section {
    margin-top: 1.5rem;
}

.mobile-menu-section h4 {
    font-family: 'DM Serif Display', serif;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.mobile-menu-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 2rem;
    margin-top: 2rem;
    background: var(--green-deep);
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 100px;
    transition: all 0.3s ease;
}

.mobile-menu-cta:hover {
    background: var(--green-mid);
}

@media (max-width: 768px) {
    nav { padding: 0.85rem 1.25rem; }
    nav.scrolled { padding: 0.7rem 1.25rem; }
    .nav-logo { font-size: 1.35rem; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .mobile-menu-toggle { display: block; }
    .mobile-menu { display: block; }

    section { padding: 4rem 1.25rem; }
    .content-section { padding: 4rem 1.25rem; }

    .page-hero { padding: 7rem 1.25rem 4rem; }
    .page-hero .section-title { font-size: clamp(1.8rem, 6vw, 2.4rem); }
    .page-hero .section-desc { font-size: 1rem; }

    .feature-grid { grid-template-columns: 1fr; }

    .process-step { flex-direction: column; gap: 1rem; }
    .process-number { width: 48px; height: 48px; font-size: 1rem; }

    .cta-section { padding: 4rem 1.25rem; }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .footer-brand, .footer-links {
        text-align: center;
    }
}

@media (max-width: 380px) {
    .page-hero .section-title { font-size: 1.6rem; }
}
