/* =============================================
   SHUKRIYA BASMATI - PREMIUM UI
   Forest Green & Olive Palette
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
    /* Golden-First Palette */
    --color-bg: #F1F2ED;        /* Light off-white - main backgrounds */
    --color-golden: #EBD5AB;    /* Premium golden - primary accent */
    --color-golden-hover: #D4BC7A; /* Darker golden - hover states */
    --color-olive-light: #EBD5AB;  /* Alias for golden */
    --color-olive: #5B6D49;     /* Medium olive - secondary */
    --color-forest: #0C3C01;    /* Dark forest green - header, hero */
    --color-cta: #000000;      /* Black - CTA buttons */
    /* Derived */
    --color-cream: #F1F2ED;
    --color-cream-dark: #e8e9e4;
    --color-dark: #0C3C01;
    --color-brown: #000000;
    --color-sage: #EBD5AB;
    --color-white: #FFFFFF;
    --color-text: #2E2D1D;
    --color-text-muted: #3d3d2e;
    --shadow-soft: 0 4px 24px rgba(12, 60, 1, 0.08);
    --shadow-card: 0 8px 40px rgba(12, 60, 1, 0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }
* { box-sizing: border-box; margin: 0; padding: 0; }

/* Fade-up scroll animation for sections */
main section:not(.hero-slider-wrap),
main .page-hero {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

main section:not(.hero-slider-wrap).fade-up-visible,
main .page-hero.fade-up-visible {
    opacity: 1;
    transform: translateY(0);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 17px;
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    color: var(--color-brown);
    line-height: 1.2;
}

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

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

/* ========== NAVBAR ========== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    pointer-events: none;
}

/* Top bar - contact & one-liner */
.nav-topbar {
    background: #0a0a0a;
    padding: 0.4rem 1.5rem;
    font-size: 0.8rem;
    pointer-events: auto;
}

.nav-topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.nav-oneliner {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

.nav-topbar-contact {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-topbar-contact a {
    color: rgba(255,255,255,0.85);
    transition: var(--transition);
}

.nav-topbar-contact a:hover {
    color: var(--color-golden);
}

@media (max-width: 640px) {
    .nav-topbar-contact { display: none; }
    .nav-oneliner { font-size: 0.75rem; }
}

/* Floating pill - black */
.site-header .nav-pill-wrap {
    padding: 1rem 1.5rem 0.5rem;
    pointer-events: none;
}

.nav-pill {
    max-width: 1100px;
    margin: 0 auto;
    background: #000000;
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    box-shadow: 0 4px 30px rgba(0,0,0,0.4), 0 2px 12px rgba(0,0,0,0.2);
    pointer-events: auto;
    transition: var(--transition);
}

.nav-pill.scrolled {
    box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}

.nav-pill-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 42px;
}

.site-logo img { 
    height: 48px; 
    width: auto;
    opacity: 0.95;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    list-style: none;
}

.nav-menu li { position: relative; }

.nav-menu a {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: rgba(255,255,255,0.95) !important;
    border-radius: 25px;
    transition: var(--transition);
}

.nav-menu a:hover {
    background: rgba(235,213,171,0.2);
    color: var(--color-golden) !important;
}

.nav-menu a.active {
    background: rgba(235,213,171,0.25);
    color: var(--color-golden) !important;
}

.nav-menu a.nav-cta,
.nav-cta {
    margin-left: 0.5rem;
    padding: 0.4rem 1.5rem !important;
    background: var(--color-golden) !important;
    color: #000000 !important;
    font-weight: 600;
    border-radius: 25px !important;
}

.nav-menu a.nav-cta:hover,
.nav-cta:hover {
    background: var(--color-golden-hover) !important;
    color: #000000 !important;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition);
}

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

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

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

/* ========== HERO SLIDER ========== */
.hero-slider-wrap {
    position: relative;
    min-height: 95vh;
    margin-top: 0;
}

.hero-slider .swiper-slide {
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 7rem 2rem 4rem;
}

.hero-slider .slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    -webkit-background-attachment: fixed;
    background-attachment: fixed;
}

@media (max-width: 768px) {
    .hero-slider .slide-bg {
        background-attachment: scroll;
    }
}

.hero-slider .slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12,60,1,0.82) 0%, rgba(91,109,73,0.45) 50%, rgba(12,60,1,0.78) 100%);
}

.hero-slider .slide-blinkit .slide-overlay {
    background: linear-gradient(180deg, rgba(12,60,1,0.5) 0%, rgba(12,60,1,0.75) 50%, rgba(12,60,1,0.85) 100%);
}

.hero-slider .slide-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease-out, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slider .swiper-slide-active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-golden);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-title {
    font-size: clamp(2.75rem, 7vw, 5rem);
    color: var(--color-bg);
    margin-bottom: 1rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5), 0 4px 24px rgba(0,0,0,0.4);
}

