/* custom-theme.css - High Performance UI */
:root {
    --color-dark: #0B0C10;
    --color-black: #050507;
    --color-accent: #ff0022;
    --color-accent-glow: rgba(255, 0, 34, 0.4);
    --color-text: #ffffff;
    --color-text-muted: #cad1dc;
    --glass-bg: rgba(11, 12, 16, 0.62);
    --glass-border: 1px solid rgba(255, 255, 255, 0.09);
    --glass-highlight: rgba(255, 255, 255, 0.16);
    --glass-shadow-strong: 0 24px 60px rgba(0, 0, 0, 0.42);
}

body {
    background:
        radial-gradient(circle at 15% 10%, rgba(255, 0, 34, 0.12), transparent 24%),
        radial-gradient(circle at 85% 0%, rgba(255, 255, 255, 0.05), transparent 16%),
        linear-gradient(180deg, #090b10 0%, #050608 100%);
    color: var(--color-text);
    overflow-x: hidden;
}

/* Typography Overrides */
h1, h2, h3, .heading-font {
    font-family: 'Syne', sans-serif;
    text-transform: uppercase;
}

/* Animations - Hardware Accelerated 60FPS */
.reveal-up {
    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);
    will-change: opacity, transform;
}
.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- NAVIGATION REDESIGN --- */
#main-header {
    background: rgba(5, 5, 7, 0.7) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5) !important;
    transition: all 0.4s ease !important;
}
.brand-text {
    background: linear-gradient(90deg, #fff, var(--color-text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px !important;
    font-weight: 800 !important;
    font-size: 1.6rem !important;
}
.nav-links {
    display: flex;
    align-items: center;
}
.hover-underline {
    position: relative;
    padding-bottom: 4px;
    color: var(--color-text) !important;
    font-family: 'Syne', sans-serif !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    letter-spacing: 1px;
    opacity: 0.9;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}
.hover-underline:hover {
    opacity: 1;
}
.hover-underline::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 0; height: 2px;
    background-color: var(--color-accent);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.hover-underline:hover::after {
    width: 100%;
}
.header-magnetic {
    padding: 0.6rem 1.6rem !important;
    font-size: 0.85rem !important;
}


/* 1. Hero Section */
.hero-epic {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--color-black);
}
.hero-image-container {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}
.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}
.hero-light-sweep {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(120deg, transparent 20%, rgba(255, 0, 34, 0.15) 35%, transparent 50%);
    background-size: 200% 100%;
    animation: lightSweep 6s infinite linear;
    z-index: 2;
    pointer-events: none;
}
@keyframes lightSweep {
    0% { background-position: -100% 0; }
    100% { background-position: 200% 0; }
}
.hero-epic-content {
    position: relative;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-epic-content h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1rem;
    line-height: 1;
    text-shadow: 0 10px 40px rgba(0,0,0,0.8);
}
.hero-epic-content .hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--color-text-muted);
    max-width: 600px;
    margin-bottom: 3rem;
}

/* Magnetic Button */
.btn-magnetic {
    position: relative;
    display: inline-block;
    padding: 1.2rem 3rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.04)),
        linear-gradient(135deg, #ff3650 0%, var(--color-accent) 58%, #c8001f 100%);
    color: white;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    text-decoration: none;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: transform 0.2s cubic-bezier(0.33, 1, 0.68, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    will-change: transform;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        inset 0 -10px 24px rgba(112, 0, 20, 0.25),
        0 16px 32px rgba(255, 0, 34, 0.22);
}
.btn-magnetic::before {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 42%);
    opacity: 0.8;
    pointer-events: none;
}
.btn-magnetic::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.3s, transform 0.3s;
}
.btn-magnetic:hover::after {
    opacity: 1;
    transform: scale(1);
}
.btn-magnetic:hover {
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        inset 0 -12px 28px rgba(112, 0, 20, 0.32),
        0 18px 40px rgba(255, 0, 34, 0.34);
}
/* Pulse Animation for Button that uses ONLY transform/opacity */
.btn-pulse-wrap {
    position: relative;
    display: inline-block;
}
.btn-pulse-ring {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 50px;
    border: 2px solid var(--color-accent);
    animation: btnPulse 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
    pointer-events: none;
}
@keyframes btnPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.3); opacity: 0; }
}

