/* ==========================================================================
   CSS Variables & Resets
   ========================================================================== */
:root {
    /* Colors */
    --primary: #1C4024;    /* Dark Forest Green */
    --primary-light: #2c5f37;
    --primary-dark: #122b18;
    --accent: #E5A93C;     /* Golden Yellow / Sunset */
    --accent-hover: #f0b547;
    --text-main: #334155;
    --text-muted: #64748b;
    --text-light: #f8fafc;
    --bg-main: #fcfdfc;
    --bg-alt: #f1f5f2;
    --white: #ffffff;
    
    /* Layout */
    --max-width: 1200px;
    --nav-height: 80px;
    
    /* Effects */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-premium: 0 20px 40px -10px rgba(28, 64, 36, 0.15);
    
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-dark-bg: rgba(28, 64, 36, 0.85);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.highlight {
    color: var(--accent);
}

.highlight-text {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--accent);
    opacity: 0.3;
    z-index: -1;
    border-radius: 4px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn-primary, .btn-primary-small, .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background-color: var(--accent);
    color: var(--primary-dark);
    padding: 16px 32px;
    font-size: 1.1rem;
    box-shadow: 0 4px 14px rgba(229, 169, 60, 0.4);
    border: none;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 169, 60, 0.5);
}

.btn-primary-small {
    background-color: var(--accent);
    color: var(--primary-dark);
    padding: 10px 24px;
    font-size: 0.95rem;
}

.btn-primary-small:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 14px 28px;
    font-size: 1rem;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(28, 64, 36, 0.2);
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px; /* Increased nav height for larger logo */
    background: var(--white); /* Solid white to match logo */
    border-bottom: 1px solid rgba(0,0,0,0.05); /* Subtle border instead of glass border */
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md); /* Removing background change on scroll, just shadow */
}

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

.logo {
    display: inline-block; /* Changed from flex */
}

.logo i {
    color: var(--accent);
}

.logo-image {
    max-height: 85px; /* Fit inside nav bar */
    width: auto;
    max-width: 250px;
    display: block;
    object-fit: contain;
    /* Removed mix-blend-mode since background is now solid white */
}

.nav-menu .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links li a {
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-main);
    position: relative;
}

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

.nav-links li a:not(.btn-primary-small):hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.nav-links li a:not(.btn-primary-small):hover {
    color: var(--primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px; /* Matched static nav height */
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-color: var(--primary-dark);
}

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

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 20, 10, 0.4) 0%,
        rgba(10, 25, 10, 0.7) 100%
    );
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    z-index: 10;
}

.hero-content h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    font-weight: 800;
}

.hero-content h1 .highlight {
    color: var(--accent);
}

.hero-content .subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: #e2e8f0;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-weight: 400;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.badge {
    background: var(--glass-bg);
    color: var(--primary-dark);
    padding: 8px 20px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.location-text {
    margin-top: 30px;
    font-size: 1rem;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ==========================================================================
   Section Title
   ========================================================================== */
.section-title {
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */
.prices-section {
    background-color: var(--bg-alt);
    background-image: radial-gradient(var(--text-muted) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: -19px -19px;
    background-attachment: fixed;
    /* very subtle dots */
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
}

.pricing-card.popular {
    transform: scale(1.05);
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-premium);
    z-index: 10;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: var(--font-heading);
    box-shadow: 0 4px 10px rgba(28, 64, 36, 0.3);
}

.card-header .card-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    background: var(--bg-alt);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
}

.pricing-card.popular .card-icon {
    background: rgba(28, 64, 36, 0.1);
}

.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.card-price {
    margin-bottom: 30px;
    color: var(--primary);
}

.card-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: super;
}

.card-price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1;
}

.card-price .period {
    color: var(--text-muted);
    font-weight: 500;
}

.card-features {
    text-align: left;
    margin-bottom: 40px;
    flex-grow: 1;
}

.card-features li {
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-features li:last-child {
    border-bottom: none;
}

.card-features i {
    color: #10b981; /* checkmark color */
    font-size: 1.1rem;
}

.pricing-card .btn-primary,
.pricing-card .btn-outline {
    width: 100%;
}

/* ==========================================================================
   Instagram Section
   ========================================================================== */
.instagram-section {
    background-color: var(--white);
}

.instagram-feed-container {
    min-height: 400px;
    background: var(--bg-alt);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ig-fallback-message {
    text-align: center;
    padding: 40px;
    z-index: 1;
}

.ig-fallback-message p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.ig-fallback-message i {
    font-size: 2rem;
    color: #e1306c; /* instagram brand color logic */
    display: block;
    margin-bottom: 15px;
}

/* ==========================================================================
   Reviews
   ========================================================================== */
.reviews-section {
    background-color: var(--primary-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(44, 95, 55, 0.4) 0%, transparent 70%);
    border-radius: 50%;
}

.reviews-section .section-title h2,
.reviews-section .section-title p {
    color: var(--white);
}

.reviews-section .highlight-text {
    color: var(--accent);
}

.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    font-family: var(--font-heading);
}

.google-rating .rating-number {
    font-size: 2.5rem;
    font-weight: 800;
}

.google-rating .stars {
    color: var(--accent);
    font-size: 1.5rem;
}

.rating-count {
    color: #94a3b8;
    font-size: 0.95rem;
    font-weight: 400;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background: var(--glass-dark-bg);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    background: rgba(44, 95, 55, 0.9);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-right: 15px;
}

.reviewer-info h4 {
    color: var(--white);
    margin-bottom: 3px;
    font-size: 1.1rem;
}

.reviewer-info .stars {
    color: var(--accent);
    font-size: 0.8rem;
}

.google-icon {
    position: absolute;
    right: 0;
    top: 5px;
    font-size: 1.5rem;
    color: rgba(255,255,255,0.2);
}

.review-text {
    color: #e2e8f0;
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--bg-alt);
    padding-top: 80px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand h3 i {
    color: var(--accent);
}

.footer-logo {
    max-height: 130px;
    width: auto;
    max-width: 300px;
    margin-bottom: 20px;
    display: block;
    mix-blend-mode: darken;
    border-radius: 8px;
    background-color: var(--white); /* Forcing white background so darken blends properly */
    padding: 5px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-bottom: 25px;
    max-width: 350px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--primary);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact i {
    color: var(--accent);
    margin-top: 4px;
}

.footer-bottom {
    background-color: var(--primary-dark);
    padding: 20px 0;
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* ==========================================================================
   Animations & Reveals
   ========================================================================== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.delayed {
    animation-delay: 0.2s;
}

.delayed-2 {
    animation-delay: 0.4s;
}

.delayed-3 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

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

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media screen and (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    .pricing-card.popular {
        transform: scale(1);
    }
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
}

@media screen and (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--nav-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--nav-height));
        background: var(--white);
        flex-direction: column;
        transition: 0.3s ease;
        padding: 40px 20px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 25px !important;
    }
    
    .nav-links li a {
        font-size: 1.2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .badge {
        width: 100%;
        justify-content: center;
        max-width: 250px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
