/* Reset & Base Styles */
:root {
    /* Color Palette */
    --primary: #43030f;       /* Deep maroon */
    --primary-light: #5c1a1a; /* Lighter maroon */
    --secondary: #792113;     /* Rust */
    --accent: #d4a017;        /* Gold */
    --cream: #fff8dd;         /* Soft cream */
    --light-cream: #fffcf2;   /* Off-white */
    --dark: #1a1a1a;          /* Near black */
    --gray: #666666;          /* Medium gray */
    --light-gray: #e0e0e0;    /* Light gray */
    --white: #ffffff;         /* Pure white */
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;   /* 8px */
    --space-sm: 1rem;     /* 16px */
    --space-md: 1.5rem;   /* 24px */
    --space-lg: 2.5rem;   /* 40px */
    --space-xl: 4rem;     /* 64px */
    --space-xxl: 6rem;    /* 96px */
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    --header-offset: 120px;
}

@font-face {
    font-family: 'Theseason-BD';
    src: url('/fonts/headingtheseasonfont.otf') format('opentype');
    font-display: swap;
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Theseason-RG';
    src: url('/fonts/subheadingtheseasonfont.otf') format('opentype');
    font-display: swap;
    font-weight: 400;
    font-style: normal;
}

/* Reusable Section Heading Component */
.section-heading-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 0 20px;
    text-align: center;
}

.section-heading {
    font-family: 'Theseason-BD', serif;
    font-size: clamp(32px, 4.5vw, 52px);
    color: #43030f;
    font-weight: 400;
    line-height: 1.1;
    text-align: center;
    margin: 0 0 12px 0;
}

.section-heading-underline {
    width: 90px;
    height: 4px;
    background-color: #d4a637;
    border-radius: 2px;
    margin: 0 auto 24px auto;
    display: block;
}

.section-subtitle {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(14px, 1.5vw, 16px);
    color: #5e2a2e;
    line-height: 1.5;
    text-align: center;
    margin: 0 0 48px 0;
}

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

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

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--cream);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
    color: var(--primary);
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    margin-bottom: var(--space-lg);
}

h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: var(--space-sm);
    color: var(--gray);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

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

