/* ============================================
   COCOON LUXUSBETTEN — WordPress Theme
   Built by THEONEAGENCY.de
   ============================================ */

/* === VARIABLES === */
:root {
    --bg-warm: #F9F7F5;
    --bg-black: #000000;
    --text-dark: #111010;
    --text-body: #272727;
    --text-light: #ffffff;
    --text-muted: #6b6b6b;
    --font-heading: 'Bodoni Moda', serif;
    --font-body: 'Inter', sans-serif;
    --sale-red: #e53935;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-warm);
    color: var(--text-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: -1px;
}

p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-body);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* === LAYOUT === */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

section {
    padding: 100px 60px;
}

@media (max-width: 1100px) {
    .container, section {
        padding: 80px 40px;
    }
}

@media (max-width: 600px) {
    .container, section {
        padding: 60px 20px;
    }
}

/* === SALE BADGE === */
.sale-badge {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--sale-red);
    color: white;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    padding: 8px 14px;
    letter-spacing: 1.5px;
    z-index: 1000;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sale-badge:hover {
    transform: scale(1.05);
}

/* === SITE HEADER + STICKY === */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0.95) 30%, rgba(0,0,0,0.7) 55%, rgba(0,0,0,0.3) 80%, rgba(0,0,0,0.0) 100%);
    transition: background 0.5s ease, backdrop-filter 0.5s ease;
}

.site-header.scrolled {
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.header-top {
    text-align: center;
    padding: 24px 40px 0;
}

.logo-img {
    height: 32px;
    width: auto;
}

.header-cta {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    text-decoration: none;
    padding: 10px 24px;
    border: 1px solid rgba(255,255,255,0.35);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    margin-left: 8px;
}

.header-cta:hover {
    background: var(--text-light);
    color: var(--bg-black);
}

.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    padding: 16px 40px 16px;
    flex-wrap: wrap;
}

