/* Design System */
:root {
    --color-slate: #3F4E53;
    --color-fog: #66737A;
    --color-sand: #D8C9B4;
    --color-ivory: #F6F4F1;
    --color-sage: #B7C1B3;
    --color-white: #FFFFFF;
    --color-black: #1A1A1A;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s ease;
    
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.05);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%233F4E53' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='6' cy='6' r='3'/%3E%3Ccircle cx='6' cy='18' r='3'/%3E%3Cline x1='20' y1='4' x2='8.12' y2='15.88'/%3E%3Cline x1='14.47' y1='14.48' x2='20' y2='20'/%3E%3Cline x1='8.12' y1='8.12' x2='12' y2='12'/%3E%3C/svg%3E") 10 10, auto;
}

body {
    background-color: var(--color-ivory);
    color: var(--color-slate);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%233F4E53' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='6' cy='6' r='3'/%3E%3Ccircle cx='6' cy='18' r='3'/%3E%3Cline x1='20' y1='4' x2='8.12' y2='15.88'/%3E%3Cline x1='14.47' y1='14.48' x2='20' y2='20'/%3E%3Cline x1='8.12' y1='8.12' x2='12' y2='12'/%3E%3C/svg%3E") 10 10, auto;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a, button, .btn {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23D8C9B4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='6' cy='6' r='3'/%3E%3Ccircle cx='6' cy='18' r='3'/%3E%3Cline x1='20' y1='4' x2='8.12' y2='15.88'/%3E%3Cline x1='14.47' y1='14.48' x2='20' y2='20'/%3E%3Cline x1='8.12' y1='8.12' x2='12' y2='12'/%3E%3C/svg%3E") 10 10, pointer;
}

ul {
    list-style: none;
}

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

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 100px 0;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 0;
    transition: var(--transition-smooth);
    color: var(--color-white);
}

header.scrolled {
    background: rgba(246, 244, 241, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    color: var(--color-slate);
}

header .container {
    max-width: 100%;
    padding: 0 4rem;
}

.main-nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
}

.logo {
    justify-self: start;
    display: flex;
    align-items: center;
}

.nav-cta {
    justify-self: end;
    display: flex;
}

.nav-book-btn {
    padding: 0.7rem 1.8rem;
    font-size: 0.8rem;
    background-color: rgba(63, 78, 83, 0.8);
    backdrop-filter: blur(5px);
}

header.scrolled .nav-book-btn {
    background-color: var(--color-slate);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 45px;
    width: auto;
    transition: var(--transition-smooth);
    filter: brightness(0) invert(1); /* Make logo white by default */
}

header.scrolled .logo img {
    height: 35px;
    filter: none; /* Original colors when scrolled */
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    color: inherit;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: var(--transition-fast);
}

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

.btn {
    padding: 0.8rem 2rem;
    border-radius: 2px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.btn-primary:hover {
    background-color: var(--color-fog);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(63, 78, 83, 0.2);
}

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

.btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-slate);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: var(--color-white);
    text-align: center;
    padding-bottom: 80px; /* Offset for features container */
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    /* padding removed to perfectly center visually */
}

.hero-tag {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    animation: fadeInUp 1s forwards 0.3s;
}

.hero-content h1 {
    font-size: 6rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    color: var(--color-white);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.5s;
}

.hero-content p {
    font-size: 1.2rem;
    margin: 0 auto 2.5rem;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.7s;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.9s;
}

.hero-btns .btn {
    padding: 1rem 2.5rem;
    font-size: 0.8rem;
}

/* Hero Features Bar */
.hero-features {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    z-index: 10;
    opacity: 0;
    animation: fadeInUp 1s forwards 1.2s;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.features-grid-bg {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    align-items: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    padding: 0 1.5rem;
    justify-content: flex-start;
}

.feature-item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item i {
    width: 24px;
    height: 24px;
    color: var(--color-white);
    flex-shrink: 0;
}

.feature-item h5 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: var(--color-white);
}

.feature-item span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    display: block;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 0.5rem;
}