/* 3. Epic Services Layout */
.epic-services {
    padding: 6rem 0;
    background-color: var(--color-black);
}
.epic-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}
.epic-card {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: var(--glass-border);
    border-radius: 20px;
    padding: 3rem 2rem;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
    text-align: center;
}
.epic-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    transform: scaleX(0);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}
.epic-card:hover {
    transform: translateY(-10px);
}
.epic-card:hover::before {
    transform: scaleX(1);
    opacity: 1;
}
.epic-card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    color: var(--color-accent);
}
.epic-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* 4. Social Proof / Gallery */
.marquee-container {
    width: 100%;
    overflow: hidden;
    padding: 3rem 0;
    background-color: var(--color-dark);
    display: flex;
}
.marquee-content {
    display: flex;
    animation: marqueeScroll 20s linear infinite;
    min-width: 100%;
}
.marquee-content span {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: rgba(255,255,255,0.1);
    margin: 0 3rem;
    white-space: nowrap;
    text-transform: uppercase;
}
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}

.epic-gallery {
    padding: 2rem 0 6rem 0;
    background-color: var(--color-dark);
}
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}
.masonry-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/5;
}
.masonry-item:nth-child(2) {
    aspect-ratio: 16/9;
    grid-column: span 2;
}
@media (max-width: 768px) {
    .masonry-item:nth-child(2) {
        grid-column: span 1;
        aspect-ratio: 4/5;
    }
}
.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}
.masonry-item:hover img {
    transform: scale(1.08); /* GPU accelerated scale, no reflow */
}

/* 5. Footer CTA Banner */
.epic-cta-banner {
    background: linear-gradient(135deg, #220005 0%, var(--color-dark) 100%);
    padding: 6rem 2rem;
    text-align: center;
    border-radius: 30px;
    margin: 4rem auto 2rem auto;
    max-width: 1100px;
    border: 1px solid var(--color-accent-glow);
    box-shadow: 0 20px 60px rgba(255, 0, 34, 0.1);
    position: relative;
    overflow: hidden;
}
.epic-cta-banner h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: white;
    margin-bottom: 2rem;
}
.epic-cta-banner .btn-magnetic {
    background: var(--color-accent);
    color: white;
}

/* --- BOOKING SECTION REDESIGN --- */
#booking {
    background-color: var(--color-black);
    padding: 6rem 0;
}
.booking-wrapper {
    background: rgba(15, 16, 20, 0.8) !important;
    border: var(--glass-border) !important;
    border-radius: 30px !important;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,255,255,0.05) !important;
    padding: 3rem !important;
}
.step-indicator {
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    margin-bottom: 2rem !important;
}
.step {
    font-family: 'Syne', sans-serif !important;
    color: var(--color-text-muted) !important;
    letter-spacing: 1px;
}
.step.active {
    color: var(--color-accent) !important;
    text-shadow: 0 0 10px rgba(255,0,34,0.4) !important;
}
.service-checkbox-card, .checkbox-label {
    background: rgba(255,255,255,0.02) !important;
    border: 1px solid rgba(255,255,255,0.05) !important;
    border-radius: 16px !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.service-checkbox-card:hover, .checkbox-label:hover {
    transform: translateY(-5px) !important;
    border-color: rgba(255,0,34,0.5) !important;
    background: rgba(255,0,34,0.05) !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4) !important;
}
.service-checkbox-card.selected {
    background: rgba(255,0,34,0.1) !important;
    border-color: var(--color-accent) !important;
    box-shadow: 0 0 20px rgba(255,0,34,0.2) !important;
}
.input-group input, .input-group select, .input-group textarea {
    background-color: rgba(0,0,0,0.4) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    color: white !important;
    border-radius: 12px !important;
}
.input-group input:focus {
    border-color: var(--color-accent) !important;
    box-shadow: 0 0 15px rgba(255,0,34,0.3) !important;
}
.booking-summary-sticky {
    background: rgba(10,10,12,0.95) !important;
    border: 1px solid rgba(255,0,34,0.3) !important;
    border-radius: 20px !important;
    backdrop-filter: blur(20px) !important;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.8) !important;
}

/* --- E-SHOP CAROUSEL --- */
.epic-shop-carousel {
    padding: 0 0 6rem 0;
    background-color: var(--color-dark);
}
.carousel-arrows .btn-arrow:hover {
    background-color: var(--color-accent) !important;
    border-color: var(--color-accent) !important;
    transform: scale(1.1);
}
.epic-tag {
    background: var(--glass-bg);
    color: var(--color-text);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}