.main-nav a {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.main-nav a:hover {
    color: var(--text-light);
}

/* === NAV DROPDOWNS === */
.nav-item {
    position: relative;
}

.nav-item > a {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-item > a:hover {
    color: var(--text-light);
}

.nav-item > a .nav-arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 3.5px solid transparent;
    border-right: 3.5px solid transparent;
    border-top: 3.5px solid currentColor;
    transition: transform 0.3s ease;
    margin-top: 1px;
}

.nav-item:hover > a .nav-arrow {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 220px;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    padding: 20px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.35s;
    z-index: 200;
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
    display: block;
    padding: 10px 28px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1), padding-left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-dropdown a:hover {
    color: var(--text-light);
    padding-left: 34px;
}

/* === MEGA DROPDOWN (Filialen) === */
.nav-mega {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: 680px;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    padding: 32px 40px 28px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.35s;
    z-index: 200;
}

.nav-item:hover .nav-mega {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-mega-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0 32px;
}

.nav-mega-country {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 400;
    font-style: italic;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.5px;
    padding-bottom: 10px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-mega a {
    display: block;
    padding: 7px 0;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-mega a:hover {
    color: var(--text-light);
    transform: translateX(4px);
}

.nav-mega-allstores {
    grid-column: 1 / -1;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

.nav-mega-allstores a {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-mega-allstores a:hover {
    color: var(--text-light);
}

/* === HERO SECTION === */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 120px 60px 100px;
    background: var(--bg-black);
    overflow: hidden;
    text-align: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 100%);
    will-change: transform;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 76px;
    font-weight: 400;
    font-style: italic;
    letter-spacing: -3px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5),
                 0 8px 40px rgba(0,0,0,0.3),
                 0 12px 60px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
}

.hero-cta {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    text-decoration: none;
    padding: 14px 40px;
    border: 1px solid rgba(255,255,255,0.5);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-cta:hover {
    background: var(--text-light);
    color: var(--bg-black);
    border-color: var(--text-light);
}

/* === HERO ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-title {
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
    opacity: 0;
}

.hero-subtitle {
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
    opacity: 0;
}

.hero-cta {
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
    opacity: 0;
}

/* === CITY MARQUEE === */
.marquee-section {
    background: var(--bg-black);
    padding: 40px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 60px;
    animation: scroll-left 30s linear infinite;
}

.marquee-track span {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    font-style: italic;
    color: rgba(255,255,255,0.15);
    white-space: nowrap;
    letter-spacing: -1px;
}

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

/* === PROMISE CARDS === */
.promise-section {
    padding: 80px 60px;
    background: var(--bg-warm);
}

.promise-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 400;
    letter-spacing: -2px;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 80px;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 4px 30px rgba(0,0,0,0.04);
}

.promise-card {
    padding: 40px;
    text-align: center;
    border-right: 1px solid rgba(0,0,0,0.06);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.promise-card:last-child {
    border-right: none;
}

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

.promise-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.promise-heading {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.promise-text {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-body);
}

/* === EDITORIAL SPLITS === */
.editorial-section {
    padding: 100px 60px;
    background: var(--bg-warm);
}

.editorial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.editorial-grid.reverse {
    direction: rtl;
}

.editorial-grid.reverse > * {
    direction: ltr;
}

.editorial-image {
    width: 100%;
    height: 400px;
    background: white;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    overflow: hidden;
}

.editorial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.editorial-content h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 400;
    letter-spacing: -2px;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.3;
}

.editorial-content p {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 24px;
}

.editorial-cta {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-dark);
    text-decoration: none;
    padding: 12px 28px;
    border: 1px solid var(--text-dark);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.editorial-cta:hover {
    background: var(--text-dark);
    color: var(--text-light);
}

/* === PRODUCT GRID (cards with image, name, specs, price, CTA) === */
.product-grid-section {
    padding: 100px 60px;
    background: var(--bg-warm);
}

.product-grid-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 400;
    letter-spacing: -2px;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 80px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.product-card {
    background: white;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0,0,0,0.04);
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.5s ease;
}

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

.product-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.product-image {
    width: 100%;
    height: 300px;
    background: var(--bg-warm);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.product-info {
    padding: 32px;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.product-specs {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.6;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.product-cta {
    display: block;
    text-align: center;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-light);
    background: var(--text-dark);
    text-decoration: none;
    padding: 12px 20px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-cta:hover {
    background: var(--text-dark);
    opacity: 0.8;
}

/* === HOTEL LOGOS === */
.hotel-logos-section {
    padding: 80px 60px;
    background: var(--bg-warm);
    text-align: center;
}

.hotel-logos-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    letter-spacing: -1px;
    color: var(--text-dark);
    margin-bottom: 60px;
}

.hotel-logos-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.hotel-logo {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotel-logo img {
    height: 100%;
    width: auto;
    filter: brightness(0);
    opacity: 0.5;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hotel-logos-section:hover .hotel-logo img {
    opacity: 0.8;
}

/* === CTA SECTION (Beratungstermin) === */
.cta-section {
    padding: 0;
    background: var(--text-dark);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.cta-image {
    position: relative;
    overflow: hidden;
    background: var(--bg-black);
}

.cta-image .cta-video,
.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cta-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 400;
    letter-spacing: -1px;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-subtitle {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.65);
    margin-bottom: 32px;
    max-width: 450px;
}

.cta-button {
    display: inline-block;
    padding: 14px 36px;
    border: 1px solid rgba(255,255,255,0.5);
    color: white;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    width: fit-content;
    margin-bottom: 32px;
}

.cta-button:hover {
    background: white;
    color: var(--text-dark);
    border-color: white;
}

.cta-divider {
    width: 40px;
    height: 1px;
    background: rgba(255,255,255,0.2);
    margin-bottom: 24px;
}

.cta-locations {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.cta-locations span {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

.cta-phone {
    font-family: var(--font-heading);
    font-size: 24px;
    color: white;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.cta-phone:hover {
    color: var(--sale-red);
}

@media (max-width: 900px) {
    .cta-section {
        grid-template-columns: 1fr;
    }
    .cta-image {
        min-height: 300px;
    }
    .cta-content {
        padding: 60px 30px;
    }
}

/* === VIDEO CTA SECTION (alternate) === */
.video-cta-section {
    padding: 0;
    background: var(--bg-black);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.video-cta-media {
    width: 100%;
    min-height: 500px;
    background: var(--bg-black);
    position: relative;
    overflow: hidden;
}

.video-cta-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border: 2px solid white;
    border-radius: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-play-btn:before {
    content: '';
    width: 0;
    height: 0;
    border-left: 24px solid white;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    margin-left: 6px;
}

.video-cta-media:hover .video-play-btn {
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-cta-content {
    padding: 100px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-black);
}

.video-cta-content h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 400;
    letter-spacing: -2px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.video-cta-content p {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
}

.video-cta-link {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    text-decoration: none;
    padding: 14px 40px;
    border: 1px solid rgba(255,255,255,0.5);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-cta-link:hover {
    background: var(--text-light);
    color: var(--bg-black);
}

/* === FOOTER === */
.site-footer {
    background: var(--text-dark);
    color: var(--text-light);
    padding: 80px 60px 40px;
    text-align: center;
}

.footer-logo {
    height: 40px;
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo img {
    height: 100%;
    width: auto;
}

.footer-text {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 34px;
}

.footer-socials a {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-socials a:hover {
    background: var(--text-light);
    color: var(--text-dark);
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

.footer-nav a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-nav a:hover {
    color: var(--text-light);
}

.footer-copy {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* === HOMEPAGE: Categories Grid === */
.categories-section {
    padding: 100px 60px;
    background: var(--bg-warm);
}

.categories-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 400;
    letter-spacing: -2px;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 80px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.category-card {
    background: white;
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: 0 4px 30px rgba(0,0,0,0.04);
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.5s ease;
    position: relative;
    display: flex;
    align-items: flex-end;
}

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

.category-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.category-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-warm);
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.category-overlay {
    position: relative;
    z-index: 2;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    width: 100%;
    padding: 40px;
    color: white;
}

.category-name {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    letter-spacing: -1px;
    color: white;
    margin-bottom: 8px;
}

.category-count {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
}

/* === HOMEPAGE: King Koil Parallax === */
.kingkoil-section {
    position: relative;
    height: 80vh;
    min-height: 600px;
    background: var(--text-dark);
    overflow: hidden;
    margin-top: 100px;
}

.kingkoil-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: linear-gradient(45deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 100%),
                url('https://images.unsplash.com/photo-1631049307264-da0ec9d70304?w=1920&q=80') center center / cover no-repeat;
    will-change: transform;
    z-index: 1;
}

.kingkoil-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px;
    text-align: center;
}

.kingkoil-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 400;
    letter-spacing: -2px;
    color: var(--text-light);
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5),
                 0 8px 40px rgba(0,0,0,0.3),
                 0 12px 60px rgba(0,0,0,0.2);
}

.kingkoil-subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    max-width: 600px;
}

.kingkoil-hotels-wrap {
    margin-top: 60px;
    max-width: 800px;
}

.kingkoil-hotels-track {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.kingkoil-hotels-track img {
    height: 40px;
    width: auto;
    opacity: 0.6;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.kingkoil-hotels-track:hover img {
    opacity: 0.9;
}

/* === HOMEPAGE: Experience Section (Video Background) === */
.experience-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.experience-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.experience-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
}

.experience-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 80px 40px;
    max-width: 700px;
}

.experience-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 24px;
    filter: brightness(0) invert(1);
}

.experience-subtitle {
    font-family: var(--font-heading);
    font-size: 24px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.experience-body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.experience-cta {
    display: inline-block;
    padding: 14px 40px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: white;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.experience-cta:hover {
    background: white;
    color: var(--text-dark);
    border-color: white;
}

/* === HOMEPAGE: Experience Section (Grid variant) === */

.experience-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 400;
    letter-spacing: -2px;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 80px;
}

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

.experience-image {
    width: 100%;
    height: 400px;
    background: white;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    overflow: hidden;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.experience-content h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 400;
    letter-spacing: -1px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.experience-content p {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 24px;
}

/* === HOMEPAGE: Info Cards === */
.info-cards-section {
    padding: 100px 60px;
    background: var(--bg-warm);
}

.info-cards-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 400;
    letter-spacing: -2px;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 80px;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.info-card {
    background: white;
    padding: 48px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.04);
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.5s ease;
}

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

.info-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.info-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.info-card p {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-body);
}

/* === HOMEPAGE: Benefits Grid === */
.benefits-section {
    padding: 100px 60px;
    background: var(--bg-warm);
}

.benefits-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 400;
    letter-spacing: -2px;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 80px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 4px 30px rgba(0,0,0,0.04);
}

.benefit-card {
    padding: 56px 40px;
    text-align: center;
    border-right: 1px solid rgba(0,0,0,0.06);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.benefit-card:last-child {
    border-right: none;
}

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

.benefit-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.benefit-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.benefit-text {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-body);
}

/* === FILIALEN: SVG Map === */
.map-section {
    padding: 100px 60px;
    background: var(--bg-warm);
}

.map-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 400;
    letter-spacing: -2px;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 80px;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.04);
}

.map-container svg {
    width: 100%;
    height: auto;
}

/* === FILIALEN: Store Cards === */
.stores-section {
    padding: 100px 60px;
    background: var(--bg-warm);
}

.stores-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 400;
    letter-spacing: -2px;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 80px;
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.store-card {
    background: white;
    padding: 40px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.04);
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.5s ease;
}

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

.store-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.store-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.store-address {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--text-body);
    margin-bottom: 12px;
    line-height: 1.6;
}

.store-phone {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.store-hours {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    color: var(--text-muted);
}

/* === FILIALEN: Store Card Mini Maps === */
.store-minimap {
    width: 100%;
    height: 150px;
    background: var(--bg-warm);
    margin-top: 20px;
    border: 1px solid rgba(0,0,0,0.05);
}

.store-minimap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* === CITY LANDING: Features Grid === */
.features-grid-section {
    padding: 100px 60px;
    background: var(--bg-warm);
}

.features-grid-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 400;
    letter-spacing: -2px;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 80px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 48px 40px;
    text-align: center;
    box-shadow: 0 4px 30px rgba(0,0,0,0.04);
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.5s ease;
}

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

.feature-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 44px;
    height: 44px;
    stroke: var(--text-dark);
    stroke-width: 1.2;
    fill: none;
    opacity: 0.6;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.feature-text {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-body);
}

/* === CITY LANDING: Store Info === */
.store-info-section {
    padding: 100px 60px;
    background: var(--bg-warm);
}

.store-info-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 400;
    letter-spacing: -2px;
    color: var(--text-dark);
    margin-bottom: 60px;
}

