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

:root {
    --bg-primary: #001F18;
    --bg-secondary: #002D24;
    --accent-warm: #003B2F;
    --accent-earth: #A0B0A8;
    --accent-olive: #E5B80B;
    --accent-gold: #F2D04D;
    --text-main: #F5F1E8;
    --text-light: #A0B0A8;

    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Plus Jakarta Sans', sans-serif;
    /* Fallback for Satoshi/General Sans */

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;

    --transition-slow: 1.2s cubic-bezier(0.2, 0, 0.2, 1);
    --transition-medium: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body.loading {
    overflow: hidden;
}

/* --- Preloader Styles --- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999 !important;
    overflow: hidden;
}

.preloader-content {
    position: relative;
}

.preloader-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.preloader-text {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--accent-gold);
    letter-spacing: 0.2em;
    font-weight: 400;
    opacity: 1;
    /* Make visible by default */
}

.preloader-underline {
    width: 0;
    height: 1px;
    background-color: var(--accent-gold);
    margin-top: 10px;
    opacity: 0.5;
}


body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/natural-paper.png');
    opacity: 0.03;
    pointer-events: none;
    z-index: 10000;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.1;
}

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

ul {
    list-style: none;
}

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

/* --- Layout Utilities --- */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

/* --- Announcement Bar --- */
.announcement-bar {
    background: linear-gradient(90deg,
            #cca02b 0%,
            #ffe792 25%,
            #e3b313 50%,
            #ffe792 75%,
            #cca02b 100%);
    background-size: 200% auto;
    color: var(--bg-primary);
    padding: 8px 0;
    overflow: hidden;
    position: fixed;
    top: 77px;
    /* Height of navbar (16px + 45px + 16px) */
    left: 0;
    width: 100%;
    z-index: 999;
    /* Below navbar's 1000 */
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12), inset 0 -1px 0 rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    transition: top var(--transition-medium);
    animation: barShimmer 8s linear infinite;
}

/* Position adjustment when navbar is scrolled */
nav.scrolled~.announcement-bar {
    top: 61px;
    /* Scrolled height (8px + 45px + 8px) */
}

.announcement-track {
    display: flex;
    width: max-content;
    animation: scroll-announcement 32s linear infinite;
}

.announcement-content {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-right: 40px;
}

.dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    font-size: 0;
    /* Hides the original dot character */
    width: 10px;
    height: 10px;
    background: currentColor;
    clip-path: polygon(50% 0%, 63% 37%, 100% 50%, 63% 63%, 50% 100%, 37% 63%, 0% 50%, 37% 37%);
    opacity: 0.85;
    margin: 0 4px;
    vertical-align: middle;
    animation: sparklePulse 2s ease-in-out infinite alternate;
}

.dot:nth-of-type(even) {
    animation-delay: 1s;
}

.announcement-bar:hover .announcement-track {
    animation-play-state: paused;
}

.announcement-content span {
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    position: relative;
    color: var(--bg-primary);
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.1);
}

.announcement-content a {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 31, 24, 0.85);
    /* Deep forest green */
    color: var(--accent-gold) !important;
    /* Gold text */
    padding: 3px 14px;
    border-radius: 30px;
    border: 1px solid rgba(242, 208, 77, 0.45);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15), 0 0 10px rgba(242, 208, 77, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    text-shadow: none;
    transform: scale(1);
    margin: 0 5px;
}

.announcement-content a:hover {
    background: var(--accent-gold);
    color: #001f18 !important;
    border-color: transparent;
    transform: scale(1.08) translateY(-1px) !important;
    box-shadow: 0 6px 15px rgba(242, 208, 77, 0.45);
}

@keyframes scroll-announcement {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes barShimmer {
    0% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes sparklePulse {
    0% {
        transform: scale(0.7) rotate(0deg);
        opacity: 0.4;
    }

    100% {
        transform: scale(1.2) rotate(45deg);
        opacity: 1;
    }
}

/* --- Navigation --- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--spacing-sm) 0;
    transition: var(--transition-medium);
}

nav.scrolled {
    background: rgba(13, 23, 18, 0.95);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.5rem 0;
}

nav.menu-open {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
}

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

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-logo {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid var(--accent-gold);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: var(--spacing-md);
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nav-links a {
    position: relative;
    padding: 5px 0;
    transition: var(--transition-medium);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
    color: var(--accent-gold);
}

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

.nav-links a.active {
    color: var(--accent-gold);
}

/* --- Mobile Toggle --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 12px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    transition: var(--transition-medium);
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--accent-gold);
    transition: var(--transition-medium);
}

.menu-toggle.active span:first-child {
    transform: translateY(6px) rotate(45deg);
    width: 24px;
}

.menu-toggle.active span:last-child {
    transform: translateY(-5px) rotate(-45deg);
    width: 24px;
}

/* --- Mobile Menu Overlay --- */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 3000;
    visibility: hidden;
    overflow: hidden;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.7, 0, 0.3, 1), visibility 0s 0.6s;
}

.mobile-menu.active {
    visibility: visible;
    transform: translateX(0);
    transition: transform 0.6s cubic-bezier(0.7, 0, 0.3, 1), visibility 0s 0s;
}

.menu-overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
}

.mobile-menu-inner {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: calc(var(--spacing-md) + 40px) var(--spacing-md) var(--spacing-md);
    z-index: 2;
    overflow-y: auto;
    scrollbar-width: none;
    /* Hide scrollbar for Chrome/Safari */
}

.mobile-menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(242, 208, 77, 0.2);
    color: var(--accent-gold);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.mobile-menu-close:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
    transform: rotate(90deg);
}

.mobile-menu-inner::-webkit-scrollbar {
    display: none;
}

.menu-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    opacity: 0.02;
    pointer-events: none;
    z-index: -1;
}

.menu-watermark {
    width: 100%;
    filter: grayscale(1) invert(1);
}

.mobile-nav-container {
    background: rgba(255, 255, 255, 0.03);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 100%;
    max-width: 320px;
    margin: 1rem auto;
}

.menu-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    text-align: center;
    opacity: 0.6;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    text-align: center;
}

.mobile-nav-links li {
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-links li:last-child {
    border-bottom: none;
}

.mobile-nav-links a {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    padding: 1rem 0;
    text-transform: uppercase;
    color: var(--text-main);
    display: block;
    letter-spacing: 0.05em;
    transition: color 0.4s ease;
}

.mobile-nav-links a:hover {
    color: var(--accent-gold);
}



/* --- Hero Section --- */
.hero {
    height: 100vh;
    padding-top: 110px;
    /* Offset for navbar (77px) + announcement bar (24px) */
    margin-top: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    background-image: url('../images/design/web/hero/hero background.png');
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 31, 24, 0.6) 0%, var(--bg-primary) 100%);
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: var(--spacing-lg);
    width: 100%;
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.5s var(--transition-slow) forwards;
}