.epic-tag:hover {
    background: rgba(255, 0, 34, 0.05) !important;
    border-color: var(--color-accent) !important;
}
.epic-tag.active {
    pointer-events: none;
    background: rgba(255, 0, 34, 0.1) !important;
    border-color: var(--color-accent) !important;
}
.carousel-wrapper {
    display: flex;
    overflow-x: auto;
    gap: 2rem;
    padding: 1rem 1rem 3rem 1rem;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: var(--color-accent) rgba(255,255,255,0.05);
}
.carousel-wrapper::-webkit-scrollbar {
    height: 6px;
}
.carousel-wrapper::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
}
.carousel-wrapper::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: 10px;
}
.product-card {
    flex: 0 0 calc(25% - 1.5rem);
    min-width: 260px;
    background: var(--glass-bg);
    border: var(--glass-border);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
@media (max-width: 992px) {
    .product-card { flex: 0 0 calc(50% - 1rem); }
}
@media (max-width: 768px) {
    .product-card { flex: 0 0 calc(85% - 1rem); }
}
.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255,0,34,0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 20px rgba(255,0,34,0.1);
}
.product-img-wrap {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 1.5rem;
}
.product-img-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrap img {
    transform: scale(1.1);
}
.product-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--color-text);
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-price {
    font-family: 'Syne', sans-serif;
    font-size: 1.25rem;
    color: var(--color-accent);
    font-weight: 800;
    margin-top: auto;
}

/* Homepage polish and contrast pass */
.site-homepage {
    color: var(--color-text);
}

.site-homepage a:focus-visible,
.site-homepage button:focus-visible,
.site-homepage input:focus-visible,
.site-homepage select:focus-visible,
.site-homepage textarea:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.92);
    outline-offset: 3px;
}

.hero-delay-1 {
    transition-delay: 0.18s;
}

.hero-delay-2 {
    transition-delay: 0.34s;
}

.hero-delay-3 {
    transition-delay: 0.5s;
}

#main-header {
    background: rgba(5, 5, 7, 0.72) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

#main-header nav {
    gap: 1rem;
}

.brand-container {
    gap: 0.8rem;
    min-width: 0;
}

.logo {
    filter: drop-shadow(0 0 18px rgba(255, 0, 34, 0.18));
}

.brand-text {
    line-height: 1.02;
}

.hover-underline {
    color: rgba(255, 255, 255, 0.92) !important;
}

.hover-underline::after {
    height: 1px;
    box-shadow: 0 0 16px rgba(255, 0, 34, 0.5);
}

.hero-epic::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, transparent 0%, rgba(5, 5, 7, 0.14) 50%, rgba(5, 5, 7, 0.76) 100%),
        linear-gradient(180deg, rgba(5, 5, 7, 0.3), rgba(5, 5, 7, 0.72));
    z-index: 3;
}

.hero-epic-content {
    max-width: 880px;
    padding-top: 5.5rem;
    gap: 1.2rem;
}

.hero-epic-content h1 {
    margin-bottom: 0;
}

.hero-subtitle {
    color: #e0e5ee !important;
    line-height: 1.75;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.36);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.hero-badge {
    padding: 0.85rem 1.2rem;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #edf1f8;
    font-size: 0.84rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 16px 34px rgba(0, 0, 0, 0.2);
}

.section-header h2 {
    margin-bottom: 0.7rem;
}

.section-copy,
.shop-copy,
.footer-copy,
.form-helper {
    color: var(--color-text-muted);
    line-height: 1.7;
}

.epic-services {
    position: relative;
    background:
        radial-gradient(circle at top right, rgba(255, 0, 34, 0.08), transparent 24%),
        linear-gradient(180deg, var(--color-black) 0%, #07080c 100%);
}

.epic-services-grid {
    gap: 1.6rem;
}

.epic-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--glass-shadow-strong);
}

.epic-card::after {
    content: '';
    position: absolute;
    inset: auto -10% -45% auto;
    width: 14rem;
    height: 14rem;
    background: radial-gradient(circle, rgba(255, 0, 34, 0.12), transparent 68%);
    pointer-events: none;
}

.epic-card-copy {
    color: var(--color-text-muted);
}

.gallery-grid-shell {
    margin-top: 4rem;
}