.store-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.store-info-content h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.store-info-content p {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 16px;
}

.store-details {
    background: white;
    padding: 32px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.04);
    margin-top: 32px;
}

.store-detail-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.store-detail-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.detail-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.detail-value {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--text-dark);
}

.store-info-map {
    width: 100%;
    height: 400px;
    background: var(--bg-warm);
    border: 1px solid rgba(0,0,0,0.05);
}

.store-info-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* === B2B PAGE === */
.b2b-hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    background: var(--bg-black);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 60px;
    text-align: center;
    overflow: hidden;
}

.b2b-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 100%);
    will-change: transform;
    z-index: -1;
}

.b2b-hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.b2b-hero-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 400;
    font-style: italic;
    letter-spacing: -2px;
    color: var(--text-light);
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5),
                 0 8px 40px rgba(0,0,0,0.3),
                 0 12px 60px rgba(0,0,0,0.2);
}

.b2b-hero-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.b2b-benefits {
    padding: 100px 60px;
    background: var(--bg-warm);
}

.b2b-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 4px 30px rgba(0,0,0,0.04);
}

.b2b-benefit-card {
    padding: 48px 40px;
    text-align: center;
    border-right: 1px solid rgba(0,0,0,0.06);
}

.b2b-benefit-card:last-child {
    border-right: none;
}