/* Responsive fix for hero text */
@media (max-width: 1024px) {
    .features-grid-bg { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .feature-item:nth-child(2) { border-right: none; }
    .hero-features { bottom: 20px; padding: 1.5rem 0; }
}

@media (max-width: 768px) {
    header { padding: 1rem 0; }
    header .container { padding: 0 1.5rem; }
    .logo img { height: 35px; }
    .hero { height: 100svh; min-height: 400px; padding-top: 80px; justify-content: center; align-items: center; }
    .hero-content { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; width: 100%; padding: 0; }
    .hero-tag { font-size: 0.65rem; letter-spacing: 2px; margin-bottom: 0.8rem; }
    .hero-content h1 { font-size: 2rem; margin-bottom: 0.8rem; line-height: 1.15; }
    .hero-content p { font-size: 0.9rem; margin-bottom: 1.5rem; padding: 0; color: rgba(255, 255, 255, 0.9); max-width: 100%; }
    .hero-btns { flex-direction: column; width: 100%; max-width: 320px; margin: 0 auto; padding: 0; gap: 0.8rem; align-items: stretch; }
    .hero-btns .btn { width: 100%; padding: 0.8rem; font-size: 0.85rem; letter-spacing: 1px; border-radius: 6px; }
    .hero-features { display: none; }
    .main-nav { grid-template-columns: 1fr auto auto; gap: 0.8rem; position: relative; align-items: center; }
    .nav-book-btn { padding: 0.5rem 1.2rem; font-size: 0.75rem; }
    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(246, 244, 241, 0.95);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 5rem 2rem 2rem;
        gap: 2rem;
        color: var(--color-slate);
        z-index: -1;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-100%);
        transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        border: none;
        box-shadow: none;
    }
    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    .nav-links a {
        display: block;
        font-family: var(--font-heading);
        font-size: 2.2rem;
        font-weight: 700;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }
    .nav-links.active a {
        opacity: 1;
        transform: translateY(0);
    }
    .nav-links.active li:nth-child(1) a { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) a { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(3) a { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(4) a { transition-delay: 0.4s; }
    .nav-links.active li:nth-child(5) a { transition-delay: 0.5s; }
    .nav-links.active li:nth-child(6) a { transition-delay: 0.6s; }
    
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1001; /* Ensure it stays above the menu */
    }
    .process-line { display: none; }
}

/* Process Section */
.process {
    background: url('../images/journeyback.png') center top/cover no-repeat;
    background-color: var(--color-ivory);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header h2 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-slate);
    text-align: center;
}

.header-divider {
    width: 60px;
    height: 20px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="20" viewBox="0 0 60 20"><path d="M0,10 Q15,0 30,10 T60,10" fill="none" stroke="%23D8C9B4" stroke-width="1"/></svg>') center no-repeat;
    margin: 1rem 0;
}

.section-header p {
    color: var(--color-fog);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.process-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    position: relative;
    padding-top: 2rem;
}

.process-line {
    position: absolute;
    top: 65px;
    left: 10%;
    width: 80%;
    height: 2px;
    background-image: linear-gradient(to right, var(--color-sand) 50%, transparent 50%);
    background-size: 20px 2px;
    background-repeat: repeat-x;
    z-index: 1;
    animation: march 20s linear infinite;
    opacity: 0.4;
}

@keyframes march {
    from { background-position: 0 0; }
    to { background-position: 400px 0; }
}

@keyframes march-y {
    from { background-position: 0 0; }
    to { background-position: 0 400px; }
}

.process-step {
    text-align: center;
    padding: 0 1rem;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 2;
}

.step-icon {
    width: 90px;
    height: 90px;
    background: var(--color-ivory);
    border: 1px solid var(--color-sand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--color-slate);
    transition: var(--transition-smooth);
    position: relative;
    animation: float 4s ease-in-out infinite;
}

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

/* staggered float for better effect */
.process-step:nth-child(2) .step-icon { animation-delay: 0.2s; }
.process-step:nth-child(3) .step-icon { animation-delay: 0.4s; }
.process-step:nth-child(4) .step-icon { animation-delay: 0.6s; }
.process-step:nth-child(5) .step-icon { animation-delay: 0.8s; }
.process-step:nth-child(6) .step-icon { animation-delay: 1s; }

.step-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px solid rgba(216, 201, 180, 0.3);
    border-radius: 50%;
}

.step-icon i {
    width: 32px;
    height: 32px;
    stroke-width: 1.5;
}

.step-number {
    display: block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-sand);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    color: var(--color-slate);
}

.step-divider {
    width: 30px;
    height: 1px;
    background: var(--color-sand);
    margin: 0 auto 1rem;
}

.process-step p {
    font-size: 0.85rem;
    color: var(--color-fog);
    line-height: 1.5;
}

.step-icon:hover {
    background: var(--color-white);
    color: var(--color-slate);
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 10px 30px rgba(216, 201, 180, 0.4);
    animation-play-state: paused;
}

/* Featured Section */
.featured {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.featured-image {
    flex: 1;
    position: relative;
}

.featured-image img {
    border-radius: 4px;
    box-shadow: var(--shadow-premium);
}

.featured-content {
    flex: 1;
}

.featured-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.featured-list {
    margin: 2rem 0;
}

.featured-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.featured-item i {
    color: var(--color-sage);
    margin-top: 5px;
}

/* CTA Section */
.cta-banner {
    background: var(--color-slate);
    color: var(--color-ivory);
    text-align: center;
    padding: 80px 0;
}

.cta-banner h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

/* Tracking Component */
.tracking-status {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 3rem;
}

.status-node {
    text-align: center;
    position: relative;
    z-index: 2;
}

.status-node .dot {
    width: 20px;
    height: 20px;
    background: var(--color-sand);
    border-radius: 50%;
    margin: 0 auto 0.5rem;
    transition: var(--transition-smooth);
}

.status-node.active .dot {
    background: var(--color-slate);
    box-shadow: 0 0 0 5px rgba(63, 78, 83, 0.1);
}

.status-node span {
    font-size: 0.8rem;
    color: var(--color-fog);
}

.status-node.active span {
    font-weight: 700;
    color: var(--color-slate);
}

.status-line {
    position: absolute;
    top: 9px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-sand);
    z-index: 1;
}

