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

:root {
    /* Premium Organic HSL Color Palette */
    --forest-dark: hsl(164, 50%, 8%);      /* Extremely rich, deep luxury green */
    --forest:      hsl(164, 45%, 11%);     /* Standard brand deep forest */
    --leaf:        hsl(158, 48%, 24%);     /* Mid-tone natural leafy green */
    --leaf-light:  hsl(158, 30%, 42%);     /* Muted organic green accent */
    --gold:        hsl(38, 55%, 52%);      /* Premium warm polished gold */
    --gold-dark:   hsl(38, 55%, 42%);      /* Deeper golden amber for text readability */
    --gold-light:  hsl(38, 70%, 93%);      /* Soft satin-gold background tint */
    --cream:       hsl(40, 30%, 97%);      /* Pure organic warm linen white */
    --cream-dark:  hsl(40, 20%, 92%);      /* Shadowed cream/linen separator */
    --paper:       hsl(0, 0%, 100%) ;      /* Pure clean card background */
    --ink:         hsl(164, 40%, 9%);      /* Dark forest-black for reading comfort */
    --muted:       hsl(160, 10%, 44%);     /* Professional slate gray */
    --line:        hsl(40, 18%, 89%);      /* Fine premium hair-line separators */
    
    /* Shadows and Borders */
    --shadow-sm:   0 2px 8px rgba(18, 60, 47, 0.04);
    --shadow-md:   0 12px 30px rgba(18, 60, 47, 0.08);
    --shadow-lg:   0 24px 64px rgba(18, 60, 47, 0.12);
    --shadow-glow: 0 0 20px rgba(201, 147, 58, 0.2);
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 24px;
    --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

/* Custom default cursor to prevent text-select i-beam pointer on text */
body, h1, h2, h3, h4, h5, h6, p, span, li, label, strong, em, b, i, th, td {
    cursor: default;
}

/* Ensure interactive elements maintain proper cursors */
a, button, [role="button"], input[type="submit"], input[type="button"], select, .whatsapp-float {
    cursor: pointer;
}

input[type="text"], input[type="email"], input[type="tel"], input[type="number"], textarea {
    cursor: text;
}

body {
    font-family: 'Poppins', 'Segoe UI', Roboto, sans-serif;
    background: var(--cream);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
}

/* Luxury Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', 'Georgia', serif;
    font-weight: 700;
    color: var(--forest);
    line-height: 1.25;
    letter-spacing: -0.02em;
}

p {
    margin-bottom: 20px;
    color: var(--muted);
}

strong {
    color: var(--forest);
    font-weight: 600;
}

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

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

/* Header & Glassmorphism Navigation - Floating Capsule Design */
header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1200px, calc(100% - 32px));
    z-index: 1000;
    background: rgba(12, 37, 30, 0.85); /* Highly polished translucent emerald */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1.5px solid rgba(201, 147, 58, 0.25); /* Subtle gold base border */
    border-radius: 99px; /* Rounded capsule shape */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar {
    max-width: 100%;
    margin: 0 auto;
    padding: 8px 18px; /* Tighter padding for capsule height balance */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    min-width: 0;
    flex-shrink: 0;
}

/* Transparent Logo scaled to fit capsule height */
.logo {
    width: 60px; /* Highly elegant and clean */
    height: 60px;
    object-fit: contain;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    transition: var(--transition);
}

.logo-section:hover .logo {
    transform: scale(1.08) rotate(4deg);
}

.site-title-container {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.site-title {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--paper);
    letter-spacing: 0.06em;
    background: linear-gradient(135deg, var(--paper) 60%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.tagline {
    margin: 1px 0 0;
    font-size: 10px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

/* Nav Links - Center / Right */
nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

nav a {
    text-decoration: none;
    font-weight: 600;
    font-size: 14.5px;
    padding: 10px 18px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    letter-spacing: 0.02em;
    transition: var(--transition);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
    transform: translateX(-50%);
}

nav a:hover {
    color: var(--paper);
    background: rgba(255, 255, 255, 0.06);
}

nav a:hover::after {
    width: 40%;
}

nav a.active {
    background: rgba(201, 147, 58, 0.15);
    color: var(--gold);
    border: 1px solid rgba(201, 147, 58, 0.25);
}

nav a.active::after {
    display: none;
}

/* Hamburger Menu Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2.5px;
    background-color: var(--paper);
    border-radius: 99px;
    transition: var(--transition);
}

/* Main Content Wrapper */
main {
    min-height: calc(100vh - 200px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--forest-dark);
    color: var(--paper);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(31, 107, 79, 0.35) 0%, rgba(12, 37, 30, 0.95) 80%);
    z-index: 2;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
    opacity: 0.45;
    z-index: 1;
    transform: scale(1.05);
    animation: slowZoom 25s infinite alternate ease-in-out;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 3;
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
    padding: 100px 0;
}

/* Inner Page Hero */
.page-hero {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--forest-dark);
    color: var(--paper);
    border-bottom: 2px solid var(--gold);
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12, 37, 30, 0.92) 30%, rgba(12, 37, 30, 0.5) 100%);
    z-index: 2;
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    z-index: 1;
    transform: scale(1.02);
}