.b2b-benefit-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 24px;
    font-size: 32px;
}

.b2b-benefit-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.b2b-benefit-text {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-body);
}

.b2b-partners {
    padding: 100px 60px;
    background: var(--bg-warm);
}

.b2b-partners-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 400;
    letter-spacing: -2px;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 80px;
}

.b2b-logos-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.b2b-logo {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.b2b-logo img {
    height: 100%;
    width: auto;
    opacity: 0.6;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.b2b-logos-grid:hover .b2b-logo img {
    opacity: 0.9;
}

.b2b-contact {
    padding: 100px 60px;
    background: var(--bg-black);
    color: var(--text-light);
}

.b2b-contact-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 400;
    letter-spacing: -2px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 80px;
}

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

/* === SERVICE PAGE === */
.service-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    background: var(--bg-black);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 60px;
    text-align: center;
}

.service-hero-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 400;
    letter-spacing: -2px;
    color: var(--text-light);
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.services-grid {
    padding: 100px 60px;
    background: var(--bg-warm);
}

.services-grid-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 400;
    letter-spacing: -2px;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 80px;
}

.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    background: white;
    padding: 48px 40px;
    text-align: center;
    box-shadow: 0 4px 30px rgba(0,0,0,0.04);
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.5s ease;
}

.service-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-item:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.service-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.service-description {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-body);
}