#status-progress {
    height: 100%;
    background: var(--color-slate);
    transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition-smooth);
}

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

/* Categories Section */
.categories {
    background-color: var(--color-white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    position: relative;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 2.5rem;
    color: var(--color-white);
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.category-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition-smooth);
    z-index: 1;
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 2;
    transition: var(--transition-fast);
}

.category-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.category-card h3 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

.category-cta {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.8;
    transition: var(--transition-fast);
}

.category-cta i {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

/* Hover effects */
.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

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

.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 70%, rgba(0, 0, 0, 0.1) 100%);
}

.category-card:hover .category-cta {
    opacity: 1;
    color: var(--color-sand);
}

.category-card:hover .category-cta i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content h1 { font-size: 4rem; }
    .process-grid-5 { grid-template-columns: repeat(3, 1fr); }
    .process-step:not(:last-child)::after { display: none; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .section-header h2 { font-size: 2.5rem; line-height: 1.2; margin-bottom: 0.8rem; }
    .section-header p { font-size: 0.95rem; padding: 0 1.5rem; color: var(--color-fog); }
    .featured { flex-direction: column; }
    .process-grid-5 {
        grid-template-columns: 1fr;
        gap: 3rem;
        position: relative;
    }
    .process-line {
        display: block;
        top: 30px;
        left: 29px;
        width: 2px;
        height: calc(100% - 60px);
        background-image: linear-gradient(to bottom, var(--color-sand) 50%, transparent 50%);
        background-size: 2px 20px;
        background-repeat: repeat-y;
        animation: march-y 20s linear infinite;
    }
    .process-step {
        text-align: left;
        padding-left: 80px;
        position: relative;
    }
    .process-step .step-icon {
        position: absolute;
        left: 0;
        top: 0;
        width: 60px;
        height: 60px;
        margin: 0;
        animation: none;
    }
    .process-step .step-icon i { width: 24px; height: 24px; }
    .process-step .step-divider { margin: 0 0 0.8rem 0; }
    .categories-grid { grid-template-columns: 1fr; gap: 2rem; padding: 0 1rem; margin-top: 2rem; }
    .category-card { height: 380px; border-radius: 16px; padding: 2rem; }
    .category-card h3 { font-size: 2rem; margin-bottom: 0.8rem; }
    .category-cta { font-size: 0.8rem; opacity: 1; color: var(--color-sand); }
    header .container { padding: 0 1.5rem; }
}

/* Modal styling */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--color-white);
    border-radius: 12px;
    width: 100%;
    max-width: 960px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    animation: modalPop 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalPop {
    from { transform: scale(0.95) translateY(10px); opacity: 0; }
    to { transform: scale(1) translateY(0); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    color: var(--color-slate);
    transition: var(--transition-fast);
}

.modal-close:hover {
    background: var(--color-slate);
    color: var(--color-white);
}

.auth-tab.active {
    color: var(--color-slate) !important;
    border-bottom: 2px solid var(--color-slate) !important;
    font-weight: 700 !important;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================================
   REVIEWS SECTION
   ============================================================ */
.reviews-section {
    padding: 120px 0;
    background-color: var(--color-ivory);
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-sand), transparent);
}

.reviews-slider-wrapper {
    position: relative;
    padding: 0 40px;
}

.reviews-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 2rem;
    padding: 1rem 0 3rem;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.reviews-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--color-white);
    border: 1px solid var(--color-sand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-slate);
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(216, 201, 180, 0.3);
    transition: var(--transition-smooth);
}

.slider-btn:hover {
    background: var(--color-slate);
    color: var(--color-white);
    border-color: var(--color-slate);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev-btn {
    left: -15px;
}

.slider-btn.next-btn {
    right: -15px;
}

@media (max-width: 1000px) {
    .reviews-slider-wrapper {
        padding: 0 10px;
    }
    .slider-btn.prev-btn { left: -10px; }
    .slider-btn.next-btn { right: -10px; }
}

@media (max-width: 600px) {
    .slider-btn {
        width: 35px;
        height: 35px;
    }
}


.review-card {
    background: var(--color-white);
    border: 1px solid rgba(216, 201, 180, 0.3);
    border-radius: 12px;
    padding: 3rem 2.5rem;
    position: relative;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    overflow: hidden;
    z-index: 1;
    
    /* Slider config: 3 at a time on desktop */
    flex: 0 0 calc((100% - 4rem) / 3);
    scroll-snap-align: start;
}

@media (max-width: 900px) {
    .review-card {
        flex: 0 0 calc((100% - 2rem) / 2);
    }
}

@media (max-width: 600px) {
    .review-card {
        flex: 0 0 100%;
    }
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--color-sand);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
    z-index: 2;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(63, 78, 83, 0.08);
    border-color: transparent;
}

