/* ===================================
   CSS Variables & Design Tokens
   =================================== */
:root {
    /* Light cream palette */
    --color-bg: #FFFBF5;
    --color-bg-2: #FFF7EE;
    --color-bg-3: #F5EDE3;
    --color-surface: #ffffff;
    --color-surface-hover: #FFF3E8;

    /* Red accent - primary CTA, interactive elements */
    --color-red: #c62828;
    --color-red-light: #e53935;
    --color-red-glow: rgba(198, 40, 40, 0.12);

    /* Blue accent - secondary highlights, complements */
    --color-blue: #1565c0;
    --color-blue-light: #1976d2;
    --color-blue-glow: rgba(21, 101, 192, 0.12);

    /* Keep accent as red (primary brand) */
    --color-accent: #c62828;

    /* Text */
    --color-heading: #1a1a2e;
    --color-text: #3d3d56;
    --color-text-muted: #6b6b80;
    --color-text-dim: #9c9cb0;
    --color-border: rgba(0, 0, 0, 0.08);
    --color-border-hover: rgba(0, 0, 0, 0.15);

    /* Glass */
    --glass-bg: rgba(255, 251, 245, 0.7);
    --glass-border: rgba(0, 0, 0, 0.06);
    --glass-blur: blur(20px);

    /* Typography */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;

    /* Spacing & Radius */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.1);
    --shadow-glow-red: 0 4px 30px rgba(198, 40, 40, 0.15);
    --shadow-glow-red-strong: 0 6px 40px rgba(198, 40, 40, 0.25);
    --shadow-glow-blue: 0 4px 30px rgba(21, 101, 192, 0.15);
    --shadow-glow-blue-strong: 0 6px 40px rgba(21, 101, 192, 0.25);

    /* Layout */
    --header-height: 80px;
    --container-max: 1200px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================================
   Reset & Base
   =================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 24px);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-heading);
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* Utility */
.text-gradient {
    color: var(--color-red);
}

.text-gradient--blue {
    color: var(--color-blue);
}

/* ===================================
   Custom Cursor
   =================================== */
.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
}

.cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(198, 40, 40, 0.35);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s;
}

@media (max-width: 768px) {
    .cursor-dot, .cursor-ring { display: none; }
}

/* ===================================
   Preloader
   =================================== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--color-bg);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader__inner {
    text-align: center;
}

.preloader__logo {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 800;
    color: var(--color-red);
    margin-bottom: 24px;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader__bar {
    width: 320px;
    height: 3px;
    background: var(--color-border);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto;
}

.preloader__fill {
    width: 0;
    height: 100%;
    background: var(--color-red);
    border-radius: 3px;
    animation: preloaderFill 2s ease-in-out forwards;
}

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

@keyframes preloaderFill {
    0% { width: 0; }
    100% { width: 100%; }
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.88rem;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.btn--primary {
    background: var(--color-red);
    color: #fff;
    border-color: transparent;
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-red-strong);
    filter: brightness(1.1);
}

.btn--glow {
    background: var(--color-red);
    color: #fff;
    border-color: transparent;
}

.btn--glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--color-red);
    border-radius: inherit;
    z-index: -1;
    filter: blur(14px);
    opacity: 0;
    transition: opacity var(--transition);
}

.btn--glow:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-red-strong);
}

.btn--glow:hover::before {
    opacity: 0.5;
}

.btn--glass {
    background: rgba(0, 0, 0, 0.05);
    color: var(--color-heading);
    border-color: var(--color-border);
    backdrop-filter: blur(10px);
}

.btn--glass:hover {
    background: rgba(0, 0, 0, 0.08);
    border-color: var(--color-border-hover);
    transform: translateY(-3px);
}

.btn--outline {
    background: transparent;
    color: var(--color-accent);
    border-color: var(--color-accent);
}

.btn--outline:hover {
    background: var(--color-accent);
    color: #fff;
    transform: translateY(-2px);
}

.btn--sm {
    padding: 10px 22px;
    font-size: 0.82rem;
}

.btn--lg {
    padding: 18px 40px;
    font-size: 0.95rem;
}

/* ===================================
   Header
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 251, 245, 0.6);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
}

.header.scrolled {
    background: rgba(255, 251, 245, 0.95);
    border-bottom-color: var(--color-border);
    box-shadow: var(--shadow-md);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.logo__mark {
    width: 42px;
    height: 42px;
    background: var(--color-red);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    color: #fff;
    transition: transform var(--transition);
}

.logo:hover .logo__mark {
    transform: rotate(-6deg) scale(1.05);
}

.logo__mark--footer {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
}

.logo__text {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-heading);
    letter-spacing: -0.3px;
}

.logo__text--accent {
    color: var(--color-accent);
}

.logo--footer .logo__text {
    color: var(--color-heading);
}

.logo--footer img {
    height: 80px;
}

/* Nav */
.nav__list {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav__link {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--color-text-muted);
    position: relative;
    transition: color var(--transition);
    letter-spacing: 0.3px;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-red);
    border-radius: 2px;
    transition: width var(--transition);
}