.masonry-item {
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--glass-shadow-strong);
}

.masonry-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(5, 7, 11, 0.12) 60%, rgba(5, 7, 11, 0.5) 100%);
    pointer-events: none;
}

.masonry-item-wide {
    grid-column: span 2;
}

#booking {
    background:
        radial-gradient(circle at 20% 15%, rgba(255, 0, 34, 0.08), transparent 24%),
        linear-gradient(180deg, var(--color-black) 0%, #090b10 100%);
}

.booking-wrapper {
    background:
        linear-gradient(180deg, rgba(20, 22, 30, 0.88), rgba(10, 12, 16, 0.9)) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        0 30px 80px rgba(0, 0, 0, 0.5) !important;
}

.step-indicator {
    gap: 0.75rem;
    flex-wrap: wrap;
}

.step {
    padding: 0.85rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.step.active {
    background: rgba(255, 0, 34, 0.12);
    border-color: rgba(255, 0, 34, 0.32);
}

.form-step h3 {
    margin-bottom: 1.2rem;
}

.form-helper {
    margin-bottom: 1rem;
}

.form-subheading {
    margin: 1.5rem 0 1rem;
    color: #fff;
}

.btn-primary,
.btn-secondary,
.btn-outline,
.btn-arrow {
    position: relative;
    overflow: hidden;
    border-radius: 999px !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-width: 1px !important;
    border-style: solid !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 14px 32px rgba(0, 0, 0, 0.18);
}

.btn-primary::before,
.btn-secondary::before,
.btn-outline::before,
.btn-arrow::before {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 42%);
    pointer-events: none;
}

.btn-primary {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05)),
        linear-gradient(135deg, #ff3555, #e10024 60%, #b1001d) !important;
    border-color: rgba(255, 255, 255, 0.18) !important;
    color: #fff !important;
}

.btn-secondary {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05)),
        linear-gradient(135deg, rgba(255, 0, 34, 0.22), rgba(255, 0, 34, 0.08)) !important;
    border-color: rgba(255, 0, 34, 0.24) !important;
    color: #fff !important;
}

.btn-outline,
.btn-arrow {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03)),
        rgba(12, 14, 20, 0.64) !important;
    border-color: rgba(255, 255, 255, 0.16) !important;
    color: #fff !important;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-outline:hover,
.btn-arrow:hover {
    transform: translateY(-3px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 18px 38px rgba(0, 0, 0, 0.3);
}

.btn-secondary:disabled,
.btn-primary:disabled {
    opacity: 0.42;
    border-color: rgba(255, 255, 255, 0.08) !important;
    box-shadow: none;
}

.btn-full {
    width: 100%;
}

.service-checkbox-card,
.checkbox-label {
    min-height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.service-checkbox-card h4,
.addon-title {
    color: #fff;
}

.service-meta-label {
    color: rgba(255, 255, 255, 0.68) !important;
    letter-spacing: 0.09em;
}

.service-meta-row {
    margin-top: 1rem;
    color: #f1f4fa;
}

.service-checkbox-card.selected,
.checkbox-label.selected {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 0, 34, 0.08)) !important;
    border-color: rgba(255, 0, 34, 0.34) !important;
    box-shadow: 0 0 22px rgba(255, 0, 34, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

.addons-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.addon-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
    width: 100%;
}

.addon-title {
    font-weight: 600;
    font-size: 1rem;
    padding-right: 0.5rem;
}

.addon-checkbox {
    margin: 0 !important;
    transform: scale(1.18);
    accent-color: var(--color-accent);
}

.addon-price-row {
    margin-top: 1rem;
    text-align: right;
    color: var(--color-text-muted);
}

.addon-price {
    font-weight: 700;
    color: #ff8ea0;
}

.pickup-details {
    display: none;
    padding-left: 1rem;
    border-left: 2px solid var(--color-accent);
    margin-top: 1rem;
}

.input-group label {
    color: #edf1f8;
    font-weight: 500;
}

.input-group input,
.input-group select,
.input-group textarea {
    color: #fff !important;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: #8c93a1;
}

#calendar-container {
    min-height: 330px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
        rgba(6, 8, 12, 0.82);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.calendar-day-tab,
.time-slot {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border-color: rgba(255, 255, 255, 0.12);
    color: #eef2f8;
}

.calendar-day-tab.selected,
.time-slot.selected {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04)),
        linear-gradient(135deg, #ff3555, #e10024 70%, #b1001d);
    box-shadow: 0 14px 30px rgba(255, 0, 34, 0.22);
}