.review-card:hover::before {
    transform: scaleX(1);
}

.review-quote-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: var(--color-sand);
    opacity: 0.15;
    transform: scale(3.5);
    transform-origin: top right;
    z-index: 0;
    transition: var(--transition-smooth);
}

.review-card:hover .review-quote-icon {
    transform: scale(4) rotate(-5deg);
    opacity: 0.2;
}

.review-stars {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
    z-index: 1;
}

.review-stars i {
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.2));
}

.review-text {
    font-size: 1.15rem;
    color: var(--color-slate);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 2.5rem;
    flex-grow: 1;
    z-index: 1;
    position: relative;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    border-top: 1px solid rgba(216, 201, 180, 0.2);
    padding-top: 1.5rem;
    z-index: 1;
}

.review-author-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-sand);
    box-shadow: 0 5px 15px rgba(216, 201, 180, 0.4);
    transition: var(--transition-smooth);
}

.review-card:hover .review-author-img {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(216, 201, 180, 0.6);
}

.review-author-info h4 {
    font-size: 1.2rem;
    color: var(--color-slate);
    margin-bottom: 0.1rem;
    font-family: var(--font-heading);
}

.review-author-info p {
    font-size: 0.75rem;
    color: var(--color-fog);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

/* ============================================================
   STATS / SOCIAL PROOF SECTION
   ============================================================ */

.stats-section {
    position: relative;
    background: var(--color-slate);
    padding: 90px 0;
    overflow: hidden;
}

/* Subtle diagonal stitch-texture overlay */
.stats-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            45deg,
            rgba(255,255,255,0.025) 0px,
            rgba(255,255,255,0.025) 1px,
            transparent 1px,
            transparent 28px
        ),
        repeating-linear-gradient(
            -45deg,
            rgba(255,255,255,0.025) 0px,
            rgba(255,255,255,0.025) 1px,
            transparent 1px,
            transparent 28px
        );
    pointer-events: none;
}

/* Eyebrow label */
.stats-eyebrow {
    display: block;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-sand);
    margin-bottom: 3.5rem;
    opacity: 0.75;
}

/* 4-col grid with separator slots */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 0;
}

/* Separator */
.stat-sep {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(216,201,180,0.3), transparent);
    margin: 0 1.5rem;
}

/* Stat card */
.stat-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    padding: 2.5rem 1.5rem;
    text-align: center;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease;
    cursor: default;
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}

/* Glow orb behind each card */
.stat-glow {
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(216,201,180,0.12) 0%, transparent 70%);
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    transition: opacity 0.4s ease;
    opacity: 0;
}

.stat-card:hover .stat-glow {
    opacity: 1;
}

/* Icon ring */
.stat-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(216,201,180,0.1);
    border: 1px solid rgba(216,201,180,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.stat-card:hover .stat-icon-wrap {
    background: rgba(216,201,180,0.18);
    border-color: rgba(216,201,180,0.5);
}

.stat-icon {
    width: 26px;
    height: 26px;
    color: var(--color-sand);
    stroke-width: 1.5;
}

/* Text group */
.stat-body {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.6rem;
    font-weight: 900;
    color: var(--color-ivory);
    line-height: 1;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--color-sand);
}

.stat-desc {
    font-size: 0.82rem;
    color: rgba(246,244,241,0.45);
    line-height: 1.4;
    margin-top: 0.2rem;
}

/* Responsive */
@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .stat-sep { display: none; }
    .stat-card { padding: 2rem 1rem; }
    .stat-number { font-size: 3rem; }
}

@media (max-width: 520px) {
    .stats-section { padding: 60px 0; }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem 1rem;
    }
    .stat-card { 
        padding: 1.5rem 0.5rem; 
        gap: 0.8rem; 
    }
    .stat-number { font-size: 2.2rem; }
    .stat-label { font-size: 0.65rem; letter-spacing: 1.5px; }
    .stat-desc { font-size: 0.75rem; display: none; /* Hide desc on very small screens for cleaner look */ }
    .stat-icon-wrap { width: 50px; height: 50px; }
    .stat-icon { width: 22px; height: 22px; }
}


/* ============================================================
   MOBILE VAN SECTION
   ============================================================ */

.van-section {
    background: var(--color-ivory);
    position: relative;
    overflow: hidden;
}

.van-bg-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(183,193,179,0.14) 0%, transparent 65%);
    top: -200px;
    right: -200px;
    pointer-events: none;
}

/* ---- Top header: 2-col ---- */
.van-header {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: start;
    margin-bottom: 4.5rem;
}

.van-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-fog);
    background: rgba(216,201,180,0.25);
    border: 1px solid rgba(216,201,180,0.5);
    border-radius: 100px;
    padding: 0.4rem 1rem;
    margin-bottom: 1.4rem;
}

.van-heading {
    font-family: var(--font-heading);
    font-size: 3.4rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--color-slate);
    margin-bottom: 1.4rem;
}