/* === JOBS PAGE === */
.jobs-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    background: var(--bg-black);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 60px;
    text-align: center;
}

.jobs-hero-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 400;
    letter-spacing: -2px;
    color: var(--text-light);
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.jobs-section {
    padding: 100px 60px;
    background: var(--bg-warm);
}

.jobs-list {
    max-width: 900px;
    margin: 0 auto;
}

.job-card {
    background: white;
    padding: 40px;
    margin-bottom: 24px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.04);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.job-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.job-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 400;
    color: var(--text-dark);
}

.job-location {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.job-toggle {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.job-toggle:before {
    content: '+';
    font-size: 20px;
    font-weight: 400;
    color: var(--text-dark);
}

.job-card.expanded .job-toggle:before {
    content: '-';
}

.job-description {
    margin-top: 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.job-card.expanded .job-description {
    max-height: 500px;
}

.job-details {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 20px;
}

.job-apply {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-light);
    background: var(--text-dark);
    text-decoration: none;
    padding: 10px 24px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.job-apply:hover {
    background: var(--text-dark);
    opacity: 0.8;
}

/* === FRANCHISE PAGE === */
.franchise-hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    background: var(--bg-black);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 60px;
    text-align: center;
    overflow: hidden;
}

.franchise-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 100%);
    will-change: transform;
    z-index: -1;
}

.franchise-hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.franchise-hero-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 400;
    font-style: italic;
    letter-spacing: -2px;
    color: var(--text-light);
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5),
                 0 8px 40px rgba(0,0,0,0.3),
                 0 12px 60px rgba(0,0,0,0.2);
}

.franchise-hero-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
}

.franchise-benefits {
    padding: 100px 60px;
    background: var(--bg-warm);
}

.franchise-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 4px 30px rgba(0,0,0,0.04);
}

.franchise-benefit-card {
    padding: 48px 40px;
    text-align: center;
    border-right: 1px solid rgba(0,0,0,0.06);
}

.franchise-benefit-card:last-child {
    border-right: none;
}

.franchise-benefit-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 24px;
    font-size: 32px;
}

.franchise-benefit-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.franchise-benefit-text {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-body);
}

.franchise-process {
    padding: 100px 60px;
    background: var(--bg-warm);
}

.franchise-process-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 400;
    letter-spacing: -2px;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 80px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    background: var(--text-dark);
    color: white;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 400;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.step-description {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-body);
}

.process-step:not(:last-child):after {
    content: '';
    position: absolute;
    top: 28px;
    right: -20px;
    width: 40px;
    height: 2px;
    background: rgba(0,0,0,0.1);
}

.franchise-contact {
    padding: 100px 60px;
    background: var(--bg-black);
    color: var(--text-light);
}

.franchise-contact-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 400;
    letter-spacing: -2px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 80px;
}

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

/* === KONTAKT PAGE === */
.kontakt-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    background: var(--bg-black);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 60px;
    text-align: center;
}

.kontakt-hero-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 400;
    letter-spacing: -2px;
    color: var(--text-light);
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.kontakt-section {
    padding: 100px 60px;
    background: var(--bg-warm);
}

.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.kontakt-form {
    background: white;
    padding: 60px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.04);
}

.kontakt-form-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    font-family: var(--font-body);
    font-size: 14px;
    padding: 12px 16px;
    border: 1px solid rgba(0,0,0,0.1);
    background: transparent;
    color: var(--text-dark);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--text-dark);
}

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

.form-submit {
    width: 100%;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-light);
    background: var(--text-dark);
    text-decoration: none;
    padding: 14px 0;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-submit:hover {
    background: var(--text-dark);
    opacity: 0.8;
}