.nav__link:hover {
    color: var(--color-heading);
}

.nav__link:hover::after {
    width: 100%;
}

.header__cta {
    display: inline-flex;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-heading);
    border-radius: 2px;
    transition: all var(--transition);
    transform-origin: center;
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

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

/* ===================================
   Hero
   =================================== */
.hero {
    position: relative;
    margin-top: var(--header-height);
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--color-bg);
}

@media (min-width: 769px) {
    .hero {
        margin-top: calc(var(--header-height) + 20px);
        min-height: calc(100vh - var(--header-height) - 40px);
        width: calc(100% - 40px);
        margin-left: 20px;
        margin-right: 20px;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md);
    }
}

.hero__particles {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.5;
}

.hero__gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 25% 30%, rgba(198, 40, 40, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 75%, rgba(21, 101, 192, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.hero__noise {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.015;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-size: 128px;
}

.hero__content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--color-heading);
    padding: 140px 24px 100px;
    max-width: 820px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(198, 40, 40, 0.06);
    border: 1px solid rgba(198, 40, 40, 0.12);
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--color-red);
    letter-spacing: 0.5px;
    margin-bottom: 32px;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-red);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
}

.hero__title {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -2px;
    color: var(--color-heading);
}

.hero__title--gradient {
    color: var(--color-red);
    font-style: italic;
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 48px;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero__ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero__scroll-text {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-text-dim);
}

.hero__scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--color-red), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===================================
   Marquee Strip
   =================================== */
.marquee-strip {
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 18px 0;
    overflow: hidden;
    position: relative;
}

.marquee-strip__track {
    display: flex;
    gap: 60px;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}

.marquee-strip__track span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-muted);
    white-space: nowrap;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===================================
   Section Styles
   =================================== */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-red);
    margin-bottom: 16px;
    font-family: var(--font-body);
}

.section-tag--light {
    color: var(--color-red);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--color-heading);
    margin-bottom: 16px;
    letter-spacing: -1px;
    line-height: 1.15;
}

.section-title--left {
    text-align: left;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   About Section
   =================================== */
.about {
    padding: 120px 0;
    background: var(--color-bg);
    position: relative;
}

.about__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.about__text {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

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

.about__feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.about__feature:hover {
    border-color: var(--color-border-hover);
    background: var(--color-surface-hover);
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
}

.about__feature-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.about__feature h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--color-heading);
}

.about__feature p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Stats */
.about__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    padding: 36px 28px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.stat-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow-red);
}

.stat-card--accent:hover {
    box-shadow: var(--shadow-glow-blue);
}

.stat-card--accent {
    background: rgba(21, 101, 192, 0.04);
    border-color: rgba(21, 101, 192, 0.12);
}

.stat-card__number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--color-red);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-card--accent .stat-card__number {
    color: var(--color-blue);
}