.van-heading em {
    font-style: italic;
    color: var(--color-fog);
}

.van-header-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--color-slate), var(--color-sand));
    border-radius: 2px;
    margin-bottom: 1.6rem;
}

.van-intro {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-fog);
    margin-bottom: 1.8rem;
}

.van-intro strong { color: var(--color-slate); font-weight: 700; }

/* Location pills */
.van-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.van-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-slate);
    background: var(--color-white);
    border: 1px solid var(--color-sand);
    border-radius: 100px;
    padding: 0.4rem 0.9rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.van-pill i {
    width: 13px;
    height: 13px;
    color: var(--color-sand);
}

/* Right feature list */
.van-header-features {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    padding-top: 1rem;
    border-left: 1px solid rgba(216,201,180,0.4);
    padding-left: 3rem;
}

.van-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.van-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--color-white);
    border: 1px solid rgba(216,201,180,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.van-feature-icon i {
    width: 20px;
    height: 20px;
    color: var(--color-slate);
    stroke-width: 1.5;
}

.van-feature-item h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-slate);
    margin-bottom: 0.25rem;
}

.van-feature-item p {
    font-size: 0.85rem;
    color: var(--color-fog);
    line-height: 1.5;
}

/* ---- Gallery ---- */
.van-gallery {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 1.2rem;
    margin-bottom: 3.5rem;
}

/* Shared image frame */
.van-img-main,
.van-img-secondary {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    cursor: pointer;
}

.van-img-main {
    height: 480px;
}

.van-img-stack {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    height: 480px;
}

.van-img-secondary {
    height: calc((480px - 1.2rem) / 2);
    flex-shrink: 0;
}

.van-img-main img,
.van-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.16,1,0.3,1);
}

.van-img-main:hover img,
.van-img-secondary:hover img {
    transform: scale(1.06);
}

/* Dark gradient overlay + badge */
.van-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.05) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.4rem;
    pointer-events: none;
}

.van-img-badge {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(246,244,241,0.9);
    background: rgba(63,78,83,0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 100px;
    padding: 0.35rem 0.9rem;
}

/* ---- Quote strip ---- */
.van-quote {
    border-top: 1px solid rgba(216,201,180,0.4);
    padding-top: 2.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.van-quote-icon {
    width: 32px;
    height: 32px;
    color: var(--color-sand);
    flex-shrink: 0;
    margin-top: 2px;
}

.van-quote p {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--color-slate);
    flex: 1;
}

.van-quote p strong { font-style: normal; }

.van-quote span {
    display: block;
    margin-top: 0.6rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-sand);
}

/* ---- Responsive ---- */
@media (max-width: 1050px) {
    .van-header { grid-template-columns: 1fr; gap: 2.5rem; }
    .van-header-features { border-left: none; padding-left: 0; border-top: 1px solid rgba(216,201,180,0.4); padding-top: 2rem; }
    .van-heading { font-size: 2.8rem; }
}

@media (max-width: 768px) {
    .van-gallery { grid-template-columns: 1fr; }
    .van-img-main { height: 320px; }
    .van-img-stack { flex-direction: row; height: 200px; }
    .van-img-secondary { height: 200px; flex-shrink: 0; width: calc((100% - 1.2rem) / 2); }
    .van-heading { font-size: 2.2rem; }
    .van-quote { flex-direction: column; gap: 0.8rem; }
}

@media (max-width: 500px) {
    .van-img-stack { flex-direction: column; height: 500px; }
    .van-img-secondary { height: calc((500px - 1.2rem) / 2); width: 100%; }
}

.founder-section {
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-ivory) 55%, #ece8e0 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative abstract accents */
.founder-bg-accent {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.founder-bg-accent--1 {
    width: 550px;
    height: 550px;
    top: -180px;
    right: -180px;
    background: radial-gradient(circle, rgba(216, 201, 180, 0.22) 0%, transparent 70%);
    animation: accentPulse 8s ease-in-out infinite;
}

.founder-bg-accent--2 {
    width: 400px;
    height: 400px;
    bottom: -120px;
    left: -100px;
    background: radial-gradient(circle, rgba(183, 193, 179, 0.18) 0%, transparent 70%);
    animation: accentPulse 10s ease-in-out infinite reverse;
}

@keyframes accentPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50%       { transform: scale(1.12); opacity: 1; }
}

/* Main two-column grid */
.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

/* ---- Portrait Column ---- */
.founder-portrait-col {
    position: relative;
}

.founder-portrait-wrapper {
    position: relative;
    max-width: 420px;
    margin: 0 auto;
}

/* Decorative L-shaped corner lines */
.portrait-corner {
    position: absolute;
    width: 60px;
    height: 60px;
    z-index: 4;
    pointer-events: none;
}

.portrait-corner--tl {
    top: -14px;
    left: -14px;
    border-top: 2px solid var(--color-sand);
    border-left: 2px solid var(--color-sand);
}