.page-hero-content {
    position: relative;
    z-index: 3;
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
    padding: 80px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 16px;
    color: var(--gold);
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--gold);
}

.hero h1, .hero h2, .page-hero h1, .page-hero h2 {
    font-family: 'Outfit', sans-serif;
    max-width: 820px;
    margin: 0;
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--paper) !important;
}

.hero p, .page-hero p {
    max-width: 700px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18.5px;
    font-weight: 400;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 40px;
}

/* Premium Buttons */
.btn, .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 28px;
    border-radius: 999px;
    border: 1.5px solid transparent;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: var(--transition);
}

.btn {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--forest-dark);
    box-shadow: var(--shadow-glow), 0 10px 25px rgba(201, 147, 58, 0.25);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow), 0 15px 30px rgba(201, 147, 58, 0.35);
    background: linear-gradient(135deg, hsl(38, 60%, 57%) 0%, var(--gold) 100%);
}

.btn:active {
    transform: translateY(-1px);
}

.btn-outline {
    color: var(--paper);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.btn-outline:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--paper);
}

/* Section Containers */
.section {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
    padding: 100px 0;
}

.section-header {
    max-width: 760px;
    margin-bottom: 48px;
}

.section.center, .section.center .section-header {
    text-align: center;
}

.section.center .section-header {
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.15;
    margin: 8px 0 16px;
    color: var(--forest);
    font-weight: 800;
}

.lead {
    color: var(--muted);
    font-size: 19px;
    font-weight: 400;
}

/* Premium Grid & Elegant Cards */
.grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.grid.four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card, .promise-card, .contact-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.card {
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gold);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 147, 58, 0.25);
}

.card:hover::before {
    height: 100%;
}

.card .number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 24px;
    border-radius: 50%;
    background: var(--gold-light);
    color: var(--gold-dark);
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 17px;
    border: 1px solid rgba(201, 147, 58, 0.2);
}

.card h3 {
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: 700;
}

.card p {
    color: var(--muted);
    font-size: 15px;
    margin-bottom: 0;
}

/* Product Cards Grid & Category Tabs */
.filter-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.filter-tab {
    background: var(--paper);
    color: var(--forest);
    border: 1px solid var(--line);
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14.5px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-tab:hover {
    background: var(--gold-light);
    border-color: var(--gold);
    color: var(--gold-dark);
}

.filter-tab.active {
    background: var(--forest);
    color: var(--paper);
    border-color: var(--forest);
    box-shadow: var(--shadow-md);
}

.product-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 147, 58, 0.25);
}

.product-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: var(--paper);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover img {
    transform: scale(1.06);
}

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold);
    color: var(--forest-dark);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 99px;
    box-shadow: var(--shadow-sm);
}

.product-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--forest);
}

.product-price {
    font-family: 'Outfit', sans-serif;
    font-size: 21px;
    font-weight: 800;
    color: var(--gold-dark);
    margin-bottom: 12px;
}

.product-price span {
    font-family: 'Poppins', sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--muted);
}

.product-min-order {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold-dark);
    margin-top: -6px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-card-content p {
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-action-btn {
    text-align: center;
    width: 100%;
    padding: 11px 20px;
    background: var(--gold-light);
    color: var(--gold-dark);
    font-weight: 700;
    font-size: 14px;
    border-radius: 999px;
    border: 1px solid rgba(201, 147, 58, 0.25);
    transition: var(--transition);
}

.product-card:hover .product-action-btn {
    background: var(--forest);
    color: var(--paper);
    border-color: var(--forest);
}

/* Two-Column Split Layout & Band Panels */
.split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.image-frame {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--line);
    background: var(--paper);
    padding: 8px;
    transition: var(--transition);
}