.hero-tagline {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-earth);
    margin-bottom: var(--spacing-sm);
}

.hero-title {
    font-size: clamp(4rem, 8vw, 6.5rem);
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.typing-animation {
    display: inline-block;
    border-right: 4px solid var(--accent-gold);
    line-height: 1.2;
    padding-right: 5px;
    /* Give cursor space */
    animation: blink 0.75s step-end infinite;
}

.herbal-oil-text {
    display: block;
    font-size: 0.25em;
    color: var(--accent-earth);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-family: var(--font-sans);
    font-weight: 500;
    margin-top: 0.2rem;
}

.herbal-oil-text.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes blink {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: var(--accent-gold)
    }
}


.hero-subtext {
    font-size: 1.2rem;
    color: var(--accent-earth);
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
    letter-spacing: 0.05em;
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
}

.hero-description {
    margin-bottom: var(--spacing-md);
    color: var(--accent-earth);
    opacity: 0.8;
}

.hero-description p {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.3rem;
}

.hero-actions {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
}

.btn {
    padding: 1.2rem 2.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: none;
    cursor: pointer;
    transition: var(--transition-medium);
    font-family: var(--font-sans);
    border-radius: 100px;
    display: inline-block;
    font-weight: 500;
}

.btn-primary {
    background-color: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--text-main);
}

.btn-primary:hover {
    background-color: rgba(229, 184, 11, 0.1);
    transform: translateY(-5px);
}

.btn-secondary {
    background-color: var(--accent-olive);
    color: var(--bg-primary);
    box-shadow: 0 10px 25px rgba(229, 184, 11, 0.2);
}

.btn-secondary:hover {
    background-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(229, 184, 11, 0.3);
}



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

@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* --- Contact Section --- */
.contact-section {
    background-color: var(--bg-secondary);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-lg);
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: var(--font-sans);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(242, 208, 77, 0.2);
    border-radius: 12px;
    color: var(--text-main);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: var(--transition-medium);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 15px rgba(242, 208, 77, 0.1);
}

.contact-submit-btn {
    width: 100%;
    margin-top: 1rem;
    padding: 1.2rem;
    font-size: 0.9rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.contact-info-card {
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: var(--transition-medium);
}

.contact-info-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(242, 208, 77, 0.2);
    transform: translateY(-5px);
}

.contact-info-card h3 {
    font-size: 1.4rem;
}

.social-media-section {
    margin-top: 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-media-section h3 {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(242, 208, 77, 0.1);
    color: var(--accent-gold);
    transition: var(--transition-medium);
    border: 1px solid transparent;
}

.social-icon svg {
    width: 22px;
    height: 22px;
}

.social-icon:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(242, 208, 77, 0.2);
}

/* --- Styled Dark Interactive Map --- */
.contact-map-container {
    width: 100%;
    margin-top: 3rem;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    height: 450px;
}

.contact-map-container iframe {
    filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

.contact-info-card.full-width {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .contact-info-card.full-width {
        grid-column: span 1;
    }
    .contact-map-container {
        display: none;
    }
}

@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
}

@media (max-width: 600px) {
    .contact-layout {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        width: 100%;
        padding: 0;
    }

    .contact-form-container,
    .contact-info-grid,
    .social-media-section {
        width: 100% !important;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-form-container {
        padding: 2rem 1.5rem;
    }

    .social-media-section {
        margin-top: 1.5rem;
        width: 100%;
    }
}

/* --- Reveal Section --- */
.reveal-section {
    background-color: var(--bg-secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 2rem;
    /* Reduced from 4rem */
}

.reveal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    align-items: center;
}

.reveal-image {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.reveal-image img {
    width: 100%;
    transition: var(--transition-slow);
}

.reveal-image:hover img {
    transform: scale(1.05);
}

.reveal-info h2 {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
}

/* --- Benefits Section --- */
.benefits-section {
    background-color: var(--bg-primary);
    padding: var(--spacing-xl) 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem 2rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: var(--transition-medium);
    backdrop-filter: blur(10px);
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(242, 208, 77, 0.2);
    transform: translateY(-10px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    background: rgba(242, 208, 77, 0.1);
    border-radius: 16px;
    padding: 15px;
}

.benefit-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

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

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

/* --- Story Section --- */
.story-section {
    background-color: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.story-content {
    z-index: 2;
}

.story-content h2 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: var(--spacing-md);
    color: var(--text-main);
}

.story-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 500px;
}

.story-signature {
    margin-top: var(--spacing-lg);
}

.story-signature p {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.signature-line {
    width: 60px;
    height: 1px;
    background: var(--accent-gold);
}

.story-image-wrapper {
    position: relative;
    padding: 2rem;
}

.story-image {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.story-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.story-image:hover img {
    transform: scale(1.05);
}

.story-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 80%;
    border: 1px solid var(--accent-gold);
    border-radius: 20px;
    z-index: 1;
    transform: translate(20px, -20px);
    opacity: 0.2;
}

@media (max-width: 992px) {
    .reveal-section {
        display: none !important;
    }

    .story-section {
        padding: 3rem 0 !important;
        /* Reduce overall section padding */
    }

    .story-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        /* Tightened gap */
        text-align: center;
    }

    .story-content {
        display: contents;
    }

    .story-grid .hero-tagline {
        order: 1;
        margin-bottom: 0.2rem;
    }

    .story-grid h2 {
        order: 2;
        margin-bottom: 0.8rem !important;
    }

    .story-grid .story-image-wrapper {
        order: 3;
        margin: 0.5rem 0 1.5rem;
        padding: 0;
    }

    .story-grid .story-image img {
        height: 380px;
    }

    .story-grid p:not(.hero-tagline) {
        order: 4;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1rem;
        font-size: 1rem;
    }

    .story-grid .story-action-wrapper {
        order: 5;
        margin-top: 0.5rem;
    }

    .story-grid .story-signature {
        order: 6;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 1.5rem;
        /* Reduced from default */
    }
}

@media (max-width: 768px) {
    .story-content h2 {
        font-size: clamp(2.5rem, 10vw, 3rem);
    }

    .story-content p {
        max-width: 100%;
        font-size: 1rem;
        line-height: 1.7;
        padding: 0 5px;
    }

    .story-image img {
        height: 350px;
    }
}

/* --- Ingredients --- */
.ingredients {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-secondary);
    /* Brighten background */
    position: relative;
}

.ingredient-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.ingredient-card {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    padding: var(--spacing-md);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-medium);
    backdrop-filter: blur(10px);
}