.booking-summary-sticky {
    align-items: stretch !important;
    gap: 1.2rem;
}

.summary-kicker {
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.summary-kicker-right,
.summary-time {
    text-align: right;
}

.summary-price {
    margin-top: 0.35rem;
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
}

.summary-time {
    margin-top: 0.35rem;
    font-size: 1.08rem;
    font-weight: 700;
    color: #fff;
}

.epic-shop {
    background:
        radial-gradient(circle at 85% 30%, rgba(255, 0, 34, 0.08), transparent 22%),
        linear-gradient(180deg, #07080c 0%, #090b10 100%);
}

.shop-content-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
    align-items: center;
    gap: 2.5rem;
}

.shop-header {
    text-align: left;
    margin-bottom: 2rem;
}

.shop-copy {
    margin-top: 1rem;
    font-size: 1.08rem;
}

.shop-note {
    margin-top: 2rem;
    font-size: 0.88rem;
    color: #ff96a4;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.shop-image-premium {
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--glass-shadow-strong);
    background: rgba(255, 255, 255, 0.03);
    position: relative;
}

.shop-image-premium::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 32%, rgba(255, 0, 34, 0.1));
    pointer-events: none;
}

.shop-image-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit;
}

.carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.carousel-tabs,
.carousel-arrows {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-arrow {
    width: 46px;
    height: 46px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 46px;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
}

.epic-tag {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
        rgba(14, 16, 22, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #f5f7fb;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    cursor: pointer;
}

.epic-tag::before {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 42%);
    pointer-events: none;
}

.epic-tag:hover,
.epic-tag.active {
    color: #fff;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
        linear-gradient(135deg, rgba(255, 0, 34, 0.24), rgba(255, 0, 34, 0.1));
    border-color: rgba(255, 0, 34, 0.32) !important;
    transform: translateY(-2px);
}

.product-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
        rgba(12, 14, 20, 0.7);
    border-color: rgba(255, 255, 255, 0.09);
    box-shadow: var(--glass-shadow-strong);
    overflow: hidden;
}

.product-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 28%, transparent 72%, rgba(255, 0, 34, 0.08));
    pointer-events: none;
}

.product-title {
    color: #f5f7fb;
}

.product-price {
    color: #ff7f93;
}

.taxi-section {
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 210, 42, 0.12), transparent 24%),
        linear-gradient(180deg, #080808 0%, #111111 100%);
    padding: 2rem 0 6rem;
}

.taxi-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 2rem;
    padding: 2rem;
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
        linear-gradient(135deg, rgba(255, 208, 39, 0.08), rgba(255, 208, 39, 0.02));
    border: 1px solid rgba(255, 208, 39, 0.24);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 28px 70px rgba(0, 0, 0, 0.38);
    position: relative;
    overflow: hidden;
}

.taxi-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 208, 39, 0.08) 24%, transparent 48%);
    transform: translateX(-120%);
    animation: panelSweep 10s linear infinite;
    pointer-events: none;
}

.taxi-copy,
.taxi-media {
    position: relative;
    z-index: 1;
}

.taxi-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.taxi-kicker {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 1rem;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 208, 39, 0.12);
    border: 1px solid rgba(255, 208, 39, 0.24);
    color: #ffd64d;
    font-family: 'Syne', sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.taxi-copy h2 {
    margin-bottom: 1rem;
    color: #fff5c4;
}

.taxi-description {
    max-width: 34rem;
    color: rgba(255, 248, 216, 0.82);
    font-size: 1.05rem;
    line-height: 1.8;
}

.taxi-actions {
    margin-top: 1.6rem;
}

.taxi-website-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.06)),
        linear-gradient(135deg, #ffd84a 0%, #ffca18 55%, #d39a00 100%);
    border: 1px solid rgba(255, 232, 132, 0.45);
    color: #111;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.28),
        0 18px 36px rgba(0, 0, 0, 0.22);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.taxi-website-button:hover {
    transform: translateY(-3px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.32),
        0 24px 42px rgba(0, 0, 0, 0.3);
}

.taxi-phone-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1.8rem;
}