ul {
    list-style: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section {
    padding: var(--space-xxl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
/* ===== Header Styles ===== */
/* Announcement Bar */
.announcement-bar {
    background-color: var(--primary);
    color: var(--white);
    padding: 0.5rem 0;
    overflow: hidden;
    white-space: nowrap;
    font-size: 0.9rem;
}

.announcement-text {
    display: inline-block;
    padding-left: 100%;
    animation: scroll 20s linear infinite;
    letter-spacing: 0.5px;
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

/* Main Header */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Logo */
.logo img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.03);
}

/* Navigation */
.main-nav ul {
    display: flex;
    gap: var(--space-lg);
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--accent);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

/* Search Bar */
.search-bar {
    display: flex;
    align-items: center;
    position: relative;
    width: 250px;
}

.search-bar input {
    width: 100%;
    padding: 0.6rem 1rem;
    padding-right: 2.5rem;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.search-bar input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(212, 160, 23, 0.2);
}

.search-bar button {
    position: absolute;
    right: 0.5rem;
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.search-bar button:hover {
    color: var(--accent);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: var(--white);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 5rem 2rem 2rem;
        transition: right 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .main-nav ul li a {
        display: block;
        padding: 0.75rem 0;
        font-size: 1.1rem;
    }
    
    .mobile-menu-toggle {
        display: block !important;
        z-index: 1001;
        position: relative;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    
    .search-bar {
        margin-left: auto;
        margin-right: 1rem;
        width: 200px;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    body.menu-open::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 4vw;
        max-width: 100%;
    }
    
    .header {
        padding: 0.75rem 0;
    }
    
    .header .container {
        padding: 0 4vw;
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
    
    .logo {
        flex-shrink: 0;
        z-index: 1002;
    }
    
    .logo img {
        height: 50px;
        max-width: 180px;
    }
    
    .search-bar {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 1001;
        cursor: pointer;
        padding: 10px 8px;
        margin-left: auto;
        background: transparent;
        border: none;
        min-width: 44px;
        min-height: 44px;
        -webkit-tap-highlight-color: rgba(67, 3, 15, 0.1);
        touch-action: manipulation;
        pointer-events: auto;
        user-select: none;
        -webkit-user-select: none;
    }
    
    .mobile-menu-toggle:active {
        opacity: 0.7;
        transform: scale(0.95);
    }
    
    .mobile-menu-toggle:focus {
        outline: 2px solid rgba(67, 3, 15, 0.3);
        outline-offset: 2px;
    }
    
    .mobile-menu-toggle span {
        width: 26px;
        height: 3px;
        background-color: var(--primary);
        margin: 4px 0;
        transition: all 0.3s ease;
        border-radius: 2px;
        pointer-events: none;
    }
    
    .mobile-search {
        display: block;
        width: 100%;
        padding: 1rem;
        background: var(--white);
        position: absolute;
        top: 100%;
        left: 0;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
}
.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    margin-top: var(--space-sm);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.5;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--accent);
    color: var(--dark);
}

.btn-secondary:hover {
    background-color: #e6b422;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

.btn-text {
    color: var(--primary);
    font-weight: 600;
    padding: 0;
    background: none;
    position: relative;
}

.btn-text:after {
    content: '→';
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.btn-text:hover:after {
    transform: translateX(5px);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
}

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

.logo img {
    height: 50px;
    width: auto;
}

.main-nav ul {
    display: flex;
    gap: var(--space-md);
}

.main-nav a {
    color: var(--dark);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.main-nav a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.main-nav a:hover:after,
.main-nav a.active:after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--dark);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    min-height: clamp(520px, 90vh, 900px);
    margin-top: 0;
    overflow: hidden;
    isolation: isolate;
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
}

.hero-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: clamp(520px, 90vh, 900px);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: clamp(520px, 90vh, 900px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Better background positioning on mobile */
@media (max-width: 768px) {
    .hero-slide-bg {
        background-position: center center;
    }
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(28,12,12,0.55) 0%, rgba(28,12,12,0.30) 35%, rgba(28,12,12,0.05) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: clamp(2rem, 4vw, 3.5rem);
    padding-left: 6vw;
    padding-top: 18vh;
    max-width: min(980px, 55vw);
    color: #fff8dd;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.hero-h1 {
    font-family: 'Theseason-BD', serif;
    font-size: clamp(30px, 5.5vw, 74px);
    line-height: 0.98;
    color: #fff8dd;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
    margin-bottom: 18px;
    max-width: 42ch;
}

.hero-sub {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(16px, 1.9vw, 22px);
    line-height: 1.45;
    color: rgba(255, 248, 221, 0.95);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
    margin-bottom: 28px;
    max-width: 65ch;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-ctas .btn {
    border-radius: 14px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid transparent;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 210px;
    position: relative;
    z-index: 10;
    text-decoration: none;
    cursor: pointer;
}

.hero-ctas .btn.primary {
    background: #43030f;
    color: #fff8dd;
}

.hero-ctas .btn.primary:hover,
.hero-ctas .btn.primary:focus-visible {
    background: #5c0a0a;
}

.hero-ctas .btn.secondary {
    background: #fff8dd;
    color: #43030f;
    border-color: rgba(67, 3, 15, 0.06);
}

.hero-ctas .btn.secondary:hover,
.hero-ctas .btn.secondary:focus-visible {
    background: #fff1c5;
}

.hero-ctas .btn:focus-visible {
    outline: 3px solid rgba(67, 3, 15, 0.18);
    outline-offset: 2px;
}

/* Hero Slider Navigation */
.hero-slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
    padding: 0;
    margin: 0;
}

.hero-nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 248, 221, 0.6);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

.hero-nav-dot:hover {
    border-color: rgba(255, 248, 221, 0.9);
    background: rgba(255, 248, 221, 0.3);
}

.hero-nav-dot.active {
    background: #fff8dd;
    border-color: #fff8dd;
    width: 32px;
    border-radius: 6px;
}

.hero-nav-dot:focus-visible {
    outline: 2px solid rgba(255, 248, 221, 0.8);
    outline-offset: 2px;
}

/* Hero Slider Previous/Next Buttons */
.hero-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 248, 221, 0.15);
    border: 2px solid rgba(255, 248, 221, 0.4);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: #fff8dd;
    padding: 0;
}

.hero-slider-btn:hover {
    background: rgba(255, 248, 221, 0.25);
    border-color: rgba(255, 248, 221, 0.7);
    transform: translateY(-50%) scale(1.1);
}

.hero-slider-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.hero-slider-btn:focus-visible {
    outline: 2px solid rgba(255, 248, 221, 0.8);
    outline-offset: 2px;
}

.hero-slider-prev {
    left: 30px;
}

.hero-slider-next {
    right: 30px;
}

.hero-slider-btn svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .hero-slide {
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .hero-nav-dot,
    .hero-slider-btn {
        transition: none;
    }
}

@media (max-width: 1200px) {
    .hero-content {
        max-width: min(900px, 60vw);
        padding-left: 6vw;
        padding-top: 16vh;
    }
}

@media (max-width: 992px) {
    .hero-content {
        max-width: min(900px, 70vw);
        padding-top: 14vh;
    }
}

@media (max-width: 768px) {
    .hero,
    .hero-slider-wrapper,
    .hero-slide {
        min-height: clamp(520px, 60vh, 700px);
    }
    
    .hero {
        width: 100%;
        overflow-x: hidden;
    }

    .hero-content {
        max-width: 100%;
        width: 100%;
        padding: clamp(1.5rem, 5vw, 2.5rem) 4vw;
        padding-top: clamp(4rem, 18vh, 6rem);
        padding-left: 4vw;
        padding-right: 4vw;
        box-sizing: border-box;
    }
    
    .hero-slider-nav {
        bottom: 20px;
    }
    
    .hero-slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .hero-slider-prev {
        left: 15px;
    }
    
    .hero-slider-next {
        right: 15px;
    }
    
    .hero-slider-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .hero-h1 {
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-sub {
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 100%;
    }

    .hero-ctas .btn {
        width: 100%;
        min-width: auto;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero,
    .hero-slider-wrapper,
    .hero-slide {
        min-height: clamp(480px, 55vh, 600px);
    }
    
    .hero-content {
        padding: clamp(1.5rem, 5vw, 2rem) 4vw;
        padding-top: clamp(3.5rem, 15vh, 5rem);
    }
    
    .hero-h1 {
        font-size: clamp(24px, 7vw, 32px);
        line-height: 1.1;
        margin-bottom: 14px;
    }
    
    .hero-sub {
        font-size: clamp(14px, 4vw, 18px);
        margin-bottom: 20px;
    }
    
    .hero-slider-nav {
        bottom: 15px;
        gap: 10px;
    }
    
    .hero-nav-dot {
        width: 10px;
        height: 10px;
    }
    
    .hero-nav-dot.active {
        width: 28px;
    }
    
    .hero-slider-btn {
        width: 36px;
        height: 36px;
    }
    
    .hero-slider-prev {
        left: 10px;
    }
    
    .hero-slider-next {
        right: 10px;
    }
    
    .hero-slider-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .hero-slide-bg {
        background-position: center center;
    }
}

/* Tablet Landscape and Medium Screens */
@media (min-width: 481px) and (max-width: 768px) {
    .hero-slider-btn {
        width: 44px;
        height: 44px;
    }
    
    .hero-slider-prev {
        left: 20px;
    }
    
    .hero-slider-next {
        right: 20px;
    }
    
    .hero-slider-btn svg {
        width: 19px;
        height: 19px;
    }
}

/* Large Tablets and Small Desktops */
@media (min-width: 769px) and (max-width: 992px) {
    .hero-slider-nav {
        bottom: 25px;
    }
    
    .hero-slider-btn {
        width: 46px;
        height: 46px;
    }
    
    .hero-slider-prev {
        left: 25px;
    }
    
    .hero-slider-next {
        right: 25px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .hero-slider-btn {
        width: 44px;
        height: 44px;
        background: rgba(255, 248, 221, 0.25);
        border-color: rgba(255, 248, 221, 0.6);
    }
    
    .hero-nav-dot {
        width: 14px;
        height: 14px;
        border-width: 2.5px;
    }
    
    .hero-nav-dot.active {
        width: 34px;
    }
    
    /* Larger touch targets on mobile */
    @media (max-width: 768px) {
        .hero-slider-btn {
            width: 48px;
            height: 48px;
        }
        
        .hero-nav-dot {
            width: 16px;
            height: 16px;
            min-width: 44px;
            min-height: 44px;
            padding: 14px;
        }
    }
}

/* Landscape Orientation on Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero,
    .hero-slider-wrapper,
    .hero-slide {
        min-height: clamp(400px, 100vh, 500px);
    }
    
    .hero-content {
        padding-top: clamp(2rem, 10vh, 4rem);
    }
    
    .hero-h1 {
        font-size: clamp(28px, 5vw, 36px);
        margin-bottom: 12px;
    }
    
    .hero-sub {
        font-size: clamp(15px, 2vw, 18px);
        margin-bottom: 16px;
    }
    
    .hero-slider-nav {
        bottom: 15px;
    }
}

/* Very Small Screens (below 360px) */
@media (max-width: 360px) {
    .hero,
    .hero-slider-wrapper,
    .hero-slide {
        min-height: clamp(450px, 50vh, 550px);
    }
    
    .hero-content {
        padding: clamp(1rem, 4vw, 1.5rem) 3vw;
        padding-top: clamp(3rem, 12vh, 4.5rem);
    }
    
    .hero-h1 {
        font-size: clamp(22px, 8vw, 28px);
        margin-bottom: 12px;
    }
    
    .hero-sub {
        font-size: clamp(13px, 4.5vw, 16px);
        margin-bottom: 18px;
    }
    
    .hero-slider-nav {
        bottom: 12px;
        gap: 8px;
    }
    
    .hero-nav-dot {
        width: 8px;
        height: 8px;
    }
    
    .hero-nav-dot.active {
        width: 24px;
    }
    
    .hero-slider-btn {
        width: 32px;
        height: 32px;
    }
    
    .hero-slider-prev {
        left: 8px;
    }
    
    .hero-slider-next {
        right: 8px;
    }
    
    .hero-slider-btn svg {
        width: 14px;
        height: 14px;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-slide-bg {
        background-size: cover;
    }
}

/* Ultra-wide screens (above 1920px) */
@media (min-width: 1920px) {
    .hero-content {
        max-width: min(1200px, 50vw);
        padding-left: 8vw;
    }
    
    .hero-slider-nav {
        bottom: 40px;
    }
    
    .hero-slider-btn {
        width: 52px;
        height: 52px;
    }
    
    .hero-slider-prev {
        left: 40px;
    }
    
    .hero-slider-next {
        right: 40px;
    }
    
    .hero-slider-btn svg {
        width: 22px;
        height: 22px;
    }
}

/* Ensure slider is always visible and functional */
.hero-slider {
    touch-action: pan-y pinch-zoom;
}

/* Improve button visibility on all screens */
.hero-slider-btn {
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.hero-nav-dot {
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

/* Essence Section – Three Sacred Truths */
.essence {
    padding: 60px 6vw;
    background-color: var(--light-cream);
}

.essence-inner {
    max-width: 1240px;
    margin: 0 auto;
}

.essence-header {
    text-align: center;
    margin-bottom: 40px;
}

.essence-header h2 {
    font-family: 'Theseason-BD', serif;
    font-size: clamp(28px, 3vw, 36px);
    color: #43030f;
    letter-spacing: 0.06em;
    text-transform: none;
    margin-bottom: 12px;
}

.essence-header h2::after {
    content: '';
    display: block;
    width: 72px;
    height: 3px;
    margin: 10px auto 0;
    background: linear-gradient(90deg, #43030f, var(--accent));
    border-radius: 999px;
}

.essence-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.essence-card {
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

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

.essence-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.45s ease;
}

.essence-body {
    padding: 22px 22px 24px;
}

.essence-title {
    font-family: 'Theseason-BD', serif;
    font-size: clamp(22px, 1.8vw, 26px);
    color: #43030f;
    letter-spacing: 0.045em;
    margin-bottom: 10px;
}

.essence-text {
    font-family: 'Theseason-RG', serif;
    font-size: 15px;
    line-height: 1.5;
    color: #2b0a0e;
    margin-bottom: 14px;
    max-height: calc(4 * 1.5em);
    overflow: hidden;
}

.essence-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Theseason-RG', serif;
    font-size: 14px;
    color: #43030f;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
}

.essence-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: #43030f;
    transition: width 0.25s ease;
}

.essence-link:hover::after,
.essence-link:focus-visible::after {
    width: 100%;
}

.essence-card:hover {
    transform: translateY(-6px);
}

@media (max-width: 768px) {
    .essence {
        padding: 40px 4vw;
    }
    
    .essence-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .essence-image-wrapper {
        height: 200px;
    }
    
    .essence-body {
        padding: 20px;
    }
}
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.09);
}

.essence-card:hover .essence-image-wrapper img {
    transform: scale(1.05);
}

.essence-link:focus-visible {
    outline: 2px solid rgba(67, 3, 15, 0.3);
    outline-offset: 2px;
}

@media (max-width: 1024px) {
    .essence-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .essence {
        padding: 50px 6vw;
    }

    .essence-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Product Snapshot */
.product-snapshot {
    padding: 60px 6vw;
    background-color: var(--white);
}

.product-container {
    max-width: 1400px;
    margin: 0 auto;
}

.product-headline {
    font-family: 'Theseason-BD', serif;
    font-size: clamp(28px, 3.5vw, 42px);
    color: #43030f;
    text-align: center;
    margin-bottom: 48px;
    font-weight: 700;
}

.product-grid {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 48px;
    align-items: stretch;
}

/* Product Gallery */
.product-gallery {
    position: relative;
    display: flex;
    flex-direction: column;
}

.main-image-wrapper {
    width: 100%;
    height: 0;
    padding-bottom: 64.29%; /* 900/1400 = 0.6429 */
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
    background: #f5f5f5;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.main-product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
    will-change: opacity;
    transition: opacity 0.25s ease-in-out;
}

.image-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid #efe6df;
    border-top-color: #43030f;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: none;
    z-index: 2;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.thumbnail-container {
    display: flex;
    gap: 12px;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #efe6df transparent;
    padding-bottom: 4px;
}

.thumbnail-container::-webkit-scrollbar {
    height: 6px;
}

.thumbnail-container::-webkit-scrollbar-track {
    background: transparent;
}

.thumbnail-container::-webkit-scrollbar-thumb {
    background: #efe6df;
    border-radius: 3px;
}

.thumbnail-container::-webkit-scrollbar-thumb:hover {
    background: #d4c4b8;
}

.thumbnail {
    width: 140px;
    height: 140px;
    min-width: 140px;
    border: 1px solid #efe6df;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    cursor: pointer;
    padding: 0;
    transition: transform 0.12s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    flex-shrink: 0;
}

.thumbnail:hover {
    transform: scale(1.04);
    border-color: #43030f;
}

.thumbnail:focus-visible {
    outline: 3px solid #43030f;
    outline-offset: 2px;
    border-color: #43030f;
}

.thumb--active {
    border: 2px solid #43030f;
    box-shadow: 0 0 0 2px rgba(67, 3, 15, 0.1);
}

.thumb--active:hover {
    transform: scale(1.04);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

/* Product Details */
.product-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    text-align: left;
}

.product-description {
    font-family: 'Theseason-RG', serif;
    font-size: 17px;
    line-height: 1.65;
    color: #2b0a0e;
    margin: 0;
    text-align: left;
}

.product-features {
    margin: 0;
    text-align: left;
}

.features-heading {
    font-family: 'Theseason-BD', serif;
    font-size: 22px;
    color: #43030f;
    margin-bottom: 16px;
    font-weight: 700;
    text-align: left;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: 'Theseason-RG', serif;
    font-size: 15px;
    line-height: 1.55;
    color: #2b0a0e;
    padding: 0;
    text-align: left;
    justify-content: flex-start;
}

.check-icon {
    color: #d49a19;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.product-essentials {
    margin: 8px 0;
}

.essentials-text {
    font-family: 'Theseason-RG', serif;
    font-size: 13px;
    color: #6b4b45;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Price Section */
.price-section {
    margin: 16px 0;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.price-discounted {
    font-family: 'Theseason-BD', serif;
    font-size: 36px;
    font-weight: 700;
    color: #43030f;
    line-height: 1;
}

.price-original {
    font-size: 20px;
    color: #999;
    text-decoration: line-through;
    font-weight: 500;
}

.discount-badge {
    background: #d49a19;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-microcopy {
    font-size: 13px;
    color: #6b4b45;
    margin: 4px 0 8px;
    font-weight: 400;
}

.stock-indicator {
    font-size: 14px;
    color: #2d7a32;
    font-weight: 600;
    margin: 0;
}

/* Quantity Selector */
.quantity-selector {
    margin: 20px 0 0 0;
    margin-top: auto;
}

.quantity-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #43030f;
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quantity-btn {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: #fff8dd;
    border: 1px solid #efe6df;
    font-size: 20px;
    font-weight: 600;
    color: #43030f;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.quantity-btn:hover:not(:disabled) {
    background: #fff1c5;
    border-color: #43030f;
}

.quantity-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#productQuantity {
    width: 80px;
    height: 44px;
    text-align: center;
    border: 1px solid #efe6df;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #43030f;
    font-family: var(--font-body);
    background: #fff;
}

#productQuantity:focus {
    outline: 2px solid #43030f;
    outline-offset: 2px;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 16px;
    margin: 24px 0;
    flex-wrap: wrap;
}

.btn-order {
    flex: 1;
    min-width: 200px;
    background: #43030f;
    color: #fff;
    border-radius: 24px;
    padding: 14px 28px;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    border: 2px solid #43030f;
    font-family: var(--font-body);
}

.btn-order:hover {
    background: #5c0a0a;
    border-color: #5c0a0a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(67, 3, 15, 0.3);
}

.btn-order:focus-visible {
    outline: 3px solid rgba(67, 3, 15, 0.3);
    outline-offset: 2px;
}

.btn-add-cart {
    flex: 1;
    min-width: 200px;
    background: #fff8dd;
    color: #43030f;
    border-radius: 24px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    border: 2px solid #efe6df;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: var(--font-body);
}

.btn-add-cart:hover {
    background: #fff1c5;
    border-color: #43030f;
    transform: translateY(-2px);
}

.btn-add-cart:focus-visible {
    outline: 3px solid rgba(67, 3, 15, 0.3);
    outline-offset: 2px;
}

/* Product Info Links - Now in Gallery Section */
.product-left-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(67, 3, 15, 0.1);
}

.product-gallery .product-info-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 0;
    border: none;
    align-items: flex-start;
}

.product-gallery .info-link {
    font-family: 'Theseason-RG', serif;
    font-size: 15px;
    color: #43030f;
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-align: left;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.2s ease;
    width: fit-content;
}

.product-gallery .info-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1.5px;
    background: #43030f;
    transition: width 0.25s ease;
}

.product-gallery .info-link:hover::after,
.product-gallery .info-link:focus-visible::after {
    width: 100%;
}

.product-gallery .info-link:focus-visible {
    outline: 2px solid #43030f;
    outline-offset: 4px;
    border-radius: 2px;
}

/* Trust Microcopy - Now in Gallery Section */
.product-gallery .trust-microcopy {
    margin: 0;
    padding: 0;
    border: none;
}

.product-gallery .trust-microcopy p {
    font-size: 12px;
    color: #6b4b45;
    margin: 0;
    line-height: 1.6;
    font-family: var(--font-body);
    text-align: left;
}

/* Better alignment for product section */
.product-details .price-section {
    margin: 24px 0 0 0;
    align-self: flex-start;
}

.product-details .quantity-selector {
    margin: 0;
    align-self: flex-start;
    width: 100%;
}

.product-details .cta-buttons {
    margin: 0;
    align-self: flex-start;
    width: 100%;
}

/* Nutrition Modal */
.nutrition-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.nutrition-modal[aria-hidden="false"] {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: #fff;
    border-radius: 12px;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    border: none;
    font-size: 24px;
    line-height: 1;
    color: #43030f;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 2;
}

.modal-close:hover {
    background: #43030f;
    color: #fff;
}

.modal-title {
    font-family: 'Theseason-BD', serif;
    font-size: 28px;
    color: #43030f;
    margin-bottom: 24px;
    font-weight: 700;
}

.modal-image-wrapper {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.modal-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .product-gallery {
        order: 1;
    }

    .product-details {
        order: 2;
    }

    .main-image-wrapper {
        padding-bottom: 75%;
    }
}

@media (max-width: 768px) {
    .product-snapshot {
        padding: 32px 4vw;
        overflow-x: hidden;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .product-headline {
        margin-bottom: 24px;
        font-size: clamp(24px, 6vw, 32px);
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .product-gallery {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .main-image-wrapper {
        width: 100%;
        max-width: 100%;
        padding-bottom: 70%;
        overflow: hidden;
    }
    
    .main-product-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .product-details {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    .product-description {
        font-size: clamp(14px, 3.5vw, 16px);
        line-height: 1.6;
        word-wrap: break-word;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .btn-order,
    .btn-add-cart {
        width: 100%;
        padding: 14px 20px;
    }

    .thumbnail-container {
        justify-content: flex-start;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 8px 0;
        margin: 16px 0;
        width: 100%;
    }

    .thumbnail {
        width: 100px;
        height: 100px;
        min-width: 100px;
        scroll-snap-align: start;
        flex-shrink: 0;
    }
    
    .product-info-links {
        margin-top: 16px;
        padding-top: 16px;
    }
    
    .trust-microcopy {
        margin-top: 16px;
        padding-top: 16px;
        font-size: clamp(12px, 3vw, 14px);
    }
    
    .quantity-selector {
        margin: 16px 0;
        width: 100%;
    }

    .modal-content {
        padding: 24px;
        margin: 20px;
        max-width: calc(100vw - 40px);
    }
}

/* Pre-Launch Reservation Section */
/* Section Divider */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #efe6df 20%, #efe6df 80%, transparent);
    margin: 0;
}

.prelaunch-section {
    padding: 64px 6vw;
    background: #fff8dd;
    position: relative;
    overflow: hidden;
}

.prelaunch-container {
    max-width: 1400px;
    margin: 0 auto;
}

.prelaunch-grid {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 48px;
    align-items: start;
}

/* Left Column (60%) */
.prelaunch-left {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.prelaunch-headline {
    font-family: 'Theseason-BD', serif;
    font-size: clamp(32px, 4vw, 42px);
    color: #43030f;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    max-width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.prelaunch-subline {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(16px, 1.8vw, 19px);
    line-height: 1.6;
    color: #43030f;
    margin: 0;
    max-width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.prelaunch-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.prelaunch-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Theseason-RG', serif;
    font-size: 16px;
    line-height: 1.55;
    color: #43030f;
}

.bullet-icon {
    width: 6px;
    height: 6px;
    background: #d8b46a;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 8px;
}

/* Countdown Card */
.countdown-card {
    background: #fff;
    border: 2px solid #d8b46a;
    border-radius: 12px;
    padding: 24px 28px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Progress Bar */
.countdown-progress-wrapper {
    margin-bottom: 20px;
    position: relative;
}

.countdown-progress-bar {
    width: 100%;
    height: 4px;
    background: #efe6df;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.countdown-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #d8b46a, #c9a55a, #d8b46a);
    background-size: 200% 100%;
    border-radius: 2px;
    width: 100%;
    transition: width 1s linear;
    animation: progressShimmer 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(216, 180, 106, 0.5);
}

@keyframes progressShimmer {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.countdown-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(216, 180, 106, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes subtlePulse {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    }
    50% {
        box-shadow: 0 6px 20px rgba(216, 180, 106, 0.15);
    }
}

.countdown-card:hover {
    border-color: #c9a55a;
    box-shadow: 0 6px 24px rgba(216, 180, 106, 0.2);
    transform: translateY(-2px);
}

.countdown-card.urgent {
    border-color: #c9a55a;
    animation: urgentPulse 2s ease-in-out infinite;
    box-shadow: 0 4px 20px rgba(201, 165, 90, 0.4);
}

@keyframes urgentPulse {
    0%, 100% {
        border-color: #c9a55a;
        box-shadow: 0 4px 20px rgba(201, 165, 90, 0.4);
    }
    50% {
        border-color: #b8944a;
        box-shadow: 0 6px 24px rgba(201, 165, 90, 0.6);
    }
}

.countdown-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Courier New', monospace;
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 700;
    color: #43030f;
    margin-bottom: 12px;
    position: relative;
}

.countdown-value {
    background: #fff8dd;
    padding: 12px 16px;
    border-radius: 8px;
    min-width: 60px;
    text-align: center;
    border: 1px solid #efe6df;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
    cursor: pointer;
}

.countdown-value:hover {
    transform: translateY(-3px) scale(1.05);
    border-color: #d8b46a;
    box-shadow: 0 4px 12px rgba(216, 180, 106, 0.3);
    z-index: 1;
}

.countdown-value:active {
    transform: translateY(-1px) scale(1.02);
}

.countdown-value::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(216, 180, 106, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s, opacity 0.6s;
    pointer-events: none;
    opacity: 0;
}

.countdown-value.ripple::after {
    width: 200px;
    height: 200px;
    opacity: 0;
}

.countdown-value::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(216, 180, 106, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.countdown-value:hover::before {
    opacity: 1;
}

.countdown-value.updating {
    animation: pulseUpdate 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #fff8dd, #ffe8b3);
    border-color: #d8b46a;
    box-shadow: 0 0 12px rgba(216, 180, 106, 0.4);
}

@keyframes pulseUpdate {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(216, 180, 106, 0);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 20px rgba(216, 180, 106, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(216, 180, 106, 0);
    }
}

.countdown-value span {
    display: inline-block;
    transition: transform 0.3s ease;
    position: relative;
}

.countdown-value.updating span {
    animation: numberFlip 0.4s ease;
}

/* Live indicator for seconds - subtle pulse */
.countdown-value.live-indicator {
    position: relative;
    animation: subtleGlow 2s ease-in-out infinite;
}

.countdown-value.live-indicator::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -8px;
    width: 6px;
    height: 6px;
    background: #d8b46a;
    border-radius: 50%;
    transform: translateY(-50%);
    animation: livePulse 1s ease-in-out infinite;
    opacity: 0.8;
    box-shadow: 0 0 4px rgba(216, 180, 106, 0.6);
}

@keyframes livePulse {
    0%, 100% {
        opacity: 0.6;
        transform: translateY(-50%) scale(1);
        box-shadow: 0 0 4px rgba(216, 180, 106, 0.4);
    }
    50% {
        opacity: 1;
        transform: translateY(-50%) scale(1.3);
        box-shadow: 0 0 8px rgba(216, 180, 106, 0.8);
    }
}

@keyframes subtleGlow {
    0%, 100% {
        box-shadow: 0 0 0 rgba(216, 180, 106, 0);
    }
    50% {
        box-shadow: 0 0 8px rgba(216, 180, 106, 0.2);
    }
}

@keyframes numberFlip {
    0% {
        transform: rotateX(0deg);
        opacity: 1;
    }
    50% {
        transform: rotateX(90deg);
        opacity: 0.3;
    }
    100% {
        transform: rotateX(0deg);
        opacity: 1;
    }
}

.countdown-separator {
    color: #d8b46a;
    font-weight: 700;
    font-size: clamp(24px, 2.5vw, 32px);
    animation: pulseSeparator 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

@keyframes pulseSeparator {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.countdown-separator:hover {
    color: #c9a55a;
    transform: scale(1.2);
}

.countdown-remaining {
    text-align: center;
    font-family: 'Theseason-RG', serif;
    font-size: 15px;
    color: #43030f;
    margin: 0;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.countdown-remaining.updating {
    animation: fadeInOut 0.5s ease;
    color: #d8b46a;
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 1;
        transform: translateY(0);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-2px);
    }
}

.btn-prelaunch-primary {
    background: #43030f;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 14px 32px;
    font-size: clamp(16px, 1.5vw, 18px);
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.25s ease;
    width: 100%;
}

.btn-prelaunch-primary:hover {
    background: #31020b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(67, 3, 15, 0.3);
}

.btn-prelaunch-primary:focus-visible {
    outline: 3px solid rgba(67, 3, 15, 0.3);
    outline-offset: 2px;
}

.prelaunch-form {
    background: #fff;
    border: 1px solid #efe6df;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #43030f;
    font-family: var(--font-body);
}

.form-group input {
    padding: 12px 16px;
    border: 1px solid #efe6df;
    border-radius: 8px;
    font-size: 15px;
    font-family: var(--font-body);
    color: #3a1f16;
    transition: border-color 0.2s ease;
}

.form-group input:focus {
    outline: 2px solid #43030f;
    outline-offset: 2px;
    border-color: #43030f;
}

.btn-reserve-submit {
    background: #43030f;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.25s ease;
    margin-top: 8px;
}

.btn-reserve-submit:hover {
    background: #31020b;
}

.btn-reserve-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-reserve-submit .submit-loading {
    display: none;
}

/* Pre-Launch Form Success/Error Messages */
.prelaunch-form-success {
    background: #e8f5e9;
    border: 1px solid #4caf50;
    border-radius: 12px;
    padding: 24px;
    margin-top: 16px;
    text-align: center;
}

.prelaunch-form-success h3 {
    font-family: 'Theseason-BD', serif;
    font-size: clamp(20px, 2.5vw, 24px);
    color: #43030f;
    margin: 0 0 12px 0;
    font-weight: 700;
}

.prelaunch-form-success p {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(14px, 1.6vw, 16px);
    color: #2b0a0e;
    margin: 0 0 12px 0;
    line-height: 1.6;
}

.prelaunch-form-success a {
    color: #43030f;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.prelaunch-form-success a:hover {
    color: #d4a75c;
}

.prelaunch-form-error {
    background: #ffebee;
    border: 1px solid #f44336;
    border-radius: 12px;
    padding: 20px;
    margin-top: 16px;
    text-align: center;
}

.prelaunch-form-error p {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(14px, 1.6vw, 16px);
    color: #2b0a0e;
    margin: 0 0 8px 0;
    line-height: 1.6;
}

.prelaunch-form-error a {
    color: #43030f;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.prelaunch-form-error a:hover {
    color: #d4a75c;
}

.prelaunch-form .form-group.error input {
    border-color: #d32f2f;
}

.prelaunch-form .form-group.error label {
    color: #d32f2f;
}

.prelaunch-form .required {
    color: #d32f2f;
    margin-left: 2px;
}

/* Right Column (40%) - Card Container */
.prelaunch-right-card {
    background: #fff;
    border: 1px solid #efe6df;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 28px;
    height: fit-content;
}

/* Partner Logo Block */
.partner-logo-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding-bottom: 24px;
    border-bottom: 1px solid #efe6df;
}

.partner-logo-link {
    display: inline-block;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 8px;
}

.partner-logo-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 4px 12px rgba(67, 3, 15, 0.15);
    background: rgba(255, 255, 255, 0.8);
}

.partner-logo-link:active {
    transform: translateY(-1px) scale(1.02);
}

.partner-logo-link:focus-visible {
    outline: 3px solid rgba(67, 3, 15, 0.3);
    outline-offset: 2px;
}

.partner-logo {
    max-width: 120px;
    height: auto;
    object-fit: contain;
    display: block;
}

.partner-label {
    font-family: 'Theseason-RG', serif;
    font-size: 13px;
    color: #6b4b45;
    margin: 0;
    text-align: center;
}

/* Benefits Section */
.prelaunch-benefits {
    margin: 0;
}

.benefits-heading {
    font-family: 'Theseason-BD', serif;
    font-size: clamp(18px, 2vw, 22px);
    color: #43030f;
    margin-bottom: 16px;
    font-weight: 700;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Theseason-RG', serif;
    font-size: 15px;
    line-height: 1.5;
    color: #43030f;
}

.benefit-icon {
    width: 6px;
    height: 6px;
    background: #d8b46a;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 8px;
}

.btn-prelaunch-secondary {
    background: #fff8dd;
    color: #43030f;
    border: 2px solid #43030f;
    border-radius: 12px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-body);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.25s ease;
    width: 100%;
}

.btn-prelaunch-secondary:hover {
    background: rgba(67, 3, 15, 0.05);
    transform: translateY(-2px);
}

.btn-prelaunch-secondary:focus-visible {
    outline: 3px solid rgba(67, 3, 15, 0.3);
    outline-offset: 2px;
}

/* Trust Row */
.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: center;
    padding: 16px 0;
    border-top: 1px solid #efe6df;
    border-bottom: 1px solid #efe6df;
}

.trust-icon-item {
    font-size: 12px;
    color: #6b4b45;
    font-weight: 500;
    font-family: var(--font-body);
}

.lock-icon {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Closing Quote */
.prelaunch-quote {
    margin: 0;
    padding: 0;
    border: none;
    font-family: 'Theseason-RG', serif;
    font-style: italic;
    font-size: 16px;
    line-height: 1.6;
    color: #43030f;
    padding-left: 20px;
    border-left: 3px solid #d8b46a;
    margin-top: auto;
}

.quote-text {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-style: italic;
    color: #43030f;
}

.quote-author {
    margin: 0;
    font-size: 13px;
    color: #6b4b45;
    font-style: normal;
    font-family: var(--font-body);
}

/* Reservation Modal */
.reservation-modal {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.reservation-modal[aria-hidden="false"] {
    display: flex;
}

.reservation-modal .modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
}

.reservation-modal .modal-content {
    position: relative;
    background: #fff;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    z-index: 1;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.reservation-modal .modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    border: none;
    font-size: 24px;
    line-height: 1;
    color: #43030f;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.reservation-modal .modal-close:hover {
    background: #43030f;
    color: #fff;
}

.reservation-modal .modal-title {
    font-family: 'Theseason-BD', serif;
    font-size: 28px;
    color: #43030f;
    margin-bottom: 20px;
    font-weight: 700;
}

.confirmation-message {
    font-size: 16px;
    color: #3a1f16;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: var(--font-body);
}

.confirmation-details {
    background: #fff8dd;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 14px;
    color: #3a1f16;
    font-family: var(--font-body);
}

.modal-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.modal-actions .btn {
    flex: 1;
    min-width: 120px;
}

/* Responsive */
@media (max-width: 1024px) {
    .prelaunch-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .prelaunch-left {
        order: 1;
    }

    .prelaunch-right-card {
        order: 2;
    }
}

@media (max-width: 768px) {
    .prelaunch-section {
        padding: 40px 4vw;
    }

    .prelaunch-container {
        max-width: 100%;
    }

    .prelaunch-grid {
        gap: 32px;
    }

    .prelaunch-left {
        gap: 20px;
        width: 100%;
    }

    .prelaunch-headline {
        font-size: clamp(26px, 6vw, 36px);
        line-height: 1.25;
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }

    .prelaunch-subline {
        font-size: clamp(15px, 3.5vw, 18px);
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }

    .prelaunch-bullets {
        gap: 12px;
    }

    .prelaunch-bullets li {
        font-size: clamp(14px, 3.2vw, 16px);
        line-height: 1.5;
    }

    .prelaunch-right-card {
        padding: 28px 20px;
        gap: 24px;
        width: 100%;
        box-sizing: border-box;
    }

    .prelaunch-form {
        padding: 20px;
        gap: 14px;
    }

    .form-group input {
        padding: 14px 16px;
        font-size: 16px;
    }

    .countdown-card {
        padding: 20px 18px;
        width: 100%;
        box-sizing: border-box;
    }

    .countdown-display {
        font-size: clamp(22px, 5.5vw, 28px);
        gap: 6px;
        flex-wrap: wrap;
    }

    .countdown-value {
        padding: 10px 12px;
        min-width: 50px;
        font-size: clamp(18px, 4.5vw, 24px);
    }

    .countdown-separator {
        font-size: clamp(18px, 4.5vw, 24px);
    }

    .countdown-remaining {
        font-size: 14px;
    }

    .btn-prelaunch-primary {
        padding: 16px 24px;
        font-size: clamp(15px, 3.5vw, 17px);
        width: 100%;
        box-sizing: border-box;
    }

    .btn-prelaunch-secondary {
        padding: 16px 24px;
        font-size: clamp(15px, 3.5vw, 17px);
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }

    .prelaunch-benefits {
        width: 100%;
    }

    .benefits-heading {
        font-size: clamp(18px, 4vw, 20px);
        margin-bottom: 14px;
    }

    .benefits-list {
        gap: 10px;
    }

    .benefits-list li {
        font-size: clamp(14px, 3.2vw, 15px);
        line-height: 1.5;
    }

    .partner-logo-block {
        padding-bottom: 20px;
    }

    .partner-logo {
        max-width: 100px;
    }

    .trust-row {
        flex-direction: column;
        gap: 12px;
        padding: 14px 0;
        text-align: center;
    }

    .trust-icon-item {
        font-size: 11px;
    }

    .prelaunch-quote {
        padding-left: 16px;
        font-size: clamp(14px, 3.2vw, 15px);
        margin-top: 0;
    }

    .quote-text {
        font-size: clamp(14px, 3.2vw, 15px);
        margin-bottom: 6px;
    }

    .quote-author {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .prelaunch-section {
        padding: 32px 3vw;
    }

    .prelaunch-left {
        gap: 18px;
    }

    .prelaunch-right-card {
        padding: 24px 18px;
        gap: 20px;
    }

    .prelaunch-form {
        padding: 18px;
        gap: 12px;
    }

    .countdown-card {
        padding: 18px 16px;
    }

    .countdown-display {
        gap: 4px;
    }

    .countdown-value {
        padding: 8px 10px;
        min-width: 45px;
    }

    .btn-prelaunch-primary,
    .btn-prelaunch-secondary {
        padding: 14px 20px;
    }

    .benefits-list li {
        gap: 10px;
    }

    .benefit-icon {
        margin-top: 6px;
    }
}

/* Pillars Intro Block */
.pillars-intro {
    padding: 64px 0 56px 0;
    background: #ffffff;
    position: relative;
}

.pillars-intro-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 6vw;
}

.pillars-intro-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: translateY(8px);
    animation: introFadeIn 0.45s ease-out forwards;
}

@keyframes introFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pillars-intro-heading-wrapper {
    margin-bottom: 20px;
    text-align: center;
}

.pillars-intro-heading {
    font-family: 'Theseason-BD', serif;
    font-size: clamp(26px, 3.5vw, 48px);
    color: #43030f;
    font-weight: 400;
    margin: 0;
    line-height: 1.2;
    max-width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: center;
}

.pillars-intro-subheading {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(16px, 1.5vw, 20px);
    color: #43030f;
    opacity: 0.85;
    line-height: 1.4;
    margin: 0 0 16px 0;
    max-width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pillars-intro-body {
    font-family: 'Theseason-RG', serif;
    font-size: 16px;
    color: #43030f;
    opacity: 0.8;
    line-height: 1.5;
    margin: 0 0 24px 0;
    max-width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* Responsive Styles for Intro Block */
@media (max-width: 1024px) {
    .pillars-intro {
        padding: 56px 0 48px 0;
    }
    
    .pillars-intro-heading {
        font-size: clamp(28px, 4vw, 36px);
    }
    
    .pillars-intro-subheading {
        font-size: clamp(16px, 1.8vw, 18px);
    }
}

@media (max-width: 768px) {
    .pillars-intro {
        padding: 48px 0 40px 0;
    }
    
    .pillars-intro-container {
        padding: 0 4vw;
    }
    
    .pillars-intro-heading {
        font-size: clamp(26px, 5vw, 30px);
        margin-bottom: 16px;
    }
    
    .pillars-intro-subheading {
        font-size: clamp(15px, 2vw, 17px);
        margin-bottom: 14px;
    }
    
    .pillars-intro-body {
        font-size: 15px;
        margin-bottom: 20px;
    }
}

/* Four Sacred Pillars - Tabbed Module */
.pillars-tabbed-section {
    background: #fff8dd;
    padding: 80px 0;
    position: relative;
}

.pillars-tabbed-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 6vw;
}

/* Pill Navigation */
.pillars-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.pillar-nav-btn {
    background: #fff8dd;
    color: #43030f;
    border: 1.5px solid #43030f;
    border-radius: 12px;
    padding: 14px 28px;
    font-family: 'Theseason-BD', serif;
    font-size: clamp(15px, 1.8vw, 18px);
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.25s ease;
    outline: none;
    position: relative;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: fit-content;
    z-index: 10;
    pointer-events: auto;
    user-select: none;
    -webkit-user-select: none;
    box-shadow: 0 2px 8px rgba(67, 3, 15, 0.08);
}

.pillar-nav-btn:focus-visible {
    outline: 3px solid rgba(67, 3, 15, 0.3);
    outline-offset: 4px;
}

.pillar-nav-btn:hover:not(.active) {
    background: rgba(255, 248, 221, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(67, 3, 15, 0.15);
    border-color: #43030f;
}

.pillar-nav-btn.active {
    background: #43030f;
    color: #fff8dd;
    border-color: #43030f;
    box-shadow: 0 4px 12px rgba(67, 3, 15, 0.25);
    transform: translateY(-1px);
}

/* Pillar Panels */
.pillar-panel {
    display: none;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.24s ease, transform 0.24s ease;
}

.pillar-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .pillar-panel {
        transition: none;
    }
    .pillar-nav-btn {
        transition: none;
    }
}

/* Banner */
.pillar-banner-wrapper {
    width: 100%;
    max-width: 1100px;
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: 400px;
    max-height: 620px;
    margin: 0 auto 48px auto;
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid rgba(67, 3, 15, 0.08);
}

.pillar-banner-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(67, 3, 15, 0.03) 0%, rgba(212, 154, 25, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
    border-radius: 14px;
}

.pillar-banner-wrapper:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18), 0 12px 24px rgba(67, 3, 15, 0.12), 0 0 0 1px rgba(212, 154, 25, 0.2);
    border-color: rgba(212, 154, 25, 0.3);
}

.pillar-banner-wrapper:hover::before {
    opacity: 1;
}

.pillar-banner-wrapper:focus-within {
    outline: 3px solid rgba(212, 154, 25, 0.4);
    outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
    .pillar-banner-wrapper:hover {
        transform: none;
    }
    
    .pillar-banner-wrapper:hover .pillar-banner-image {
        transform: none;
    }
}

/* Entrance animation for banner when panel becomes active */
.pillar-panel.active .pillar-banner-wrapper {
    animation: bannerFadeIn 0.6s ease-out;
}

@keyframes bannerFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .pillar-panel.active .pillar-banner-wrapper {
        animation: none;
    }
}

.pillar-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    border-radius: 14px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease, box-shadow 0.5s ease;
    filter: brightness(1) contrast(1);
    position: relative;
    z-index: 0;
}

.pillar-banner-wrapper:hover .pillar-banner-image {
    transform: scale(1.1);
    filter: brightness(1.08) contrast(1.12);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* Typography */
.pillar-heading {
    font-family: 'Theseason-BD', serif;
    font-size: clamp(22px, 3.5vw, 44px);
    color: #43030f;
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -0.01em;
    text-align: center;
    margin: 0 auto 24px auto;
    max-width: 1200px;
    width: 100%;
    white-space: nowrap;
    border: none;
    border-left: none;
    border-right: none;
    border-top: none;
    border-bottom: none;
    position: relative;
}

.pillar-heading::before,
.pillar-heading::after {
    display: none !important;
    content: none !important;
}

/* Remove any decorative line from parent containers */
.pillar-panel .pillar-heading::before,
.pillar-panel .pillar-heading::after {
    display: none !important;
    content: none !important;
}

.pillar-intro-body {
    font-family: 'Theseason-RG', serif;
    font-size: 18px;
    line-height: 1.6;
    color: #2b0a0e;
    max-width: 760px;
    margin: 0 auto 28px auto;
    text-align: center;
}

/* Read More Button */
.btn-pillar-read-more {
    display: block;
    background: #fff8dd;
    color: #43030f;
    border: 1px solid #43030f;
    font-family: 'Theseason-RG', serif;
    font-size: 16px;
    font-weight: 400;
    padding: 12px 28px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
    margin: 0 auto 40px auto;
    text-align: center;
    cursor: pointer;
    width: fit-content;
}

.btn-pillar-read-more:hover {
    background: #d4a75c;
    color: #43030f;
    border-color: #d4a75c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 167, 92, 0.3);
}

.btn-pillar-read-more:focus-visible {
    outline: 3px solid rgba(67, 3, 15, 0.3);
    outline-offset: 4px;
}

/* Second Body / Bullets */
.pillar-second-body {
    margin-bottom: 48px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pillar-second-body-title {
    font-family: 'Theseason-BD', serif;
    font-size: clamp(20px, 2.5vw, 26px);
    color: #43030f;
    font-weight: 400;
    text-align: center;
    margin: 0 0 20px 0;
    letter-spacing: -0.01em;
}

.pillar-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;
    text-align: left;
    max-width: 100%;
}

.pillar-bullets li {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(15px, 1.8vw, 18px);
    color: #2b0a0e;
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.pillar-bullets li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d49a19;
    font-weight: 700;
    font-size: 1.1em;
}

.pillar-comparison,
.pillar-wellness-lists {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.comparison-eliminated,
.comparison-chosen,
.wellness-wont-find,
.wellness-will-find {
    position: relative;
    padding: 28px 24px;
    border-radius: 12px;
    overflow: hidden;
    background: #fff8dd;
}

.comparison-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.eliminated-overlay {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.12) 0%, rgba(184, 28, 28, 0.08) 100%);
}

.chosen-overlay {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.12) 0%, rgba(22, 163, 74, 0.08) 100%);
}

.comparison-eliminated > *,
.comparison-chosen > *,
.wellness-wont-find > *,
.wellness-will-find > * {
    position: relative;
    z-index: 1;
}

.comparison-title {
    font-family: 'Theseason-BD', serif;
    font-size: clamp(18px, 2.2vw, 24px);
    color: #43030f;
    margin: 0 0 20px 0;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.comparison-eliminated .comparison-title,
.wellness-wont-find .comparison-title {
    color: #991b1b;
}

.comparison-chosen .comparison-title,
.wellness-will-find .comparison-title {
    color: #166534;
}

.comparison-eliminated ul,
.comparison-chosen ul,
.wellness-wont-find ul,
.wellness-will-find ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-eliminated ul li,
.comparison-chosen ul li,
.wellness-wont-find ul li,
.wellness-will-find ul li {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(15px, 1.7vw, 17px);
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.comparison-eliminated ul li,
.wellness-wont-find ul li {
    color: #7f1d1d;
}

.comparison-chosen ul li,
.wellness-will-find ul li {
    color: #14532d;
}

.comparison-eliminated ul li::before,
.wellness-wont-find ul li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: 700;
    font-size: 1.1em;
}

.comparison-chosen ul li::before,
.wellness-will-find ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 700;
    font-size: 1.1em;
}

/* Ingredient Cards Grid */
.pillar-ingredients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.pillar-ingredient-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(67, 3, 15, 0.06);
    cursor: pointer;
}

.pillar-ingredient-card:focus-within {
    outline: 3px solid rgba(212, 154, 25, 0.4);
    outline-offset: 2px;
}

.pillar-ingredient-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(67, 3, 15, 0.02) 0%, rgba(212, 154, 25, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    z-index: 0;
}

.pillar-ingredient-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 8px 16px rgba(67, 3, 15, 0.1), 0 0 0 1px rgba(212, 154, 25, 0.2);
    border-color: rgba(212, 154, 25, 0.3);
}