.stat-card__label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===================================
   Process / How It Works
   =================================== */
.process {
    padding: 120px 0;
    background: var(--color-bg-2);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(21, 101, 192, 0.04), transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.process__timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.process__timeline::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right, var(--color-red), var(--color-blue));
    opacity: 0.2;
}

.process__step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--color-surface);
    border: 2px solid var(--color-border);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-blue);
    margin-bottom: 24px;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.process__step:hover .process__step-number {
    background: var(--color-blue);
    border-color: transparent;
    color: #fff;
    transform: scale(1.1);
    box-shadow: var(--shadow-glow-blue);
}

.process__step-content h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-heading);
}

.process__step-content p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* ===================================
   Services
   =================================== */
.services {
    padding: 120px 0;
    background: var(--color-bg);
    position: relative;
}

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

.service-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    border: 1px solid var(--color-border);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.service-card__glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(21, 101, 192, 0.04), transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-slow);
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(21, 101, 192, 0.15);
    box-shadow: var(--shadow-glow-blue);
}

.service-card:hover .service-card__glow {
    opacity: 1;
}

.service-card__icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.55;
}

/* ===================================
     Store Locator — City Tabs
   =================================== */
.stores {
    padding: 120px 0 60px;
    background: var(--color-bg-2);
}

.city-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 4px 0 24px;
    margin-bottom: 44px;
}

.city-tab {
    padding: 12px 28px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-full);
    background: var(--color-surface);
    color: var(--color-text-muted);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all var(--transition);
}

.city-tab:hover {
    border-color: var(--color-red);
    color: var(--color-red);
}

.city-tab.active {
    background: var(--color-red);
    border-color: transparent;
    color: #fff;
}

/* ===================================
   Store Cards
   =================================== */
.city-store-section {
    display: none;
    animation: fadeSlideUp 0.5s ease-out;
}

.city-store-section.active { display: block; }

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

.city-heading {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-heading);
    margin-bottom: 28px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-red);
    display: inline-block;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.store-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.store-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--color-red);
    transform: scaleY(0);
    transition: transform var(--transition);
    transform-origin: bottom;
}

.store-card:hover {
    border-color: var(--color-border-hover);
    box-shadow: var(--shadow-glow-red);
    transform: translateY(-4px);
}

.store-card:hover::before { transform: scaleY(1); }

.store-card__name {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: 10px;
}

.store-card__address {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 18px;
}