.ingredient-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(242, 208, 77, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Now correctly alternates cards */
.ingredient-card:nth-child(even) {
    flex-direction: row-reverse;
}

.ingredient-visual {
    flex: 1;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.ingredient-visual img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 1.2s ease, filter 0.6s ease;
    filter: brightness(1.1) contrast(1.05);
    /* Boost image brilliance */
}

.ingredient-card:hover .ingredient-visual img {
    transform: scale(1.05);
    filter: brightness(1.2) contrast(1.1);
}

.ingredient-details {
    flex: 1;
    padding: var(--spacing-md);
}

.ingredient-details h3 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: var(--spacing-sm);
    color: var(--accent-gold);
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.ingredient-details p {
    font-size: 1.15rem;
    color: var(--text-main);
    /* Brighter description text */
    opacity: 0.85;
    line-height: 1.8;
    font-weight: 300;
}

/* --- Combo Offers --- */
.combos-section {
    background-color: var(--bg-primary);
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--accent-earth);
    letter-spacing: 0.1em;
}



.combo-badge {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: var(--accent-gold);
    color: var(--bg-primary);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    letter-spacing: 0.1em;
}

.combo-name {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
    /* Space to clear the badge */
    color: var(--text-main);
    line-height: 1.1;
}

.combo-description {
    font-size: 1rem;
    color: var(--accent-earth);
    margin-bottom: 2rem;
    font-family: var(--font-sans);
    font-weight: 500;
}

.combo-pricing {
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 1.2rem;
}

.old-price {
    font-size: 1.1rem;
    text-decoration: line-through;
    color: var(--accent-earth);
    opacity: 0.5;
}

.new-price {
    font-size: 2.8rem;
    color: var(--text-main);
    font-weight: 400;
    font-family: var(--font-sans);
    font-weight: 600;
}

.combo-info {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.combo-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
    display: inline-block;
}

.combo-features li {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.combo-features li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-size: 0.8rem;
}

.combo-btn {
    display: block;
    width: 100%;
    padding: 1.3rem;
    background: var(--accent-gold);
    color: var(--bg-primary);
    border-radius: 100px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: auto;
    transition: all 0.3s ease;
}

.combo-btn:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

/* Slider Base Styles - Now Global */
.combos-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
    /* Balanced padding for hover room without excessive gap */
}

.combos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 1.5rem 0;
    align-items: stretch;
    max-width: 1000px;
    margin: 0 auto;
}

.combos-grid::-webkit-scrollbar {
    display: none;
    /* Safari and Chrome */
}

.combo-card {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 2.5rem 1.5rem 2rem;
    border-radius: 20px;
    transform: scale(1) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 1;
    /* Removed fade on desktop */
    filter: none;
    /* Removed blur on desktop */
}

.combo-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    /* Fills the card height */
}

/* Featured card base styling - same size as others now */
.combo-card.featured {
    padding: 2.5rem 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: none;
    transform: scale(1) !important;
}

/* Hover/Active highlight for the centered card */
/* Only apply the highlight to the centered card on mobile via JS, 
   but for desktop we'll use a standard hover below */
.combo-card.hovered {
    z-index: 5;
    border-color: var(--accent-gold) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    transform: translateY(-15px) scale(1.05) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* Desktop Hover Effect */
@media (min-width: 769px) {
    .combo-card:hover {
        background: rgba(255, 255, 255, 0.06);
        border-color: var(--accent-gold);
        transform: translateY(-15px) scale(1.05) !important;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
        z-index: 5;
    }
}

.combo-card.featured.hovered {
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.08);
}