.hero-slider .slide-blinkit .slide-content .hero-title,
.hero-slider .slide-blinkit .slide-content .hero-subtitle {
    text-shadow: 0 2px 8px rgba(0,0,0,0.6), 0 4px 16px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(241,242,237,0.95);
    margin-bottom: 2rem;
}

/* Hide ALL Swiper arrows - hero & products */
.swiper-button-next,
.swiper-button-prev {
    display: none !important;
}

.hero-slider .swiper-pagination-bullet {
    background: var(--color-golden);
    opacity: 0.5;
}

.hero-slider .swiper-pagination-bullet-active {
    background: var(--color-golden);
    opacity: 1;
    transform: scale(1.2);
}

/* Buttons */
.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--color-cta);
    color: var(--color-bg);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.btn-modern:hover {
    background: var(--color-golden);
    color: #1a1a1a;
    transform: translateY(-2px);
}

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

.btn-modern.outline:hover {
    background: var(--color-golden);
    border-color: var(--color-golden);
    color: #1a1a1a;
}

.btn-modern.dark {
    background: var(--color-cta);
    color: var(--color-bg);
}

.btn-modern.dark:hover {
    background: var(--color-golden);
    color: #1a1a1a;
}

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

/* Product Carousel - Minimal */
.products-section-minimal {
    padding: 4rem 1.5rem 3rem;
    max-width: 1280px;
    margin: 0 auto;
    background: var(--color-bg);
    overflow: hidden;
}

.products-carousel-minimal .swiper-wrapper {
    align-items: stretch;
}

.products-section-minimal .section-header {
    margin-bottom: 2rem;
}

.products-carousel-minimal {
    padding: 0 1rem 2.5rem;
    overflow: hidden;
    max-width: 1140px;
    margin: 0 auto;
    width: 100%;
}

.products-carousel-minimal .swiper {
    overflow: hidden;
    width: 100%;
}

.products-carousel-minimal .swiper-slide {
    height: auto;
    box-sizing: border-box;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .products-carousel-minimal .swiper-slide {
        width: 100% !important;
        max-width: 100%;
    }
}

.products-carousel-minimal .products-pagination {
    position: relative;
    margin-top: 1.5rem;
}

.products-carousel-minimal .swiper-pagination-bullet {
    background: var(--color-golden-hover);
    opacity: 0.4;
    width: 8px;
    height: 8px;
}

.products-carousel-minimal .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--color-golden);
    transform: scale(1.2);
}

.product-card-minimal {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
    max-width: 100%;
}

.product-card-minimal:hover {
    border-color: rgba(235,213,171,0.5);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.product-card-minimal-img {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
}

.product-featured-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.6);
    color: var(--color-white);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

.product-card-minimal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.product-card-minimal-title {
    padding: 0.9rem 1rem 0.25rem;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.product-card-minimal-desc {
    padding: 0 1rem;
    font-size: 0.85rem;
    color: var(--color-text);
    margin: 0 0 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-minimal-link {
    display: block;
    padding: 0 1rem 1rem;
    font-size: 0.85rem;
    color: var(--color-text);
}

.product-card-minimal:hover .product-card-minimal-link {
    color: var(--color-forest);
}

.products-section-cta {
    text-align: center;
    margin-top: 0.5rem;
}

@media (min-width: 768px) {
    .products-section-minimal { padding: 4rem 2rem 3rem; }
    .products-carousel-minimal { padding: 0 2rem 2rem; }
}

@media (min-width: 1024px) {
    .products-carousel-minimal { padding: 0 3rem 2rem; }
}

/* Legacy carousel (About page) */
.products-carousel {
    padding: 1rem 2rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.products-carousel .swiper-slide { height: auto; padding: 0.5rem; }
.products-carousel .product-card { height: 100%; }
.products-carousel .swiper-pagination-bullet { background: var(--color-golden); opacity: 0.5; }
.products-carousel .swiper-pagination-bullet-active { opacity: 1; }

/* ========== SECTIONS ========== */
.section-modern {
    padding: 5rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-label {
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: clamp(2.25rem, 4vw, 3.5rem);
}

/* ========== PRODUCT CARDS ========== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 40px rgba(235,213,171,0.3);
}

.product-card-img {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
}

.product-card-img > span { position: absolute; }

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

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

.product-card-body {
    padding: 1.5rem;
}

.product-card-title {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-card-desc {
    font-size: 0.95rem;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.product-card-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.product-card-link:hover { color: var(--color-forest); }

/* ========== FEATURE BOXES ========== */
/* Why Choose Us - Parallax (same as Stats) */
.why-choose-section {
    position: relative;
    padding: 5rem 2rem;
    overflow: hidden;
}

.why-choose-parallax-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    -webkit-background-attachment: fixed;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.why-choose-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(205,220,195,0.78) 0%, rgba(225,238,215,0.82) 100%);
}

.why-choose-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-section .section-header {
    margin-bottom: 3rem;
}

.section-desc {
    font-size: 1rem;
    color: var(--color-text);
    margin-top: 0.75rem;
    font-weight: 400;
}

.why-choose-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 900px) {
    .why-choose-cards { grid-template-columns: 1fr; }
}

.why-card {
    background: var(--color-white);
    padding: 2.25rem 1.75rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(235,213,171,0.25);
    border-color: var(--color-golden);
}

.why-card-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--color-golden) 0%, var(--color-golden-hover) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
}