.portrait-corner--br {
    bottom: -14px;
    right: -14px;
    border-bottom: 2px solid var(--color-sand);
    border-right: 2px solid var(--color-sand);
}

/* Photo frame */
.founder-photo-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(63, 78, 83, 0.18), 0 8px 24px rgba(0,0,0,0.08);
}

.founder-photo {
    width: 100%;
    display: block;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.founder-photo-frame:hover .founder-photo {
    transform: scale(1.04);
}

.founder-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(63, 78, 83, 0.35) 0%,
        transparent 50%
    );
    pointer-events: none;
}

/* Floating badge shared base */
.founder-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--color-white);
    border: 1px solid rgba(216, 201, 180, 0.6);
    border-radius: 12px;
    padding: 0.8rem 1.2rem;
    box-shadow: 0 12px 40px rgba(63, 78, 83, 0.12);
    z-index: 5;
    backdrop-filter: blur(12px);
    animation: badgeFloat 5s ease-in-out infinite;
}

/* Years badge — top right */
.founder-badge--years {
    top: -20px;
    right: -28px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem 1.4rem;
    animation-delay: 0s;
}

.badge-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--color-slate);
    line-height: 1;
}

.badge-number sup {
    font-size: 1rem;
    vertical-align: super;
    color: var(--color-sand);
}

/* Mission badge — bottom left */
.founder-badge--mission {
    bottom: 30px;
    left: -28px;
    animation-delay: 1.5s;
}

.badge-icon {
    width: 22px;
    height: 22px;
    color: var(--color-slate);
    flex-shrink: 0;
}

.badge-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-slate);
    line-height: 1.3;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-8px); }
}

/* ---- Content Column ---- */
.founder-content-col {
    display: flex;
    flex-direction: column;
}

.founder-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-sand);
    margin-bottom: 1.2rem;
    position: relative;
    padding-left: 2.5rem;
}

.founder-eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.8rem;
    height: 1px;
    background: var(--color-sand);
}

.founder-heading {
    font-family: var(--font-heading);
    font-size: 3.4rem;
    line-height: 1.1;
    color: var(--color-slate);
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.founder-heading em {
    font-style: italic;
    color: var(--color-fog);
    font-weight: 700;
}

.founder-divider {
    width: 70px;
    height: 3px;
    background: linear-gradient(to right, var(--color-slate), var(--color-sand));
    border-radius: 2px;
    margin-bottom: 2rem;
}

.founder-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-slate);
    margin-bottom: 1.2rem;
}

.founder-intro strong { color: var(--color-slate); font-weight: 700; }

.founder-sub {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--color-fog);
    margin-bottom: 2.5rem;
}

/* ---- Timeline ---- */
.founder-timeline {
    position: relative;
    margin-bottom: 2.8rem;
    padding-left: 1.5rem;
}

/* Vertical connector line */
.founder-timeline::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: linear-gradient(to bottom, var(--color-sand), transparent);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 1.6rem;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--color-white);
    border: 2px solid var(--color-sand);
    flex-shrink: 0;
    margin-top: 3px;
    position: relative;
    left: -1.5rem;
    transition: var(--transition-fast);
}

.timeline-item:hover .timeline-dot {
    background: var(--color-slate);
    border-color: var(--color-slate);
    transform: scale(1.3);
}

.timeline-content {
    flex: 1;
    margin-left: -0.5rem;
}

.timeline-content h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-slate);
    margin-bottom: 0.3rem;
}

.timeline-content p {
    font-size: 0.875rem;
    color: var(--color-fog);
    line-height: 1.6;
}

/* ---- Signature & CTA Row ---- */
.founder-signature-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    border-top: 1px solid rgba(216, 201, 180, 0.5);
    padding-top: 2rem;
    margin-top: 0.5rem;
}

.founder-signature {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.signature-svg {
    width: 160px;
    height: auto;
}

.signature-title {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-fog);
}

.founder-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.2rem;
    white-space: nowrap;
}

.founder-cta-btn i {
    width: 18px;
    height: 18px;
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
    .founder-grid {
        gap: 4rem;
    }
    .founder-heading {
        font-size: 2.8rem;
    }
}

@media (max-width: 860px) {
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .founder-portrait-col {
        order: -1;
    }
    .founder-portrait-wrapper {
        max-width: 360px;
    }
    .founder-badge--years {
        right: -10px;
        top: -16px;
    }
    .founder-badge--mission {
        left: -10px;
    }
    .founder-heading {
        font-size: 2.4rem;
    }
    .founder-section {
        overflow: visible;
    }
}

@media (max-width: 480px) {
    .founder-heading { font-size: 2rem; }
    .founder-signature-row { flex-direction: column; align-items: flex-start; }
    .founder-cta-btn { width: 100%; justify-content: center; }
    .founder-badge { display: none; }
}

/* ============================================================
   FAQ SECTION
   ============================================================ */

.faq-section {
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

/* Decorative background ornaments */
.faq-bg-ornament {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.faq-bg-ornament--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(183, 193, 179, 0.12) 0%, transparent 65%);
    top: -150px;
    left: -200px;
}

