/* 
   Tulsi Group - Modern Agriculture Website
   Design System & Core Styles
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    /* Colors */
    --primary: #2D5A27;
    --primary-light: #4CAF50;
    --secondary: #8BC34A;
    --accent: #E8F5E9;
    --dark: #0D1B0A;
    --text-dark: #1A1A1A;
    --text-light: #FFFFFF;
    --gray-light: #F8F9FA;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    
    /* Spacing */
    --section-padding: 100px 5%;
    --container-width: 1200px;
    
    /* Shadows */
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--text-light);
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 3.5rem; margin-bottom: 1.5rem; }
h2 { font-size: 2.5rem; margin-bottom: 2rem; position: relative; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; }

.section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-light);
    margin: 1rem auto;
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    box-shadow: 0 10px 20px rgba(45, 90, 39, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(45, 90, 39, 0.3);
}

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

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

/* Navbar */
nav {
    position: fixed;
    top: 20px;
    left: 5%;
    right: 5%;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 1000;
    transition: var(--transition);
}

nav.scrolled {
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #eee;
    height: 70px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

nav.scrolled .logo {
    color: var(--primary);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: var(--transition);
}

nav.scrolled .nav-links a {
    color: var(--text-dark);
}

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

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('hero_farm_industrial_1777485649644.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 5%;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.3));
    z-index: -1;
}

.hero-content {
    max-width: 900px;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    animation: fadeInUp 1.2s ease;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1.4s ease;
}

/* Stats Section */
.stats {
    padding: 60px 5%;
    background: var(--text-light);
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.stats-container {
    max-width: var(--container-width);
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 30px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 30px;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-item p {
    color: #666;
    font-weight: 500;
}

/* About Section */
.about {
    padding: var(--section-padding);
}

.about-grid {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 40px;
    box-shadow: var(--shadow-hover);
}

.about-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary);
    color: white;
    padding: 30px;
    border-radius: 30px;
    text-align: center;
    box-shadow: var(--shadow);
}

.about-badge span {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
}

/* Features Grid */
.features {
    background: var(--gray-light);
    padding: var(--section-padding);
}

.features-grid {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 30px;
    transition: var(--transition);
    border: 1px solid #eee;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-size: 1.5rem;
}

/* Product Section Refinement */
.products {
    padding: var(--section-padding);
    background: #ffffff; /* Contrast against dark cards */
}

.product-grid {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.dark-card {
    background: #ffffff !important; /* White background */
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08); /* Soft elegant shadow */
    border: 1px solid #f1f5f9;
}

.dark-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.product-image {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.dark-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    color: #2D5A27; /* Darker green for title on white */
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.product-subtitle {
    color: #475569; /* Dark slate for readability */
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.product-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.product-price {
    color: #D97706; /* Deep yellow/orange for contrast */
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-quote {
    background: #10b981;
    color: white;
    padding: 12px 25px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-quote:hover {
    background: #059669;
    box-shadow: 0 6px 15px rgba(16, 185, 129, 0.4);
    transform: translateY(-2px);
}


/* Why Choose Us */
.why-us {
    background: var(--dark);
    color: white;
    padding: var(--section-padding);
}

.why-us-grid {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.why-us-list {
    list-style: none;
}

.why-us-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.why-us-item i {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Footer */
footer {
    background: #050a04;
    color: white;
    padding: 80px 5% 40px;
}

.footer-grid {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    margin-bottom: 2rem;
    font-size: 1.25rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
}

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

.contact-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
    color: #aaa;
    align-items: flex-start;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-link {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

.contact-link:hover {
    color: var(--secondary);
}

.footer-map h4 {
    margin-bottom: 2rem;
    font-size: 1.25rem;
}

.footer-map iframe {
    width: 100%;
    height: 180px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.footer-bottom {
    max-width: var(--container-width);
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: #666;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.2rem; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid, .why-us-grid { gap: 40px; }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 5%;
    }
    
    h1 { font-size: 2.2rem; margin-bottom: 1rem; }
    h2 { font-size: 1.8rem; }
    
    nav {
        top: 0;
        left: 0;
        right: 0;
        border-radius: 0;
        height: 70px;
        padding: 0 15px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid #eee;
    }
    
    .logo {
        font-size: 1.1rem;
        gap: 8px;
        color: var(--primary) !important;
    }
    
    .logo img {
        height: 35px !important;
    }
    
    .nav-links {
        display: none; /* Hide desktop links */
    }
    
    .hero {
        height: auto;
        min-height: 80vh;
        padding: 100px 5% 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 10px;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .stats {
        margin-top: 0;
        padding: 40px 5%;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px 15px;
        gap: 20px;
        border-radius: 20px;
    }
    
    .stat-item h3 {
        font-size: 1.8rem;
    }
    
    .about-grid, .why-us-grid, .features-grid, .product-grid {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }
    
    .about-image img, .why-us-image img {
        border-radius: 25px;
    }
    
    .about-badge {
        padding: 15px;
        bottom: -15px;
        right: 0;
        border-radius: 15px;
    }
    
    .about-badge span {
        font-size: 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-title {
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    .hero h1 { font-size: 1.8rem; }
    .hero p { font-size: 0.95rem; }
    .stats-container {
        grid-template-columns: 1fr;
    }
    .logo {
        font-size: 0.85rem;
    }
}

.nav-cta {
    padding: 0.8rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.cta-icon {
    display: none !important; /* Strictly hidden on desktop */
}

@media (max-width: 768px) {
    .nav-cta {
        padding: 0 !important;
        width: 45px;
        height: 45px;
        border-radius: 50% !important;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    
    .cta-text {
        display: none;
    }
    
    .cta-icon {
        display: flex !important;
        font-size: 1.2rem;
    }

    /* Mobile Scroll Animation */
    nav.scrolled {
        top: 10px;
        left: 5%;
        right: 5%;
        width: 90%;
        height: 60px;
        border-radius: 50px;
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid rgba(0,0,0,0.05);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        padding: 0 15px;
    }

    nav.scrolled .logo img {
        height: 30px !important;
    }

    nav.scrolled .nav-cta {
        width: 40px;
        height: 40px;
    }
}


/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
    margin-left: 20px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    border-radius: 2px;
    transition: var(--transition);
}

nav.scrolled .hamburger span {
    background: var(--primary);
}

.hamburger.toggle span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.toggle span:nth-child(2) {
    opacity: 0;
}

.hamburger.toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        order: 3;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 1000;
        display: flex !important; /* Force display for mobile menu */
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 20px 0;
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.5s ease;
    }
    
    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-links a {
        color: var(--text-dark) !important;
        font-size: 1.5rem;
        font-weight: 600;
    }
}

/* Refined Mobile Menu */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%; /* Full width for cleaner look on small screens */
        height: 100vh;
        background: rgba(13, 27, 10, 0.98); /* Dark themed background to match Brahmani branding */
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
        z-index: 2000;
        display: flex !important;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: white !important;
        font-size: 2rem;
        margin: 15px 0;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        transition: var(--transition);
        position: relative;
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 3px;
        background: var(--secondary);
        transition: var(--transition);
    }

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

    .hamburger {
        z-index: 2001; /* Ensure hamburger is above menu */
        position: relative;
    }

    .hamburger span {
        background: var(--primary-light) !important; /* Make hamburger more visible */
        width: 30px;
        height: 3px;
    }

    .hamburger.toggle span {
        background: white !important; /* Change color to white when menu is open */
    }

    /* Fixed logo visibility when menu is open */
    nav.active-menu .logo {
        color: white !important;
        z-index: 2001;
    }
}

/* Remove green shadow and hide hamburger on scroll for mobile */
@media (max-width: 768px) {
    nav.scrolled .nav-cta {
        box-shadow: none !important; /* Remove green shadow on scroll */
    }

    nav.scrolled .hamburger {
        display: none !important; /* Hide hamburger on scroll as requested */
    }
}

/* Fix nav links visibility on mobile */
@media (max-width: 768px) {
    .nav-links {
        display: none !important; /* Hide by default to prevent leaking */
    }

    .nav-links.active {
        display: flex !important; /* Show only when active */
        right: 0;
    }
}

/* Contact Page Responsiveness */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
}

/* Product Page Specific Styles */
.products-page {
    background: #0f172a; /* Slate-900 background for product showcase */
    padding: 100px 5%;
}

.filter-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* Deep Dark Product Cards */
.product-card-deep {
    background: #1e293b; /* Slate-800 */
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
}

.product-card-deep:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border-color: var(--primary-light);
}

.product-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
}

.product-rating {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    color: #ffb800;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 10;
}

.product-content-deep {
    padding: 25px;
}

.product-title-deep {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.product-desc-deep {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.product-meta-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.meta-tag {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.btn-quote-deep {
    background: var(--primary-light);
    color: white;
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-quote-deep:hover {
    background: var(--primary);
    transform: scale(1.02);
}

/* Refined Light Theme for Products Page */
.products-page-light {
    background: #f8fafc; /* Very light slate background */
    padding: 100px 5%;
}

.filter-btn-light {
    padding: 10px 25px;
    background: white;
    border: 1px solid #e2e8f0;
    color: #475569;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.filter-btn-light.active, .filter-btn-light:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.product-card-light {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    border: 1px solid #f1f5f9;
}

.product-card-light:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.product-title-light {
    color: #166534; /* Rich green */
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.product-desc-light {
    color: #64748b; /* Slate-500 */
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.product-price-light {
    color: #b45309; /* Amber-700 for 'BEST PRICE' */
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-quote-light {
    background: #10b981;
    color: white;
    padding: 12px 25px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.btn-quote-light:hover {
    background: #059669;
    box-shadow: 0 6px 15px rgba(16, 185, 129, 0.3);
}

/* Solid White Navbar for Light-Themed Pages */
nav.nav-white {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

nav.nav-white .logo, 
nav.nav-white .nav-links a {
    color: var(--primary) !important;
}

nav.nav-white .hamburger span {
    background: var(--primary) !important;
}