.why-card-icon svg {
    opacity: 0.95;
}

.why-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.why-card p {
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.7;
    margin: 0;
}

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

.feature-box {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(235,213,171,0.25);
    border: 1px solid rgba(235,213,171,0.4);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--color-golden), var(--color-golden-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 32px;
    height: 32px;
    filter: brightness(0);
}

.feature-box h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-box p {
    font-size: 0.95rem;
    color: var(--color-text);
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 500px) {
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

/* ========== CERTIFICATIONS + TESTIMONIAL (Parallax) ========== */
.certs-testimonial-section {
    position: relative;
    padding: 5rem 2rem;
    overflow: hidden;
}

.certs-testimonial-parallax-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    -webkit-background-attachment: fixed;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.certs-testimonial-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(241,242,237,0.88) 0%, rgba(255,255,255,0.92) 100%);
}

.certs-testimonial-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.certs-testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 900px) {
    .certs-testimonial-grid {
        grid-template-columns: 1fr;
    }
}

.certs-testimonial-left .section-label {
    margin-bottom: 0.5rem;
}

.certs-testimonial-left .section-title {
    margin-bottom: 1.5rem;
}

.certs-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

.cert-logo {
    margin: 0;
}

.cert-logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: grayscale(0.2);
}

.certs-testimonial-right {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: center;
}

@media (max-width: 600px) {
    .certs-testimonial-right {
        grid-template-columns: 1fr;
    }
}

.testimonial-badge {
    width: 120px;
    height: 120px;
    background: var(--color-cta);
    color: var(--color-bg);
    font-family: 'DM Serif Display', serif;
    font-size: 4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.testimonial-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.testimonial-quote {
    margin: 0.5rem 0 0;
    color: var(--color-text);
}

.testimonial-author {
    margin-top: 1rem;
    font-weight: 600;
}

/* ========== STATS ========== */
.stats-section {
    position: relative;
    color: var(--color-bg);
    padding: 4rem 2rem;
    overflow: hidden;
}

.stats-parallax-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    -webkit-background-attachment: fixed;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.stats-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12,60,1,0.88) 0%, rgba(12,60,1,0.92) 100%);
}

.stats-grid {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--color-golden);
    margin-bottom: 0.25rem;
}

.stat-item p {
    font-size: 0.9rem;
    color: rgba(241,242,237,0.9);
}

/* ========== PRODUCT DETAIL PAGE ========== */
.product-detail {
    padding: 8rem 2rem 5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 900px) {
    .product-detail-grid { grid-template-columns: 1fr; }
}

.product-detail-image {
    position: sticky;
    top: 120px;
}

.product-detail-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.product-detail-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.product-detail-desc {
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.product-features {
    list-style: none;
    margin: 1.5rem 0;
}

.product-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-golden);
    font-weight: bold;
}

.breadcrumb-modern {
    display: flex;
    gap: 0.5rem;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.breadcrumb-modern a:hover { color: var(--color-golden); }

/* ========== PAGE HEADER (Breadcrumb + Parallax) ========== */
.page-hero {
    position: relative;
    min-height: 320px;
    padding: 9rem 2rem 5rem;
    text-align: center;
    color: var(--color-bg);
    overflow: hidden;
}

.page-hero-parallax-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    -webkit-background-attachment: fixed;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12,60,1,0.88) 0%, rgba(91,109,73,0.85) 100%);
}

.page-hero-inner {
    position: relative;
    z-index: 1;
}

.page-hero .breadcrumb-modern {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    color: rgba(241,242,237,0.95);
}

.page-hero .breadcrumb-modern a {
    color: rgba(241,242,237,0.95);
}

.page-hero .breadcrumb-modern a:hover {
    color: var(--color-golden);
}

.page-hero .breadcrumb-modern span {
    color: rgba(241,242,237,0.7);
}

.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: inherit;
}

.page-hero p {
    font-size: 1.15rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0.5rem auto 0;
}

/* ========== ABOUT SECTION ========== */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.about-section-reverse .about-image { order: 2; }

.about-section-reverse .about-content { order: 1; }