.image-frame:hover {
    transform: scale(1.01);
    box-shadow: var(--shadow-lg);
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: calc(var(--border-radius-md) - 6px);
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat {
    padding: 24px;
    border-radius: var(--border-radius-md);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    transition: var(--transition);
}

.stat:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--gold);
}

.stat strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    color: var(--gold);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 6px;
}

.stat span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13.5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.band {
    background: var(--paper);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

/* Testimonial/Client Carousel */
.carousel-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    padding: 0 40px;
}

.carousel {
    position: relative;
    overflow: hidden;
    padding: 10px 0;
}

.carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide {
    flex: 0 0 min(340px, 100%);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.slide:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201, 147, 58, 0.15);
}

.client-img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.slide-content {
    padding: 24px;
    flex-grow: 1;
}

.slide-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 6px;
}

.slide p {
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Carousel Control Buttons */
.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--paper);
    color: var(--forest);
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.nav:hover {
    background: var(--forest);
    color: var(--paper);
    border-color: var(--forest);
    box-shadow: var(--shadow-md);
}

.prev { left: -8px; }
.next { right: -8px; }

/* Testimonials Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cream-dark);
    cursor: pointer;
    transition: var(--transition);
}

.indicator-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

/* Founder Details Layout */
.founder-box {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.founder-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: calc(var(--border-radius-md) - 6px);
}

/* Quality Lists & Cards */
.promise-card {
    padding: 36px;
    background: var(--paper);
    border-left: 4px solid var(--gold);
}

.promise-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.quality-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 16px;
}

.quality-list li {
    position: relative;
    padding: 16px 20px 16px 44px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--border-radius-sm);
    font-size: 15px;
    line-height: 1.6;
    transition: var(--transition);
}

.quality-list li:hover {
    background: var(--paper);
    border-color: var(--gold);
    transform: translateX(4px);
}

.quality-list li::before {
    content: "✓";
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(201, 147, 58, 0.15);
    color: var(--gold-dark);
    font-weight: 800;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certificate-img {
    width: min(420px, 100%);
    margin-top: 24px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--line);
    transition: var(--transition);
}

.certificate-img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

/* Premium Product Detail Pages Styles */
.detail-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 50px;
    align-items: start;
}

/* Solid Premium White Container for Product Details - Protects against green background images */
.detail-container {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 48px;
    margin-bottom: 40px;
}

.product-gallery {
    position: sticky;
    top: 110px;
}

.product-main-img {
    width: 100%;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--line);
    object-fit: cover;
    max-height: 480px;
    transition: var(--transition);
}

.product-main-img:hover {
    transform: scale(1.01) translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Two-Image Gallery Thumbnail Support */
.product-gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 18px;
}

.gallery-thumb-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--border-radius-md);
    padding: 6px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.gallery-thumb-card:hover, .gallery-thumb-card.active {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.gallery-thumb-card img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: calc(var(--border-radius-md) - 4px);
    background: var(--gold-light);
}

.thumb-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
}

.gallery-thumb-card:hover .thumb-label, .gallery-thumb-card.active .thumb-label {
    color: var(--gold-dark);
}

.product-info-panel {
    display: flex;
    flex-direction: column;
}

/* Strict High Contrast breadcrumbs - overrides default link colors to slate-gray */
.product-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--muted) !important;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-breadcrumbs a {
    color: var(--muted) !important;
    text-decoration: none;
}

.product-breadcrumbs a:hover {
    color: var(--gold-dark) !important;
}

.product-breadcrumbs span {
    color: var(--line) !important;
}

.detail-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--forest);
    line-height: 1.15;
    margin-bottom: 12px;
}

.detail-price-box {
    padding: 16px 24px;
    background: var(--gold-light);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(201, 147, 58, 0.25);
    display: inline-flex;
    flex-direction: column;
    align-self: flex-start;
    margin-bottom: 24px;
}

.price-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.detail-price {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--forest-dark);
    line-height: 1;
}

.detail-price span {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--muted);
}

.detail-desc {
    font-size: 16px;
    color: var(--ink);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Accordion Tab Panel */
.accordion {
    margin-top: 10px;
    border-top: 1px solid var(--line);
    margin-bottom: 30px;
}

.accordion-item {
    border-bottom: 1px solid var(--line);
}

.accordion-trigger {
    width: 100%;
    padding: 18px 0;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--forest);
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.accordion-trigger:hover {
    color: var(--gold-dark);
}

.accordion-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
    color: var(--gold);
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-inner {
    padding-bottom: 20px;
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.7;
}

.accordion-inner table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 8px;
}