.store-card__services {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.service-chip {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(198, 40, 40, 0.06);
    color: var(--color-red);
    font-size: 0.72rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    white-space: nowrap;
    border: 1px solid rgba(198, 40, 40, 0.12);
}

.store-card__hours {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.store-card__hours::before {
    content: '🕐';
    font-size: 1rem;
}

.store-card__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Coming Soon Card */
.store-card--soon {
    background: var(--color-bg-3);
    border-color: var(--color-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    text-align: center;
}

.store-card--soon::before { display: none; }
.store-card--soon:hover { box-shadow: none; transform: none; }

.coming-soon-badge {
    display: inline-block;
    padding: 8px 24px;
    background: var(--color-text-dim);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    margin-bottom: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.store-card--soon .store-card__name {
    color: var(--color-text-muted);
}

/* ===================================
   Gallery Section
   =================================== */
.gallery {
    padding: 120px 0;
    background: var(--color-bg-2);
}

.gallery__slider-wrapper {
    position: relative;
    width: 100%;
}

.gallery__grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 24px;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.gallery__grid::-webkit-scrollbar {
    display: none;
}

.gallery__controls {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.gallery__progress {
    width: 200px;
    max-width: 50%;
    height: 4px;
    background: rgba(0,0,0,0.06);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .gallery__progress {
        width: 350px;
    }
}

.gallery__progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--color-red);
    border-radius: 2px;
    transition: width 0.1s linear;
}

.gallery__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    color: var(--color-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.gallery__arrow--prev {
    left: -16px;
}

.gallery__arrow--next {
    right: -16px;
}

.gallery__arrow:hover {
    background: var(--color-red);
    color: #fff;
    border-color: var(--color-red);
    transform: translateY(calc(-50% - 2px));
    box-shadow: var(--shadow-md);
}

.gallery__arrow:disabled {
    opacity: 0;
    pointer-events: none;
}

.gallery__item {
    flex: 0 0 85%;
    height: 350px;
    scroll-snap-align: center;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

@media (min-width: 768px) {
    .gallery__item {
        flex: 0 0 45%;
    }
}

@media (min-width: 1024px) {
    .gallery__item {
        flex: 0 0 30%;
        height: 400px;
    }
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform var(--transition-slow);
}

.gallery__item:hover img {
    transform: scale(1.08);
}

.gallery__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.8), transparent 60%);
    display: flex; align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery__item:hover .gallery__overlay { opacity: 1; }
.gallery__overlay span {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 500;
}

.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

/* ===================================
   Pricing Section
   =================================== */
.pricing {
    padding: 120px 0;
    background: var(--color-bg);
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.pricing-tab {
    padding: 14px 32px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-full);
    background: var(--color-surface);
    color: var(--color-text-muted);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.pricing-tab:hover {
    border-color: var(--color-blue);
    color: var(--color-blue);
}

.pricing-tab.active {
    background: var(--color-blue);
    border-color: transparent;
    color: #fff;
}

.pricing-table-wrapper {
    display: none;
    animation: fadeSlideUp 0.4s ease-out;
}

.pricing-table-wrapper.active { display: block; }

.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.pricing-table thead {
    background: var(--color-bg-3);
}

.pricing-table th {
    padding: 18px 28px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-blue);
    border-bottom: 1px solid var(--color-border);
}

.pricing-table th:not(:first-child) { text-align: center; }

.pricing-table td {
    padding: 16px 28px;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text);
}

.pricing-table td:not(:first-child) {
    text-align: center;
    font-weight: 600;
    color: var(--color-heading);
}

.pricing-table td:first-child {
    font-weight: 500;
    color: var(--color-text-muted);
}

.pricing-table tbody tr {
    transition: all var(--transition);
}

.pricing-table tbody tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.02);
}

.pricing-table tbody tr:hover {
    background: rgba(21, 101, 192, 0.04);
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.pricing-note {
    text-align: center;
    font-size: 0.82rem;
    color: var(--color-text-dim);
    margin-top: 28px;
    font-style: italic;
}

/* ===================================
   Map Section
   =================================== */
.map-section {
    padding: 0 0 120px;
    background: var(--color-bg-2);
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
}

.map-wrapper iframe { display: block; }

/* ===================================
   Franchise Section
   =================================== */
.franchise {
    padding: 140px 0;
    position: relative;
    overflow: hidden;
    background: var(--color-bg);
}

.franchise__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 30% 50%, rgba(198, 40, 40, 0.04), transparent 60%),
        radial-gradient(ellipse 60% 40% at 75% 70%, rgba(21, 101, 192, 0.04), transparent 50%);
}

.franchise__inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.franchise__title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--color-heading);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.franchise__text {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.franchise__highlights {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.franchise__highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-text);
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.franchise__highlight:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.franchise__highlight-icon {
    font-size: 1.3rem;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--color-bg-2);
    color: var(--color-text-muted);
    padding: 80px 0 0;
    border-top: 1px solid var(--color-border);
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--color-border);
}

.footer__tagline {
    margin-top: 20px;
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--color-text-dim);
}

.footer__heading {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer__links li { margin-bottom: 12px; }

.footer__links a {
    font-size: 0.88rem;
    color: var(--color-text-dim);
    transition: color var(--transition);
}

.footer__links a:hover {
    color: var(--color-red);
}

.footer__address {
    font-size: 0.88rem;
    color: var(--color-text-dim);
    line-height: 1.6;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--color-blue);
    border-color: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-blue);
}