@media (max-width: 900px) {
    .about-section { grid-template-columns: 1fr; }
    .about-section-reverse .about-image,
    .about-section-reverse .about-content { order: unset; }
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: var(--color-golden);
    border-radius: 50%;
    transform: translate(30%, 30%);
    opacity: 0.4;
}

.about-content h2 { margin-bottom: 1rem; }

.about-content p { margin-bottom: 1rem; color: var(--color-text); }

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

.about-features .af-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.about-features .af-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--color-golden);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-forest);
    font-weight: bold;
}

.about-features .af-item h5 { font-size: 1rem; margin-bottom: 0.25rem; }
.about-features .af-item p { font-size: 0.9rem; margin: 0; }

/* ========== CONTACT & ABOUT ========== */
.content-modern {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.content-modern h2 { margin: 2rem 0 1rem; }

.content-modern p { margin-bottom: 1rem; color: var(--color-text); }

/* ========== BRANCHES MAP ========== */
.branches-map-wrap {
    margin-bottom: 3rem;
}

.branches-map {
    height: 380px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.branches-map .leaflet-popup-content-wrapper {
    border-radius: var(--radius-sm);
}

/* ========== CONTACT ========== */
/* Contact Page - Split Layout */
.contact-page-section {
    padding: 4rem 2rem 5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-page-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 900px) {
    .contact-page-inner {
        grid-template-columns: 1fr;
    }
}

.contact-details .section-label {
    margin-bottom: 0.5rem;
}

.contact-info-card {
    background: var(--color-white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    margin-bottom: 1rem;
}

.contact-info-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-info-card p {
    margin: 0;
    color: var(--color-text);
}

.contact-info-card a {
    color: var(--color-forest);
}

.contact-info-card a:hover {
    color: var(--color-text);
}

.contact-social {
    margin-top: 2rem;
}

.contact-social .btn-modern.outline {
    border-color: var(--color-olive);
    color: var(--color-olive);
}

.contact-social .btn-modern.outline:hover {
    border-color: var(--color-golden);
    background: var(--color-golden);
    color: #1a1a1a;
}

.contact-form-wrap {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.contact-form .form-group {
    margin-bottom: 1.25rem;
}

.contact-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-golden);
    box-shadow: 0 0 0 3px rgba(235,213,171,0.2);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form .btn-modern {
    margin-top: 0.5rem;
}

.contact-success-msg {
    background: rgba(91,109,73,0.15);
    color: var(--color-olive);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.contact-card h4 { margin-bottom: 0.75rem; }

/* ========== GALLERY ========== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* ========== FOOTER ========== */
.site-footer {
    background: var(--color-forest);
    color: var(--color-bg);
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
}

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

@media (max-width: 768px) {
    .footer-content { grid-template-columns: 1fr; }
}

.footer-brand p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 1rem 0;
}

.footer-brand a:hover {
    color: var(--color-golden) !important;
}

.footer-social-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.1);
    color: var(--color-golden) !important;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 25px;
    transition: var(--transition);
}

.footer-social-btn:hover {
    background: var(--color-golden);
    color: #1a1a1a !important;
}

.footer-social-icon {
    padding: 0.55rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-social-icon svg {
    fill: currentColor;
}

.footer-links {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 2rem;
}

.footer-links a {
    color: rgba(241,242,237,0.9);
    display: block;
    padding: 0.3rem 0;
}

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

.footer-contact p { margin: 0.25rem 0; }

.footer-contact a:hover { color: var(--color-golden); }

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    opacity: 0.8;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-bottom-left { text-align: left; }
.footer-bottom-right { text-align: right; }

@media (max-width: 600px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-bottom-left, .footer-bottom-right { text-align: center; }
}

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

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .menu-toggle { 
        display: flex; 
        align-items: center;
        justify-content: center;
        min-width: 44px;
        min-height: 44px;
        flex-shrink: 0;
    }
    
    .nav-pill-wrap { padding: 0.75rem 1rem 0.5rem; }
    
    .nav-pill {
        padding: 0.5rem 1rem 0.5rem 1.25rem;
        margin: 0 0.5rem;
        width: calc(100% - 1rem);
    }
    
    .site-logo img { height: 40px; }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.96);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        padding: 5rem 1.5rem 2rem;
        z-index: 999;
        transition: opacity 0.3s ease, visibility 0.3s;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
    
    .nav-menu.active { 
        opacity: 1; 
        visibility: visible;
        pointer-events: auto;
    }
    
    .nav-menu li { width: 100%; max-width: 280px; }
    
    .nav-menu a { 
        padding: 1rem 1.25rem; 
        font-size: 1.05rem;
        justify-content: center;
        border-radius: 12px;
    }
    
    .nav-menu a.nav-cta { 
        margin-left: 0; 
        margin-top: 0.75rem;
        justify-content: center;
    }
    
    .product-detail-image { position: static; }
}