.taxi-phone-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 76px;
    padding: 1rem;
    text-align: center;
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(255, 208, 39, 0.12), rgba(255, 208, 39, 0.04)),
        rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 208, 39, 0.24);
    color: #fff1ad;
    font-family: 'Syne', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.taxi-phone-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 220, 90, 0.42);
    background:
        linear-gradient(180deg, rgba(255, 208, 39, 0.18), rgba(255, 208, 39, 0.06)),
        rgba(255, 255, 255, 0.03);
}

.taxi-image-shell {
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid rgba(255, 208, 39, 0.28);
    background: #0b0b0b;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
    position: relative;
}

.taxi-image-shell::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(255, 224, 110, 0.1), transparent 34%, rgba(0, 0, 0, 0.24));
    pointer-events: none;
}

.taxi-image-shell img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    display: block;
}

footer {
    background:
        radial-gradient(circle at top left, rgba(255, 0, 34, 0.08), transparent 22%),
        linear-gradient(180deg, #08090d 0%, #050608 100%);
    border-top-color: rgba(255, 255, 255, 0.08);
}

.footer-content {
    padding: 2rem;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--glass-shadow-strong);
}

.footer-info h4 {
    margin-bottom: 0.75rem;
}

.footer-contact-list p {
    color: var(--color-text-muted);
    margin-bottom: 0.7rem;
}

.footer-contact-list a {
    color: #fff;
}

.footer-map {
    min-height: 280px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    border-top-color: rgba(255, 255, 255, 0.08);
}

.epic-cta-banner .btn-magnetic {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.04)),
        linear-gradient(135deg, #ff3650 0%, var(--color-accent) 58%, #c8001f 100%) !important;
}

.carousel-arrows .btn-arrow:hover {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04)),
        linear-gradient(135deg, rgba(255, 0, 34, 0.32), rgba(255, 0, 34, 0.12)) !important;
    border-color: rgba(255, 0, 34, 0.36) !important;
    transform: translateY(-3px);
}

.btn-pulse-ring {
    border-color: rgba(255, 0, 34, 0.42);
    box-shadow: 0 0 22px rgba(255, 0, 34, 0.18);
}

@media (max-width: 900px) {
    .hero-badges,
    .carousel-header {
        justify-content: center;
    }

    .shop-content-wrapper {
        grid-template-columns: 1fr;
    }

    .taxi-panel {
        grid-template-columns: 1fr;
    }

    .taxi-phone-grid {
        grid-template-columns: 1fr;
    }

    .shop-header {
        text-align: center;
    }

    .shop-brands-grid {
        justify-content: center;
    }

    .taxi-kicker {
        align-self: center;
    }

    .taxi-copy {
        text-align: center;
    }

    .taxi-description {
        max-width: none;
    }
}