.pillar-ingredient-card:hover::before {
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    .pillar-ingredient-card:hover {
        transform: none;
    }
}

.pillar-ingredient-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 16px;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease, box-shadow 0.4s ease;
    filter: brightness(1) contrast(1);
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.pillar-ingredient-card:hover .pillar-ingredient-image {
    transform: scale(1.08);
    filter: brightness(1.05) contrast(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.pillar-ingredient-card:hover .pillar-ingredient-image {
    transform: scale(1.08);
    filter: brightness(1.05) contrast(1.1);
}

.pillar-ingredient-title {
    font-family: 'Theseason-BD', serif;
    font-size: clamp(20px, 2.2vw, 24px);
    color: #43030f;
    margin: 0 0 10px 0;
    font-weight: 400;
    text-align: center;
    letter-spacing: -0.01em;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.pillar-ingredient-card:hover .pillar-ingredient-title {
    color: #5a0418;
}

.pillar-ingredient-description {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(14px, 1.6vw, 16px);
    color: #2b0a0e;
    line-height: 1.6;
    margin: 0;
    text-align: center;
    position: relative;
    z-index: 1;
    opacity: 0.9;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.pillar-ingredient-card:hover .pillar-ingredient-description {
    opacity: 1;
    color: #1a0507;
}

/* Quote Box */
.pillar-quote {
    max-width: 820px;
    margin: 36px auto 0 auto;
    padding: 22px 28px;
    background: rgba(255, 248, 221, 0.45);
    border-left: 4px solid rgba(67, 3, 15, 0.2);
    border-radius: 8px;
    text-align: center;
}

.pillar-quote-text {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(16px, 1.8vw, 19px);
    color: #43030f;
    opacity: 0.85;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .pillars-tabbed-section {
        padding: 60px 0;
    }
    
    .pillars-nav {
        gap: 10px;
        margin-bottom: 40px;
    }
    
    .pillar-nav-btn {
        padding: 12px 24px;
        font-size: clamp(14px, 1.7vw, 17px);
    }
    
    .pillar-banner-wrapper {
        max-width: 100%;
        min-height: 360px;
        max-height: 520px;
        margin-bottom: 40px;
    }
    
    .pillar-heading {
        font-size: clamp(26px, 3.8vw, 40px);
    }
    
    .pillar-ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    
    .pillar-comparison,
    .pillar-wellness-lists {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }
    
    .comparison-eliminated,
    .comparison-chosen,
    .wellness-wont-find,
    .wellness-will-find {
        padding: 24px 20px;
    }
    
    .comparison-title {
        font-size: clamp(17px, 3.5vw, 22px);
        margin-bottom: 16px;
    }
    
    .comparison-eliminated ul li,
    .comparison-chosen ul li,
    .wellness-wont-find ul li,
    .wellness-will-find ul li {
        font-size: clamp(14px, 3vw, 16px);
        margin-bottom: 10px;
        padding-left: 26px;
    }
    
    .pillar-second-body {
        max-width: 90%;
    }
    
    .pillar-second-body-title {
        font-size: clamp(19px, 2.3vw, 24px);
    }
    
    .pillar-bullets li {
        font-size: clamp(15px, 1.7vw, 17px);
    }
}

@media (max-width: 768px) {
    .pillars-tabbed-section {
        padding: 48px 0;
        overflow-x: visible;
    }
    
    .pillars-tabbed-section .container {
        padding: 0 4vw;
        overflow-x: visible;
    }
    
    .pillars-nav {
        gap: 10px;
        margin-bottom: 32px;
        overflow-x: auto;
        overflow-y: visible;
        flex-wrap: nowrap;
        padding: 12px 4vw 20px 4vw;
        margin-left: -4vw;
        margin-right: -4vw;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: auto;
        scrollbar-color: rgba(67, 3, 15, 0.5) rgba(255, 248, 221, 0.3);
        display: flex;
        align-items: center;
        justify-content: flex-start;
        position: relative;
        width: calc(100% + 8vw);
    }
    
    .pillars-nav::-webkit-scrollbar {
        height: 8px;
    }
    
    .pillars-nav::-webkit-scrollbar-track {
        background: rgba(255, 248, 221, 0.4);
        border-radius: 4px;
        margin: 0 4vw;
    }
    
    .pillars-nav::-webkit-scrollbar-thumb {
        background: rgba(67, 3, 15, 0.6);
        border-radius: 4px;
    }
    
    .pillars-nav::-webkit-scrollbar-thumb:hover {
        background: rgba(67, 3, 15, 0.7);
    }
    
    .pillar-nav-btn {
        padding: 14px 20px;
        font-size: clamp(14px, 3.5vw, 17px);
        white-space: nowrap;
        flex-shrink: 0;
        min-width: fit-content;
        border-width: 1.5px;
        font-weight: 600;
        letter-spacing: 0.02em;
        box-shadow: 0 2px 6px rgba(67, 3, 15, 0.1);
    }
    
    .pillar-nav-btn:first-child {
        margin-left: 0;
    }
    
    .pillar-nav-btn:last-child {
        margin-right: 0;
    }
    
    .pillar-banner-wrapper {
        max-width: 100%;
        min-height: 280px;
        max-height: 400px;
        margin-bottom: 32px;
        border-radius: 12px;
    }
    
    .pillar-heading {
        font-size: clamp(20px, 5vw, 32px);
        margin-bottom: 20px;
        max-width: 100%;
    }
    
    .pillar-intro-body {
        font-size: 16px;
        max-width: 100%;
    }
    
    .pillar-second-body {
        max-width: 100%;
        padding: 0 4vw;
    }
    
    .pillar-second-body-title {
        font-size: clamp(18px, 4vw, 24px);
        margin-bottom: 16px;
    }
    
    .pillar-bullets li {
        font-size: clamp(14px, 3.5vw, 16px);
        margin-bottom: 10px;
        padding-left: 24px;
    }
    
    .pillar-comparison,
    .pillar-wellness-lists {
        gap: 16px;
        max-width: 100%;
    }
    
    .comparison-eliminated,
    .comparison-chosen,
    .wellness-wont-find,
    .wellness-will-find {
        padding: 20px 18px;
        border-radius: 10px;
    }
    
    .comparison-title {
        font-size: clamp(16px, 4vw, 20px);
        margin-bottom: 14px;
    }
    
    .comparison-eliminated ul li,
    .comparison-chosen ul li,
    .wellness-wont-find ul li,
    .wellness-will-find ul li {
        font-size: clamp(13px, 3.2vw, 15px);
        margin-bottom: 10px;
        padding-left: 24px;
    }
    
    .pillar-ingredients-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pillar-quote {
        max-width: 100%;
        padding: 20px 24px;
    }
}

@media (max-width: 480px) {
    .pillars-nav {
        gap: 8px;
        padding: 12px 4vw 20px 4vw;
        margin-left: -4vw;
        margin-right: -4vw;
        width: calc(100% + 8vw);
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .pillar-nav-btn {
        padding: 12px 16px;
        font-size: clamp(13px, 3vw, 16px);
        border-radius: 10px;
        flex-shrink: 0;
        white-space: nowrap;
        min-width: fit-content;
    }
}

/* Four Sacred Pillars Section */
.pillars-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Mandala background decoration */
.pillars-section::before,
.pillars-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="45" fill="none" stroke="%2343030f" stroke-width="0.5" opacity="0.05"/><circle cx="50" cy="50" r="35" fill="none" stroke="%2343030f" stroke-width="0.5" opacity="0.05"/><circle cx="50" cy="50" r="25" fill="none" stroke="%2343030f" stroke-width="0.5" opacity="0.05"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
}

.pillars-section::before {
    top: 50px;
    left: 50px;
}

.pillars-section::after {
    bottom: 50px;
    right: 50px;
}

.pillars-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 6vw;
    position: relative;
    z-index: 1;
}

.pillars-header {
    text-align: center;
    margin-bottom: 60px;
}

.pillars-headline {
    font-family: 'Theseason-BD', serif;
    font-size: clamp(42px, 4.5vw, 52px);
    color: #43030f;
    font-weight: 400;
    margin: 0 0 28px 0;
    line-height: 1.2;
}

.pillars-subline {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(18px, 2vw, 22px);
    color: #43030f;
    opacity: 0.85;
    line-height: 1.6;
    max-width: 70%;
    margin: 0 auto;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

/* Pillar Card */
.pillar-card {
    background: #fff8dd;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.25s ease;
    opacity: 0;
    transform: translateY(20px);
    display: flex;
    flex-direction: column;
}

.pillar-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.pillar-card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

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

.pillar-card:hover .pillar-card-image img {
    transform: scale(1.03);
}

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

.pillar-card-title {
    font-family: 'Theseason-BD', serif;
    font-size: clamp(26px, 2.5vw, 32px);
    color: #43030f;
    margin: 0 0 16px 0;
    text-align: center;
    transition: color 0.2s ease;
}

.pillar-card:hover .pillar-card-title {
    color: #b68b42;
}

.pillar-card-text {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(15px, 1.5vw, 18px);
    color: #43030f;
    opacity: 0.85;
    line-height: 1.6;
    text-align: center;
    margin: 0;
    flex: 1;
}

/* CTA Button */
.pillars-cta {
    text-align: center;
    margin-top: 40px;
}

.btn-pillars-primary {
    display: inline-block;
    background: #43030f;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    font-family: var(--font-body);
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-pillars-primary:hover {
    background: #31020b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(67, 3, 15, 0.3);
}

.btn-pillars-primary:focus-visible {
    outline: 3px solid rgba(67, 3, 15, 0.3);
    outline-offset: 2px;
}

/* Pillar 1: Spiritual Authenticity - Detailed Section */
.pillar-1 {
    background: #fff8dd;
    position: relative;
}

.pillar-1 .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 24px;
}

/* Banner */
.pillar-1-banner {
    width: 100%;
    max-width: 1200px;
    height: 420px;
    margin: 0 auto 48px auto;
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.pillar-1-banner.visible {
    opacity: 1;
    transform: translateY(0);
}

.pillar-1-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(255, 248, 221, 0.75), rgba(255, 248, 221, 0.00));
    pointer-events: none;
    z-index: 1;
}

.pillar-1-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.1s ease-out;
    will-change: transform;
}

/* Content Block */
.pillar-1-content {
    text-align: center;
    margin-bottom: 48px;
}

.pillar-1-headline {
    font-family: 'Theseason-BD', serif;
    font-size: clamp(26px, 4vw, 56px);
    color: #43030f;
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -0.02em;
    margin: 0 0 12px 0;
    max-width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.pillar-1-headline.visible {
    opacity: 1;
    transform: translateY(0);
}

.pillar-1-body {
    font-family: 'Theseason-RG', serif;
    font-size: 18px;
    line-height: 1.6;
    color: #2b0a0e;
    max-width: 760px;
    margin: 12px auto 28px auto;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.25s ease 0.1s, transform 0.25s ease 0.1s;
}

.pillar-1-body.visible {
    opacity: 1;
    transform: translateY(0);
}

.btn-pillar-1-primary {
    display: inline-block;
    background: #43030f;
    color: #fff8dd;
    font-family: 'Theseason-RG', serif;
    font-size: 16px;
    font-weight: 400;
    padding: 16px 36px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.18s ease;
    border: none;
    cursor: pointer;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.25s ease 0.2s, transform 0.25s ease 0.2s, background 0.18s ease, box-shadow 0.18s ease;
}

.btn-pillar-1-primary.visible {
    opacity: 1;
    transform: translateY(0);
}

.btn-pillar-1-primary:hover {
    background: #5c0a0a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(67, 3, 15, 0.18);
}

.btn-pillar-1-primary:focus-visible {
    outline: 3px solid rgba(67, 3, 15, 0.3);
    outline-offset: 2px;
}

/* Ingredient Cards Grid */
.pillar-1-ingredients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-bottom: 36px;
}

.pillar-1-ingredient-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.22s ease;
    opacity: 0;
    transform: translateY(12px);
}

.pillar-1-ingredient-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.pillar-1-ingredient-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.pillar-1-ingredient-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 14px;
    display: block;
}