.faq-bg-ornament--2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(216, 201, 180, 0.1) 0%, transparent 65%);
    bottom: -100px;
    right: -150px;
}

/* ---- Header ---- */
.faq-header {
    text-align: center;
    margin-bottom: 5rem;
}

.faq-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-fog);
    background: rgba(216, 201, 180, 0.2);
    border: 1px solid rgba(216, 201, 180, 0.5);
    border-radius: 100px;
    padding: 0.4rem 1.2rem;
    margin-bottom: 1.4rem;
}

.faq-heading {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--color-slate);
    margin-bottom: 1.2rem;
}

.faq-heading em {
    font-style: italic;
    color: var(--color-fog);
}

.faq-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--color-slate), var(--color-sand));
    border-radius: 2px;
    margin: 0 auto 1.4rem;
}

.faq-subtext {
    font-size: 1rem;
    color: var(--color-fog);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---- Two-column grid ---- */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 3.5rem;
    margin-bottom: 5rem;
}

.faq-col {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ---- Individual item ---- */
.faq-item {
    border-bottom: 1px solid rgba(216, 201, 180, 0.5);
    overflow: hidden;
    transition: background 0.4s ease;
}

.faq-item:first-child {
    border-top: 1px solid rgba(216, 201, 180, 0.5);
}

/* ---- Question button ---- */
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.6rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-slate);
    letter-spacing: 0.2px;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--color-fog);
}

.faq-question span {
    flex: 1;
    line-height: 1.5;
}

/* ---- Icon toggle ---- */
.faq-icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--color-sand);
    background: var(--color-ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.faq-icon-wrap i {
    width: 16px;
    height: 16px;
    position: absolute;
    color: var(--color-slate);
    transition: opacity 0.25s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    stroke-width: 2;
}

.faq-icon-minus {
    opacity: 0;
    transform: rotate(-90deg) scale(0.6);
}

.faq-icon-plus {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* Open state icon */
.faq-item.open .faq-icon-wrap {
    background: var(--color-slate);
    border-color: var(--color-slate);
    transform: rotate(180deg);
}

.faq-item.open .faq-icon-wrap i {
    color: var(--color-ivory);
}

.faq-item.open .faq-icon-plus {
    opacity: 0;
    transform: rotate(90deg) scale(0.6);
}

.faq-item.open .faq-icon-minus {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* Open state: subtle highlight */
.faq-item.open {
    background: linear-gradient(to right, rgba(216, 201, 180, 0.08), transparent);
}

/* ---- Answer panel ---- */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--color-fog);
    line-height: 1.8;
    padding: 0 2rem 1.6rem 0;
}

.faq-answer p strong {
    color: var(--color-slate);
    font-weight: 700;
}

.faq-item.open .faq-answer {
    max-height: 400px;
}

/* ---- Bottom contact nudge ---- */
.faq-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    padding: 2.5rem 3rem;
    background: var(--color-ivory);
    border: 1px solid rgba(216, 201, 180, 0.5);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.faq-bottom::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        rgba(216,201,180,0.04) 0px,
        rgba(216,201,180,0.04) 1px,
        transparent 1px,
        transparent 24px
    );
    pointer-events: none;
}

.faq-bottom p {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-fog);
    letter-spacing: 0.3px;
}

.faq-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-slate);
    background: var(--color-white);
    border: 1px solid var(--color-sand);
    border-radius: 4px;
    padding: 0.75rem 1.5rem;
    transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-contact-link::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-slate);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 0;
}

.faq-contact-link:hover::after {
    transform: scaleX(1);
}

.faq-contact-link i,
.faq-contact-link span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.faq-contact-link i {
    width: 16px;
    height: 16px;
}

.faq-contact-link:hover i,
.faq-contact-link:hover span {
    color: var(--color-ivory);
}

.faq-arrow {
    transition: transform 0.3s ease, color 0.3s ease !important;
}

.faq-contact-link:hover .faq-arrow {
    transform: translateX(4px);
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .faq-col:last-child .faq-item:first-child {
        border-top: none;
    }
    .faq-heading { font-size: 2.8rem; }
}

@media (max-width: 600px) {
    .faq-heading { font-size: 2.2rem; }
    .faq-question { font-size: 0.88rem; padding: 1.3rem 0; }
    .faq-bottom { padding: 2rem 1.5rem; flex-direction: column; text-align: center; }
}

/* ---- Premium Footer ---- */
.site-footer {
    background-color: #242D30;
    color: var(--color-ivory);
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(216, 201, 180, 0.1);
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(216, 201, 180, 0.08) 0%, transparent 50%),
                radial-gradient(circle at bottom left, rgba(216, 201, 180, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
    opacity: 0.95;
    transition: transform 0.4s ease;
}

.footer-logo img:hover {
    transform: scale(1.02);
}

.footer-desc {
    color: rgba(246, 244, 241, 0.75);
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 320px;
    margin-bottom: 2.5rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    color: var(--color-sand);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(216, 201, 180, 0.15);
}

.footer-socials a:hover {
    background: var(--color-sand);
    color: var(--color-slate);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(216, 201, 180, 0.2);
    border-color: var(--color-sand);
}

.footer-socials i {
    width: 18px;
    height: 18px;
}

.footer-links-col h4,
.footer-newsletter h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--color-white);
    position: relative;
    display: inline-block;
    letter-spacing: 0.5px;
}