.combo-slider-arrow {
    display: none;
    /* Hidden on desktop */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    border-radius: 0;
    color: var(--accent-gold);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.combo-slider-arrow:hover {
    color: #fff;
    transform: translateY(-50%) scale(1.2);
}

.combo-slider-arrow.prev {
    left: 1.5rem;
}

.combo-slider-arrow.next {
    right: 1.5rem;
}

.slider-fade {
    display: none;
    /* Hidden on desktop */
    position: absolute;
    top: 0;
    bottom: 0;
    width: 15%;
    z-index: 5;
    pointer-events: none;
}

.slider-fade.left-fade {
    left: 0;
    background: linear-gradient(to right, var(--bg-primary) 0%, transparent 100%);
}

.slider-fade.right-fade {
    right: 0;
    background: linear-gradient(to left, var(--bg-primary) 0%, transparent 100%);
}

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

    .combo-card {
        flex: 0 0 300px;
    }

    .section-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .combos-section {
        padding: 40px 0;
        /* Reduced for tighter vertical space on mobile */
    }

    .combos-section .section-header {
        margin-bottom: 0.5rem;
    }

    .combos-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 30px calc(50% - 140px) 30px;
        gap: 1.5rem;
    }

    .combo-slider-arrow {
        display: flex;
    }

    .slider-fade {
        display: block;
    }

    .combo-card {
        flex: 0 0 250px;
        padding: 2rem 1.5rem 2rem;
        scroll-snap-align: center;
        /* Enforce snapping to center */
    }

    .combo-card.hovered {
        border-color: var(--accent-gold) !important;
        background: rgba(255, 255, 255, 0.08) !important;
        transform: none !important;
        box-shadow: none;
    }

    .combo-badge {
        top: 1.2rem;
        right: 1.2rem;
        font-size: 0.65rem;
        padding: 0.4rem 0.8rem;
    }

    .combo-name {
        font-size: 2rem;
        margin-top: 1.5rem;
    }

    .combo-description {
        font-size: 0.95rem;
    }

    .combo-features {
        margin-bottom: 1rem;
    }

    .combo-slider-arrow {
        width: 44px;
        height: 44px;
    }

    .combo-slider-arrow.prev {
        left: 5px;
    }

    .combo-slider-arrow.next {
        right: 5px;
    }

    .slider-fade {
        width: 30px;
        /* Reduced to avoid overlapping card content on mobile */
    }

    .combo-name {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .combo-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .combo-pricing {
        flex-direction: row;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
        justify-content: center;
        align-items: baseline;
    }

    .old-price {
        font-size: 1.2rem;
    }

    .new-price {
        font-size: 3rem;
    }

    .combo-features {
        margin-bottom: 2rem;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .combo-features li {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
        text-align: left;
        padding-left: 1.5rem;
        position: relative;
    }

    .combo-features li::before {
        position: absolute;
        left: 0;
        top: 0;
        margin-right: 0;
    }

    .combo-btn {
        padding: 1.1rem;
        font-size: 0.85rem;
        letter-spacing: 0.1em;
    }
}

/* --- WhatsApp CTA --- */
.whatsapp-order {
    position: relative;
    padding: var(--spacing-xl) 0;
}

.order-card {
    background: rgba(0, 45, 36, 0.4);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-lg);
    border-radius: 40px;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.order-flex {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.order-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1 / 1;
    border-radius: 32px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.floating-product {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.product-glow {
    display: none;
}

.order-content {
    flex: 1.2;
    padding-right: var(--spacing-md);
}

.order-content h2 {
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    white-space: nowrap;
    margin-bottom: var(--spacing-sm);
    color: var(--text-main);
    font-family: var(--font-sans);
    /* Normal font for numbers in title */
}

.order-price {
    font-size: 2.8rem;
    font-family: var(--font-sans);
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.05em;
    text-shadow: 0 0 15px rgba(242, 208, 77, 0.2);
}

.order-controls {
    margin: var(--spacing-md) 0;
}

.order-controls .label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
}

.size-selector {
    display: flex;
    gap: 12px;
}

.size-btn {
    flex: 0 1 auto;
    min-width: 130px;
    padding: 0.6rem 1.2rem;
    background: var(--bg-secondary);
    border: 1px solid rgba(242, 208, 77, 0.2);
    color: var(--text-main);
    border-radius: 12px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.size-btn.active {
    background: var(--accent-gold);
    color: var(--bg-primary);
    border-color: var(--accent-gold);
    box-shadow: 0 8px 20px rgba(242, 208, 77, 0.3);
    font-weight: 700;
    transform: translateY(-2px);
}

.size-btn:hover:not(.active) {
    border-color: var(--accent-gold);
    background: rgba(242, 208, 77, 0.08);
    transform: translateY(-1px);
}

.qty-wrapper {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.qty-btn {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    border: 1px solid rgba(229, 184, 11, 0.3);
    background: transparent;
    color: var(--text-main);
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition-medium);
}

.qty-btn:hover {
    border-color: var(--accent-olive);
    background: rgba(229, 184, 11, 0.1);
}

.qty-val {
    font-size: 1.8rem;
    font-family: var(--font-sans);
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.whatsapp-btn {
    background: linear-gradient(135deg, var(--accent-olive) 0%, #B8860B 100%);
    color: var(--bg-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1.4rem;
    border-radius: 100px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    margin-top: var(--spacing-sm);
    box-shadow: 0 15px 30px rgba(229, 184, 11, 0.2);
}

.whatsapp-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(229, 184, 11, 0.3);
}

.order-note {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: var(--spacing-sm);
    text-align: center;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .whatsapp-order {
        padding: 0 !important;
        /* Full bleed - no vertical or horizontal padding */
        background-color: #001f18;
    }

    .whatsapp-order .container {
        padding: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .order-card {
        padding: 0 !important;
        border-radius: 0 !important;
        /* Full-bleed rectangle for a modern billboard look */
        min-height: 520px;
        /* Taller for more impact */
        display: flex;
        flex-direction: column;
        overflow: hidden;
        border: none !important;
        background: linear-gradient(to bottom, #002d24 0%, #00130f 100%) !important;
        box-shadow: none !important;
    }

    .order-flex {
        flex-direction: column !important;
        text-align: center;
        height: 100% !important;
        gap: 0 !important;
    }

    .order-visual {
        flex: 0 0 52% !important;
        /* Slightly more space */
        width: 100% !important;
        height: auto !important;
        border-radius: 0 0 60px 60px !important;
        /* Large, elegant bottom curve */
        margin-bottom: 0 !important;
        background: #f5f5f5 !important;
        position: relative;
        overflow: hidden;
        /* Clips the image to the curve */
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        z-index: 2;
    }

    .order-visual::after {
        display: none;
        /* Removed the straight gradient */
    }

    .floating-product {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1.02);
        /* Slight scale to ensure no edges show */
    }

    .order-content {
        flex: 0 0 48% !important;
        padding: 3.5rem 1.5rem 3rem !important;
        /* Extra top padding to clear the curve */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: transparent;
        margin-top: -20px;
        /* Pull content up slightly into the curve area */
    }

    .order-content .hero-tagline {
        font-size: 0.85rem !important;
        letter-spacing: 0.3em !important;
        color: var(--accent-gold) !important;
        margin-bottom: 1rem !important;
        opacity: 0.9;
    }

    .order-content h2 {
        font-size: clamp(1.4rem, 6.5vw, 2.2rem) !important;
        font-weight: 800 !important;
        line-height: 1.1 !important;
        margin-bottom: 0.5rem !important;
        color: #ffffff !important;
        font-family: var(--font-sans) !important;
        /* Normal font */
        white-space: nowrap;
    }

    .order-price {
        font-size: 2.8rem !important;
        font-weight: 700 !important;
        margin-bottom: 1.5rem !important;
        color: var(--accent-gold) !important;
        font-family: var(--font-sans) !important;
        text-shadow: 0 0 15px rgba(242, 208, 77, 0.2);
    }

    .whatsapp-btn {
        width: 90% !important;
        /* Slightly narrower than full width for elegance */
        padding: 1rem !important;
        font-size: 1rem !important;
        font-weight: 800 !important;
        border-radius: 100px !important;
        /* Pill shape for modern look */
        margin-top: 0.5rem !important;
        background: var(--accent-olive) !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    }

    .order-note {
        margin-top: 1.2rem !important;
        font-size: 0.8rem !important;
        opacity: 0.7;
    }
}

/* --- Footer --- */
footer {
    padding: var(--spacing-xl) 0 var(--spacing-md);
    background-color: var(--bg-primary);
    border-top: 1px solid rgba(160, 176, 168, 0.1);
    color: var(--text-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.footer-brand .logo {
    color: var(--text-main);
    margin-bottom: var(--spacing-sm);
    display: inline-block;
}

.footer-brand p {
    font-size: 0.9rem;
    max-width: 250px;
    line-height: 1.8;
}

.footer-column h4 {
    color: var(--text-main);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: var(--spacing-md);
    font-family: var(--font-sans);
    font-weight: 600;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    font-size: 0.9rem;
    transition: var(--transition-medium);
}

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

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.contact-icon {
    color: var(--accent-gold);
    flex-shrink: 0;
}

.footer-bottom {
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(160, 176, 168, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
}

.footer-legal-links {
    display: flex;
    gap: var(--spacing-md);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-lg);
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem 1.5rem;
        text-align: center;
        padding: 0 15px;
    }

    .footer-brand {
        grid-column: span 2;
        margin-bottom: 1rem;
    }

    .footer-brand .logo {
        font-size: 1.6rem;
        letter-spacing: 0.18em;
        margin-bottom: 1.2rem;
        display: inline-block;
    }

    .footer-brand p {
        margin: 0 auto;
        font-size: 0.88rem;
        line-height: 1.8;
        color: var(--text-light);
        max-width: 360px;
        opacity: 0.85;
        letter-spacing: 0.02em;
    }

    .footer-column h4 {
        font-size: 0.85rem;
        margin-bottom: 1.4rem;
        position: relative;
        display: inline-block;
        color: var(--text-main);
        letter-spacing: 0.15em;
    }

    .footer-column h4::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 1px;
        background: var(--accent-gold);
        opacity: 0.5;
    }

    .footer-column:last-child {
        grid-column: span 2;
        margin-top: 1.5rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(160, 176, 168, 0.1);
    }

    .footer-column:last-child p {
        font-size: 0.92rem !important;
        line-height: 1.7 !important;
        color: var(--text-light) !important;
        max-width: 340px;
        margin: 0 auto 1.2rem auto !important;
    }

    .footer-column:last-child p strong {
        color: var(--accent-gold);
        font-weight: 600;
    }

    .footer-links li {
        margin-bottom: 1.2rem;
        /* More space for touch */
    }

    .footer-links a {
        font-size: 0.92rem;
        color: var(--text-main);
        letter-spacing: 0.03em;
        font-weight: 500;
        display: inline-block;
        transition: color 0.3s ease;
    }

    .footer-bottom {
        padding-top: var(--spacing-lg);
        text-align: center;
    }

    .footer-legal-links {
        flex-direction: column;
        gap: 0.8rem;
    }

    .footer-links a:hover {
        padding-left: 0;
        color: var(--accent-gold);
    }
}

/* --- Responsive --- */
@media (max-width: 1200px) {
    .container {
        max-width: 95%;
    }
}

@media (max-width: 1024px) {
    :root {
        --spacing-xl: 6rem;
        --spacing-lg: 3rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: calc(var(--spacing-xl) + 60px);
    }

    .hero-content {
        order: 2;
    }

    .hero-title {
        align-items: center;
    }

    .hero-subtext {
        margin: 0 auto var(--spacing-lg);
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        order: 1;
        height: 40vh;
        margin-bottom: var(--spacing-md);
    }

    .hero-image-wrapper {
        width: 60%;
    }

    .reveal-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .reveal-info h2 {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: 4rem;
        --spacing-lg: 2rem;
        --spacing-md: 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        background-image: url('../images/design/web/hero/hero background.png');
        background-size: cover;
        background-position: center;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0, 31, 24, 0.6) 0%, var(--bg-primary) 100%);
        z-index: 0;
    }

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

    .hero-content {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 1.5s var(--transition-slow) forwards;
    }

    .hero-title {
        font-size: clamp(5rem, 18vw, 8.5rem);
    }

    .hero-visual {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1.2rem;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 1.1rem 2rem;
        font-size: 0.75rem;
    }

    .ingredient-card {
        margin-bottom: var(--spacing-lg);
        gap: 2rem;
        padding: 2rem 1.5rem;
    }

    .ingredient-card,
    .ingredient-card:nth-child(even) {
        flex-direction: column;
        text-align: center;
    }

    .ingredient-visual {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        border-radius: 28px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    }

    .ingredient-visual img {
        aspect-ratio: 1 / 1;
        object-fit: cover;
        height: auto;
    }

    .ingredient-details {
        padding: 0 var(--spacing-sm);
    }

    .ingredient-details h3 {
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
    }

    .ingredient-details p {
        font-size: 1rem;
        line-height: 1.7;
    }

    /* Redundant mobile order-card padding removed as it's handled above */

    .order-content h2 {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }

    .whatsapp-btn {
        padding: 1.4rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-xl: 3.5rem;
    }

    .hero-title {
        font-size: 5rem;
    }

    .hero-subtext {
        font-size: 1.15rem;
    }

    .nav-logo {
        width: 35px;
        height: 35px;
    }

    .logo {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .whatsapp-btn {
        margin-top: var(--spacing-md);
    }

    /* Optional: If you want it sticky at the bottom of the screen, uncomment below */
    /*
    .whatsapp-btn {
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 1000;
        border-radius: 0;
        margin: 0;
        padding: 1.2rem;
        box-shadow: 0 -10px 30px rgba(0,0,0,0.3);
    }
    */
}

/* --- Benefits Visibility & Utilities --- */
.benefits-more-container {
    text-align: center;
    margin-top: 4rem;
}

.benefits-more-container .btn {
    background: rgba(242, 208, 77, 0.05);
    border: 1px solid rgba(242, 208, 77, 0.3);
    backdrop-filter: blur(10px);
    min-width: 200px;
}

.benefits-more-container .btn:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
    transform: translateY(-5px);
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .mobile-only {
        display: block;
    }

    .benefits-section .benefit-card:nth-child(n+3) {
        display: none;
    }

    .benefits-more-container {
        margin-top: 2.5rem;
        padding: 0 var(--spacing-md);
    }

    .benefits-more-container .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* --- Ingredients Visibility --- */
.ingredients .ingredient-card:nth-child(n+2) {
    display: none;
}

.ingredients-more-container {
    text-align: center;
    margin-top: 4rem;
}

.ingredients-more-container .btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    min-width: 200px;
}

.ingredients-more-container .btn:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .ingredients-more-container {
        margin-top: 2rem;
        padding: 0 var(--spacing-md);
    }

    .ingredients-more-container .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* --- Story Visibility --- */
.story-action-wrapper {
    margin-top: 2rem;
}

@media (max-width: 992px) {
    .story-action-wrapper {
        text-align: center;
        display: flex;
        justify-content: center;
    }

    .story-action-wrapper .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* --- Results Section (Before & After) --- */
.results-section {
    background-color: var(--bg-secondary);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.comparison-slider {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: var(--spacing-md) auto 0;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(242, 208, 77, 0.2);
}

.comparison-before,
.comparison-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.comparison-before img,
.comparison-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comparison-after {
    z-index: 1;
}

.comparison-before {
    z-index: 2;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.comparison-slider input[type="range"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    opacity: 0;
    cursor: ew-resize;
}

.comparison-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: var(--accent-gold);
    z-index: 2;
    transform: translateX(-50%);
    pointer-events: none;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
}

.handle-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    color: var(--bg-primary);
}

.handle-circle svg {
    width: 18px;
    height: 18px;
}

.comparison-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 31, 24, 0.8);
    color: var(--accent-gold);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    z-index: 4;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    border: 1px solid rgba(242, 208, 77, 0.3);
    backdrop-filter: blur(5px);
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.comparison-label.after-label {
    left: auto;
    right: 20px;
}

/* --- Clean Fashion Advertisement Section --- */
.ad-clean-section {
    background-color: #F8F9FA;
    padding: var(--spacing-xl) 0 2rem;
    /* Reduced bottom padding */
}

.ad-clean-wrapper {
    display: flex;
    flex-direction: row;
    gap: 0;
    margin-top: var(--spacing-lg);
    overflow: hidden;
    /* We will control it with JS for auto-swipe */
    position: relative;
    width: 100%;
}

.ad-clean-banner {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 700px;
    overflow: hidden;
    position: relative;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    /* Section background shows through around the card */
}

.ad-card-inner {
    width: calc(100% - 100px);
    /* Generous side spacing */
    height: 600px;
    /* Fixed height for the card itself */
    display: flex;
    align-items: stretch;
    border-radius: 40px !important;
    overflow: hidden;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ad-card-inner.reverse {
    flex-direction: row-reverse;
}

/* Dual-tone backgrounds for each specific combo - Premium Deep Green and Cream */
.ad-clean-banner:nth-of-type(1) .ad-card-inner {
    background: linear-gradient(to right, #011410 50%, #faf8f5 50%);
}

.ad-clean-banner:nth-of-type(2) .ad-card-inner {
    background: linear-gradient(to right, #011410 50%, #faf8f5 50%);
}

.ad-clean-banner:nth-of-type(3) .ad-card-inner {
    background: linear-gradient(to right, #011410 50%, #faf8f5 50%);
}

.ad-card-inner.reverse {
    background: linear-gradient(to left, #011410 50%, #faf8f5 50%) !important;
}

.ad-clean-wrapper {
    display: flex;
    flex-direction: row;
    gap: 0;
    margin-top: var(--spacing-lg);
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 0 0vw;
    /* Container padding */
}

.ad-clean-banner::before {
    display: none;
    /* Removed the old gradient overlay */
}

.ad-clean-banner:hover {
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.2);
}

.ad-clean-banner.reverse {
    flex-direction: row;
    /* Keep text on left for consistency with gradient */
}

.ad-clean-banner.reverse::before {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
}

.ad-clean-content {
    flex: 0 0 50%;
    z-index: 2;
    padding: 6rem 5vw;
    position: relative;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.ad-clean-banner.reverse .ad-clean-content {
    padding-right: 2rem;
    padding-left: 0;
}

.ad-clean-sub {
    color: var(--accent-gold);
    font-size: 0.9rem;
    /* Slightly smaller for elegance */
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.ad-clean-main {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1;
    font-family: var(--font-serif);
}

.num-with-stars {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    /* Increased gap to prevent overlap */
}

.offer-num {
    font-size: clamp(6rem, 12vw, 11rem);
    font-weight: 700;
    /* Bolder for sans-serif */
    line-height: 1;
    display: block;
    flex-shrink: 0;
    font-family: var(--font-sans);
    /* Normal font */
    background: linear-gradient(135deg, #ffe596 0%, #cca02b 50%, #ae8012 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.45));
}

.offer-num[data-digits="2"] {
    font-size: clamp(4.5rem, 10vw, 8.5rem);
    /* Slightly smaller for double digits */
}

.offer-text {
    font-size: clamp(2rem, 4vw, 3.8rem);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 0.9;
    padding-top: 0.8rem;
    display: block;
}

.ad-clean-stars {
    color: var(--accent-gold);
    /* Gold stars look more premium */
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    margin-bottom: 0;
    opacity: 1;
}

.ad-clean-desc {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 500px;
    line-height: 1.4;
    font-weight: 300;
}

.ad-clean-pricing {
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.ad-clean-pricing .price-new {
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-gold);
    font-family: var(--font-sans);
    text-shadow: 0 0 20px rgba(242, 208, 77, 0.3);
}

.ad-clean-pricing .price-old {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
    font-weight: 300;
    font-family: var(--font-sans);
    /* Normal font */
}

.ad-clean-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 1.2rem 4.5rem;
    background: linear-gradient(135deg, #053b2f 0%, #0c5a49 100%);
    color: #ffffff !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    border-radius: 100px;
    font-size: 0.95rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    margin-top: 1.5rem;
    width: fit-content;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--accent-gold);
    position: relative;
    overflow: hidden;
    z-index: 5;
}

.ad-clean-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.25) 50%,
            transparent 100%);
    transform: skewX(-25deg);
}

.ad-clean-btn:hover::before {
    animation: btnShine 1.5s ease-in-out infinite;
}

@keyframes btnShine {
    100% {
        left: 200%;
    }
}

.ad-clean-btn:hover {
    background: var(--accent-gold);
    color: #001f18 !important;
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 35px rgba(242, 208, 77, 0.35);
    border-color: transparent;
}

.ad-clean-image {
    display: flex;
    /* Show on desktop for the split layout */
    flex: 0 0 50%;
    justify-content: center;
    align-items: center;
    z-index: 2;
    position: relative;
    padding: 0;
    /* Removed padding for full-bleed */
    overflow: hidden;
}

.ad-clean-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Fill the entire area */
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.3));
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.ad-card-inner:hover .ad-clean-image img {
    transform: scale(1.05);
}

.ad-clean-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(242, 208, 77, 0.12) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 1;
    pointer-events: none;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.5;
}

.ad-card-inner:hover .ad-clean-glow {
    opacity: 1;
    transform: scale(1.15);
}

.blog-article {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
    font-family: var(--font-sans);
}

.blog-article p {
    margin-bottom: 1.5rem;
}

.blog-article h2 {
    color: var(--accent-gold);
    font-size: 1.5rem;
    font-family: var(--font-serif);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.text-emerald {
    color: #065f46;
}

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

.ad-clean-tagline {
    color: #065f46 !important;
    font-weight: 800 !important;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.ad-clean-title {
    color: #000000 !important;
    font-size: clamp(2.4rem, 8vw, 4.5rem) !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.03em;
}

/* Pagination Dots Styling */
.ad-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 1.5rem;
    /* Reduced from 3rem */
    position: relative;
    z-index: 10;
}

.ad-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ad-dot.active {
    background: #ffffff;
    transform: scale(1.3);
    width: 30px;
    border-radius: 10px;
}

/* Navigation Arrows Styling */
.ad-slider-container {
    position: relative;
    width: 100%;
}

.ad-nav-arrows {
    display: none;
    /* Hidden by default */
}

@media (min-width: 993px) {
    .ad-nav-arrows {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 999;
    }

    .ad-nav-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 54px;
        /* Increased for premium presence */
        height: 54px;
        background: rgba(0, 0, 0, 0.8);
        /* Semi-transparent for better integration */
        backdrop-filter: blur(10px);
        border: 1.5px solid rgba(255, 255, 255, 0.15);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 1000;
        pointer-events: auto;
        /* Enable interaction with the buttons */
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    }

    .ad-nav-arrow:hover {
        background: var(--accent-gold);
        color: black;
        transform: translateY(-50%) scale(1.1);
        border-color: transparent;
        box-shadow: 0 15px 40px rgba(242, 208, 77, 0.3);
    }

    .ad-nav-arrow.prev {
        left: 40px;
        /* Perfectly balanced indentation */
    }

    .ad-nav-arrow.next {
        right: 40px;
        /* Perfectly balanced indentation */
    }

    .ad-nav-arrow svg {
        width: 22px;
        /* Proportionately larger */
        height: 22px;
    }
}


.mobile-swipe-hint {
    display: none;
    /* Hidden on desktop */
}

/* Mobile Responsive - Swipeable Cards */
@media (max-width: 992px) {
    .ad-clean-section {
        position: relative;
        /* Context for absolute dots */
        padding-bottom: 1rem !important;
        /* Tighter mobile space */
    }

    .ad-dots {
        position: absolute;
        bottom: 10px;
        /* Closer to bottom edge */
        left: 50%;
        transform: translateX(-50%);
        margin-top: 0;
        gap: 8px;
    }

    .mobile-swipe-hint {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        color: #065f46;
        font-weight: 900;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        margin-top: 1.5rem;
        background: rgba(6, 95, 70, 0.05);
        padding: 0.8rem 1.5rem;
        border-radius: 100px;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }

    @keyframes pulseHint {

        0%,
        100% {
            transform: scale(1);
            opacity: 0.7;
        }

        50% {
            transform: scale(1.05);
            opacity: 1;
        }
    }

    .ad-clean-wrapper {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 1rem;
        /* Reduced from 2rem */
        gap: 0;
        /* No gap for seamless rectangle banners */
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-left: 0;
        padding-right: 0;
    }

    .ad-clean-wrapper::-webkit-scrollbar {
        display: none;
    }

    .ad-clean-banner {
        flex: 0 0 100%;
        margin: 0;
        scroll-snap-align: start;
        height: auto;
        min-height: 460px;
        /* Reduced from 520px */
        padding: 15px 12px;
        /* Reduced from 25px 15px */
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
    }

    .ad-card-inner {
        width: 100%;
        height: 100%;
        display: flex !important;
        flex-direction: column !important;
        /* Force vertical stack */
        border-radius: 30px !important;
        overflow: hidden;
        background: #0d0d0d !important;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(0, 0, 0, 0.08);
        /* Added border to define shape against light background */
    }

    /* Proper background for mobile: Image area is light, Text area is dark */
    .ad-card-inner,
    .ad-clean-banner .ad-card-inner {
        background: linear-gradient(to bottom, #f5f5f5 50%, #0d0d0d 50%) !important;
    }

    .ad-clean-content {
        flex: 0 0 50% !important;
        padding: 1.2rem 1rem !important;
        /* Reduced padding */
        order: 2 !important;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: transparent !important;
    }

    .ad-clean-image {
        flex: 0 0 50% !important;
        order: 1 !important;
        display: flex !important;
        justify-content: center;
        align-items: center;
        padding: 0;
        /* Removed padding for full-bleed look */
        background: transparent;
        position: relative;
        overflow: hidden;
        /* Ensure image doesn't bleed out of rounded corners */
        height: 50%;
        /* Explicitly set height for the image area */
    }

    .ad-clean-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        /* Fill the entire section */
        filter: none;
        /* Remove shadow for full-bleed clean look */
        border-radius: 30px 30px 0 0;
        /* Match parent top corners */
    }



    .ad-clean-sub {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .ad-clean-main {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        font-family: var(--font-serif) !important;
        margin-bottom: 0.6rem;
    }

    .offer-num {
        font-size: 3.8rem;
        line-height: 1;
    }

    .offer-text {
        font-size: 1.25rem;
        line-height: 1;
        text-align: left;
        padding-top: 0.2rem;
    }

    .ad-clean-stars {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
        opacity: 0.9;
    }

    .ad-clean-pricing {
        margin-bottom: 0.5rem;
        /* Reduced from 0.8rem */
        gap: 0.6rem;
    }

    .ad-clean-pricing .price-new {
        font-size: 3.2rem;
        font-weight: 700;
        color: var(--accent-gold);
        font-family: var(--font-sans);
        text-shadow: 0 0 15px rgba(242, 208, 77, 0.2);
    }

    .ad-clean-pricing .price-old {
        font-size: 1.8rem;
    }

    .ad-clean-desc {
        display: none;
        /* Hide description on mobile landscape to save space */
    }

    .ad-clean-btn {
        width: 100%;
        padding: 0.85rem 1.5rem;
        font-size: 1rem;
        font-weight: 700;
        border-radius: 10px;
        margin-top: 1rem;
    }
}

/* --- Mobile Size Adjustments --- */
@media (max-width: 768px) {
    nav {
        padding: 12px 0;
    }

    nav.scrolled {
        padding: 8px 0;
    }

    .nav-logo {
        width: 35px;
        height: 35px;
    }

    .logo {
        font-size: 1.4rem;
    }

    .announcement-bar {
        padding: 8px 0;
        font-size: 0.68rem;
        letter-spacing: 0.14em;
        top: 59px;
        /* 12px padding * 2 + 35px logo */
    }

    nav.scrolled~.announcement-bar {
        top: 51px;
        /* 8px padding * 2 + 35px logo */
    }

    .announcement-content {
        gap: 20px;
        padding-right: 20px;
    }

    .announcement-content .dot {
        width: 8px;
        height: 8px;
        margin: 0 2px;
    }

    .hero {
        padding-top: 100px;
        /* Adjusted for smaller mobile header */
    }
}

/* ==========================================================================
   NEELVEDA PREMIUM CUSTOM ALERT MODAL STYLES
   ========================================================================== */
.custom-alert-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 23, 18, 0.88);
    /* Premium brand-aligned backdrop */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100000 !important;
    /* Above everything else */
    opacity: 0;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px;
}

.custom-alert-modal.active {
    opacity: 1;
}

.custom-alert-content {
    background: linear-gradient(135deg, #002B22 0%, #001F18 100%);
    border: 1px solid rgba(242, 208, 77, 0.25);
    border-radius: 28px;
    padding: 3rem 2.5rem;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6),
        inset 0 0 30px rgba(242, 208, 77, 0.05);
    text-align: center;
    transform: scale(0.85);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.custom-alert-modal.active .custom-alert-content {
    transform: scale(1);
}

.custom-alert-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/natural-paper.png');
    opacity: 0.03;
    pointer-events: none;
}

.custom-alert-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.custom-alert-logo {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    border: 1.5px solid var(--accent-gold);
    box-shadow: 0 8px 25px rgba(242, 208, 77, 0.2);
    object-fit: cover;
}

.custom-alert-title {
    font-family: var(--font-serif);
    font-size: 1.65rem;
    letter-spacing: 0.2em;
    color: var(--accent-gold);
    text-transform: uppercase;
    font-weight: 500;
}

.custom-alert-divider {
    width: 40px;
    height: 1.5px;
    background-color: var(--accent-gold);
    opacity: 0.3;
    margin: 0 auto 1.8rem auto;
    position: relative;
    z-index: 2;
}

.custom-alert-body {
    margin-bottom: 2.2rem;
    position: relative;
    z-index: 2;
}

.custom-alert-body p {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-main);
    opacity: 0.9;
    font-weight: 300;
}

.custom-alert-footer {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.custom-alert-btn {
    min-width: 180px;
    padding: 1.1rem 2.2rem;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 100px;
    background-color: var(--accent-olive);
    color: var(--bg-primary);
    border: 1px solid transparent;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(229, 184, 11, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-sans);
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-alert-btn:hover {
    background-color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(229, 184, 11, 0.35);
}



/* ==========================================================================
   COMPETITIVE SEO UPGRADES & STYLING TOKENS
   ========================================================================== */

/* 1. Conversion Trust Bar Styles */
.conversion-trust-bar {
    background: linear-gradient(135deg, rgba(0, 31, 24, 0.95) 0%, rgba(0, 19, 15, 0.95) 100%);
    border-bottom: 1px solid rgba(242, 208, 77, 0.15);
    padding: 0.8rem 0;
    font-size: 0.8rem;
    color: var(--text-main);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 999;
}

.trust-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.trust-badge-item i {
    color: var(--accent-gold);
    font-size: 0.9rem;
}

/* 2. Common Hair Problems We Target */
.hair-problems-section {
    background-color: var(--bg-primary);
}

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

.problem-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(224, 90, 71, 0.04) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.problem-card:hover::before {
    opacity: 1;
}

.problem-card:hover {
    border-color: rgba(242, 208, 77, 0.25);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.problem-icon {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.problem-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-main);
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
}

.problem-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

/* 3. Why Neelveda Is Different Styles */
.neelveda-different-section {
    background-color: var(--bg-secondary);
}

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

.different-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.different-image-container {
    background: radial-gradient(circle, rgba(242, 208, 77, 0.05) 0%, transparent 70%);
    border-radius: 40px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.different-image-container img {
    max-width: 100%;
    border-radius: 20px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.different-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    letter-spacing: 0.05em;
}

.different-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.different-point {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.8rem;
    align-items: flex-start;
}

.different-point i {
    font-size: 1.5rem;
    color: var(--accent-gold);
    background: rgba(242, 208, 77, 0.05);
    border: 1px solid rgba(242, 208, 77, 0.2);
    padding: 12px;
    border-radius: 16px;
    flex-shrink: 0;
}

.different-point h4 {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 0.4rem;
    letter-spacing: 0.05em;
}

.different-point p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* 4. Vedic Ritual: How To Use Styles */
.steps-flex {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.3s;
}

.step-card:hover {
    border-color: rgba(242, 208, 77, 0.2);
    background: rgba(255, 255, 255, 0.02);
}

.step-badge {
    position: absolute;
    top: -20px;
    left: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-gold);
    color: var(--bg-primary);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(242, 208, 77, 0.25);
}

.step-card h4 {
    font-size: 1.15rem;
    color: var(--text-main);
    margin-top: 0.5rem;
    margin-bottom: 0.8rem;
    letter-spacing: 0.05em;
}

.step-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* 5. Blog Grid Card Layout */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(242, 208, 77, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.blog-thumbnail {
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

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

.blog-info {
    padding: 2rem;
}

.blog-category {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.blog-info h3 {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 0.8rem;
    line-height: 1.4;
    letter-spacing: 0.03em;
}

.blog-excerpt {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.blog-read-more {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}

.blog-card:hover .blog-read-more {
    gap: 12px;
}

/* 6. Mini FAQ Accordion homepage */
.mini-faq-item {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s;
}

.mini-faq-item:hover,
.mini-faq-item.active {
    border-color: rgba(242, 208, 77, 0.25);
    background: rgba(255, 255, 255, 0.02);
}

.mini-faq-trigger {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-main);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    gap: 1rem;
}

.mini-faq-trigger i {
    color: var(--accent-gold);
    transition: transform 0.3s;
    font-size: 0.9rem;
}

.mini-faq-item.active .mini-faq-trigger i {
    transform: rotate(180deg);
}

.mini-faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    padding: 0 2rem;
}

.mini-faq-item.active .mini-faq-panel {
    max-height: 500px;
    padding-bottom: 1.5rem;
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

.mini-faq-panel p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-light);
}

@media (max-width: 992px) {
    .different-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .trust-flex {
        justify-content: center;
    }

    .trust-badge-item {
        font-size: 0.75rem;
    }
}

/* --- Developer Credit Backlink Styling --- */
.developer-credit {
    font-size: 0.82rem;
    color: var(--text-light);
    opacity: 0.85;
    letter-spacing: 0.05em;
    font-family: var(--font-sans);
}

.developer-credit a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    border-bottom: 1px solid transparent;
}

.developer-credit a:hover {
    color: var(--text-main);
    border-bottom-color: var(--accent-gold);
}

@media (max-width: 600px) {
    .footer-bottom {
        flex-direction: column !important;
        text-align: center !important;
        gap: 0.6rem !important;
    }
}

/* ==========================================================================
   Premium Blog Article & FAQ Accordion Styles
   ========================================================================== */
.blog-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.blog-article p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 1.8rem;
    font-family: var(--font-sans);
}

.blog-article h2 {
    color: var(--accent-gold);
    font-size: 1.85rem;
    font-family: var(--font-serif);
    margin-top: 3.5rem;
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
    position: relative;
}

.blog-article h2::after {
    content: '';
    display: block;
    width: 35px;
    height: 1.5px;
    background: var(--accent-gold);
    margin-top: 0.5rem;
    opacity: 0.3;
}

.blog-article strong {
    color: var(--text-main);
    font-weight: 600;
}

.blog-article em {
    color: var(--accent-gold);
    font-style: italic;
}

/* Elegant Accordion FAQs */
.blog-faq-section {
    margin-top: 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 3.5rem;
}

.blog-faq-section h3 {
    color: var(--accent-gold);
    font-size: 2rem;
    font-family: var(--font-serif);
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 0.05em;
}

.faq-item {
    margin-bottom: 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 1.75rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(242, 208, 77, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.faq-item h4 {
    color: var(--text-main);
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
    font-family: var(--font-sans);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item h4::after {
    content: '+';
    color: var(--accent-gold);
    font-size: 1.25rem;
    font-weight: 300;
    transition: transform 0.4s ease;
}

.faq-item.active h4::after {
    transform: rotate(45deg);
}

.faq-item p {
    color: var(--text-light);
    font-size: 0.98rem;
    line-height: 1.7;
    margin: 0;
    font-family: var(--font-sans);
    opacity: 0.9;
}