.kontakt-map {
    width: 100%;
    height: 600px;
    background: var(--bg-warm);
    border: 1px solid rgba(0,0,0,0.05);
}

.kontakt-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* === SCROLL ANIMATIONS (reveal, reveal-blur, reveal-scale, etc.) === */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-up {
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(80px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.88);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

.reveal-fade {
    opacity: 0;
    transition: opacity 1.6s ease;
}

.reveal-fade.visible {
    opacity: 1;
}

.reveal-blur {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(20px);
    transition: opacity 1.2s ease,
                filter 1.2s ease,
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-blur.visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.15s;
}

.delay-2 {
    transition-delay: 0.3s;
}

.delay-3 {
    transition-delay: 0.45s;
}

.delay-4 {
    transition-delay: 0.6s;
}

.delay-5 {
    transition-delay: 0.75s;
}

/* === RESPONSIVE === */
@media (max-width: 1100px) {
    .categories-section {
        padding: 80px 40px;
    }

    .info-cards {
        padding: 40px 40px;
    }

    .info-card {
        padding: 36px 36px 44px;
    }

    .benefit-card {
        padding: 48px 32px;
    }

    .experience-section {
        padding: 80px 40px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .categories-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .promise-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .promise-card {
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.06);
    }

    .promise-card:last-child {
        border-bottom: none;
    }

    .info-cards {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.06);
    }

    .benefit-card:last-child {
        border-bottom: none;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .editorial-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .stores-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .video-cta-section {
        grid-template-columns: 1fr;
    }

    .video-cta-content {
        padding: 60px 30px;
    }

    .b2b-benefits-grid {
        grid-template-columns: 1fr;
    }

    .b2b-benefit-card {
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.06);
    }

    .b2b-benefit-card:last-child {
        border-bottom: none;
    }

    .b2b-contact-grid {
        grid-template-columns: 1fr;
    }

    .franchise-benefits-grid {
        grid-template-columns: 1fr;
    }

    .franchise-benefit-card {
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.06);
    }

    .franchise-benefit-card:last-child {
        border-bottom: none;
    }

    .kontakt-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .kontakt-map {
        height: 400px;
    }
}

@media (max-width: 600px) {
    body {
        font-size: 14px;
    }

    .hero-title {
        font-size: 40px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .services {
        grid-template-columns: 1fr;
    }

    .promise-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .stores-grid {
        grid-template-columns: 1fr;
    }

    .b2b-benefits-grid {
        grid-template-columns: 1fr;
    }

    .b2b-logos-grid {
        gap: 30px;
    }

    .franchise-benefits-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .process-step:not(:last-child):after {
        display: none;
    }

    section {
        padding: 60px 20px;
    }

    .hero-section {
        padding: 80px 20px 60px;
    }

    .kontakt-form {
        padding: 40px 20px;
    }
}

/* === NO-JS FALLBACK: Show all content if JS fails to add .visible === */
/* After 3 seconds, if body doesn't have .js-loaded class, show everything */
@keyframes cocoon-reveal-fallback {
    to {
        opacity: 1;
        transform: none;
        filter: none;
    }
}

/* Fallback: if .js-loaded is NOT on body after 3s, make everything visible */
.reveal,
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale,
.reveal-fade,
.reveal-blur,
.info-card,
.benefit-card,
.promise-card,
.category-card,
.store-card,
.feature-card,
.service-item,
.product-card {
    animation: cocoon-reveal-fallback 0s 3.5s forwards;
}

/* Once JS loads and adds .js-loaded to body, disable the fallback animation */
body.js-loaded .reveal,
body.js-loaded .reveal-up,
body.js-loaded .reveal-left,
body.js-loaded .reveal-right,
body.js-loaded .reveal-scale,
body.js-loaded .reveal-fade,
body.js-loaded .reveal-blur,
body.js-loaded .info-card,
body.js-loaded .benefit-card,
body.js-loaded .promise-card,
body.js-loaded .category-card,
body.js-loaded .store-card,
body.js-loaded .feature-card,
body.js-loaded .service-item,
body.js-loaded .product-card {
    animation: none;
}
