/* ==========================================================================
   Ghar Aangan - Premium CSS Stylesheet
   Project: Coming Soon Landing Page
   Branding: Cream (#FAF7F0), Earthy Forest Green (#1E3F20), Warm Gold (#D4AF37), Earthy Brown (#2B1E17)
   ========================================================================== */

/* Custom CSS Variables for Design Consistency */
:root {
    --bg-cream: #FAF7F0;
    --bg-cream-dark: #F5EFE6;
    --primary-green: #1E3F20;
    --primary-green-light: #2D5E30;
    --gold: #D4AF37;
    --gold-light: #E6C65E;
    --gold-dark: #B3912B;
    --text-dark: #2B1E17;
    --text-muted: #5C4B3E;
    --white: #FFFFFF;
    
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Outfit', 'Inter', sans-serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius-lg: 16px;
    --border-radius-md: 8px;
    --border-radius-sm: 4px;
    --box-shadow-premium: 0 10px 30px rgba(43, 30, 23, 0.08);
    --box-shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

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

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

body {
    background-color: var(--bg-cream);
    color: var(--text-dark);
    font-family: var(--font-sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.25;
}

p {
    color: var(--text-muted);
    font-weight: 400;
}

/* Reuseable Elements & Helper Classes */
.text-center { text-align: center; }
.text-right { text-align: right; }
.highlight-gold { color: var(--gold); }
.hidden { display: none !important; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--bg-cream);
    border: 1px solid var(--primary-green);
}

.btn-primary:hover {
    background-color: var(--primary-green-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(30, 63, 32, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
    background-color: var(--primary-green);
    color: var(--bg-cream);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(30, 63, 32, 0.1);
}

.btn-block {
    width: 100%;
    padding: 16px;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.92);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shadowPulse {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(3deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes floatReverse {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(10px) rotate(-3deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* Animation Classes */
.animate-fade-in { animation: fadeIn 1s ease forwards; }
.animate-slide-up { animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
.animate-slide-up-delay { animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards; opacity: 0; }
.animate-slide-up-delay-2 { animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards; opacity: 0; }
.animate-zoom-in { animation: zoomIn 1s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
.shadow-pulse { animation: shadowPulse 2.5s infinite; }

/* Scroll reveal initial state (activated via JS) */
.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Header & Navbar */
.header {
    background-color: rgba(250, 247, 240, 0.95);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(43, 30, 23, 0.05);
    padding: 12px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-contact-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-phone-header {
    text-decoration: none;
    color: var(--primary-green);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.nav-phone-header:hover {
    color: var(--gold-dark);
}

.nav-phone-header i {
    color: var(--gold);
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.brand-name {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--primary-green);
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-family: var(--font-sans);
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--gold-dark);
}

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

/* Hero Section */
.hero-section {
    position: relative;
    padding: 80px 0 100px;
    background-color: var(--bg-cream-dark);
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 75% 50%, rgba(212, 175, 55, 0.07) 0%, transparent 60%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(30, 63, 32, 0.08);
    color: var(--primary-green);
    padding: 8px 16px;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* Countdown Timer */
.countdown-wrapper {
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(214, 175, 55, 0.25);
    border-radius: var(--border-radius-lg);
    padding: 24px 30px;
    display: inline-block;
    backdrop-filter: blur(10px);
    box-shadow: var(--box-shadow-premium);
}

.countdown-label {
    font-family: var(--font-sans);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--gold-dark);
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 16px;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 65px;
}

.time-num {
    font-family: var(--font-sans);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-green);
    background: var(--white);
    padding: 6px 12px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    display: block;
    width: 100%;
    text-align: center;
    border-bottom: 3px solid var(--gold);
}

.time-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 6px;
    letter-spacing: 0.5px;
}

.time-separator {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 24px;
}

/* Hero Media with Floating elements */
.hero-media-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.media-glow-effect {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(var(--gold-light) 0%, transparent 65%);
    filter: blur(40px);
    opacity: 0.35;
    z-index: 1;
}

.hero-ghee-package {
    position: relative;
    z-index: 2;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(43, 30, 23, 0.15);
    border: 4px solid var(--white);
    transform: rotate(2deg);
    transition: var(--transition-smooth);
}

.hero-ghee-package:hover {
    transform: rotate(0deg) scale(1.03);
}

.hero-product-img {
    width: 100%;
    max-width: 380px;
    display: block;
    height: auto;
}

/* Hero FSSAI Badge & Container */
.hero-media-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    z-index: 2;
    position: relative;
}

.hero-fssai-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(250, 247, 240, 0.95); /* Matches body cream background */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid rgba(212, 175, 55, 0.35); /* Warm gold border */
    border-radius: 12px;
    padding: 6px 14px;
    box-shadow: 0 8px 24px rgba(43, 30, 23, 0.08);
    transition: var(--transition-smooth);
    margin-top: 10px;
}

.hero-fssai-badge:hover {
    transform: translateY(-2px);
    border-color: var(--gold);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.18);
}

.fssai-logo-img {
    height: 22px;
    width: auto;
    display: block;
}

.fssai-divider {
    width: 1px;
    height: 22px;
    background-color: rgba(43, 30, 23, 0.15);
}

.fssai-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.fssai-reg-label {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.fssai-reg-value {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
    font-family: var(--font-sans);
}

/* Floating decorations */
.floating-item {
    position: absolute;
    color: var(--gold);
    font-size: 1.8rem;
    z-index: 3;
    pointer-events: none;
}

.leaf-1 {
    top: 10%;
    left: -5%;
    color: var(--primary-green-light);
    animation: float 5s ease-in-out infinite;
}

.leaf-2 {
    bottom: 15%;
    right: -5%;
    color: var(--primary-green);
    animation: floatReverse 6s ease-in-out infinite;
}

.droplet {
    bottom: 20%;
    left: 5%;
    color: var(--gold);
    animation: float 4.5s ease-in-out infinite;
    font-size: 2.2rem;
}

/* Section Common Styles */
.section-header {
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    color: var(--gold-dark);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.6rem;
    color: var(--primary-green);
    margin-bottom: 16px;
}

.underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
    margin: 0 auto 20px;
    border-radius: 20px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Why Us Section */
.why-section {
    padding: 100px 0;
    background-color: var(--bg-cream);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.brand-story-media {
    position: relative;
}

.image-wrapper-gold {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow-premium);
    border: 3px solid var(--white);
}

.image-wrapper-gold::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid var(--gold);
    border-radius: inherit;
    pointer-events: none;
    z-index: 2;
    margin: 8px;
}

.brand-image {
    width: 100%;
    display: block;
    object-fit: cover;
    transition: var(--transition-smooth);
    height: auto;
}

.brand-image:hover {
    transform: scale(1.04);
}

.why-pillars-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.pillar-card {
    display: flex;
    gap: 20px;
    background: var(--white);
    padding: 24px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 20px rgba(43, 30, 23, 0.04);
    border: 1px solid rgba(43, 30, 23, 0.03);
    transition: var(--transition-smooth);
}

.pillar-card:hover {
    transform: translateX(8px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 30px rgba(43, 30, 23, 0.08);
}

.pillar-icon {
    font-size: 1.8rem;
    color: var(--primary-green);
    background: rgba(30, 63, 32, 0.06);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.pillar-card:hover .pillar-icon {
    background: var(--primary-green);
    color: var(--bg-cream);
}

.pillar-info h3 {
    font-size: 1.3rem;
    color: var(--primary-green);
    margin-bottom: 6px;
}

.pillar-info p {
    font-size: 0.95rem;
}

/* Parallax Divider */
.banner-parallax {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(30, 63, 32, 0.85) 0%, rgba(43, 30, 23, 0.85) 100%);
    pointer-events: none;
}

.parallax-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.parallax-title {
    font-size: 3rem;
    margin-bottom: 16px;
    color: var(--bg-cream);
}

.parallax-text {
    font-size: 1.3rem;
    color: var(--bg-cream-dark);
    margin-bottom: 32px;
}

.badges-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.badge-item i {
    color: var(--gold);
}

/* Product Section */
.product-section {
    padding: 100px 0;
    background-color: var(--bg-cream-dark);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.product-highlights-left, .product-highlights-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.highlight-item {
    display: flex;
    gap: 20px;
}

.highlight-item.text-right {
    flex-direction: row-reverse;
}

.highlight-icon-wrapper {
    width: 50px;
    height: 50px;
    background-color: var(--white);
    border: 2px solid var(--gold);
    color: var(--gold-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.highlight-text h3 {
    font-size: 1.2rem;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.highlight-text p {
    font-size: 0.9rem;
}

.product-center-img-wrapper {
    display: flex;
    justify-content: center;
    position: relative;
}

.product-detail-img {
    width: 100%;
    max-width: 360px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(43, 30, 23, 0.1);
    border: 4px solid var(--white);
    transition: var(--transition-smooth);
}

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

/* Health Benefits Section */
.benefits-section {
    padding: 100px 0;
    background-color: var(--bg-cream);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-premium);
    text-align: center;
    border-top: 5px solid var(--gold);
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-top-color: var(--primary-green);
    box-shadow: 0 15px 40px rgba(43, 30, 23, 0.12);
}

.benefit-img-icon {
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 24px;
    background: rgba(30, 63, 32, 0.05);
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.benefit-card:hover .benefit-img-icon {
    background: var(--gold);
    color: var(--white);
    transform: rotate(360deg);
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: var(--primary-green);
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 0.9rem;
}

/* FAQ Accordion Section */
.faq-section {
    padding: 100px 0;
    background-color: var(--bg-cream-dark);
}

.faq-accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: 0 2px 10px rgba(43, 30, 23, 0.02);
    overflow: hidden;
    border: 1px solid rgba(43, 30, 23, 0.04);
}

.faq-question {
    width: 100%;
    padding: 22px 28px;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-green);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    background-color: rgba(30, 63, 32, 0.02);
}

.faq-question.active {
    color: var(--gold-dark);
    border-bottom: 1px solid rgba(43, 30, 23, 0.05);
}

.faq-arrow {
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    color: var(--gold);
}

.faq-question.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 28px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
    background-color: var(--bg-cream-dark);
}

.faq-answer.show {
    max-height: 2500px;
    padding: 20px 28px 24px;
    transition: max-height 0.4s cubic-bezier(1, 0, 1, 0), padding 0.3s ease;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* FAQ Product Pricing Layout styles */
.pricing-list-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.pricing-category-group {
    background: rgba(30, 63, 32, 0.03);
    border: 1px solid rgba(30, 63, 32, 0.08);
    border-radius: 12px;
    padding: 15px 20px;
}

.pricing-category-group h4 {
    font-size: 0.95rem;
    color: var(--primary-green);
    margin-bottom: 12px;
    font-weight: 600;
    border-bottom: 1px dashed rgba(30, 63, 32, 0.12);
    padding-bottom: 8px;
    font-family: var(--font-serif);
}

.pricing-category-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-category-group ul li {
    font-size: 0.88rem;
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.pricing-category-group ul li:last-child {
    margin-bottom: 0;
}

.pricing-category-group ul li span {
    color: var(--text-muted);
}

.pricing-category-group ul li strong {
    color: var(--primary-green);
    font-weight: 600;
}

/* Pre-Book Form Section */
.prebook-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, #112612 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.prebook-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(var(--gold) 0%, transparent 65%);
    filter: blur(80px);
    opacity: 0.12;
}

.prebook-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.prebook-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(212, 175, 55, 0.15);
    color: var(--gold-light);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.prebook-title {
    font-size: 2.8rem;
    color: var(--bg-cream);
    margin-bottom: 24px;
}

.prebook-desc {
    font-size: 1.1rem;
    color: #C2D4C3;
    margin-bottom: 36px;
}

.prebook-perks {
    list-style: none;
}

.prebook-perks li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: var(--bg-cream);
}

.prebook-perks li i {
    color: var(--gold);
    margin-top: 5px;
    flex-shrink: 0;
}

/* Pre-booking Trust Banner */
.prebook-trust-banner-container {
    margin-top: 30px;
    width: 100%;
}

.prebook-trust-banner {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: var(--border-radius-lg);
    border: 3px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
    transition: var(--transition-smooth);
    display: block;
}

.prebook-trust-banner:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.7);
    box-shadow: 0 16px 36px rgba(212, 175, 55, 0.22);
}

/* Glassmorphic Form Card */
.form-card-wrapper {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.form-card-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-card-header h3 {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 8px;
}

.form-card-header p {
    color: #A3C2A5;
    font-size: 0.9rem;
}

.prebook-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.input-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--bg-cream);
    display: flex;
    align-items: center;
    gap: 8px;
}

.input-group label i {
    color: var(--gold);
}

.input-group input, .input-group select {
    background: rgba(17, 38, 18, 0.45); /* Solid premium dark green tint */
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 14px 18px;
    border-radius: var(--border-radius-md);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: var(--transition-smooth);
    width: 100%;
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.input-group input:focus, .input-group select:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(17, 38, 18, 0.65);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
}

/* Stylize select options and optgroups for dark theme background compatibility */
.input-group select option,
.input-group select optgroup {
    background-color: #112612 !important; /* Matches prebook-section background */
    color: var(--bg-cream) !important;
}

/* Custom Autofill Styles to override browser white/yellow default backgrounds */
.input-group input:-webkit-autofill,
.input-group input:-webkit-autofill:hover, 
.input-group input:-webkit-autofill:focus, 
.input-group input:-webkit-autofill:active,
.input-group select:-webkit-autofill,
.input-group select:-webkit-autofill:hover, 
.input-group select:-webkit-autofill:focus, 
.input-group select:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0px 1000px #1e3f20 inset !important; /* solid primary green */
    -webkit-text-fill-color: var(--bg-cream) !important;
    transition: background-color 5000s ease-in-out 0s;
}

.error-msg {
    color: #FF6B6B;
    font-size: 0.8rem;
    font-weight: 500;
    display: none;
}

.input-group.error input, .input-group.error select {
    border-color: #FF6B6B;
    box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.15);
}

.input-group.error .error-msg {
    display: block;
}

#submit-btn {
    border: 1px solid var(--gold);
    background: var(--gold);
    color: var(--text-dark);
}

#submit-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

/* Spinner anim inside button */
.btn-spinner {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Footer Section */
.footer {
    background-color: var(--text-dark);
    color: var(--bg-cream-dark);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-col h3 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--gold);
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--gold);
}