@media (max-width: 768px) {
    section {
        padding-top: 5.75rem;
        padding-bottom: 4rem;
    }

    #main-header nav {
        height: auto;
        min-height: 76px;
        padding: 0.85rem 0;
    }

    .brand-container {
        max-width: calc(100% - 64px);
        flex: 1 1 auto;
    }

    .hero-epic-content {
        padding-top: 4rem;
        max-width: 100%;
        gap: 1rem;
    }

    .hero-epic {
        min-height: 100svh;
        height: auto;
        padding: 7.5rem 0 4rem;
    }

    .hero-epic-content h1 {
        font-size: clamp(2.4rem, 14vw, 4rem);
        line-height: 0.96;
    }

    .hero-subtitle {
        font-size: 1rem !important;
        max-width: 32rem;
        margin-bottom: 1.4rem !important;
    }

    .btn-pulse-wrap {
        width: 100%;
    }

    .btn-magnetic,
    .btn-primary,
    .btn-secondary,
    .btn-outline {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero-badge,
    .step {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .nav-links {
        width: min(86vw, 320px);
        padding: 6rem 1.25rem 2rem;
        gap: 1.25rem;
        align-items: stretch;
    }

    .nav-links li,
    .nav-links a,
    .nav-links .btn-pulse-wrap {
        width: 100%;
    }

    .nav-links a {
        display: flex;
        justify-content: center;
    }

    .brand-text {
        font-size: clamp(1rem, 4.8vw, 1.25rem) !important;
    }

    .logo {
        max-height: 48px !important;
    }

    .section-header {
        margin-bottom: 2.2rem;
    }

    .masonry-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .masonry-item,
    .masonry-item-wide,
    .masonry-item:nth-child(2) {
        grid-column: span 1;
        aspect-ratio: 4 / 5;
    }

    .booking-wrapper {
        padding: 1.3rem !important;
        border-radius: 24px !important;
    }

    .step-indicator {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.85rem;
        margin: 0 -0.25rem 1.4rem !important;
        scrollbar-width: none;
    }

    .step-indicator::-webkit-scrollbar {
        display: none;
    }

    .step {
        width: auto;
        min-width: 128px;
        flex: 0 0 auto;
        font-size: 0.76rem;
        padding: 0.8rem 0.9rem;
    }

    #service-selection-grid,
    .addons-grid {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .action-buttons {
        flex-direction: column-reverse;
        gap: 0.75rem;
    }

    .action-buttons > * {
        width: 100%;
    }

    #calendar-container {
        min-height: 240px;
        padding: 0.2rem;
    }

    .calendar-days-container {
        overflow-x: auto;
        padding-bottom: 0.25rem;
        scrollbar-width: none;
    }

    .calendar-days-container::-webkit-scrollbar {
        display: none;
    }

    .calendar-day-tab {
        min-width: 82px;
        padding: 0.85rem 0.45rem;
    }

    .slots-container {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .booking-summary-sticky {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        margin: 0 !important;
        border-radius: 18px 18px 0 0 !important;
        padding: 0.95rem 1rem !important;
        z-index: 950;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #booking-form {
        padding-bottom: 120px;
    }

    .shop-container,
    .taxi-panel,
    .epic-cta-banner {
        padding: 1.3rem !important;
        border-radius: 24px;
    }

    .shop-image-premium img,
    .taxi-image-shell img {
        min-height: 240px;
    }

    .carousel-header,
    .carousel-tabs,
    .carousel-arrows {
        align-items: center;
    }

    .carousel-header {
        padding: 0;
        flex-direction: column;
        align-items: stretch;
    }

    .carousel-wrapper {
        gap: 1rem;
        padding: 0.75rem 0.15rem 2rem;
        scroll-padding-left: 1rem;
    }

    .carousel-tabs {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.5rem;
    }

    .carousel-arrows {
        justify-content: center;
        width: 100%;
    }

    .footer-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 1.2rem;
        border-radius: 22px;
    }

    .footer-contact-list p {
        overflow-wrap: anywhere;
    }

    .footer-map {
        min-height: 220px;
    }
}

@media (max-width: 560px) {
    section {
        padding-left: 0;
        padding-right: 0;
    }

    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    #main-header nav {
        gap: 0.75rem;
    }

    .nav-links {
        width: min(92vw, 320px);
        padding: 5.5rem 1rem 1.5rem;
    }

    .hero-epic {
        min-height: auto;
        padding: 6.75rem 0 3.25rem;
    }

    .hero-epic-content {
        padding-top: 2.8rem;
    }

    .hero-badges {
        gap: 0.6rem;
    }

    .hero-badge {
        font-size: 0.72rem;
        padding: 0.72rem 0.9rem;
    }

    .epic-card,
    .product-card {
        padding: 1.15rem;
    }

    .product-card {
        flex: 0 0 min(88vw, 320px);
        min-width: min(88vw, 320px);
    }

    .carousel-tabs {
        grid-template-columns: 1fr;
    }

    .btn-arrow {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .taxi-phone-card {
        min-height: 64px;
        font-size: 0.86rem;
    }

    .taxi-actions,
    .taxi-website-button {
        width: 100%;
    }

    .taxi-website-button {
        justify-content: center;
    }

    .slots-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.55rem;
    }

    .time-slot {
        min-height: 46px;
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }

    .booking-summary-sticky {
        padding: 0.85rem 0.9rem !important;
    }

    .summary-price,
    .summary-time {
        font-size: 1rem;
    }

    .footer-contact-list p,
    .shop-copy,
    .taxi-description,
    .section-copy {
        font-size: 0.95rem;
    }

    .marquee-content span {
        font-size: 1.4rem;
        margin: 0 1.5rem;
    }
}

@media (max-width: 420px) {
    .product-card {
        flex-basis: calc(100vw - 2.25rem);
        min-width: calc(100vw - 2.25rem);
    }

    .booking-summary-sticky {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }

    .summary-kicker-right,
    .summary-time {
        text-align: left;
    }
}