.accordion-inner th, .accordion-inner td {
    padding: 8px 12px;
    border-bottom: 1px solid var(--cream-dark);
    text-align: left;
}

/* Strict text color definitions inside accordion tables to prevent clashing on any green backgrounds */
.accordion-inner th {
    font-weight: 700;
    color: var(--leaf) !important;
    width: 40%;
}

.accordion-inner td {
    color: var(--ink) !important;
}

.detail-action-card {
    padding: 24px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.detail-action-card h4 {
    font-size: 18px;
    font-weight: 700;
}

.detail-action-card p {
    font-size: 13.5px;
    margin: 0;
}

/* Beautiful Interactive Contact Form */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-card {
    padding: 36px;
}

.contact-card h2 {
    font-size: 28px;
    margin-bottom: 24px;
}

.contact-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-label {
    display: block;
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.contact-item a {
    font-size: 18px;
    font-weight: 700;
    color: var(--forest);
}

.contact-item a:hover {
    color: var(--gold-dark);
}

.contact-item p {
    font-size: 15px;
    color: var(--ink);
    margin-bottom: 0;
    line-height: 1.6;
}

.map-frame {
    width: 100%;
    min-height: 480px;
    border: 0;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--line);
}

/* Form Styling */
.enquiry-form-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--border-radius-md);
    padding: 36px;
    box-shadow: var(--shadow-md);
}

.enquiry-form-card h3 {
    font-size: 26px;
    margin-bottom: 8px;
}

.enquiry-form-card p {
    font-size: 14.5px;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-control {
    width: 100%;
    min-height: 46px;
    padding: 10px 16px;
    border: 1.5px solid var(--line);
    background: var(--cream);
    border-radius: var(--border-radius-sm);
    font-family: inherit;
    font-size: 15px;
    color: var(--ink);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--paper);
    box-shadow: 0 0 0 3px rgba(201, 147, 58, 0.15);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.form-submit-btn {
    width: 100%;
    background: var(--forest);
    color: var(--paper);
    border: none;
    padding: 14px 28px;
    font-weight: 700;
    font-size: 15.5px;
    border-radius: 999px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.form-submit-btn:hover {
    background: var(--gold);
    color: var(--forest-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow), 0 10px 20px rgba(201, 147, 58, 0.2);
}

/* Footer Section */
footer {
    background: var(--forest-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 48px 24px;
    text-align: center;
    border-top: 2px solid var(--gold);
}

footer p {
    margin: 0;
    font-size: 14.5px;
}

/* Continuous Floating Pulse WhatsApp Button */
.whatsapp-float {
    position: fixed;
    right: 28px;
    bottom: 28px;
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 12px 36px rgba(18, 60, 47, 0.25);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.35);
    z-index: -1;
    opacity: 1;
    animation: pulseRing 1.8s cubic-bezier(0.25, 0, 0, 1) infinite;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.05);
    background: #1ebe57;
}

.whatsapp-tooltip {
    position: absolute;
    right: 76px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: var(--forest-dark);
    color: var(--paper);
    padding: 8px 14px;
    border-radius: var(--border-radius-sm);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--gold);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background: var(--forest-dark);
    border-right: 1px solid var(--gold);
    border-top: 1px solid var(--gold);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

@keyframes pulseRing {
    0% { transform: scale(0.95); opacity: 0.95; }
    100% { transform: scale(1.3); opacity: 0; }
}

/* Scroll-triggered Micro-animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Delay modifiers */
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* Responsive Mobile Navigation Styles */
@media (max-width: 960px) {
    .menu-toggle {
        display: flex;
    }
    
    /* Slide out Mobile Drawer */
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 80%);
        height: 100vh;
        background: var(--forest-dark);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 90px 24px 40px;
        gap: 8px;
        box-shadow: -10px 0 40px rgba(12, 37, 30, 0.4);
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        overflow-y: auto;
    }
    
    nav.open {
        right: 0;
    }
    
    nav a {
        width: 100%;
        font-size: 16px;
        padding: 14px 20px;
        border-radius: var(--border-radius-sm);
        border: 1px solid transparent;
    }
    
    nav a::after {
        display: none;
    }
    
    nav a:hover, nav a.active {
        background: rgba(255, 255, 255, 0.08);
        color: var(--gold);
        border-color: rgba(201, 147, 58, 0.15);
    }
    
    .grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }
    
    .grid.four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .split, .founder-box, .contact-layout, .detail-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-gallery {
        position: relative;
        top: 0;
    }
}