.pillar-1-ingredient-title {
    font-family: 'Theseason-BD', serif;
    font-size: clamp(18px, 2vw, 22px);
    color: #43030f;
    margin: 0 0 8px 0;
    font-weight: 400;
}

.pillar-1-ingredient-description {
    font-family: 'Theseason-RG', serif;
    font-size: 14px;
    color: #2b0a0e;
    line-height: 1.5;
    margin: 0;
}

/* Closing Quote Box */
.pillar-1-quote-box {
    max-width: 820px;
    margin: 36px auto 0 auto;
    padding: 22px 28px;
    background: rgba(255, 248, 221, 0.45);
    border-left: 6px solid rgba(67, 3, 15, 0.12);
    border-radius: 8px;
    text-align: center;
}

.pillar-1-quote-text {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(16px, 1.8vw, 19px);
    color: #43030f;
    opacity: 0.85;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Styles for Pillar 1 */
@media (max-width: 1024px) {
    .pillar-1 .container {
        padding: 48px 20px;
    }
    
    .pillar-1-banner {
        height: 320px;
        margin-bottom: 40px;
    }
    
    .pillar-1-headline {
        font-size: clamp(32px, 4.5vw, 42px);
    }
    
    .pillar-1-ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .pillar-1 .container {
        padding: 40px 20px;
    }
    
    .pillar-1-banner {
        height: clamp(220px, 45vw, 260px);
        margin-bottom: 32px;
        border-radius: 10px;
    }
    
    .pillar-1-headline {
        font-size: clamp(26px, 5.5vw, 32px);
        margin-bottom: 10px;
    }
    
    .pillar-1-body {
        font-size: 16px;
        max-width: 100%;
        margin: 10px auto 24px auto;
    }
    
    .pillar-1-content {
        margin-bottom: 40px;
    }
    
    .pillar-1-ingredients-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 32px;
    }
    
    .pillar-1-quote-box {
        max-width: 100%;
        padding: 20px 24px;
        margin-top: 32px;
    }
}

/* Responsive Styles for Pillars */
@media (max-width: 1024px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .pillars-section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .pillars-section {
        padding: 60px 0;
    }
    
    .pillars-container {
        padding: 0 4vw;
    }
    
    .pillars-header {
        margin-bottom: 40px;
    }
    
    .pillars-subline {
        max-width: 90%;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .pillar-card-image {
        height: 240px;
    }
    
    .pillar-card-content {
        padding: 20px 24px;
    }
    
    .pillars-cta {
        margin-top: 32px;
    }
    
    .btn-pillars-primary {
        width: 100%;
        max-width: 100%;
        padding: 14px 32px;
    }
}

.pillar-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.feature {
    text-align: center;
    padding: var(--space-lg);
    background: var(--light-cream);
    border-radius: var(--radius-lg);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature img {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-sm);
}

.feature h4 {
    color: var(--primary);
    margin-bottom: var(--space-xs);
}

.impact-metrics {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin: var(--space-xl) 0;
    text-align: center;
}

.metric {
    flex: 1;
    min-width: 150px;
    padding: var(--space-md);
    background: var(--light-cream);
    border-radius: var(--radius-lg);
}

.metric .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.metric .label {
    font-size: 0.9rem;
    color: var(--gray);
}

.artisan-showcase {
    margin: var(--space-xl) 0;
}

.artisan-showcase h4 {
    text-align: center;
    margin-bottom: var(--space-lg);
    font-size: 1.5rem;
    color: var(--primary);
}

.artisan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
}

.artisan-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
    text-align: center;
}

.artisan-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.artisan-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.artisan-card h5 {
    margin: var(--space-sm) 0 0.25rem;
    color: var(--primary);
}

.artisan-card p {
    font-size: 0.875rem;
    color: var(--gray);
    padding: 0 var(--space-sm) var(--space-sm);
}

.sustainability-comparison {
    display: flex;
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
    flex-wrap: wrap;
}

.comparison-item {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
}

.comparison-item.rasvra {
    border-top: 4px solid var(--accent);
}

.comparison-item.traditional {
    border-top: 4px solid var(--light-gray);
}

.comparison-item h4 {
    text-align: center;
    margin-bottom: var(--space-md);
    font-size: 1.5rem;
}

.comparison-item ul {
    list-style: none;
}

.comparison-item li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.comparison-item.rasvra li:before {
    content: '✓';
    color: var(--accent);
    font-weight: bold;
}

.comparison-item.traditional li:before {
    content: '✗';
    color: var(--gray);
}

.vs {
    display: flex;
    align-items: center;
    font-weight: 700;
    color: var(--gray);
}

.eco-badges {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin: var(--space-xl) 0;
}

.eco-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    font-weight: 500;
}

.eco-badge img {
    width: 24px;
    height: 24px;
}

.ingredient-showcase {
    margin: var(--space-xl) 0;
}

.ingredient-showcase h4 {
    text-align: center;
    margin-bottom: var(--space-lg);
    font-size: 1.5rem;
    color: var(--primary);
}

.ingredient-slider {
    display: flex;
    gap: var(--space-md);
    overflow-x: auto;
    padding: var(--space-sm) 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-padding: 0 var(--space-md);
}

.ingredient-card {
    flex: 0 0 200px;
    scroll-snap-align: start;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.ingredient-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.ingredient-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.ingredient-card h5 {
    padding: var(--space-sm) var(--space-sm) 0.25rem;
    color: var(--primary);
}

.ingredient-card p {
    font-size: 0.875rem;
    color: var(--gray);
    padding: 0 var(--space-sm) var(--space-sm);
}

.nutrition-highlights {
    margin: var(--space-xl) 0;
}

.nutrition-highlights h4 {
    text-align: center;
    margin-bottom: var(--space-lg);
    font-size: 1.5rem;
    color: var(--primary);
}

.nutrition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: var(--space-md);
    text-align: center;
}

.nutrition-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    box-shadow: var(--shadow-sm);
}

.nutrition-item .value {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.nutrition-item .label {
    font-size: 0.875rem;
    color: var(--gray);
}

/* Artisan Spotlight Section */
.artisan-spotlight {
    background: #ffffff;
    padding: 80px 0;
    position: relative;
}

.artisan-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.artisan-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    justify-items: center;
}

.artisan-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    max-width: 360px;
    width: 100%;
    cursor: pointer;
    position: relative;
}

.artisan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
}

.artisan-card:focus-within {
    outline: 3px solid rgba(67, 3, 15, 0.3);
    outline-offset: 4px;
}

.artisan-portrait-wrapper {
    width: 240px;
    height: 240px;
    margin: 0 auto 16px auto;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #43030f;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    transition: all 0.3s ease;
}