.footer-brand-name {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
}

.footer-brand-desc {
    font-size: 0.9rem;
    color: #9C8C80;
    margin-bottom: 24px;
    line-height: 1.7;
}

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

.social-links a {
    color: var(--bg-cream);
    background-color: rgba(255, 255, 255, 0.05);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background-color: var(--gold);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.links-col ul a {
    color: #9C8C80;
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 0.95rem;
}

.links-col ul a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.contact-col p {
    color: #9C8C80;
    font-size: 0.95rem;
    margin-bottom: 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.contact-col p i {
    color: var(--gold);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #7A6C62;
}

.footer-bottom a:hover {
    color: var(--gold) !important;
}

.footer-gstin {
    margin-top: 10px;
    font-size: 0.85rem;
    color: #7A6C62;
    letter-spacing: 0.5px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 12px;
}

.footer-gstin span {
    font-weight: 600;
    color: var(--bg-cream-dark);
}

.footer-gstin .footer-sep {
    color: rgba(255, 255, 255, 0.15);
    font-weight: 400;
}

@media (max-width: 576px) {
    .footer-gstin {
        flex-direction: column;
        gap: 6px 0;
    }
    .footer-gstin .footer-sep {
        display: none;
    }
}

/* Sticky Mobile CTA Bar */
.mobile-sticky-cta {
    position: fixed;
    bottom: -100px; /* Initially hidden, slides in */
    left: 0;
    width: 100%;
    background-color: rgba(30, 63, 32, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 2px solid var(--gold);
    z-index: 99;
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.15);
    transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-sticky-cta.active {
    bottom: 0;
}

.mobile-cta-details {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.mobile-cta-price {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
}

.mobile-cta-sub {
    font-size: 0.75rem;
    color: #C2D4C3;
    font-weight: 500;
    text-transform: uppercase;
}

.mobile-cta-btn {
    border: 1px solid var(--gold);
    background-color: var(--gold);
    color: var(--text-dark);
}

/* Modal Popup Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 15, 12, 0.8);
    z-index: 1000;
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background: var(--bg-cream);
    border: 2px solid var(--gold);
    border-radius: var(--border-radius-lg);
    width: 90%;
    max-width: 450px;
    padding: 40px 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.modal-overlay.active .modal-card {
    transform: scale(1);
}

.modal-icon-wrapper {
    font-size: 4rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.check-anim {
    display: inline-block;
    animation: zoomIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.modal-title {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 12px;
}

.modal-text {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.modal-info-box {
    background: var(--bg-cream-dark);
    border: 1px dashed rgba(43, 30, 23, 0.15);
    border-radius: var(--border-radius-md);
    padding: 16px 20px;
    margin-bottom: 28px;
    text-align: left;
    font-size: 0.95rem;
}

.modal-info-box p {
    margin-bottom: 6px;
    color: var(--text-dark);
}

.modal-info-box p:last-child {
    margin-bottom: 0;
}

.modal-close-btn {
    border: 1px solid var(--primary-green);
    background-color: var(--primary-green);
    color: var(--white);
}

.modal-close-btn:hover {
    background-color: var(--primary-green-light);
}

/* Timed Form Popup Styles */
.popup-form-card {
    background: linear-gradient(135deg, var(--primary-green) 0%, #112612 100%) !important;
    border: 2px solid var(--gold) !important;
    color: var(--white) !important;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    width: 95%;
    max-width: 500px;
    padding: 35px 24px 25px 24px !important;
}

.popup-form-card .form-card-wrapper {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.popup-form-card .form-card-header {
    margin-bottom: 20px;
}

.popup-form-card .form-card-header h3 {
    font-size: 1.5rem;
    color: var(--white);
}

.popup-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #ff4d4d; /* Bright premium red for high visibility */
    font-size: 2.2rem;
    font-weight: 700; /* Bold */
    cursor: pointer;
    line-height: 1;
    z-index: 1010;
    transition: var(--transition-smooth);
    opacity: 0.9; /* Highly visible by default */
    padding: 5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4); /* Contrast shadow */
}

.popup-close-btn:hover {
    color: #ff1a1a; /* Brighter red on hover */
    opacity: 1;
    transform: scale(1.1); /* Subtle premium hover animation */
}

/* Custom styling for scrollbar in popup */
.popup-form-card::-webkit-scrollbar {
    width: 6px;
}

.popup-form-card::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.popup-form-card::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.3);
    border-radius: 3px;
}

.popup-form-card::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

/* Laptop & Large Screens (Desktop First default) */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    .why-grid, .prebook-container {
        gap: 40px;
    }
}

/* Tablets (landscape and portrait) */
@media (max-width: 992px) {
    html {
        font-size: 15px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-media-wrapper {
        order: -1; /* Puts image above text on smaller viewports */
    }
    
    .hero-ghee-package {
        transform: rotate(0deg);
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .brand-story-media {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-highlights-left, .product-highlights-right {
        gap: 30px;
    }
    
    .highlight-item, .highlight-item.text-right {
        flex-direction: row;
        text-align: left;
    }
    
    .product-center-img-wrapper {
        order: -1;
        margin-bottom: 20px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .prebook-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-col.brand-col {
        grid-column: span 2;
    }
}

/* Mobile Toggle Hamburger Button styling (hidden on desktop) */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
    padding: 0;
    z-index: 101;
}

.mobile-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--primary-green);
    border-radius: 5px;
    transition: var(--transition-smooth);
}

.mobile-toggle.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background-color: var(--gold-dark);
}

.mobile-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background-color: var(--gold-dark);
}