.footer-links-col h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--color-sand);
    border-radius: 2px;
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-links-col a {
    color: rgba(246, 244, 241, 0.7);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    width: fit-content;
}

.footer-links-col a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-sand);
    transition: width 0.3s ease;
}

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

.footer-links-col a:hover::after {
    width: 100%;
}

.footer-newsletter p {
    color: rgba(246, 244, 241, 0.75);
    font-size: 0.95rem;
    margin-bottom: 1.8rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    position: relative;
}

.newsletter-form input {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(216, 201, 180, 0.2);
    border-radius: 50px;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.4s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--color-sand);
    background: rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 0 4px rgba(216, 201, 180, 0.1);
}

.newsletter-form input::placeholder {
    color: rgba(246, 244, 241, 0.4);
}

.newsletter-form button {
    position: absolute;
    right: 6px;
    top: 6px;
    bottom: 6px;
    background: var(--color-sand);
    color: var(--color-slate);
    border: none;
    border-radius: 50px;
    width: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    padding: 0;
}

.newsletter-form button:hover {
    background: var(--color-white);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(216, 201, 180, 0.3);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: rgba(246, 244, 241, 0.5);
    font-size: 0.85rem;
}

.footer-credit {
    font-size: 0.85rem;
}

.footer-credit a {
    color: var(--color-sand);
    font-weight: 700;
    transition: var(--transition-fast);
}

.footer-credit a:hover {
    color: var(--color-white);
    text-decoration: underline;
}

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

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ============================================================
   PAGE HEADER (For Legal, Contact, etc.)
   ============================================================ */
.page-header {
    background: var(--color-slate);
    color: var(--color-ivory);
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(216, 201, 180, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.page-header h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.1rem;
    color: rgba(246, 244, 241, 0.8);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ============================================================
   LEGAL PAGES (Terms, Privacy, Refund)
   ============================================================ */
.legal-content {
    background-color: var(--color-ivory);
    padding: 80px 0;
}

.legal-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 4rem 5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-premium);
}

.legal-content h2 {
    font-size: 2rem;
    color: var(--color-slate);
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(216, 201, 180, 0.3);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.4rem;
    color: var(--color-slate);
    margin: 1.5rem 0 0.8rem;
}

.legal-content p, .legal-content ul, .legal-content ol {
    margin-bottom: 1.5rem;
    color: var(--color-fog);
    line-height: 1.8;
}

.legal-content ul, .legal-content ol {
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content strong {
    color: var(--color-slate);
}

@media (max-width: 768px) {
    .page-header { padding: 140px 0 80px; }
    .page-header h1 { font-size: 3rem; }
    .legal-content-wrapper { padding: 2.5rem 2rem; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
    padding: 100px 0;
    background-color: var(--color-ivory);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    padding-right: 2rem;
}

.contact-info h3 {
    font-size: 2rem;
    color: var(--color-slate);
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: var(--color-fog);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    background: var(--color-white);
    border: 1px solid var(--color-sand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-slate);
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(216, 201, 180, 0.2);
}

.contact-item-content h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-slate);
    margin-bottom: 0.3rem;
}

.contact-item-content p, .contact-item-content a {
    color: var(--color-fog);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.contact-item-content a:hover {
    color: var(--color-slate);
    text-decoration: underline;
}

.contact-form-wrapper {
    background: var(--color-white);
    padding: 3.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-premium);
}

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

.contact-form label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-slate);
    margin-bottom: 0.6rem;
}

.contact-form .form-control {
    width: 100%;
    background: var(--color-ivory);
    border: 1px solid rgba(216, 201, 180, 0.5);
    padding: 1rem;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-slate);
    transition: var(--transition-fast);
}

.contact-form .form-control:focus {
    outline: none;
    border-color: var(--color-slate);
    background: var(--color-white);
    box-shadow: 0 0 0 4px rgba(63, 78, 83, 0.05);
}

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

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .contact-info {
        padding-right: 0;
    }
}

@media (max-width: 600px) {
    .contact-form-wrapper {
        padding: 2.5rem 2rem;
    }
}

/* Mobile User Header Fixes */
@media (max-width: 768px) {
    .user-profile-name { display: none !important; }
    .user-profile-caret { display: none !important; }
    .nav-orders-text { display: none !important; }
    .user-profile-trigger { padding: 0 !important; border: none !important; background: transparent !important; }
    .nav-orders-btn { padding: 0.5rem !important; }
    .user-action-group { gap: 0.5rem !important; }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: #128C7E;
    color: #FFF;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: currentColor;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}