@media (max-width: 640px) {
    header {
        top: 12px !important;
        width: calc(100% - 24px) !important;
        border-radius: 24px !important;
        padding: 0 !important;
    }
    
    .navbar {
        padding: 6px 12px !important;
        gap: 10px;
    }
    
    .logo-section {
        gap: 10px;
    }
    
    .logo {
        width: 46px !important;
        height: 46px !important;
    }
    
    .site-title {
        font-size: 16.5px !important;
    }
    
    .tagline {
        font-size: 7.5px !important;
        letter-spacing: 0.08em !important;
    }
    
    .section {
        width: calc(100% - 32px);
        padding: 40px 0;
    }
    
    .detail-container {
        padding: 24px 16px;
        margin-bottom: 24px;
        border-radius: var(--border-radius-md);
    }
    
    .hero, .page-hero {
        min-height: 400px;
    }
    
    .hero-content, .page-hero-content {
        padding: 40px 0;
    }
    
    .hero h1, .hero h2, .page-hero h1, .page-hero h2 {
        font-size: 34px;
        overflow-wrap: anywhere;
    }
    
    .hero p, .page-hero p, .lead {
        font-size: 15.5px;
    }
    
    .grid, .grid.four {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card {
        padding: 20px;
    }

    .product-image-wrapper {
        height: 200px;
    }

    .product-card-content {
        padding: 16px;
    }

    .product-card-content h3 {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .product-price {
        font-size: 19px;
        margin-bottom: 8px;
    }

    .product-card-content p {
        font-size: 13.5px;
        line-height: 1.5;
        margin-bottom: 12px;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .carousel-wrapper {
        padding: 0;
    }
    
    .slide {
        flex-basis: 100%;
    }
    
    .nav {
        display: none;
    }
    
    .whatsapp-float {
        width: 54px;
        height: 54px;
        right: 16px;
        bottom: 16px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
    
    .contact-card, .enquiry-form-card {
        padding: 24px 20px;
    }
    
    .detail-title {
        font-size: 28px;
    }
    
    .detail-price {
        font-size: 26px;
    }
    
    .product-gallery-thumbnails {
        gap: 10px;
    }
    
    .gallery-thumb-card img {
        height: 80px;
    }
}

@media (max-width: 380px) {
    .logo {
        width: 52px;
        height: 52px;
    }
    
    .site-title {
        font-size: 15px;
    }
    
    .tagline {
        font-size: 7px;
        letter-spacing: 0.1em;
    }
    
    .hero h1, .hero h2, .page-hero h1, .page-hero h2 {
        font-size: 30px;
    }
    
    .btn, .btn-outline {
        width: 100%;
        padding-inline: 18px;
    }
}

/* ==========================================================================
   Shree Traders in Numbers (Animated Stats Breakout)
   ========================================================================== */
.stats-breakout {
    background: radial-gradient(circle at 50% 50%, var(--forest) 0%, var(--forest-dark) 100%);
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    padding: 80px 0;
    color: var(--paper);
    position: relative;
    overflow: hidden;
}

.stats-breakout::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(201, 147, 58, 0.15) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.25;
    z-index: 1;
}

.stats-breakout-container {
    position: relative;
    z-index: 2;
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
}

.stats-breakout-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
}

.stats-breakout-header h2 {
    font-family: 'Outfit', sans-serif;
    color: var(--paper) !important;
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 12px;
}

.stats-breakout-header p {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 0;
}

.stats-breakout-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    text-align: center;
}

.stats-breakout-item {
    padding: 24px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.stats-breakout-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(201, 147, 58, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(18, 60, 47, 0.35);
}

.counter-number-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 6px;
}

.counter-number {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 0 15px rgba(201, 147, 58, 0.2);
}

.counter-suffix {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
    margin-left: 2px;
}

.counter-label {
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.4;
    margin-top: 6px;
}

/* Responsive breakout grid */
@media (max-width: 1024px) {
    .stats-breakout-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .stats-breakout {
        padding: 40px 0;
    }
    
    .stats-breakout-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .stats-breakout-item {
        padding: 12px 10px;
    }
}

/* ==========================================================================
   Service Locations Footprint Grid & Statewide Banner
   ========================================================================== */
.location-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.location-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--border-radius-md);
    padding: 24px;
    transition: var(--transition);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201, 147, 58, 0.25);
}