/* Mobile Devices */
@media (max-width: 768px) {
    .header {
        padding: 10px 0;
    }
    
    .navbar {
        position: relative;
        flex-direction: row !important;
        justify-content: center !important;
        padding: 0 16px;
    }
    
    .mobile-toggle {
        display: flex; /* Show toggle button on mobile */
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(250, 247, 240, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 2px solid var(--gold);
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 12px 0;
        box-shadow: 0 12px 25px rgba(43, 30, 23, 0.1);
        
        /* Dropdown transitions */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                    visibility 0.3s ease;
        pointer-events: none;
        z-index: 99;
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
    
    .nav-menu .nav-link {
        width: 100%;
        text-align: center;
        padding: 14px 0;
        font-size: 1.05rem;
        border-bottom: 1px solid rgba(43, 30, 23, 0.05);
    }
    
    .nav-menu .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-menu .nav-link::after {
        display: none;
    }
    
    .nav-menu .nav-link:hover {
        background-color: rgba(30, 63, 32, 0.02);
        color: var(--gold-dark);
    }
    
    .nav-cta {
        display: none; /* Hide header CTA in favor of sticky bottom CTA */
    }
    
    .nav-contact-group {
        display: none; /* Hide whole header contact group on mobile */
    }
    
    .hero-section {
        padding: 50px 0 80px;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .countdown-timer {
        gap: 10px;
    }
    
    .time-box {
        min-width: 50px;
    }
    
    .time-num {
        font-size: 1.6rem;
        padding: 6px 8px;
    }
    
    .time-separator {
        font-size: 1.4rem;
        margin-bottom: 16px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .parallax-title {
        font-size: 2.2rem;
    }
    
    .parallax-text {
        font-size: 1.1rem;
    }
    
    .badges-row {
        gap: 15px;
    }
    
    .badge-item {
        font-size: 0.9rem;
        padding: 6px 14px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .prebook-title {
        font-size: 2.2rem;
    }
    
    .prebook-perks li {
        font-size: 0.95rem;
        margin-bottom: 12px;
        line-height: 1.5;
    }
    
    .prebook-perks li i {
        margin-top: 4px;
    }
    
    .form-card-wrapper {
        padding: 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-col.brand-col {
        grid-column: span 1;
    }
    
    .footer {
        padding-bottom: 110px; /* Offset to prevent bottom sticky CTA bar from hiding footer text */
    }
    
    .mobile-sticky-cta {
        display: flex; /* Displays on mobile */
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .countdown-wrapper {
        width: 100%;
        padding: 16px;
    }
}

/* ==========================================================================
   7. Recent Booking Notification Toast
   ========================================================================== */
.booking-toast-container {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 1000;
    pointer-events: none;
}

.booking-toast {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(30, 63, 32, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 163, 89, 0.45);
    border-radius: var(--border-radius-lg);
    padding: 12px 18px;
    box-shadow: 0 12px 30px rgba(43, 30, 23, 0.18);
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.6s ease;
    max-width: 360px;
    pointer-events: auto;
}

.booking-toast.active {
    transform: translateY(0);
    opacity: 1;
}

.booking-toast-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 163, 89, 0.15);
    border: 1px solid rgba(212, 163, 89, 0.3);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    min-width: 38px;
    color: var(--gold-light);
    font-size: 1.1rem;
}

.booking-toast-content {
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.88rem;
    line-height: 1.45;
    flex-grow: 1;
}

.booking-toast-content strong {
    color: var(--gold-light);
    font-weight: 600;
}

.booking-toast-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    font-size: 0.9rem;
    padding: 4px;
    margin-left: 8px;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-toast-close:hover {
    color: var(--gold-light);
    transform: scale(1.1);
}

/* Responsive adjustments to place it above the sticky bottom CTA on mobile */
@media (max-width: 768px) {
    .booking-toast-container {
        bottom: 90px; /* Sits elegantly above the mobile sticky CTA bar */
        left: 16px;
        right: 16px;
        display: flex;
        justify-content: center;
    }
    
    .booking-toast {
        width: 100%;
        max-width: 100%;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }
}

/* Form Row for side-by-side elements on desktop, stacked on mobile */
.form-row {
    display: flex;
    gap: 16px;
    width: 100%;
}

.form-row .input-group {
    flex: 1;
}

@media (max-width: 580px) {
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
}

/* ==========================================================================
   8. Policy Pages Styles
   ========================================================================== */
.policy-page {
    padding: 60px 0 100px;
    background-color: var(--bg-cream);
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 50px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-premium);
    border: 1px solid rgba(43, 30, 23, 0.05);
}

.policy-header {
    text-align: center;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 30px;
    margin-bottom: 40px;
}

.policy-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 12px;
}

.policy-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
}

.policy-content h2 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--primary-green);
    margin-top: 35px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(43, 30, 23, 0.08);
    padding-bottom: 6px;
}