.footer__bottom {
    padding: 28px 0;
}

.footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer__legal {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.78rem;
    color: var(--color-text-dim);
    flex-wrap: wrap;
}

.footer__legal a { transition: color var(--transition); }
.footer__legal a:hover { color: var(--color-red); }

.footer__map-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-red);
    transition: opacity var(--transition);
}

.footer__map-link:hover { opacity: 0.8; }

/* ===================================
   WhatsApp Floating Button
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all var(--transition);
    animation: whatsappBounceIn 0.6s ease-out 2s both;
}

.whatsapp-float:hover {
    background: #1EBE57;
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    animation: whatsappPulse 2s ease-in-out infinite;
    z-index: -1;
}

.whatsapp-float__tooltip {
    position: absolute;
    right: 72px;
    background: var(--color-surface);
    color: var(--color-heading);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(8px);
    transition: all var(--transition);
    pointer-events: none;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
}

.whatsapp-float__tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--color-surface);
    border-right: none;
}

.whatsapp-float:hover .whatsapp-float__tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@keyframes whatsappPulse {
    0% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.5); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

@keyframes whatsappBounceIn {
    0% { opacity: 0; transform: scale(0.3) translateY(40px); }
    60% { transform: scale(1.1) translateY(-4px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* ===================================
   Back to Top
   =================================== */
.back-to-top {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 9999;
    width: 48px;
    height: 48px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-blue);
    border-color: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-blue);
}

/* ===================================
   Reveal Animations
   =================================== */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Responsive
   =================================== */
@media (max-width: 1024px) {
    .services__grid { grid-template-columns: repeat(3, 1fr); }
    .process__timeline { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .process__timeline::before { display: none; }
    .about__grid { grid-template-columns: 1fr; gap: 60px; }
    .footer__inner { grid-template-columns: repeat(2, 1fr); gap: 36px; }
}

@media (max-width: 768px) {
    :root { --header-height: 80px; }

    .hamburger { display: flex; }
    .header__cta { display: none; }
    .logo img { height: 68px; }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--color-bg);
        border-left: 1px solid var(--color-border);
        padding: 100px 32px 32px;
        transition: right var(--transition);
        z-index: 1000;
    }

    .nav.open { right: 0; }

    .nav__list {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }

    .nav__link { font-size: 1.1rem; color: var(--color-text); }

    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .store-grid { grid-template-columns: 1fr; }
    .about__stats { grid-template-columns: repeat(2, 1fr); }
    .footer__inner { grid-template-columns: 1fr; gap: 32px; }
    .footer__bottom-inner { flex-direction: column; text-align: center; }
    .franchise__highlights { gap: 16px; }
}

@media (max-width: 480px) {
    .services__grid { grid-template-columns: 1fr; }
    .process__timeline { grid-template-columns: 1fr; }
    .hero__content { padding: 120px 16px 80px; }
    .hero__title { letter-spacing: -1px; }
    .hero__scroll { display: none; }
    .franchise__highlights { flex-direction: column; align-items: center; }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
    }

    .whatsapp-float__tooltip { display: none; }

    .back-to-top {
        bottom: 20px;
        left: 20px;
        width: 42px;
        height: 42px;
    }
}

/* Mobile nav overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    z-index: 999;
}

.nav-overlay.show { display: block; }

/* Responsive pricing table */
@media (max-width: 600px) {
    .pricing-table-wrapper {
        overflow-x: visible;
    }

    .pricing-table { width: 100%; min-width: auto; }

    .pricing-table th,
    .pricing-table td {
        padding: 12px 10px;
        font-size: 0.78rem;
    }
}

/* ===================================
   Smooth parallax layer
   =================================== */
.parallax-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.parallax-bg__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.08;
    animation: orbFloat 15s ease-in-out infinite alternate;
}

@keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, -30px) scale(1.1); }
}
