:root {
    /* Richer Color Palette */
    --primary-color: #1b4332; /* Deep forest green */
    --primary-light: #2d6a4f; /* Vibrant natural green */
    --accent-color: #f76b1c; /* Vibrant energetic orange */
    --accent-glow: rgba(247, 107, 28, 0.4);
    --text-main: #2b3a4a; /* Softer, richer dark grey for text */
    --text-muted: #6b7c93;
    --bg-light: #f4fbf7; /* Very soft greenish tint */
    --bg-white: #ffffff;
    
    /* Box Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(13, 35, 58, 0.05), 0 2px 4px -1px rgba(13, 35, 58, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(13, 35, 58, 0.08), 0 4px 6px -2px rgba(13, 35, 58, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(13, 35, 58, 0.1), 0 10px 10px -5px rgba(13, 35, 58, 0.04);
    --shadow-hover: 0 25px 35px -5px rgba(13, 35, 58, 0.15), 0 0 30px 5px var(--accent-glow);
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1 {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--primary-color);
}
h2, h3, h4, h5, h6, .navbar-brand {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--primary-color);
}

/* Base Utility Classes */
.text-primary-brand { color: var(--primary-color) !important; }
.text-accent { color: var(--accent-color) !important; text-shadow: 0 2px 10px var(--accent-glow); }
.bg-primary-brand { background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%) !important; color: white !important; }
.bg-light-grey { 
    background-color: var(--bg-light) !important; 
    background-image: radial-gradient(rgba(13, 35, 58, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    position: relative; 
}

/* Topbar */
.topbar {
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 1040;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.topbar a {
    text-decoration: none;
    transition: all 0.3s ease;
}
.topbar a:hover {
    color: var(--accent-color) !important;
}
.topbar-social a {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}
.topbar-social a:hover {
    background: var(--accent-color);
    color: white !important;
    transform: translateY(-2px);
}

/* Navbar - Glassmorphism */
.navbar {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 18px 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1030;
}

.navbar.shadow-sm {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1) !important;
    padding: 12px 0;
}

.navbar-brand { font-size: 1.75rem; font-weight: 800; letter-spacing: -1px; }
.navbar-brand span { color: var(--accent-color); position: relative; display: inline-block; }

.nav-link {
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px !important;
    margin: 0 4px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
    background-color: rgba(13, 35, 58, 0.03);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 60%;
    box-shadow: 0 0 8px var(--accent-glow);
}

/* Buttons - Premium Feel */
.btn {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 14px 32px;
    border-radius: 50px; /* Pill buttons for modern look */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-transform: uppercase;
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-primary-brand {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border: none;
    color: #ffffff;
    box-shadow: var(--shadow-sm);
}

.btn-primary-brand:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: #ffffff;
}

.btn-primary-brand::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    z-index: -1;
    transition: opacity 0.4s linear;
    opacity: 0;
}

.btn-primary-brand:hover::before { opacity: 1; }

.btn-accent {
    background: linear-gradient(135deg, #ff8c42 0%, var(--accent-color) 100%);
    border: none;
    color: #ffffff;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-accent:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px var(--accent-glow);
    color: #ffffff;
}

.btn-outline-primary-brand {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background-image: linear-gradient(transparent, transparent);
}

.btn-outline-primary-brand:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

/* NEW: Layout Structures */

/* Hero Full Overlay */
.hero-split {
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 0;
    min-height: 90vh; /* Replaces strict padding mapping */
    background-color: var(--primary-color);
    overflow: hidden;
}
.hero-split-image {
    position: absolute;
    top: 0; bottom: 0; left: 0; right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero-split::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 0; right: 0;
    background: linear-gradient(90deg, rgba(27, 67, 50, 0.95) 0%, rgba(45, 106, 79, 0.7) 60%, rgba(45, 106, 79, 0.2) 100%);
    z-index: 1;
}
@media (max-width: 991px) {
    .hero-split { min-height: 85vh; padding: 100px 0; }
    .hero-split::before { background: linear-gradient(180deg, rgba(27, 67, 50, 0.95) 0%, rgba(45, 106, 79, 0.8) 100%); }
    .hero-title { font-size: 3rem !important; }
}

.hero-split .container { position: relative; z-index: 2; }
.hero-card {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
    max-width: 650px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    color: #ffffff;
}
.hero-split .lead { font-size: 1.25rem; color: rgba(255,255,255,0.85); max-width: 600px; font-weight: 400; }

/* Page Header Unified Typography Space */
.page-header {
    padding: 100px 0 80px;
    margin-bottom: 0;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

/* Responsive Grid Spans */
.bento-span-12 { grid-column: span 12; }
.bento-span-8 { grid-column: span 8; }
.bento-span-6 { grid-column: span 6; }
.bento-span-4 { grid-column: span 4; }

@media (max-width: 991px) {
    .bento-span-12, .bento-span-8, .bento-span-6, .bento-span-4 {
        grid-column: span 12 !important;
    }
}

.bento-item {
    background: var(--bg-white);
    border: 1px solid rgba(13, 35, 58, 0.05);
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.bento-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(247, 107, 28, 0.2);
}

.bento-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.bento-item:hover .bento-img { transform: scale(1.05); }

.bento-overlay {
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background: linear-gradient(to top, rgba(13,35,58,0.9) 0%, rgba(13,35,58,0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    z-index: 2;
}

/* Image Offset ZigZag */
.zigzag-img {
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    height: 100%;
    min-height: 400px;
    width: 100%;
}
.zigzag-pattern {
    position: absolute;
    top: -30px; left: -30px;
    width: 200px; height: 200px;
    background-image: radial-gradient(var(--accent-color) 2px, transparent 2px);
    background-size: 20px 20px;
    z-index: -1;
    opacity: 0.3;
}

/* Section Styling */
.section-padding { 
    padding: 120px 0; 
    position: relative; 
    z-index: 1;
}

.section-padding::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: -1;
    background: radial-gradient(circle at top right, rgba(247, 107, 28, 0.03), transparent 40%),
                radial-gradient(circle at bottom left, rgba(13, 35, 58, 0.03), transparent 40%);
}

.section-title { text-align: left; margin-bottom: 60px; }
.section-title.text-center { text-align: center; }
.section-title h2 {
    font-size: 3rem;
    color: var(--primary-color);
}
.section-title h2 span { color: var(--accent-color); }
.section-title p { color: var(--text-muted); font-size: 1.15rem; margin-top: 15px; }

/* Testimonial Marquee / Layout */
.testimonial-card {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
    position: relative;
    border: 1px solid rgba(13,35,58,0.05);
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-main);
    line-height: 1.8;
    margin-bottom: 30px;
}
.testimonial-author { font-weight: 700; color: var(--primary-color); font-size: 1.1rem; margin-bottom: 0;}
.stars { color: #f59e0b; font-size: 1.1rem; }

/* Contact Specific Layout */
.contact-split {
    border-radius: 40px;
    overflow: hidden;
    background: var(--primary-color);
}
.contact-info-panel {
    background: var(--primary-color);
    color: white;
    padding: 60px;
}
.contact-info-panel .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
    opacity: 1;
}
.contact-map-panel {
    overflow: hidden;
    min-height: 400px;
}

/* Brands Pill Badges */
.brand-pill {
    background: white;
    border: 1px solid rgba(13,35,58,0.08);
    border-radius: 50px;
    padding: 15px 30px;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-block;
    margin: 10px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}
.brand-pill:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* Table styling for Brands fallback if needed */
.table-custom {
    box-shadow: var(--shadow-md);
    border-radius: 20px;
    overflow: hidden;
    background: white;
    border: 1px solid rgba(13,35,58,0.05);
}
.table-custom thead th {
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
    padding: 24px;
}
.table-custom tbody td {
    padding: 24px;
    border-bottom: 1px solid rgba(13,35,58,0.05);
    color: var(--text-muted);
}

/* FAQ Accordion */
.accordion-item {
    border: 1px solid rgba(13,35,58,0.08) !important;
    margin-bottom: 20px;
    border-radius: 16px !important;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.accordion-item:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.accordion-button {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--primary-color);
    background-color: #fff;
    padding: 25px 30px;
}

.accordion-button:not(.collapsed) {
    color: var(--accent-color);
    background-color: rgba(247, 107, 28, 0.03); 
    box-shadow: none;
}
.accordion-body { padding: 20px 30px 30px; font-size: 1.05rem; line-height: 1.8; color: var(--text-muted); }

/* Forms */
.form-control, .form-select {
    padding: 16px 24px;
    border-radius: 12px;
    border: 2px solid rgba(13,35,58,0.08);
    background-color: #f8fafc !important;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-control:focus, .form-select:focus {
    box-shadow: 0 0 0 5px rgba(247, 107, 28, 0.1);
    border-color: var(--accent-color);
    background-color: #ffffff !important;
}

/* Footer completely revamped */
.footer {
    background-color: #0c2017; /* Even darker green for contrast */
    color: #a0aec0;
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer .text-muted {
    color: #a0aec0 !important;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 5px;
    background: linear-gradient(90deg, var(--primary-light), var(--accent-color));
}

.footer h4 { font-size: 1.4rem; margin-bottom: 35px; color: #ffffff; font-weight: 700; }

.footer-contact li { margin-bottom: 24px; display: flex; align-items: flex-start; }
.footer-contact i { color: var(--accent-color); margin-right: 18px; margin-top: 5px; font-size: 1.3rem; }

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 18px; }
.footer-links a { color: #a0aec0; text-decoration: none; transition: all 0.3s ease; display: inline-flex; align-items: center; }
.footer-links a::before {
    content: '\f105';
    font-family: "Font Awesome 6 Free"; font-weight: 900;
    margin-right: 10px; font-size: 0.8rem; color: var(--accent-color);
    opacity: 0; transform: translateX(-10px); transition: all 0.3s ease;
}
.footer-links a:hover { color: #ffffff; transform: translateX(8px); }
.footer-links a:hover::before { opacity: 1; transform: translateX(0); }

.footer-bottom {
    margin-top: 80px; padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center; font-size: 0.95rem; color: #718096;
}

/* Animation Classes added dynamically via JS */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

/* Comprehensive Mobile & Tablet Responsiveness */
@media (max-width: 991px) {
    .contact-split { flex-direction: column; border-radius: 20px !important; }
    .contact-info-panel, .contact-map-panel { border-radius: 0 !important; width: 100% !important; }
    .bento-grid { gap: 16px !important; }
    .navbar-collapse { 
        background: white; 
        padding: 20px; 
        border-radius: 12px; 
        box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
        margin-top: 15px; 
    }
}

@media (max-width: 768px) {
    /* Compress excessive layout padding */
    .section-padding { padding: 60px 0 !important; }
    .py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
    .p-5 { padding: 2rem !important; }
    
    /* Typography Scaling */
    .page-header { padding: 60px 0 40px !important; }
    .display-4 { font-size: 2.5rem !important; }
    .display-5 { font-size: 2rem !important; }
    h1 { font-size: 2.2rem !important; line-height: 1.2 !important; }
    
    /* Bento Grid vertical adjustments to save space */
    .bento-item { min-height: 280px !important; }
    
    /* Contact Form tightening */
    .contact-info-panel { padding: 40px 20px !important; }
    
    /* Footer Reordering */
    .footer { padding-top: 60px !important; text-align: center; }
    .footer-contact li { justify-content: center; text-align: center; }
    .footer-contact li div { text-align: center; }
    .footer-links a { justify-content: center; }
    
    /* Hide decorative offset alignments */
    .zig-zag-img-container { margin: 0 auto 30px !important; }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}
.whatsapp-float:hover {
    background-color: #128C7E;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(37, 211, 102, 0.6);
}
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        font-size: 26px;
    }
}

/* Shop Card Styles */
.shop-card {
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
}
.shop-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover) !important;
    border-color: rgba(247, 107, 28, 0.2) !important;
}
.shop-card img {
    transition: transform 0.8s ease;
}
.shop-card:hover img {
    transform: scale(1.05);
}