.artisan-card:hover .artisan-portrait-wrapper {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.artisan-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    display: block;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.artisan-card:hover .artisan-portrait {
    opacity: 0.98;
    transform: scale(1.02);
}

.artisan-name {
    font-family: 'Theseason-BD', serif;
    font-size: clamp(18px, 2vw, 20px);
    color: #43030f;
    font-weight: 400;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.artisan-quote {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(15px, 1.6vw, 16px);
    color: #4a2a2a;
    line-height: 1.45;
    margin: 0 0 16px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.artisan-cta {
    font-family: 'Theseason-RG', serif;
    font-size: 14px;
    color: #43030f;
    text-decoration: none;
    position: relative;
    display: inline-block;
    transition: color 0.2s ease;
}

.artisan-cta::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #43030f;
    transition: width 0.3s ease;
}

.artisan-cta:hover::after,
.artisan-cta:focus::after {
    width: 100%;
}

.artisan-cta:hover,
.artisan-cta:focus {
    color: #5a0418;
    outline: none;
}

/* Responsive Styles for Artisan Spotlight */
@media (max-width: 1199px) {
    .artisan-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }
    
    .artisan-portrait-wrapper {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 899px) {
    .artisan-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .artisan-portrait-wrapper {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 599px) {
    .artisan-spotlight {
        padding: 60px 0;
    }
    
    .section-heading-wrapper {
        padding: 40px 20px 0 20px;
    }
    
    .artisan-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .artisan-card {
        max-width: 100%;
    }
    
    .artisan-portrait-wrapper {
        width: 120px;
        height: 120px;
    }
    
    .artisan-name {
        font-size: clamp(18px, 4vw, 20px);
    }
    
    .artisan-quote {
        font-size: clamp(14px, 3.5vw, 16px);
    }
}

/* Testimonials Section */
.testimonials {
    background: #ffffff;
    padding: 80px 0;
    position: relative;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

.testimonials-header {
    margin-bottom: 56px;
    text-align: center;
}

.testimonials-heading {
    font-family: 'Theseason-BD', serif;
    font-size: clamp(32px, 4.5vw, 48px);
    color: #43030f;
    font-weight: 400;
    margin: 0;
    position: relative;
    text-align: center;
}

.testimonials-closing {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(16px, 2vw, 18px);
    color: #5b2d2f;
    text-align: center;
    margin: 64px 0 0 0;
    font-style: italic;
    opacity: 0.85;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: start;
}

.testimonial-card {
    background: #fff8dd;
    border: 1px solid #e9ddc7;
    border-radius: 16px;
    padding: 36px 32px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
    outline: none;
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: flex-start;
    position: relative;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 248, 221, 0.2) 100%);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.testimonial-card:hover::before,
.testimonial-card:focus::before {
    opacity: 1;
}

.testimonial-card:hover,
.testimonial-card:focus {
    transform: translateY(-8px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #d4b89a;
}

.testimonial-card:focus-visible {
    outline: 3px solid rgba(67, 3, 15, 0.3);
    outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
    .testimonial-card:hover,
    .testimonial-card:focus {
        transform: none;
    }
}

/* Portrait Wrapper */
.portrait-wrap {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #c89b3c;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1), 0 2px 6px rgba(200, 155, 60, 0.2);
    flex-shrink: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Testimonial Content */
.testimonial-content {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.testimonial-quote {
    margin: 0;
    padding: 0;
}

.testimonial-quote p {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(15px, 1.6vw, 17px);
    color: #5b2d2f;
    line-height: 1.65;
    margin: 0;
    text-align: left;
    letter-spacing: 0.01em;
}

.testimonial-meta {
    font-family: 'Theseason-BD', serif;
    font-size: clamp(13px, 1.4vw, 14px);
    color: #43030f;
    font-weight: 400;
    margin-top: 16px;
    text-align: left;
    letter-spacing: 0.02em;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .testimonials-container {
        padding: 0 24px;
    }
    
    .testimonial-card {
        padding: 32px 28px;
        gap: 22px;
    }
    
    .portrait-wrap {
        width: 80px;
        height: 80px;
    }
    
    .testimonial-quote p {
        font-size: clamp(15px, 1.7vw, 16px);
    }
}

@media (max-width: 767px) {
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials-container {
        padding: 0 20px;
    }
    
    .testimonials-header {
        margin-bottom: 48px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .testimonial-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 32px 24px;
        gap: 20px;
    }
    
    .portrait-wrap {
        width: 70px;
        height: 70px;
        margin: 0 auto;
    }
    
    .testimonial-content {
        text-align: center;
        width: 100%;
    }
    
    .testimonial-quote {
        padding: 0;
    }
    
    .testimonial-quote p {
        font-size: clamp(14px, 3.5vw, 16px);
        text-align: center;
        line-height: 1.6;
    }
    
    .testimonial-meta {
        text-align: center;
        margin-top: 14px;
        font-size: clamp(12px, 3vw, 14px);
    }
}

/* QR Ecosystem Section */
.qr-ecosystem {
    padding: var(--space-xxl) 0;
    background: linear-gradient(135deg, #f8f5f0 0%, #fff8dd 100%);
}

.qr-ecosystem .section-header {
    max-width: 700px;
}

.qr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.qr-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.qr-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.qr-code {
    width: 150px;
    height: 150px;
    margin: 0 auto var(--space-md);
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
}

.qr-code img {
    max-width: 80%;
    max-height: 80%;
}

.qr-card h4 {
    color: var(--primary);
    margin-bottom: var(--space-xs);
}

.qr-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials {
    padding: var(--space-xxl) 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/patterns/testimonial-bg-pattern.svg') center/cover no-repeat;
    opacity: 0.05;
    z-index: 0;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonial-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-lg) 0;
}

.testimonial {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
    margin: 0 var(--space-md);
    position: relative;
    border: 1px solid var(--light-gray);
}

.quote-icon {
    font-size: 5rem;
    line-height: 1;
    color: var(--accent);
    opacity: 0.2;
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-family: Georgia, serif;
}

.testimonial-content {
    position: relative;
    z-index: 2;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: var(--space-lg);
    font-style: italic;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent);
}

.author-details h4 {
    margin-bottom: 0.25rem;
    color: var(--primary);
}

.rating {
    color: var(--accent);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 0.25rem;
}

.location {
    font-size: 0.875rem;
    color: var(--gray);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.slider-nav:hover {
    background: var(--primary);
    color: var(--white);
}

.slider-nav.prev {
    left: -25px;
}

.slider-nav.next {
    right: -25px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: var(--space-lg);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--light-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.trust-badge img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.trust-badge span {
    font-weight: 500;
    color: var(--dark);
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #43030f 0%, #5a0418 50%, #43030f 100%);
    color: #fff8dd;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 154, 25, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.final-cta .container {
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    font-family: 'Theseason-BD', serif;
    font-size: clamp(32px, 4vw, 48px);
    color: #fff8dd;
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* Removed decorative underline as per requirements */

.final-cta .subtitle {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(18px, 2vw, 22px);
    color: rgba(255, 248, 221, 0.9);
    max-width: 800px;
    margin: 0 auto 48px auto;
    line-height: 1.5;
    letter-spacing: 0.01em;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin: 48px auto;
    max-width: 1140px;
    padding: 0 6vw;
}

@media (max-width: 1024px) {
    .cta-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 4vw;
    }
}

.cta-card {
    background: rgba(255, 248, 221, 0.15);
    border-radius: 14px;
    padding: 40px 32px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(67, 3, 15, 0.12);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(67, 3, 15, 0.08);
    min-height: auto;
    height: auto;
}

.cta-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15), 0 8px 16px rgba(67, 3, 15, 0.12);
    border-color: rgba(212, 154, 25, 0.3);
}

.cta-card-highlight {
    background: rgba(255, 248, 221, 0.2);
    border: 1.5px solid rgba(212, 154, 25, 0.4);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(212, 154, 25, 0.15);
    position: relative;
    overflow: visible;
}

.cta-card-highlight:hover {
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18), 0 8px 20px rgba(212, 154, 25, 0.2);
    border-color: rgba(212, 154, 25, 0.5);
}

.cta-badge {
    position: absolute;
    top: -12px;
    left: 24px;
    background: linear-gradient(135deg, #d49a19 0%, #b88a1a 100%);
    color: #fff8dd;
    font-family: 'Theseason-BD', serif;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(212, 154, 25, 0.3);
    letter-spacing: 0.05em;
    z-index: 10;
    text-transform: uppercase;
}

.cta-icon-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 50%;
    border: 4px solid #d49a19;
    padding: 6px;
    background: rgba(255, 248, 221, 0.15);
    box-shadow: 0 4px 20px rgba(212, 154, 25, 0.4), 
                0 0 0 2px rgba(212, 154, 25, 0.15) inset,
                0 2px 10px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 154, 25, 0.4), rgba(184, 138, 26, 0.3));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cta-card:hover .cta-icon-wrapper {
    border-color: #d49a19;
    box-shadow: 0 6px 24px rgba(212, 154, 25, 0.5), 
                0 0 0 3px rgba(212, 154, 25, 0.2) inset,
                0 4px 16px rgba(0, 0, 0, 0.2);
    transform: scale(1.02);
}

.cta-card:hover .cta-icon-wrapper::before {
    opacity: 1;
}

.cta-icon-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
    filter: grayscale(40%) brightness(0.95) contrast(0.95);
}

.cta-card:hover .cta-icon-image {
    transform: scale(1.05);
    filter: grayscale(0%) brightness(1.05) contrast(1.1);
}

.cta-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    display: inline-block;
}

.cta-card h3 {
    font-family: 'Theseason-BD', serif;
    font-size: clamp(22px, 2.2vw, 28px);
    color: #fff8dd;
    margin: 0 0 16px 0;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.01em;
    max-width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cta-card p {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(15px, 1.5vw, 17px);
    color: rgba(255, 248, 221, 0.9);
    margin: 0 0 28px 0;
    line-height: 1.6;
    max-width: 100%;
    flex-grow: 1;
}

.cta-card .btn {
    font-family: 'Theseason-BD', serif;
    font-size: clamp(15px, 1.6vw, 17px);
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
    white-space: nowrap;
    width: auto;
    margin-top: auto;
}

.cta-card .btn-primary {
    background: #43030f;
    color: #fff8dd;
    border: 1.5px solid #43030f;
}

.cta-card .btn-primary:hover {
    background: #5a0418;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(67, 3, 15, 0.3);
}

.cta-card .btn-secondary {
    background: #fff8dd;
    color: #43030f;
    border: 1.5px solid rgba(67, 3, 15, 0.2);
}

.cta-card .btn-secondary:hover {
    background: rgba(255, 248, 221, 0.95);
    border-color: #43030f;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(67, 3, 15, 0.2);
}

.cta-card .btn:focus-visible {
    outline: 3px solid rgba(212, 154, 25, 0.5);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    .cta-card,
    .cta-card:hover,
    .cta-card .cta-icon-image,
    .cta-card:hover .cta-icon-image,
    .cta-card .btn,
    .cta-card .btn:hover {
        transition: none;
        transform: none;
    }
}

/* Responsive adjustments for cta cards */
@media (max-width: 1024px) {
    .cta-card {
        min-height: auto;
        padding: 36px 28px;
    }
    
    .cta-icon-wrapper {
        width: 110px;
        height: 110px;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .final-cta {
        padding: 64px 0;
    }
    
    .cta-card {
        min-height: auto;
        padding: 32px 24px;
    }
    
    .cta-icon-wrapper {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
    }
    
    .cta-badge {
        font-size: 11px;
        padding: 5px 14px;
        top: -10px;
        left: 20px;
    }
}

/* Partner Network Section removed */

/* Mandala Strip */
.mandala-strip {
    width: 100%;
    background: #43030f;
    position: relative;
    padding: 40px 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.mandala-strip-image {
    width: 100%;
    height: auto;
    min-height: 100px;
    max-height: 140px;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0;
}

@media (max-width: 1024px) {
    .mandala-strip {
        padding: 32px 0;
    }
    
    .mandala-strip-image {
        min-height: 90px;
        max-height: 120px;
    }
}

@media (max-width: 768px) {
    .mandala-strip {
        padding: 24px 0;
    }
    
    .mandala-strip-image {
        min-height: 70px;
        max-height: 100px;
    }
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: var(--space-md);
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: var(--font-body);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .btn {
    white-space: nowrap;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

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

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

/* Removed .trust-logos - replaced with .partner-network */

/* Footer */
.footer {
    position: relative;
    background: #43030f;
    color: #fff8dd;
    padding-top: 0;
}

/* Footer mandala removed */

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    padding: 64px 0 48px 0;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media (max-width: 1024px) {
.footer-content {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        row-gap: 36px;
        padding: 48px 0 36px 0;
    }
}

.footer-logo {
    height: 100px;
    width: auto;
    max-width: 280px;
    margin-bottom: 20px;
    margin-top: 0;
    display: block;
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.footer-logo:hover {
    opacity: 1;
    transform: scale(1.02);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.footer-blurb {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(15px, 1.5vw, 16px);
    line-height: 1.6;
    color: rgba(255, 248, 221, 0.9);
    margin: 0 0 24px 0;
    letter-spacing: 0.01em;
    max-width: 100%;
}

.social-links {
    display: flex !important;
    gap: 12px;
    margin-top: 0;
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
    min-height: 40px;
}

.social-links a {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
}

.social-icon {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
    opacity: 1 !important;
    visibility: visible !important;
    flex-shrink: 0;
    object-fit: contain !important;
    padding: 0;
    background: transparent;
    border: none;
    display: block !important;
    transition: transform 0.3s ease, opacity 0.3s ease;
    box-sizing: border-box;
}

.social-links a:hover .social-icon {
    transform: scale(1.1);
    opacity: 0.9;
}

.social-link img {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    max-width: 32px;
    max-height: 32px;
    object-fit: contain;
    display: block;
    opacity: 1;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1) contrast(1.2);
    -webkit-filter: brightness(0) invert(1) contrast(1.2);
}

.social-link:hover img {
    opacity: 1;
    transform: scale(1.1);
    filter: brightness(0) invert(1) contrast(1.3) drop-shadow(0 2px 4px rgba(212, 154, 25, 0.3));
    -webkit-filter: brightness(0) invert(1) contrast(1.3) drop-shadow(0 2px 4px rgba(212, 154, 25, 0.3));
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-links h4 {
    font-family: 'Theseason-BD', serif;
    color: #fff8dd;
    font-size: 22px;
    font-weight: 500;
    margin: 0 0 20px 0;
    letter-spacing: 0.02em;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 14px;
}

.footer-links a {
    font-family: 'Theseason-RG', serif;
    color: #ffffff;
    font-size: clamp(15px, 1.5vw, 16px);
    line-height: 1.6;
    transition: all 0.3s ease;
    display: inline-block;
    letter-spacing: 0.01em;
    text-decoration: none;
}

.footer-links a:hover {
    color: #ffd87a;
    text-decoration: underline;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.footer-contact h4 {
    font-family: 'Theseason-BD', serif;
    color: #fff8dd;
    font-size: 22px;
    font-weight: 500;
    margin: 0 0 20px 0;
    letter-spacing: 0.02em;
    align-self: flex-end;
}

.contact-info {
    margin: 0 0 28px 0;
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-family: 'Theseason-RG', serif;
    font-size: clamp(15px, 1.5vw, 16px);
    line-height: 1.6;
    letter-spacing: 0.01em;
    flex-direction: row-reverse;
}

.contact-icon {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
    opacity: 1 !important;
    visibility: visible !important;
    flex-shrink: 0;
    object-fit: contain !important;
    padding: 0;
    background: transparent;
    border: none;
    display: block !important;
    transition: transform 0.3s ease, opacity 0.3s ease;
    box-sizing: border-box;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
    opacity: 0.9;
}

.contact-item a,
.contact-item span {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #ffd87a;
    text-decoration: underline;
}

.footer-subscribe {
    margin-top: 0;
    text-align: right;
    width: 100%;
}

.footer-subscribe h5 {
    font-family: 'Theseason-BD', serif;
    color: #fff8dd;
    font-size: clamp(16px, 1.8vw, 18px);
    font-weight: 600;
    margin: 0 0 12px 0;
    letter-spacing: 0.02em;
    text-transform: none;
}

.subscribe-form {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    flex-direction: row;
}

.subscribe-form input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid rgba(255, 248, 221, 0.2);
    border-radius: 8px;
    background: rgba(255, 248, 221, 0.1);
    color: #fff8dd;
    font-family: 'Theseason-RG', serif;
    font-size: 14px;
    min-width: 0;
}

.subscribe-form input::placeholder {
    color: rgba(255, 248, 221, 0.6);
}

.subscribe-form input:focus {
    outline: 2px solid rgba(212, 154, 25, 0.4);
    outline-offset: 2px;
    border-color: rgba(212, 154, 25, 0.4);
}

.btn-subscribe {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    background: #fff8dd;
    color: #43030f;
    font-family: 'Theseason-BD', serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-subscribe:hover {
    background: #ffd87a;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(212, 154, 25, 0.3);
}

.subscribe-microcopy {
    font-family: 'Theseason-RG', serif;
    font-size: 11px;
    color: rgba(255, 248, 221, 0.6);
    margin: 0;
    line-height: 1.4;
    text-align: right;
}

@media (max-width: 768px) {
    .footer-contact {
        align-items: flex-start;
        text-align: left;
    }
    
    .footer-contact h4 {
        align-self: flex-start;
        padding-right: 0;
    }
    
    .contact-info {
        align-items: flex-start;
    }
    
    .contact-item {
        flex-direction: row;
    }
    
    .footer-subscribe {
        text-align: left;
    }
    
    .subscribe-microcopy {
        text-align: left;
    }
    
    .subscribe-form {
        flex-direction: column;
    }
    
    .btn-subscribe {
        width: 100%;
    }
}

.newsletter h5 {
    color: var(--white);
    margin-bottom: var(--space-sm);
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    margin-top: var(--space-sm);
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: var(--font-body);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .btn {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    white-space: nowrap;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 248, 221, 0.1);
    padding: 24px 0;
    margin-top: 28px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-family: 'Theseason-RG', serif;
    font-size: 12px;
    color: rgba(255, 248, 221, 0.7);
    line-height: 1.5;
}

.footer-bottom-left,
.footer-bottom-center,
.footer-bottom-right {
    flex: 1;
    min-width: fit-content;
}

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

.footer-bottom-center {
    text-align: center;
}

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

.footer-bottom-right a {
    color: rgba(255, 248, 221, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-right a:hover {
    color: #fff8dd;
    text-decoration: underline;
}

.footer-bottom-right span {
    color: rgba(255, 248, 221, 0.5);
    margin: 0 4px;
}

.footer-impact-line {
    font-family: 'Theseason-RG', serif;
    font-size: 12px;
    color: rgba(255, 248, 221, 0.7);
    line-height: 1.6;
    margin: 16px 0 0 0;
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 248, 221, 0.1);
}

@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .footer-bottom-left,
    .footer-bottom-center,
    .footer-bottom-right {
        text-align: center;
        width: 100%;
    }
    
    .footer-brand {
        align-items: flex-start;
    }
    
    .footer-logo {
        height: 90px;
        max-width: 240px;
    }
    
    .footer-links {
        align-items: flex-start;
    }
    
    .footer-contact h4 {
        align-self: flex-start;
    }
    
    .footer-contact h4:after {
        display: none;
    }
}

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.25rem;
    }
    
    .section {
        padding: var(--space-xl) 0;
    }
    
    .hero h1 {
        font-size: 2.75rem;
    }
    
    .hero .subline {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: var(--white);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 6rem 2rem 2rem;
        transition: right 0.3s ease;
        overflow-y: auto;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-nav li {
        width: 100%;
        border-bottom: 1px solid var(--light-gray);
    }
    
    .main-nav a {
        display: block;
        padding: 1rem 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .subline {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    
    .testimonial {
        padding: var(--space-lg);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 48px 0;
    }
    
    .footer-about {
        padding-right: 0;
    }
    
    .footer-logo {
        height: 120px;
        max-width: 320px;
        margin-bottom: 20px;
    }
    
    .footer-about p {
        max-width: 100%;
        margin-bottom: 24px;
    }
    
    .footer-links,
    .footer-contact {
        margin-top: 0;
    }
    
    .footer-links h4,
    .footer-contact h4 {
        margin-top: 0;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .section {
        padding: var(--space-xl) 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .subline {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .author-details {
        margin-top: var(--space-sm);
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .slider-nav.prev {
        left: 10px;
    }
    
    .slider-nav.next {
        right: 10px;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .mobile-menu-toggle,
    .slider-nav,
    .pillar-tabs {
        display: none !important;
    }
    
    body {
        padding: 0;
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
        background: #fff;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 1cm;
    }
    
    .section {
        padding: 1cm 0;
        page-break-inside: avoid;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
    
    a {
        text-decoration: underline;
    }
    
    .btn {
        display: none;
    }
    
    .testimonial-slider {
        height: auto !important;
    }
    
    .testimonial {
        opacity: 1 !important;
        position: relative !important;
        transform: none !important;
        margin: 0 0 1cm 0 !important;
        page-break-inside: avoid;
    }
}
/* Announcement Bar */
.announcement-bar {
    background-color: var(--primary);
    color: var(--white);
    padding: 0.5rem 0;
    overflow: hidden;
    white-space: nowrap;
    font-size: 0.9rem;
    position: relative;
    z-index: 1001; /* Above header */
}

.announcement-text {
    display: inline-block;
    padding-left: 100%;
    animation: scroll 20s linear infinite;
    letter-spacing: 0.5px;
}

/* Main Header */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.75rem 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    position: relative;
}

/* Logo container */
.logo {
    flex: 0 0 auto;
    margin-right: 2rem;
}

/* Navigation in the middle */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* Search container on the right */
.search-container {
    flex: 0 0 auto;
    margin-left: 2rem;
}

/* Logo */
.logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

/* Navigation */
.main-nav {
    justify-self: center;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Search Bar */
.search-container {
    justify-self: end;
}

.search-bar {
    display: flex;
    align-items: center;
    position: relative;
    width: 250px;
}

.search-bar input {
    width: 100%;
    padding: 0.6rem 1rem;
    padding-right: 2.5rem;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: 1rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .header .container {
        grid-template-columns: auto 1fr auto;
        gap: 1rem;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: var(--white);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 5rem 2rem 2rem;
        transition: right 0.3s ease;
        z-index: 999;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    .search-bar {
        display: none;
    }
    
    .mobile-search {
        display: block;
        width: 100%;
        padding: 1rem;
        background: var(--white);
        position: absolute;
        top: 100%;
        left: 0;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
}
 /* Announcement Bar */
.announcement-bar {
    background-color: var(--primary);
    color: var(--white);
    padding: 0.5rem 0;
    overflow: hidden;
    white-space: nowrap;
    font-size: 0.9rem;
    position: relative;
    z-index: 1001;
}

.announcement-text {
    display: inline-block;
    padding-left: 100%;
    animation: scroll 20s linear infinite;
    letter-spacing: 0.5px;
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

/* Main Header */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

/* Rest of your existing header styles... */

/* ===== COMPREHENSIVE MOBILE FIXES ===== */
@media (max-width: 768px) {
    /* Prevent horizontal scrolling */
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    /* Fix body when menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
    
    /* Ensure all containers don't overflow */
    * {
        max-width: 100%;
    }
    
    /* Fix section heading wrapper */
    .section-heading-wrapper {
        padding: 40px 4vw 0 4vw;
    }
    
    /* Fix all sections to use consistent padding */
    .section {
        padding: 40px 0;
        overflow-x: hidden;
    }
    
    /* Ensure images don't overflow */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Fix any elements that might cause horizontal scroll */
    .product-grid,
    .essence-grid,
    .pillar-ingredients-grid,
    .pillar-comparison,
    .pillar-wellness-lists {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 4vw;
    }
    
    .section-heading-wrapper {
        padding: 32px 4vw 0 4vw;
    }
    
    .section {
        padding: 32px 0;
    }
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

/* About Hero Section */
.about-hero {
    position: relative;
    width: 100%;
    min-height: clamp(550px, 65vh, 750px);
    height: clamp(550px, 65vh, 750px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
    padding-top: var(--header-offset);
}

.about-hero-image-wrapper {
    position: absolute;
    top: calc(-1 * var(--header-offset));
    left: 0;
    width: 100%;
    height: calc(100% + var(--header-offset));
    z-index: 0;
}

.about-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.about-hero-overlay {
    position: absolute;
    top: calc(-1 * var(--header-offset));
    left: 0;
    width: 100%;
    height: calc(100% + var(--header-offset));
    background: linear-gradient(to bottom, 
        rgba(67, 3, 15, 0.85) 0%, 
        rgba(67, 3, 15, 0.8) 10%, 
        rgba(67, 3, 15, 0.75) 20%, 
        rgba(67, 3, 15, 0.65) 35%, 
        rgba(67, 3, 15, 0.5) 50%, 
        rgba(67, 3, 15, 0.35) 65%, 
        rgba(67, 3, 15, 0.2) 80%, 
        rgba(67, 3, 15, 0.1) 90%, 
        transparent 100%);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 4vw;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: clamp(80px, 15vh, 120px);
    transform: translateY(-20px);
}

.about-hero-heading {
    font-family: 'Theseason-BD', serif;
    font-size: clamp(36px, 6vw, 64px);
    color: #fff8dd;
    font-weight: 400;
    margin: 0 0 16px 0;
    text-shadow: 0 2px 8px rgba(67, 3, 15, 0.3);
    line-height: 1.1;
}

.about-hero-subheading {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(18px, 2.5vw, 28px);
    color: #fff8dd;
    font-weight: 400;
    margin: 0;
    text-shadow: 0 2px 6px rgba(67, 3, 15, 0.3);
    opacity: 0.95;
}

/* About Main Content */
.about-main {
    background: #fff8dd;
    padding: 0;
}

.about-section {
    padding: 60px 0;
    position: relative;
}

.about-section:first-of-type {
    padding-top: 60px;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 6vw;
}

.about-section-heading {
    font-family: 'Theseason-BD', serif;
    font-size: clamp(32px, 4.5vw, 48px);
    color: #43030f;
    font-weight: 400;
    margin: 0 0 8px 0;
    text-align: left;
    line-height: 1.2;
}

.about-section-heading::after {
    display: none !important;
    content: none !important;
}

.about-section-subheading {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(18px, 2.2vw, 24px);
    color: #5b2d2f;
    font-weight: 400;
    margin: 0 0 32px 0;
    text-align: left;
    font-style: italic;
    line-height: 1.4;
    position: relative;
    padding-bottom: 16px;
}

.about-section-subheading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90px;
    height: 4px;
    background-color: #d4a637;
    border-radius: 2px;
}

.about-content {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(16px, 1.8vw, 18px);
    line-height: 1.75;
    color: #2b0a0e;
    max-width: 900px;
    margin: 0 auto;
}

.about-content p {
    margin-bottom: 20px;
    text-align: left;
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* Highlight class for key phrases */
.about-highlight {
    color: #d4a637;
    font-weight: 600;
}

/* About Lists */
.about-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.about-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    font-family: 'Theseason-RG', serif;
    font-size: clamp(16px, 1.8vw, 18px);
    line-height: 1.75;
    color: #2b0a0e;
}

.about-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4a637;
    font-size: 20px;
    line-height: 1.6;
    font-weight: bold;
}

/* Pillar Items */
.about-pillar-item {
    margin: 36px 0;
    padding: 24px 0;
    border-bottom: 1px solid rgba(67, 3, 15, 0.1);
}

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

.about-pillar-title {
    font-family: 'Theseason-BD', serif;
    font-size: clamp(22px, 2.8vw, 28px);
    color: #43030f;
    font-weight: 400;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.about-pillar-item p {
    margin-bottom: 14px;
}

/* Founders Section */
.about-founders {
    background: #fffcf2;
    padding: 60px 0;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    margin-top: 40px;
    align-items: start;
}

.founder-card {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.founder-portrait-wrapper {
    width: 100%;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(67, 3, 15, 0.15);
    background: #fff8dd;
    padding: 8px;
}

.founder-portrait {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center center;
    border-radius: 12px;
    display: block;
    filter: grayscale(20%) brightness(0.95) contrast(1.05) saturate(0.9);
    transition: filter 0.3s ease, transform 0.3s ease;
    aspect-ratio: 1 / 1;
    max-width: 520px;
    margin: 0 auto;
}

.founder-card:hover .founder-portrait {
    filter: grayscale(10%) brightness(1) contrast(1.1) saturate(1);
    transform: scale(1.02);
}

.founder-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.founder-name {
    font-family: 'Theseason-BD', serif;
    font-size: clamp(24px, 3vw, 32px);
    color: #43030f;
    font-weight: 400;
    margin: 0;
    text-align: center;
}

.founder-role {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(16px, 1.8vw, 18px);
    color: #5b2d2f;
    font-weight: 400;
    margin: 0;
    text-align: center;
    font-style: italic;
}

.founder-text {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(15px, 1.7vw, 17px);
    line-height: 1.8;
    color: #2b0a0e;
    margin: 0;
}

.founder-text p {
    margin-bottom: 16px;
}

.founder-text p:last-child {
    margin-bottom: 0;
}

.founder-link {
    font-family: 'Theseason-RG', serif;
    font-size: 16px;
    color: #43030f;
    text-decoration: none;
    border: 1.5px solid #43030f;
    padding: 12px 24px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: 8px;
    display: inline-block;
    align-self: center;
    min-width: 44px;
    min-height: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(67, 3, 15, 0.1);
}

.founder-link:hover,
.founder-link:focus {
    background: #43030f;
    color: #fff8dd;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(67, 3, 15, 0.2);
}

.founder-card:focus-visible {
    outline: 3px solid rgba(67, 3, 15, 0.3);
    outline-offset: 8px;
    border-radius: 12px;
}

/* Closing Section */
.about-closing {
    background: linear-gradient(135deg, #fff8dd 0%, #fffcf2 100%);
    padding: 60px 0;
}

.about-closing .about-section-heading {
    text-align: left;
}

.about-closing .about-content {
    text-align: left;
}

.about-closing-signature {
    font-family: 'Theseason-BD', serif;
    font-size: clamp(24px, 3vw, 32px);
    color: #43030f;
    font-weight: 400;
    margin: 32px 0 20px 0;
    text-align: center;
}

.about-closing-tagline {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(18px, 2.2vw, 22px);
    color: #5b2d2f;
    font-weight: 400;
    margin: 24px 0 0 0;
    text-align: center;
    font-style: italic;
    line-height: 1.6;
}

/* Responsive Styles for About Page */
@media (max-width: 1024px) {
    .about-section {
        padding: 48px 0;
    }
    
    .about-section:first-of-type {
        padding-top: 48px;
    }
    
    .about-container {
        padding: 0 5vw;
    }
    
    .founders-grid {
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: clamp(450px, 55vh, 650px);
        height: clamp(450px, 55vh, 650px);
        margin-top: var(--header-offset);
    }
    
    .about-section {
        padding: 40px 0;
    }
    
    .about-section:first-of-type {
        padding-top: 40px;
    }
    
    .about-container {
        padding: 0 4vw;
    }
    
    .about-content {
        font-size: 16px;
    }
    
    .founders-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        margin-top: 48px;
    }
    
    .founder-card {
        gap: 28px;
    }
    
    .founder-portrait-wrapper {
        padding: 6px;
    }
    
    .founder-portrait {
        max-width: 100%;
        min-height: 360px;
        max-height: 420px;
        object-fit: cover;
        aspect-ratio: 3 / 4;
    }
    
    .about-pillar-item {
        margin: 36px 0;
        padding: 24px 0;
    }
    
    .about-closing {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .about-hero {
        min-height: clamp(400px, 50vh, 550px);
        height: clamp(400px, 50vh, 550px);
        margin-top: var(--header-offset);
    }
    
    .about-hero-heading {
        font-size: clamp(28px, 8vw, 40px);
    }
    
    .about-hero-subheading {
        font-size: clamp(16px, 4vw, 20px);
    }
    
    .about-section {
        padding: 36px 0;
    }
    
    .about-section:first-of-type {
        padding-top: 36px;
    }
    
    .about-container {
        padding: 0 4vw;
    }
    
    .about-content {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .about-section-heading {
        font-size: clamp(28px, 6vw, 36px);
    }
    
    .about-section-subheading {
        font-size: clamp(16px, 3.5vw, 20px);
    }
    
    .founder-portrait {
        min-height: 360px;
        max-height: 400px;
    }
    
    .founder-link {
        padding: 14px 20px;
        font-size: 15px;
        min-width: 44px;
        min-height: 44px;
    }
    
    .about-list li {
        padding-left: 24px;
        font-size: 15px;
        line-height: 1.7;
    }
    
    .about-pillar-title {
        font-size: clamp(20px, 4.5vw, 24px);
    }
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .founder-portrait,
    .founder-link {
        transition: none;
    }
    
    .founder-card:hover .founder-portrait {
        transform: none;
    }
}

/* ============================================
   SACRED PILLARS PAGE STYLES
   ============================================ */

/* Hero Section */
.pillars-hero {
    background: #ffffff;
    padding: 120px 0 80px 0;
    text-align: center;
    margin-top: var(--header-offset);
}

.pillars-hero-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 6vw;
}

.pillars-hero-heading {
    font-family: 'Theseason-BD', serif;
    font-size: clamp(36px, 5vw, 56px);
    color: #43030f;
    font-weight: 400;
    margin: 0 0 8px 0;
    line-height: 1.2;
    position: relative;
    padding-bottom: 0;
}

.pillars-hero-heading::after {
    display: none;
}

.pillars-hero-subheading {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(18px, 2.5vw, 26px);
    color: #5b2d2f;
    font-weight: 400;
    margin: 0 0 24px 0;
    font-style: italic;
    line-height: 1.5;
}

.pillars-hero-body {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(16px, 1.8vw, 19px);
    line-height: 1.6;
    color: #43030f;
    margin: 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Main Pillars Content */
.pillars-main {
    background: #ffffff;
    padding: 60px 0;
}

/* Pillar section card styling moved to premium enhancements section */

/* Pillar Banner - Full Width */
.pillar-section .pillar-banner-wrapper {
    width: 100%;
    max-width: 1100px;
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: 280px;
    max-height: 450px;
    margin: 32px auto 60px auto;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    padding: 0;
    box-sizing: border-box;
}

.pillar-section .pillar-banner-wrapper:hover {
    transform: none;
    box-shadow: none;
}

.pillar-section .pillar-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: none;
}

.pillar-section .pillar-banner-wrapper:hover .pillar-banner-image {
    transform: none;
    filter: none;
    box-shadow: none;
}

/* Pillar Content Container */
.pillar-content-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 6vw;
    box-sizing: border-box;
}

.pillar-section .pillar-content-container:first-of-type {
    margin-bottom: 0;
}

.pillar-section-heading {
    font-family: 'Theseason-BD', serif;
    font-size: clamp(28px, 4vw, 40px);
    color: #43030f;
    font-weight: 400;
    margin: 0 0 6px 0;
    text-align: center;
    line-height: 1.2;
}

.pillar-section-heading::after {
    display: none !important;
}

.pillar-section-subheading {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(17px, 2vw, 22px);
    color: #5b2d2f;
    font-weight: 400;
    margin: 0 0 32px 0;
    text-align: center;
    font-style: italic;
    line-height: 1.4;
    position: relative;
    padding-bottom: 16px;
}

.pillar-heading-content .pillar-section-heading {
    margin-top: 0;
}

.pillar-heading-content .pillar-section-subheading {
    margin-top: 0;
}

.pillar-section-subheading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 4px;
    background-color: #d4a637;
    border-radius: 2px;
}

.pillar-content {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(16px, 1.8vw, 18px);
    line-height: 1.75;
    color: #2b0a0e;
    max-width: 900px;
    margin: 0;
}

.pillar-content p {
    margin-bottom: 20px;
    text-align: left;
}

.pillar-content p:last-of-type {
    margin-bottom: 32px;
}

/* Ingredient Cards Grid - Only for Pillar 1 */
.pillar-section .pillar-ingredients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 48px 0;
    max-width: 1100px;
}

/* Ingredient card styles inherit from existing .pillar-ingredient-card styles */
.pillar-section .pillar-ingredient-card {
    text-align: center;
}

.pillar-section .pillar-ingredient-title {
    font-family: 'Theseason-BD', serif;
    font-size: clamp(18px, 2vw, 22px);
    color: #43030f;
    font-weight: 400;
    margin: 0 0 8px 0;
    position: relative;
    z-index: 1;
}

.pillar-section .pillar-ingredient-description {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(14px, 1.6vw, 16px);
    color: #5b2d2f;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Pillar Quote */
.pillar-section .pillar-quote {
    margin: 48px 0 40px 0;
    padding: 0;
    border: none;
    text-align: center;
}

.pillar-section .pillar-quote-text {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(14px, 1.3vw, 17px);
    color: #43030f;
    font-style: italic;
    line-height: 1.3;
    margin: 0;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    white-space: nowrap;
}

/* Pillar Divider */
.pillar-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, 
        transparent 0%, 
        rgba(212, 166, 55, 0.3) 20%, 
        rgba(212, 166, 55, 0.5) 50%, 
        rgba(212, 166, 55, 0.3) 80%, 
        transparent 100%);
    margin: 0;
}

/* Read More Button - Adjusted for standalone page */
.pillar-section .btn-pillar-read-more {
    margin: 40px auto 0 auto;
    display: block;
    width: fit-content;
}

/* Responsive Styles for Sacred Pillars Page */
@media (max-width: 1024px) {
    .pillars-hero {
        padding: 100px 0 60px 0;
    }
    
    .pillars-hero-body {
        max-width: 800px;
    }
    
    .pillar-section {
        padding: 60px 0;
    }
    
    .pillar-section:first-of-type {
        padding-top: 40px;
    }
    
    .pillar-content-container {
        padding: 0 5vw;
    }
    
    .pillar-section .pillar-banner-wrapper {
        min-height: 240px;
        max-height: 380px;
        margin-bottom: 48px;
    }
    
    .pillar-section .pillar-ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .pillar-section .pillar-ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

@media (max-width: 640px) {
    .pillars-hero {
        padding: 80px 0 48px 0;
        margin-top: var(--header-offset);
    }
    
    .pillars-hero-body {
        max-width: 100%;
        padding: 0 4vw;
    }
    
    .pillar-section {
        padding: 48px 0;
    }
    
    .pillar-section:first-of-type {
        padding-top: 32px;
    }
    
    .pillar-content-container {
        padding: 0 4vw;
    }
    
    .pillar-section .pillar-banner-wrapper {
        min-height: 220px;
        max-height: 350px;
        margin-bottom: 40px;
    }
    
    .pillar-section-heading {
        font-size: clamp(26px, 5vw, 32px);
    }
    
    .pillar-section-subheading {
        font-size: clamp(16px, 2.5vw, 20px);
    }
    
    .pillar-content {
        font-size: 16px;
    }
    
    .pillar-section .pillar-quote-text {
        font-size: clamp(13px, 2vw, 16px);
        white-space: normal;
    }
    
    .pillar-section .pillar-ingredients-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 36px 0;
    }
    
    .pillar-comparison,
    .pillar-wellness-lists {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
}

@media (max-width: 480px) {
    .pillars-hero {
        padding: 60px 0 40px 0;
    }
    
    .pillars-hero-body {
        padding: 0 4vw;
    }
    
    .pillar-section {
        padding: 40px 0;
    }
    
    .pillar-section:first-of-type {
        padding-top: 28px;
    }
    
    .pillar-section .pillar-banner-wrapper {
        min-height: 200px;
        max-height: 300px;
        margin-bottom: 32px;
    }
    
    .pillar-content {
        font-size: 15px;
    }
    
    .pillar-section-heading {
        font-size: clamp(24px, 6vw, 28px);
    }
    
    .pillar-section-subheading {
        font-size: clamp(15px, 3.5vw, 18px);
    }
    
    .pillars-hero-body {
        font-size: 16px;
    }
    
    .pillar-section .pillar-quote-text {
        font-size: clamp(12px, 2.5vw, 15px);
        white-space: normal;
    }
}

/* Respect prefers-reduced-motion for pillars page */
@media (prefers-reduced-motion: reduce) {
    .pillar-section .pillar-ingredient-card,
    .btn-pillar-read-more {
        transition: none;
    }
    
    .pillar-section .pillar-ingredient-card:hover {
        transform: none;
    }
}

/* ============================================
   PREMIUM PILLARS PAGE ENHANCEMENTS
   ============================================ */

/* 1. Pillar Number Badges */
.pillar-heading-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    animation: fadeUp 0.6s ease-out;
}

.pillar-number-badge {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #43030f 0%, #5b1a1f 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Theseason-BD', serif;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(67, 3, 15, 0.25);
    flex-shrink: 0;
    margin: 0 auto;
}

.pillar-heading-content {
    flex: 1;
    text-align: center;
}

/* 2. Improved Banner Styling */
.pillar-section .pillar-banner-wrapper {
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    animation: fadeIn 0.8s ease-out;
    overflow: hidden;
}

.pillar-section .pillar-banner-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18), 0 6px 12px rgba(0, 0, 0, 0.12);
}

.pillar-section .pillar-banner-image {
    border-radius: 20px;
}

/* 3. Section Dividers - Hidden since cards have spacing */
.pillar-divider {
    display: none;
}

.pillar-divider-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, transparent, #d4a75c, transparent);
    position: relative;
}

.pillar-divider-line::before,
.pillar-divider-line::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d4a75c;
    top: 50%;
    transform: translateY(-50%);
}

.pillar-divider-line::before {
    left: -10px;
}

.pillar-divider-line::after {
    right: -10px;
}

/* 4. Improved Typography & Spacing */
.pillar-section {
    background: #fff8dd;
    padding: 60px 6vw;
    margin: 40px auto;
    max-width: 1200px;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    animation: fadeUp 0.8s ease-out forwards;
    position: relative;
    overflow: hidden;
}

.pillar-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 167, 92, 0.03) 0%, rgba(67, 3, 15, 0.01) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.pillar-section:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 6px 16px rgba(67, 3, 15, 0.08);
}

.pillar-section:hover::before {
    opacity: 1;
}

.pillar-section > * {
    position: relative;
    z-index: 1;
}

.pillar-section:nth-child(1) { animation-delay: 0.1s; }
.pillar-section:nth-child(2) { animation-delay: 0.2s; }
.pillar-section:nth-child(3) { animation-delay: 0.3s; }
.pillar-section:nth-child(4) { animation-delay: 0.4s; }

.pillar-content-container {
    max-width: 1100px;
}

.pillar-section-heading {
    margin: 0 0 8px 0;
    padding-top: 0;
    text-align: center;
}

.pillar-content {
    max-width: 100%;
    line-height: 1.65;
    margin-top: 40px;
    text-align: center;
}

.pillar-content p {
    margin-bottom: 24px;
    text-align: center;
}

/* 5. Ingredient Cards - 4 in one line, center aligned */
.pillar-section .pillar-ingredients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 48px auto;
    max-width: 1100px;
    justify-items: stretch;
    padding: 0;
    width: 100%;
}

.pillar-section .pillar-ingredient-card {
    background: #fffcf2;
    border: 1px solid rgba(67, 3, 15, 0.08);
    border-radius: 18px;
    padding: 24px 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 280px;
    justify-content: space-between;
}

.pillar-section .pillar-ingredient-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 167, 92, 0.05) 0%, rgba(67, 3, 15, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    z-index: 0;
}

.pillar-section .pillar-ingredient-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15), 0 6px 12px rgba(67, 3, 15, 0.1);
    border-color: rgba(212, 167, 92, 0.3);
}

.pillar-section .pillar-ingredient-card:hover::before {
    opacity: 1;
}

.pillar-section .pillar-ingredient-image {
    position: relative;
    z-index: 1;
    border-radius: 14px;
    transition: transform 0.35s ease;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pillar-section .pillar-ingredient-card:hover .pillar-ingredient-image {
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pillar-section .pillar-ingredient-title {
    position: relative;
    z-index: 1;
    margin: 0 0 8px 0;
    font-family: 'Theseason-BD', serif;
    font-size: clamp(18px, 2vw, 22px);
    color: #43030f;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.pillar-section .pillar-ingredient-description {
    position: relative;
    z-index: 1;
    margin: 0;
    font-family: 'Theseason-RG', serif;
    font-size: clamp(13px, 1.4vw, 15px);
    color: #5b2d2f;
    line-height: 1.5;
    font-weight: 400;
}

/* 6. Quote Panels */
.pillar-quote-panel {
    max-width: 850px;
    margin: 60px auto 0 auto;
    padding: 32px 40px;
    background: linear-gradient(135deg, rgba(212, 167, 92, 0.15) 0%, rgba(212, 167, 92, 0.08) 100%);
    border-left: 4px solid #d4a75c;
    border-radius: 12px;
    text-align: center;
    animation: fadeUp 0.6s ease-out;
}

.pillar-quote-panel-text {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(14px, 1.3vw, 17px);
    color: #43030f;
    font-style: italic;
    line-height: 1.3;
    margin: 0;
    font-weight: 500;
    white-space: nowrap;
}

/* 7. Floating Side Navigation (Desktop Only) */
.pillars-side-nav {
    position: fixed;
    left: 2vw;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: none;
}

.pillars-side-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pillars-side-nav li {
    margin: 0;
}

.pillars-side-nav a {
    display: block;
    padding: 10px 16px;
    font-family: 'Theseason-RG', serif;
    font-size: 14px;
    color: #5b2d2f;
    text-decoration: none;
    background: rgba(255, 248, 221, 0.9);
    border: 1px solid rgba(67, 3, 15, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.pillars-side-nav a:hover,
.pillars-side-nav a.active {
    background: #43030f;
    color: #fff;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(67, 3, 15, 0.25);
}

/* 8. Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #43030f;
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(67, 3, 15, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #5b1a1f;
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(67, 3, 15, 0.4);
}

.back-to-top:focus-visible {
    outline: 3px solid rgba(212, 167, 92, 0.5);
    outline-offset: 4px;
}

/* 9. Footer CTA */
.pillars-footer-cta {
    background: linear-gradient(135deg, #fff8dd 0%, #fffcf2 100%);
    padding: 80px 6vw;
    text-align: center;
}

.pillars-footer-cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.pillars-footer-cta-heading {
    font-family: 'Theseason-BD', serif;
    font-size: clamp(20px, 2.5vw, 32px);
    color: #43030f;
    margin: 0 0 32px 0;
    line-height: 1.3;
    white-space: nowrap;
}

.btn-pillars-cta {
    display: inline-block;
    padding: 16px 40px;
    background: #43030f;
    color: #fff;
    font-family: 'Theseason-RG', serif;
    font-size: clamp(16px, 1.8vw, 18px);
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(67, 3, 15, 0.2);
}

.btn-pillars-cta:hover {
    background: #5b1a1f;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(67, 3, 15, 0.3);
}

.btn-pillars-cta:focus-visible {
    outline: 3px solid rgba(212, 167, 92, 0.5);
    outline-offset: 4px;
}

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

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

/* Responsive Adjustments */
@media (min-width: 1025px) {
    .pillars-side-nav {
        display: block;
    }
}

@media (max-width: 1024px) {
    .pillar-section {
        padding: 56px 5vw;
        margin: 36px auto;
    }
    
    .pillar-heading-wrapper {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 16px;
    }
    
    .pillar-number-badge {
        margin: 0;
    }
    
    .pillar-content-container {
        max-width: 100%;
    }
    
    .pillar-section .pillar-ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .pillar-section {
        padding: 48px 4vw;
        margin: 32px auto;
        border-radius: 20px;
    }
    
    .pillar-heading-wrapper {
        gap: 12px;
    }
    
    .pillar-number-badge {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 16px;
        margin-top: 2px;
    }
    
    .pillar-quote-panel {
        padding: 24px 28px;
        margin: 40px auto 0 auto;
    }
    
    .pillar-section .pillar-ingredients-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
    
    .pillar-section .pillar-ingredient-card {
        min-height: 240px;
        padding: 18px 8px;
        border-radius: 14px;
    }
    
    .pillar-section .pillar-ingredient-title {
        font-size: clamp(15px, 2.5vw, 18px);
    }
    
    .pillar-section .pillar-ingredient-description {
        font-size: clamp(11px, 1.6vw, 13px);
    }
    
    .pillars-footer-cta {
        padding: 60px 4vw;
    }
    
    .back-to-top {
        bottom: 24px;
        right: 24px;
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 480px) {
    .pillar-divider {
        margin: 60px 0;
    }
    
    .pillar-quote-panel {
        padding: 20px 24px;
    }
    
    .pillar-quote-panel-text {
        font-size: clamp(13px, 2.5vw, 16px);
        white-space: nowrap;
    }
    
    .pillars-footer-cta-heading {
        font-size: clamp(16px, 4vw, 20px);
        white-space: normal;
    }
}

@media (max-width: 768px) {
    .pillars-footer-cta-heading {
        font-size: clamp(18px, 3vw, 24px);
        white-space: normal;
    }
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .pillar-section,
    .pillar-heading-wrapper,
    .pillar-banner-wrapper,
    .pillar-quote-panel {
        animation: none;
    }
    
    .pillar-section .pillar-banner-wrapper:hover {
        transform: none;
    }
    
    .pillar-section .pillar-ingredient-card:hover {
        transform: none;
    }
    
    .back-to-top {
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
}

/* ============================================
   BLESSINGS PAGE STYLES
   ============================================ */

/* Page Background */
body.blessings-page {
    background: #fff8dd;
}

/* Pre-Launch Section - Uses same styles as homepage */

/* Hero Section */
.blessings-hero {
    background: #fff8dd;
    padding: 30px 0 50px 0;
    text-align: center;
    margin-top: var(--header-offset);
    position: relative;
    overflow: hidden;
}

.blessings-hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 6vw;
    position: relative;
    z-index: 1;
}

.blessings-hero-heading {
    font-family: 'Theseason-BD', serif;
    font-size: clamp(40px, 6vw, 64px);
    color: #43030f;
    font-weight: 400;
    margin: 0 auto 12px auto;
    line-height: 1.2;
    position: relative;
    padding-bottom: 0;
    letter-spacing: -0.01em;
    text-align: center;
    white-space: nowrap;
    display: block;
}

.blessings-hero-heading::after {
    display: none;
}

.blessings-hero-subheading {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(16px, 2vw, 20px);
    color: #5b2d2f;
    font-weight: 400;
    margin: 0 auto;
    line-height: 1.5;
    max-width: 100%;
    position: relative;
    padding-bottom: 24px;
    letter-spacing: 0.01em;
    white-space: nowrap;
    text-align: center;
    display: block;
}

.blessings-hero-subheading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #d4a637 20%, #d4a637 80%, transparent);
    border-radius: 2px;
}

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

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .blessings-hero-heading,
    .blessings-hero-subheading,
    .blessings-hero-subheading::after {
        animation: none;
    }
}


/* Responsive adjustments for hero section */
@media (max-width: 768px) {
    .blessings-hero {
        padding: 25px 0 40px 0;
        background: #fff8dd;
    }
    
    .blessings-hero-content {
        max-width: 800px;
    }
    
    .blessings-hero-heading {
        text-shadow: 0 1px 4px rgba(67, 3, 15, 0.06);
        margin-bottom: 12px;
        white-space: normal;
    }
    
    .blessings-hero-subheading {
        font-size: clamp(14px, 2.5vw, 18px);
        white-space: normal;
        text-shadow: 0 1px 2px rgba(91, 45, 47, 0.04);
        padding-bottom: 28px;
    }
    
    .blessings-hero-subheading::after {
        width: 100px;
        height: 3px;
    }
    
    .blessings-hero-content::before,
    .blessings-hero-content::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .blessings-hero {
        padding: 20px 0 35px 0;
    }
    
    .blessings-hero-content {
        max-width: 100%;
    }
    
    .blessings-hero-heading {
        margin-bottom: 10px;
        white-space: normal;
    }
    
    .blessings-hero-subheading {
        padding-bottom: 24px;
    }
    
    .blessings-hero-subheading::after {
        width: 80px;
        height: 3px;
    }
}

/* Product Section - Uses same styles as homepage */

/* Pre-Launch Section - Uses same styles as homepage (no custom styles needed) */

/* ============================================
   FAQ Page Styles
   ============================================ */

/* FAQ Page Background */
body.faq-page {
    background-color: #fff8dd;
}

/* FAQ Hero Section */
.faq-hero {
    background-color: #fff8dd;
    padding: 120px 0 80px 0;
    text-align: center;
}

.faq-hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-hero-heading {
    font-family: 'Theseason-BD', serif;
    font-size: clamp(36px, 5vw, 64px);
    color: #43030f;
    margin: 0 0 16px 0;
    line-height: 1.1;
    font-weight: 700;
}

.faq-hero-subheading {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(18px, 2.2vw, 24px);
    color: #2b0a0e;
    margin: 0;
    position: relative;
    padding-bottom: 24px;
}

.faq-hero-subheading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #c19a4a, transparent);
    border-radius: 2px;
}

/* FAQ Section */
.faq-section {
    background-color: #fff8dd;
    padding: 80px 0;
}

.faq-accordion {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* FAQ Item */
.faq-item {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* FAQ Question Button */
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    background: #ffffff;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Theseason-BD', serif;
    font-size: clamp(18px, 2vw, 22px);
    color: #43030f;
    font-weight: 600;
    line-height: 1.4;
}

.faq-question:hover {
    background-color: #fff8f0;
}

.faq-question:focus {
    outline: 2px solid #c19a4a;
    outline-offset: -2px;
}

.faq-question-text {
    flex: 1;
    padding-right: 20px;
}

/* FAQ Icon (Plus/Minus) */
.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c19a4a;
    transition: transform 0.3s ease;
}

.faq-item[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-icon svg {
    width: 24px;
    height: 24px;
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
    opacity: 0;
    padding: 0;
}

.faq-item[aria-expanded="true"] .faq-answer {
    max-height: 3000px;
    opacity: 1;
    padding: 0;
}

.faq-answer-content {
    padding: 0 32px 32px 32px;
    font-family: var(--font-body);
    font-size: clamp(15px, 1.5vw, 17px);
    line-height: 1.75;
    color: #2b0a0e;
    letter-spacing: 0.01em;
}

.faq-answer-content p {
    margin: 0 0 18px 0;
    line-height: 1.75;
    font-size: inherit;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

.faq-answer-content ul {
    margin: 18px 0 20px 0;
    padding-left: 28px;
    list-style-type: disc;
}

.faq-answer-content ul li {
    margin-bottom: 12px;
    line-height: 1.7;
    padding-left: 6px;
    font-size: inherit;
}

.faq-answer-content ul li:last-child {
    margin-bottom: 0;
}

.faq-answer-content strong {
    color: #43030f;
    font-weight: 600;
    font-size: inherit;
    letter-spacing: 0.02em;
}

.faq-answer-content a {
    color: #c19a4a;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s ease;
    font-weight: 500;
    font-size: inherit;
}

.faq-answer-content a:hover {
    color: #43030f;
    text-decoration-thickness: 2px;
}

/* FAQ Contact Section */
.faq-contact-section {
    background-color: #fff8dd;
    padding: 80px 0 100px 0;
}

.faq-contact-divider {
    max-width: 1000px;
    margin: 0 auto 60px auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c19a4a, transparent);
}

.faq-contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.faq-contact-heading {
    font-family: 'Theseason-BD', serif;
    font-size: clamp(28px, 3.5vw, 40px);
    color: #43030f;
    margin: 0 0 16px 0;
    font-weight: 700;
}

.faq-contact-subtext {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(16px, 1.8vw, 20px);
    color: #2b0a0e;
    margin: 0 0 40px 0;
    line-height: 1.6;
}

.faq-contact-links {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.faq-contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    color: #2b0a0e;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-contact-link:hover {
    background: #43030f;
    color: #fff8dd;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.faq-contact-link img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.faq-contact-closing {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(15px, 1.6vw, 17px);
    color: #2b0a0e;
    margin: 0 0 16px 0;
    line-height: 1.7;
    font-style: italic;
}

.faq-contact-signature {
    font-family: 'Theseason-BD', serif;
    font-size: clamp(18px, 2vw, 22px);
    color: #43030f;
    margin: 0 0 8px 0;
    font-weight: 700;
}

.faq-contact-tagline {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(14px, 1.5vw, 16px);
    color: #2b0a0e;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Responsive Design for FAQ Page */
@media (max-width: 768px) {
    .faq-hero {
        padding: 100px 0 60px 0;
    }
    
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-question {
        padding: 20px 20px;
        font-size: 18px;
    }
    
    .faq-answer-content {
        padding: 0 24px 24px 24px;
        font-size: 16px;
        line-height: 1.75;
    }
    
    .faq-answer-content p {
        margin: 0 0 18px 0;
    }
    
    .faq-answer-content ul {
        margin: 18px 0 20px 0;
        padding-left: 24px;
    }
    
    .faq-answer-content li {
        margin-bottom: 12px;
    }
    
    .faq-contact-section {
        padding: 60px 0 80px 0;
    }
    
    .faq-contact-links {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .faq-contact-link {
        flex: 1 1 auto;
        min-width: 140px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .faq-hero {
        padding: 80px 0 50px 0;
    }
    
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-question {
        padding: 18px 16px;
        font-size: 16px;
    }
    
    .faq-answer-content {
        padding: 0 20px 20px 20px;
        font-size: clamp(14px, 3.5vw, 15px);
        line-height: 1.65;
    }
    
    .faq-answer-content p {
        margin: 0 0 14px 0;
        line-height: 1.65;
    }
    
    .faq-answer-content ul {
        margin: 14px 0 16px 0;
        padding-left: 20px;
    }
    
    .faq-answer-content ul li {
        margin-bottom: 8px;
        line-height: 1.6;
    }
    
    .faq-contact-section {
        padding: 50px 0 60px 0;
    }
}


/* ============================================
   Privacy Policy Page Styles
   ============================================ */

/* Privacy Page Background */
body.privacy-page {
    background-color: #ffffff;
}

/* Privacy Hero Section */
.privacy-hero {
    background-color: #fff8dd;
    padding: 120px 0 60px 0;
    text-align: center;
}

.privacy-hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.privacy-hero-heading {
    font-family: 'Theseason-BD', serif;
    font-size: clamp(36px, 5vw, 64px);
    color: #43030f;
    margin: 0 0 16px 0;
    line-height: 1.1;
    font-weight: 700;
}

.privacy-hero-subheading {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(16px, 1.8vw, 20px);
    color: #2b0a0e;
    margin: 0;
    font-style: italic;
    line-height: 1.5;
    position: relative;
    padding-bottom: 24px;
}

.privacy-hero-subheading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #c19a4a, transparent);
    border-radius: 2px;
}

/* Privacy Main Content */
.privacy-main {
    background-color: #ffffff;
    padding: 60px 0 80px 0;
    position: relative;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Privacy Section */
.privacy-section {
    margin-bottom: 48px;
}

.privacy-section:last-child {
    margin-bottom: 0;
}

/* Effective Date */
.privacy-effective-date {
    font-family: var(--font-body);
    font-size: clamp(14px, 1.4vw, 16px);
    color: #666666;
    margin: 0 0 40px 0;
    line-height: 1.6;
}

/* Section Heading */
.privacy-section-heading {
    font-family: 'Theseason-BD', serif;
    font-size: clamp(24px, 3vw, 32px);
    color: #43030f;
    margin: 0 0 24px 0;
    font-weight: 700;
    line-height: 1.3;
    padding-top: 40px;
}

.privacy-section:first-of-type .privacy-section-heading {
    padding-top: 0;
}

/* Subheading */
.privacy-subheading {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(18px, 2vw, 22px);
    color: #43030f;
    margin: 32px 0 16px 0;
    font-weight: 600;
    font-style: italic;
    line-height: 1.4;
}

/* Body Text */
.privacy-body-text {
    font-family: var(--font-body);
    font-size: clamp(15px, 1.5vw, 17px);
    color: #333333;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.privacy-body-text:last-child {
    margin-bottom: 0;
}

/* Privacy List */
.privacy-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 24px 0;
}

.privacy-list li {
    font-family: var(--font-body);
    font-size: clamp(15px, 1.5vw, 17px);
    color: #333333;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.privacy-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #c19a4a;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
}

.privacy-list li:last-child {
    margin-bottom: 0;
}

.privacy-list li strong {
    color: #43030f;
    font-weight: 600;
}

/* Contact Block */
.privacy-contact-block {
    background-color: #fff8dd;
    padding: 24px 28px;
    border-radius: 8px;
    margin: 24px 0;
    border-left: 3px solid #c19a4a;
}

.privacy-contact-block .privacy-body-text {
    margin-bottom: 16px;
}

.privacy-contact-block .privacy-body-text:last-child {
    margin-bottom: 0;
}

/* Closing Section */
.privacy-closing {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.privacy-closing-text {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(16px, 1.8vw, 20px);
    color: #43030f;
    margin: 0 0 16px 0;
    line-height: 1.6;
}

.privacy-closing-signature {
    font-family: 'Theseason-BD', serif;
    font-size: clamp(18px, 2vw, 22px);
    color: #43030f;
    margin: 24px 0 0 0;
    font-weight: 700;
}

/* Sidebar Navigation (Desktop) */
.privacy-sidebar-nav {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    z-index: 100;
    max-height: 80vh;
    overflow-y: auto;
    display: none;
}

.privacy-sidebar-nav.active {
    display: block;
}

.privacy-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.privacy-nav-link {
    display: block;
    padding: 10px 20px;
    font-family: var(--font-body);
    font-size: 13px;
    color: #666666;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.privacy-nav-link:hover {
    color: #43030f;
    background-color: #fff8dd;
    border-left-color: #c19a4a;
}

.privacy-nav-link.active {
    color: #43030f;
    background-color: #fff8dd;
    border-left-color: #c19a4a;
    font-weight: 600;
}

/* Mobile Navigation */
.privacy-mobile-nav {
    display: none;
    position: sticky;
    top: 120px;
    z-index: 99;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 40px;
}

.privacy-mobile-nav-toggle {
    width: 100%;
    padding: 16px 20px;
    background: #fff8dd;
    border: none;
    border-bottom: 2px solid #c19a4a;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: #43030f;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.privacy-mobile-nav-toggle:hover {
    background: #fff1c5;
}

.privacy-mobile-nav-toggle svg {
    transition: transform 0.3s ease;
}

.privacy-mobile-nav-toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.privacy-mobile-nav-menu {
    display: none;
    background: #ffffff;
    border-top: 1px solid #e0e0e0;
    max-height: 400px;
    overflow-y: auto;
}

.privacy-mobile-nav-menu.active {
    display: block;
}

.privacy-mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.privacy-mobile-nav-link {
    display: block;
    padding: 14px 20px;
    font-family: var(--font-body);
    font-size: 14px;
    color: #666666;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.privacy-mobile-nav-link:hover {
    color: #43030f;
    background-color: #fff8dd;
    padding-left: 24px;
}

.privacy-mobile-nav-link.active {
    color: #43030f;
    background-color: #fff8dd;
    font-weight: 600;
    border-left: 3px solid #c19a4a;
}

/* Links */
.privacy-body-text a {
    color: #c19a4a;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s ease;
    font-weight: 500;
}

.privacy-body-text a:hover {
    color: #43030f;
    text-decoration-thickness: 2px;
}

/* Responsive Design for Privacy Page */
@media (min-width: 1200px) {
    .privacy-sidebar-nav {
        display: block;
    }
    
    .privacy-content {
        margin-left: 240px;
    }
}

@media (max-width: 1199px) {
    .privacy-sidebar-nav {
        display: none;
    }
    
    .privacy-mobile-nav {
        display: block;
    }
}

@media (max-width: 768px) {
    .privacy-hero {
        padding: 100px 0 50px 0;
    }
    
    .privacy-hero-heading {
        margin-bottom: 12px;
    }
    
    .privacy-hero-subheading {
        padding-bottom: 20px;
    }
    
    .privacy-hero-subheading::after {
        width: 100px;
        height: 2.5px;
    }
    
    .privacy-main {
        padding: 40px 0 60px 0;
    }
    
    .privacy-section {
        margin-bottom: 40px;
    }
    
    .privacy-section-heading {
        font-size: clamp(22px, 4vw, 28px);
        padding-top: 32px;
        margin-bottom: 20px;
    }
    
    .privacy-subheading {
        font-size: clamp(17px, 3vw, 20px);
        margin: 28px 0 14px 0;
    }
    
    .privacy-body-text {
        font-size: clamp(14px, 2vw, 16px);
        margin-bottom: 18px;
    }
    
    .privacy-list li {
        font-size: clamp(14px, 2vw, 16px);
        padding-left: 24px;
        margin-bottom: 10px;
    }
    
    .privacy-contact-block {
        padding: 20px 24px;
    }
}

@media (max-width: 480px) {
    .privacy-hero {
        padding: 80px 0 40px 0;
    }
    
    .privacy-hero-heading {
        margin-bottom: 10px;
    }
    
    .privacy-hero-subheading {
        padding-bottom: 18px;
    }
    
    .privacy-hero-subheading::after {
        width: 80px;
        height: 2px;
    }
    
    .privacy-main {
        padding: 30px 0 50px 0;
    }
    
    .privacy-section {
        margin-bottom: 32px;
    }
    
    .privacy-section-heading {
        font-size: clamp(20px, 5vw, 24px);
        padding-top: 28px;
        margin-bottom: 16px;
    }
    
    .privacy-subheading {
        font-size: clamp(16px, 4vw, 18px);
        margin: 24px 0 12px 0;
    }
    
    .privacy-body-text {
        font-size: clamp(14px, 3.5vw, 15px);
        margin-bottom: 16px;
    }
    
    .privacy-list li {
        font-size: clamp(14px, 3.5vw, 15px);
        padding-left: 20px;
        margin-bottom: 8px;
    }
    
    .privacy-contact-block {
        padding: 16px 20px;
    }
    
    .privacy-closing {
        margin-top: 40px;
        padding-top: 32px;
    }
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

body.contact-page {
    background: #fff8dd;
}

/* Contact Hero Section */
.contact-hero {
    background: #fff8dd;
    padding: 80px 0 50px 0;
    text-align: center;
    position: relative;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/mandala/mandalastripfooter.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.04;
    pointer-events: none;
}

.contact-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-hero-heading {
    font-family: 'Theseason-BD', serif;
    font-size: clamp(36px, 5vw, 56px);
    color: #43030f;
    margin: 0 0 16px 0;
    letter-spacing: -0.01em;
    font-weight: 700;
}

.contact-hero-subheading {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(18px, 2.2vw, 22px);
    color: #43030f;
    margin: 0;
    padding-bottom: 24px;
    position: relative;
    letter-spacing: 0.01em;
}

.contact-hero-subheading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4a75c, transparent);
    border-radius: 2px;
}

.contact-hero-overview {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(16px, 1.8vw, 19px);
    line-height: 1.65;
    color: #43030f;
    margin: 24px auto 0 auto;
    text-align: center;
    max-width: 850px;
    letter-spacing: 0.01em;
}

/* Contact Categories Section */
.contact-categories {
    padding: 80px 0;
    background: #fff8dd;
}

.contact-section-heading {
    font-family: 'Theseason-BD', serif;
    font-size: clamp(32px, 4vw, 42px);
    color: #43030f;
    text-align: center;
    margin: 0 auto 50px auto;
    letter-spacing: -0.01em;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
    display: block;
    width: 100%;
}

.contact-section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4a75c, transparent);
    border-radius: 2px;
}

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

.contact-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.contact-card-heading {
    font-family: 'Theseason-BD', serif;
    font-size: clamp(20px, 2.5vw, 24px);
    color: #43030f;
    margin: 0 0 16px 0;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.contact-card-text {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(15px, 1.6vw, 17px);
    line-height: 1.6;
    color: #2b0a0e;
    margin: 0 0 20px 0;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-info-item img {
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.8;
    width: clamp(18px, 2vw, 20px);
    height: clamp(18px, 2vw, 20px);
    min-width: 18px;
    min-height: 18px;
    max-width: 20px;
    max-height: 20px;
    object-fit: contain;
}

.contact-info-item a {
    color: #43030f;
    text-decoration: none;
    font-family: 'Theseason-RG', serif;
    font-size: clamp(15px, 1.6vw, 17px);
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: #d4a75c;
    text-decoration: underline;
}

.contact-info-item span {
    color: #2b0a0e;
    font-family: 'Theseason-RG', serif;
    font-size: clamp(15px, 1.6vw, 17px);
    line-height: 1.6;
}

.contact-card-label {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(15px, 1.6vw, 17px);
    color: #2b0a0e;
    margin: 0 0 12px 0;
    line-height: 1.6;
}

.contact-card-note {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(14px, 1.5vw, 16px);
    color: #666666;
    margin: 16px 0 0 0;
    line-height: 1.6;
    font-style: italic;
}

.contact-sub-address {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #efe6df;
}

.contact-sub-address:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-sub-heading {
    font-family: 'Theseason-BD', serif;
    font-size: clamp(18px, 2vw, 20px);
    color: #43030f;
    margin: 0 0 12px 0;
    font-weight: 600;
}

/* Contact Social Section */
.contact-social {
    padding: 80px 0;
    background: #fff8dd;
    text-align: center;
}

.contact-social-intro {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(16px, 1.8vw, 19px);
    color: #2b0a0e;
    margin: 0 0 40px 0;
    line-height: 1.6;
}

.contact-social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.contact-social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    padding: 16px 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    min-width: 120px;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.contact-social-icon:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.contact-social-icon img {
    width: 28px;
    height: 28px;
    opacity: 0.8;
}

.contact-social-icon span {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(13px, 1.4vw, 15px);
    color: #43030f;
}

.contact-social-website {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(16px, 1.8vw, 19px);
    color: #2b0a0e;
    margin: 0;
}

.contact-social-website a {
    color: #43030f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-social-website a:hover {
    color: #d4a75c;
    text-decoration: underline;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: #fff8dd;
}

.contact-form-intro {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(16px, 1.8vw, 19px);
    color: #2b0a0e;
    text-align: center;
    margin: 0 0 40px 0;
    line-height: 1.6;
}

.contact-form-card {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-family: 'Theseason-BD', serif;
    font-size: clamp(15px, 1.6vw, 17px);
    color: #43030f;
    font-weight: 600;
}

.required {
    color: #d4a75c;
}

.form-input,
.form-select,
.form-textarea {
    padding: 12px 16px;
    border: 1px solid #efe6df;
    border-radius: 8px;
    font-family: 'Theseason-RG', serif;
    font-size: clamp(15px, 1.6vw, 17px);
    color: #2b0a0e;
    background: #ffffff;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: 2px solid #43030f;
    outline-offset: 2px;
    border-color: #43030f;
}

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

.form-error {
    color: #d32f2f;
    font-size: clamp(13px, 1.4vw, 15px);
    font-family: 'Theseason-RG', serif;
    margin-top: 4px;
    display: none;
}

.form-group.error .form-error {
    display: block;
}

.form-group.error .form-input,
.form-group.error .form-select,
.form-group.error .form-textarea {
    border-color: #d32f2f;
}

.btn-contact-submit {
    background: #43030f;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 14px 32px;
    font-family: 'Theseason-BD', serif;
    font-size: clamp(16px, 1.8vw, 18px);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
    align-self: flex-start;
}

.btn-contact-submit:hover {
    background: #31020b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(67, 3, 15, 0.3);
}

.btn-contact-submit:focus-visible {
    outline: 3px solid rgba(67, 3, 15, 0.3);
    outline-offset: 2px;
}

.contact-form-success {
    background: #e8f5e9;
    border: 1px solid #4caf50;
    border-radius: 8px;
    padding: 32px;
    margin-top: 20px;
    text-align: center;
}

.contact-form-success h3 {
    font-family: 'Theseason-BD', serif;
    font-size: clamp(24px, 3vw, 28px);
    color: #43030f;
    margin: 0 0 16px 0;
    font-weight: 700;
}

.contact-form-success p {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(16px, 1.8vw, 18px);
    color: #2b0a0e;
    margin: 0 0 24px 0;
    line-height: 1.6;
}

.contact-form-success a {
    color: #43030f;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.contact-form-success a:hover {
    color: #d4a75c;
}

.success-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 24px;
}

.success-links .btn-link {
    padding: 10px 20px;
    background: #43030f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Theseason-BD', serif;
    font-size: clamp(14px, 1.6vw, 16px);
    transition: all 0.3s ease;
    display: inline-block;
}

.success-links .btn-link:hover {
    background: #31020b;
    transform: translateY(-2px);
}

.contact-form-error {
    background: #ffebee;
    border: 1px solid #f44336;
    border-radius: 8px;
    padding: 24px;
    margin-top: 20px;
    text-align: center;
}

.contact-form-error p {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(15px, 1.7vw, 17px);
    color: #2b0a0e;
    margin: 0 0 12px 0;
    line-height: 1.6;
}

.contact-form-error a {
    color: #43030f;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.contact-form-error a:hover {
    color: #d4a75c;
}

.form-privacy {
    margin: 24px 0;
    padding: 16px;
    background: #fff8dd;
    border-radius: 8px;
    border: 1px solid #efe6df;
}

.form-privacy-text {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(13px, 1.4vw, 15px);
    color: #666666;
    margin: 0;
    line-height: 1.6;
    text-align: center;
}

.form-privacy-text a {
    color: #43030f;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.form-privacy-text a:hover {
    color: #d4a75c;
}

.recaptcha-container {
    margin: 16px 0;
    min-height: 0;
}

.submit-loading {
    display: inline-block;
}

.btn-contact-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-contact-submit:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Thank You Page Styles */
body.thank-you-page {
    background: #fff8dd;
}

.thank-you-section {
    padding: 120px 0;
    background: #fff8dd;
    text-align: center;
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    background: #4caf50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    font-size: 48px;
    color: #ffffff;
    font-weight: bold;
}

.thank-you-heading {
    font-family: 'Theseason-BD', serif;
    font-size: clamp(32px, 4vw, 42px);
    color: #43030f;
    margin: 0 0 24px 0;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.thank-you-message {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(16px, 1.8vw, 19px);
    line-height: 1.6;
    color: #2b0a0e;
    margin: 0 0 40px 0;
}

.thank-you-message a {
    color: #43030f;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.thank-you-message a:hover {
    color: #d4a75c;
}

.thank-you-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.thank-you-actions .btn {
    padding: 14px 32px;
    border-radius: 8px;
    font-family: 'Theseason-BD', serif;
    font-size: clamp(15px, 1.7vw, 17px);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.thank-you-actions .btn-primary {
    background: #43030f;
    color: #ffffff;
}

.thank-you-actions .btn-primary:hover {
    background: #31020b;
    transform: translateY(-2px);
}

.thank-you-actions .btn-secondary {
    background: transparent;
    color: #43030f;
    border: 2px solid #43030f;
}

.thank-you-actions .btn-secondary:hover {
    background: #43030f;
    color: #ffffff;
}

.thank-you-actions .btn-link {
    color: #43030f;
    text-decoration: underline;
}

.thank-you-actions .btn-link:hover {
    color: #d4a75c;
}

@media (max-width: 768px) {
    .thank-you-section {
        padding: 80px 0;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .thank-you-actions .btn {
        width: 100%;
        text-align: center;
    }
}

.contact-form-note {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(14px, 1.5vw, 16px);
    color: #666666;
    text-align: center;
    margin: 24px 0 0 0;
    font-style: italic;
}

/* Business Hours Section */
.contact-business-hours {
    padding: 80px 0;
    background: #fff8dd;
    border-top: 1px solid #efe6df;
}

.business-hours-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.business-hours-item {
    margin-bottom: 32px;
}

.business-hours-item:last-child {
    margin-bottom: 0;
}

.business-hours-label {
    font-family: 'Theseason-BD', serif;
    font-size: clamp(20px, 2.5vw, 24px);
    color: #43030f;
    margin: 0 auto 12px auto;
    font-weight: 600;
    text-align: center;
    display: block;
}

.business-hours-text {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(15px, 1.6vw, 17px);
    line-height: 1.6;
    color: #2b0a0e;
    margin: 0 auto;
    text-align: center;
    max-width: 800px;
}

/* Legal & Compliance Section */
.contact-legal {
    padding: 80px 0;
    background: #fff8dd;
}

.contact-legal-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-legal-text {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(15px, 1.6vw, 17px);
    line-height: 1.6;
    color: #2b0a0e;
    margin: 0 0 20px 0;
}

.contact-legal-text a {
    color: #43030f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-legal-text a:hover {
    color: #d4a75c;
    text-decoration: underline;
}

.contact-legal-link {
    color: #43030f;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-legal-link:hover {
    color: #d4a75c;
    text-decoration: underline;
}

.contact-legal-link strong {
    font-weight: 700;
    color: inherit;
}

/* Feedback & Mission Section */
.contact-feedback-mission {
    padding: 80px 0;
    background: #fff8dd;
}

.feedback-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feedback-mission-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: relative;
}

.feedback-mission-card::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 2px;
    height: 80%;
    background: linear-gradient(180deg, transparent, #d4a75c, transparent);
    display: none;
}

.feedback-mission-card:first-child::after {
    display: block;
}

.feedback-mission-heading {
    font-family: 'Theseason-BD', serif;
    font-size: clamp(22px, 2.8vw, 28px);
    color: #43030f;
    margin: 0 0 20px 0;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.feedback-mission-text {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(15px, 1.6vw, 17px);
    line-height: 1.6;
    color: #2b0a0e;
    margin: 0 0 16px 0;
}

.feedback-mission-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.feedback-mission-list li {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(15px, 1.6vw, 17px);
    line-height: 1.8;
    color: #2b0a0e;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.feedback-mission-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #d4a75c;
    font-size: 20px;
    line-height: 1.4;
}

.feedback-mission-note {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(14px, 1.5vw, 16px);
    color: #666666;
    margin: 16px 0 0 0;
    line-height: 1.6;
    font-style: italic;
}

.feedback-mission-text a {
    color: #43030f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.feedback-mission-text a:hover {
    color: #d4a75c;
    text-decoration: underline;
}

/* Closing Section */
.contact-closing {
    padding: 80px 0;
    background: #fff8dd;
    text-align: center;
}

.contact-closing-content {
    max-width: 900px;
    margin: 0 auto;
}

.contact-closing-text {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(16px, 1.8vw, 19px);
    line-height: 1.6;
    color: #2b0a0e;
    margin: 0 0 16px 0;
}

.contact-closing-signature {
    font-family: 'Theseason-BD', serif;
    font-size: clamp(18px, 2.2vw, 22px);
    color: #43030f;
    margin: 24px 0;
    font-weight: 600;
}

.contact-closing-note {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.6;
    color: #666666;
    margin: 32px 0 0 0;
    font-style: italic;
}

.contact-closing-note a {
    color: #43030f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-closing-note a:hover {
    color: #d4a75c;
    text-decoration: underline;
}

/* Contact Page Responsive Styles */
@media (max-width: 1024px) {
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feedback-mission-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 60px 0 40px 0;
    }
    
    .contact-overview {
        padding: 40px 0;
    }
    
    .contact-categories,
    .contact-social,
    .contact-form-section,
    .contact-business-hours,
    .contact-legal,
    .contact-feedback-mission,
    .contact-closing {
        padding: 60px 0;
    }
    
    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .contact-card {
        padding: 24px;
    }
    
    .contact-social-icons {
        gap: 16px;
    }
    
    .contact-social-icon {
        min-width: 100px;
        padding: 12px 16px;
    }
    
    .contact-form-card {
        padding: 24px;
    }
    
    .feedback-mission-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .feedback-mission-card {
        padding: 24px;
    }
    
    .feedback-mission-card::after {
        display: none;
    }
    
    .contact-section-heading {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 50px 0 30px 0;
    }
    
    .contact-hero-subheading::after {
        width: 100px;
    }
    
    .contact-section-heading::after {
        width: 80px;
    }
    
    .contact-social-icon {
        min-width: 80px;
        padding: 10px 12px;
    }
    
    .contact-social-icon span {
        font-size: 12px;
    }
}

/* Blog Post Styles - Elegant & Spacious Layout */
.blog-post {
    width: 100%;
    background: #fff8dd;
    padding-top: 0;
}

.blog-banner {
    width: 100%;
    height: clamp(450px, 55vh, 650px);
    overflow: hidden;
    position: relative;
    margin-bottom: 0;
    background: #43030f;
}

.blog-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.blog-content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 6vw 100px;
    background: #fff8dd;
}

.blog-content {
    background: #ffffff;
    padding: 80px clamp(3rem, 7vw, 5.5rem);
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    max-width: 100%;
}

.blog-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4a637 0%, #43030f 50%, #d4a637 100%);
    border-radius: 16px 16px 0 0;
}

.blog-header {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 2px solid rgba(67, 3, 15, 0.1);
    text-align: center;
}

.blog-title {
    font-family: 'Theseason-BD', serif;
    font-size: clamp(36px, 5.5vw, 56px);
    line-height: 1.2;
    color: #43030f;
    margin: 0 0 28px 0;
    font-weight: 400;
    letter-spacing: -0.02em;
    max-width: 100%;
}

.blog-meta {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    font-family: 'Theseason-RG', serif;
    font-size: 16px;
    color: #5e2a2e;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 13px;
}

.blog-date {
    color: #5e2a2e;
    position: relative;
}

.blog-author {
    color: #5e2a2e;
    position: relative;
}

.blog-author::before {
    content: '•';
    margin-right: 24px;
    color: #d4a637;
    font-size: 14px;
    font-weight: bold;
}

.blog-body {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(18px, 2vw, 20px);
    line-height: 1.85;
    color: #2b0a0e;
    letter-spacing: 0.015em;
}

.blog-body p {
    margin-bottom: 28px;
    color: #2b0a0e;
}

.blog-body p:last-child {
    margin-bottom: 0;
}

.blog-intro {
    font-size: clamp(20px, 2.2vw, 24px);
    line-height: 1.75;
    color: #43030f;
    font-weight: 500;
    margin-bottom: 48px;
    padding: 0;
    letter-spacing: 0.01em;
    border-left: 4px solid #d4a637;
    padding-left: 28px;
    margin-left: -28px;
}

.blog-body h2 {
    font-family: 'Theseason-BD', serif;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.3;
    color: #43030f;
    margin: 64px 0 32px 0;
    font-weight: 400;
    letter-spacing: -0.015em;
    position: relative;
    padding-bottom: 20px;
}

.blog-body h2:first-of-type {
    margin-top: 0;
}

.blog-body h2::before {
    display: none;
}

.blog-body h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: clamp(60px, 12vw, 100px);
    height: 3px;
    background: linear-gradient(90deg, #d4a637 0%, rgba(212, 166, 55, 0.3) 100%);
    border-radius: 2px;
}

.blog-quote {
    font-size: clamp(20px, 2.3vw, 26px);
    line-height: 1.7;
    color: #43030f;
    font-style: italic;
    margin: 48px 0;
    padding: 36px 44px;
    background: linear-gradient(135deg, rgba(212, 166, 55, 0.08) 0%, rgba(212, 166, 55, 0.03) 100%);
    border-left: 4px solid #d4a637;
    border-radius: 8px;
    letter-spacing: 0.01em;
    position: relative;
    box-shadow: 0 4px 20px rgba(212, 166, 55, 0.1);
}

.blog-quote::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 48px;
    color: #d4a637;
    opacity: 0.3;
    font-family: 'Theseason-BD', serif;
    line-height: 1;
}

.blog-list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
    background: rgba(67, 3, 15, 0.02);
    padding: 32px 40px;
    border-radius: 12px;
    border: 1px solid rgba(212, 166, 55, 0.15);
}

.blog-list li {
    margin-bottom: 24px;
    padding-left: 36px;
    position: relative;
    line-height: 1.85;
    font-size: clamp(18px, 2vw, 20px);
}

.blog-list li:last-child {
    margin-bottom: 0;
}

.blog-list li::before {
    content: '🕉️';
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 20px;
    filter: grayscale(0.2);
}

.blog-list li strong {
    color: #43030f;
    font-weight: 600;
    letter-spacing: 0.01em;
    font-size: 1.05em;
}

.blog-closing {
    font-size: clamp(22px, 2.5vw, 28px);
    line-height: 1.75;
    color: #43030f;
    font-weight: 500;
    margin: 64px 0 40px 0;
    text-align: center;
    letter-spacing: 0.01em;
    font-style: italic;
}

.blog-cta {
    text-align: center;
    margin: 64px 0;
    padding: 48px 40px;
    background: linear-gradient(135deg, rgba(67, 3, 15, 0.04) 0%, rgba(212, 166, 55, 0.06) 100%);
    border-radius: 16px;
    border: 2px solid rgba(212, 166, 55, 0.25);
    box-shadow: 0 8px 32px rgba(67, 3, 15, 0.08);
}

.blog-btn-primary {
    display: inline-block;
    background: #43030f;
    color: #fff8dd;
    font-family: 'Theseason-BD', serif;
    font-size: clamp(17px, 2vw, 19px);
    font-weight: 600;
    padding: 18px 48px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 20px rgba(67, 3, 15, 0.2);
}

.blog-btn-primary:hover {
    background: #5c0a0a;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(67, 3, 15, 0.35);
}

.blog-btn-primary:focus-visible {
    outline: 3px solid rgba(67, 3, 15, 0.3);
    outline-offset: 3px;
}

.blog-cta-text {
    font-size: clamp(16px, 1.8vw, 18px);
    color: #5e2a2e;
    margin: 0;
    font-style: italic;
    letter-spacing: 0.01em;
}

.blog-signature {
    text-align: center;
    font-size: clamp(20px, 2.2vw, 24px);
    color: #43030f;
    margin: 64px 0 16px 0;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.blog-tagline {
    text-align: center;
    font-size: clamp(17px, 1.9vw, 20px);
    color: #5e2a2e;
    margin: 0 0 64px 0;
    font-style: italic;
    letter-spacing: 0.02em;
    line-height: 1.6;
}

/* Responsive Blog Styles - Elegant & Spacious */
@media (max-width: 1200px) {
    .blog-content-wrapper {
        max-width: 900px;
    }
}

@media (max-width: 992px) {
    .blog-content-wrapper {
        max-width: 850px;
    }
}

@media (max-width: 768px) {
    .blog-content-wrapper {
        padding: 50px 4vw 60px;
        max-width: 100%;
    }
    
    .blog-content {
        padding: 50px clamp(2rem, 5vw, 2.5rem);
        border-radius: 12px;
    }
    
    .blog-banner {
        height: clamp(350px, 45vh, 500px);
    }
    
    .blog-header {
        margin-bottom: 48px;
        padding-bottom: 32px;
    }
    
    .blog-body h2 {
        margin: 48px 0 28px 0;
        padding-bottom: 16px;
    }
    
    .blog-body h2::after {
        width: clamp(50px, 10vw, 80px);
        height: 2.5px;
    }
    
    .blog-quote {
        padding: 28px 32px;
        margin: 40px 0;
    }
    
    .blog-quote::before {
        font-size: 36px;
        top: 16px;
        left: 16px;
    }
    
    .blog-cta {
        padding: 36px 28px;
        margin: 48px 0;
    }
    
    .blog-body p {
        margin-bottom: 24px;
    }
    
    .blog-list {
        padding: 24px 28px;
        margin: 32px 0;
    }
    
    .blog-intro {
        margin-left: 0;
        padding-left: 24px;
    }
}

@media (max-width: 480px) {
    .blog-content-wrapper {
        padding: 40px 3vw 50px;
    }
    
    .blog-content {
        padding: 40px 24px;
        border-radius: 10px;
    }
    
    .blog-banner {
        height: clamp(280px, 40vh, 400px);
    }
    
    .blog-header {
        margin-bottom: 40px;
        padding-bottom: 28px;
    }
    
    .blog-meta {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        font-size: 12px;
    }
    
    .blog-author::before {
        display: none;
    }
    
    .blog-list {
        padding: 20px 24px;
        margin: 28px 0;
    }
    
    .blog-list li {
        padding-left: 32px;
        margin-bottom: 20px;
    }
    
    .blog-body p {
        margin-bottom: 22px;
    }
    
    .blog-cta {
        padding: 32px 24px;
        margin: 40px 0;
    }
    
    .blog-intro {
        padding-left: 20px;
        border-left-width: 3px;
    }
    
    .blog-body h2 {
        margin: 40px 0 24px 0;
        padding-bottom: 14px;
    }
    
    .blog-body h2::after {
        width: clamp(40px, 8vw, 60px);
        height: 2px;
    }
}

/* Blog Listing Page Styles */
.blog-page-header {
    background: linear-gradient(135deg, rgba(67, 3, 15, 0.95) 0%, rgba(91, 45, 47, 0.9) 100%);
    padding: 80px 6vw 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/blog/blog1banner.webp') center center / cover;
    opacity: 0.15;
    z-index: 0;
}

.blog-page-header-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-page-title {
    font-family: 'Theseason-BD', serif;
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1.2;
    color: #fff8dd;
    margin: 0 0 16px 0;
    font-weight: 400;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.blog-page-subtitle {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(18px, 2.2vw, 24px);
    line-height: 1.5;
    color: rgba(255, 248, 221, 0.95);
    margin: 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.blog-listing {
    background: #fff8dd;
    padding: 60px 6vw;
    min-height: 60vh;
}

.blog-listing-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.blog-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card-image-wrapper {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.blog-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    font-family: 'Theseason-RG', serif;
    font-size: 14px;
    color: #5e2a2e;
    margin-bottom: 16px;
}

.blog-card-date {
    color: #5e2a2e;
}

.blog-card-author {
    color: #5e2a2e;
}

.blog-card-author::before {
    content: '•';
    margin-right: 16px;
    color: #d4a637;
}

.blog-card-title {
    font-family: 'Theseason-BD', serif;
    font-size: clamp(22px, 2.5vw, 28px);
    line-height: 1.3;
    color: #43030f;
    margin: 0 0 16px 0;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.blog-card-excerpt {
    font-family: 'Theseason-RG', serif;
    font-size: 16px;
    line-height: 1.7;
    color: #2b0a0e;
    margin: 0 0 20px 0;
    flex: 1;
}

.blog-card-read-more {
    font-family: 'Theseason-BD', serif;
    font-size: 16px;
    color: #d4a637;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.blog-card:hover .blog-card-read-more {
    color: #43030f;
    transform: translateX(4px);
}

/* Responsive Blog Listing */
@media (max-width: 768px) {
    .blog-page-header {
        padding: 60px 4vw 40px;
    }
    
    .blog-listing {
        padding: 40px 4vw;
    }
    
    .blog-listing-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .blog-card-image-wrapper {
        height: 240px;
    }
    
    .blog-card-content {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .blog-page-header {
        padding: 50px 3vw 30px;
    }
    
    .blog-listing {
        padding: 30px 3vw;
    }
    
    .blog-card-image-wrapper {
        height: 200px;
    }
    
    .blog-card-content {
        padding: 20px;
    }
    
    .blog-card-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .blog-card-author::before {
        display: none;
    }
}
    
    .contact-info-item img {
        width: clamp(16px, 2.5vw, 18px);
        height: clamp(16px, 2.5vw, 18px);
        min-width: 16px;
        min-height: 16px;
    }
}

/* Breadcrumb Navigation Styles */
.breadcrumb {
    background: #fff8dd;
    padding: 16px 6vw;
    border-bottom: 1px solid rgba(67, 3, 15, 0.08);
}

.breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 1400px;
    margin: 0 auto;
}

.breadcrumb-item {
    display: inline-flex;
    align-items: center;
}

.breadcrumb-item a {
    font-family: 'Theseason-RG', serif;
    font-size: 14px;
    color: #5e2a2e;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.breadcrumb-item a:hover {
    color: #43030f;
    text-decoration: underline;
}

.breadcrumb-item a:focus-visible {
    outline: 2px solid rgba(67, 3, 15, 0.3);
    outline-offset: 2px;
    border-radius: 2px;
}

.breadcrumb-current {
    font-family: 'Theseason-RG', serif;
    font-size: 14px;
    color: #43030f;
    font-weight: 500;
}

.breadcrumb-separator {
    color: #d4a637;
    font-size: 14px;
    margin: 0 4px;
    user-select: none;
}

/* Responsive Breadcrumb */
@media (max-width: 768px) {
    .breadcrumb {
        padding: 12px 4vw;
    }
    
    .breadcrumb-list {
        gap: 6px;
    }
    
    .breadcrumb-item a,
    .breadcrumb-current {
        font-size: 13px;
    }
    
    .breadcrumb-separator {
        font-size: 13px;
        margin: 0 3px;
    }
}

@media (max-width: 480px) {
    .breadcrumb {
        padding: 10px 3vw;
    }
    
    .breadcrumb-item a,
    .breadcrumb-current {
        font-size: 12px;
    }
}

/* App Install Banner Styles */
.app-install-banner {
    background: linear-gradient(135deg, #43030f 0%, #5a0418 100%);
    color: #fff8dd;
    padding: 12px 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10002; /* Above announcement bar and header */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 2px solid #d4a017;
}

.app-install-banner.show {
    transform: translateY(0);
}

.app-install-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.app-install-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(212, 160, 23, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4a017;
}

.app-install-text {
    flex: 1;
    min-width: 200px;
}

.app-install-title {
    font-family: 'Theseason-BD', serif;
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 700;
    color: #fff8dd;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.app-install-subtitle {
    font-family: 'Theseason-RG', serif;
    font-size: clamp(13px, 1.5vw, 14px);
    color: rgba(255, 248, 221, 0.9);
    margin: 0;
    line-height: 1.4;
}

.app-install-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.app-install-btn {
    background: #d4a017;
    color: #43030f;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-family: 'Theseason-BD', serif;
    font-size: clamp(14px, 1.6vw, 16px);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(212, 160, 23, 0.3);
}

.app-install-btn:hover {
    background: #e5b030;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 160, 23, 0.4);
}

.app-install-btn:active {
    transform: translateY(0);
}

.app-install-btn:focus-visible {
    outline: 3px solid rgba(212, 160, 23, 0.5);
    outline-offset: 2px;
}

.app-install-close {
    background: transparent;
    border: none;
    color: rgba(255, 248, 221, 0.8);
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.app-install-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff8dd;
}

.app-install-close:focus-visible {
    outline: 2px solid rgba(212, 160, 23, 0.5);
    outline-offset: 2px;
}

/* Adjust body padding when banner is shown */
body.app-banner-visible {
    padding-top: 0;
}

/* Adjust header position when banner is visible */
.app-banner-visible .header {
    top: 0;
}

/* Adjust announcement bar when banner is visible */
.app-banner-visible .announcement-bar {
    margin-top: 0;
}

/* Responsive App Install Banner */
@media (max-width: 768px) {
    .app-install-banner {
        padding: 10px 16px;
    }
    
    .app-install-content {
        gap: 12px;
    }
    
    .app-install-icon {
        width: 36px;
        height: 36px;
    }
    
    .app-install-text {
        min-width: 0;
        flex: 1 1 auto;
    }
    
    .app-install-title {
        font-size: 15px;
        margin-bottom: 2px;
    }
    
    .app-install-subtitle {
        font-size: 12px;
    }
    
    .app-install-actions {
        gap: 8px;
    }
    
    .app-install-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .app-install-close {
        padding: 6px;
    }
}

@media (max-width: 480px) {
    .app-install-banner {
        padding: 8px 12px;
    }
    
    .app-install-content {
        gap: 10px;
    }
    
    .app-install-icon {
        width: 32px;
        height: 32px;
    }
    
    .app-install-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .app-install-title {
        font-size: 14px;
    }
    
    .app-install-subtitle {
        font-size: 11px;
    }
    
    .app-install-btn {
        padding: 7px 14px;
        font-size: 13px;
    }
    
    .app-install-close {
        padding: 5px;
    }
    
    .app-install-close svg {
        width: 18px;
        height: 18px;
    }
}

/* Hide banner when dismissed */
.app-install-banner.hidden {
    display: none;
}