.policy-content p {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 18px;
    line-height: 1.75;
}

.policy-content ul, .policy-content ol {
    margin-left: 28px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.policy-content li {
    margin-bottom: 10px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.policy-content strong {
    color: var(--primary-green);
}

@media (max-width: 768px) {
    .policy-page {
        padding: 40px 0 80px;
    }
    .policy-container {
        padding: 30px 20px;
    }
    .policy-title {
        font-size: 2.2rem;
    }
    .policy-content h2 {
        font-size: 1.4rem;
        margin-top: 25px;
    }
    .policy-content p, .policy-content li {
        font-size: 0.98rem;
    }
}

/* Policy Page Header Navigation Overrides */
.policy-nav {
    display: flex;
    gap: 32px;
}

@media (max-width: 768px) {
    .policy-header .navbar {
        flex-direction: row !important;
        justify-content: space-between !important;
        padding: 0 16px;
    }
    
    .policy-nav {
        display: flex !important; /* Ensure it stays visible on mobile */
    }
    
    .policy-header .logo-area {
        margin-right: 12px;
    }
}

@media (max-width: 580px) {
    .policy-nav .back-text-desktop {
        display: none !important; /* Hide 'to Home' text on narrow viewports */
    }
}

/* ==========================================================================
   9. New Pahadi Product Categories Styling
   ========================================================================== */
.product-categories-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.category-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(30, 63, 32, 0.05);
    border: 1px solid rgba(30, 63, 32, 0.06);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    width: calc(33.333% - 20px);
    min-width: 320px;
    max-width: 380px;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(30, 63, 32, 0.12);
    border-color: rgba(212, 175, 55, 0.45);
}

.category-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.category-card:hover .category-image {
    transform: scale(1.06);
}

.category-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(17, 38, 18, 0.85); /* Translucent forest green */
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: var(--bg-cream);
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    z-index: 2;
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.category-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.category-content h3 {
    font-size: 1.45rem;
    color: var(--primary-green);
    margin-bottom: 12px;
    font-family: var(--font-serif);
    font-weight: 600;
}

.category-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
}