.location-icon {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--gold);
    display: inline-block;
}

.location-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--forest);
}

.location-card p {
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--muted);
    margin-bottom: 0;
}

.statewide-banner {
    background: linear-gradient(135deg, var(--forest) 0%, var(--forest-dark) 100%);
    border: 1px solid var(--gold);
    border-radius: var(--border-radius-md);
    padding: 40px;
    color: var(--paper);
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-md);
    margin-top: 30px;
    overflow: hidden;
}

.statewide-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(201, 147, 58, 0.15) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.25;
    z-index: 1;
}

.banner-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--forest-dark);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 14px;
    border-radius: 99px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 2;
}

.statewide-banner h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--paper) !important;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.statewide-banner p {
    font-size: 15.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Responsive grid for locations */
@media (max-width: 1024px) {
    .location-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .location-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding-inline: 8px;
    }
    .location-card {
        padding: 20px 16px;
    }
    .statewide-banner {
        padding: 30px 20px;
    }
    .statewide-banner h3 {
        font-size: 22px;
    }
    .statewide-banner p {
        font-size: 14px;
    }
}

/* ==========================================================================
   Language Switcher & Bilingual Support Styles
   ========================================================================== */
:root {
    --font-tamil: 'Mukta Malar', 'Noto Sans Tamil', sans-serif;
}

/* Apply Tamil font support globally to elements when viewing in Tamil language context */
html[lang="ta"], html[lang="ta"] body, html[lang="ta"] h1, html[lang="ta"] h2, html[lang="ta"] h3, html[lang="ta"] h4, html[lang="ta"] h5, html[lang="ta"] h6, html[lang="ta"] .site-title, html[lang="ta"] .tagline {
    font-family: var(--font-tamil) !important;
}

.lang-switcher-container {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 16px;
    position: relative;
}

.lang-switcher-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 14px;
    border-radius: 99px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--paper);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    cursor: pointer;
    min-height: 36px;
}

.lang-switcher-btn:hover {
    background: rgba(201, 147, 58, 0.15);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-1px);
}

.lang-switcher-btn svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

.lang-switcher-btn.tamil-btn {
    font-family: var(--font-tamil);
}

/* Mobile Nav Drawer Switcher styling */
.mobile-lang-switcher {
    padding: 16px 20px;
    border-top: 1px solid var(--line);
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.mobile-lang-switcher a {
    flex: 1;
    text-align: center;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--forest);
    text-decoration: none;
    background: var(--paper);
    transition: var(--transition);
}

.mobile-lang-switcher a.active {
    background: var(--forest);
    color: var(--paper);
    border-color: var(--forest);
}

/* Floating Quick-Action Toggle Button - Visible globally on Desktop & Mobile Viewports */
.floating-lang-toggle {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 998; /* Just below the whatsapp float at bottom-right */
    background: var(--forest-dark);
    border: 1.5px solid var(--gold);
    color: var(--paper);
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 12.5px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    display: inline-flex; /* Always visible on both desktop & mobile */
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    cursor: pointer;
}

.floating-lang-toggle:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 20px rgba(201, 147, 58, 0.25);
    border-color: var(--paper);
    background: var(--forest);
}

.floating-lang-toggle svg {
    width: 14px;
    height: 14px;
}

/* Hide header lang switcher since it has been cleaned from DOM for clean layout */
.lang-switcher-container {
    display: none !important;
}

/* Tamil specific tagline styling to prevent overlapping and wrapping issues */
html[lang="ta"] .tagline {
    letter-spacing: 0.04em !important;
    font-size: 9.5px !important;
    white-space: nowrap !important;
}



/* ==========================================================================
   CROSS-BROWSER IMMUNE HERO BACKGROUND OVERLAYS
   Bypasses browser bugs relating to relative URLs in CSS variables
   ========================================================================== */
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.45;
    z-index: 1;
    transform: scale(1.05);
    animation: slowZoom 25s infinite alternate ease-in-out;
    pointer-events: none;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    z-index: 1;
    transform: scale(1.02);
    pointer-events: none;
}