.category-items {
    list-style: none;
    margin-top: auto; /* Push lists to exactly align at the bottom */
    border-top: 1px dashed rgba(30, 63, 32, 0.12);
    padding-top: 20px;
}

.category-items li {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.4;
}

.category-items li:last-child {
    margin-bottom: 0;
}

.category-items li i {
    color: var(--gold-dark);
    background: rgba(212, 175, 55, 0.12);
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.75rem;
    flex-shrink: 0;
}


/* ==========================================================================
   10. Pre-booking Price Preview Styles
   ========================================================================== */
.price-preview-box {
    margin-top: 14px;
    padding: 14px 18px;
    background-color: rgba(250, 247, 240, 0.06); /* Premium semi-transparent light cream */
    border: 1px solid rgba(212, 175, 55, 0.2); /* Soft gold border */
    border-left: 4px solid var(--gold); /* Thick gold highlight bar */
    border-radius: 6px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.12); /* Subtle gold background glow */
    animation: fadeInDown 0.3s ease-out;
}

.price-preview-box.hidden {
    display: none;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.price-label {
    font-size: 0.95rem;
    color: var(--white); /* Bright white text for maximum readability */
    font-weight: 600;
    font-family: var(--font-sans);
}

.price-amount {
    font-size: 1.4rem;
    color: var(--gold); /* Bright gold accent */
    font-weight: 700;
    font-family: var(--font-sans);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.6); /* Gold text glow effect */
}

.price-disclaimer {
    font-size: 0.88rem;
    color: rgba(250, 247, 240, 0.85); /* Highly visible light cream text */
    line-height: 1.4;
    margin: 0;
    font-weight: 400;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

