/* ========================================
   SimplyService.sk - Premium Van Rental
   Design System & Styles
   ======================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ── CSS Variables ── */
:root {
    --primary: #1a1a1a;
    --primary-light: #333333;
    --primary-dark: #000000;
    --primary-glow: rgba(0, 0, 0, 0.1);
    --bg-dark: #fcfbf9;
    --bg-section: #f5f3ef;
    --bg-card: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.8);
    --text: #4a4a4a;
    --text-muted: #737373;
    --text-heading: #111111;
    --border: rgba(0, 0, 0, 0.08);
    --border-hover: rgba(0, 0, 0, 0.3);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.08);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-heading: 'Outfit', 'Inter', sans-serif;
    --container: 1200px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--primary-light);
}

ul {
    list-style: none;
}

/* ── Utilities ── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

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

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

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

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

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

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

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

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

.text-primary {
    color: var(--primary) !important;
}

.uppercase {
    text-transform: uppercase;
}

.tracking-2 {
    letter-spacing: 2px;
}

.gap-20 {
    gap: 20px;
}

.gap-30 {
    gap: 30px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.w-100 {
    width: 100%;
}

.p-40 {
    padding: 40px;
}

.glass {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
}

/* ── Typography ── */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--text-heading);
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 20px;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

h4 {
    font-size: 0.85rem;
    font-weight: 600;
}

.section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-title p {
    color: var(--text-muted);
    margin-top: 12px;
    font-size: 1.05rem;
}

.microcopy {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 10px;
}

.hero .microcopy {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #ffffff;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--primary-glow);
    color: #ffffff;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #ffffff;
}

.btn-pulse {
    animation: pulse 2.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 20px var(--primary-glow);
    }

    50% {
        box-shadow: 0 4px 40px rgba(0, 0, 0, 0.2);
    }
}

/* ── Header ── */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-top {
    padding: 8px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--border);
    background: rgba(252, 251, 249, 0.9);
}

.header-top a {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-top a:hover {
    color: var(--primary);
}

.header-top .fa-phone,
.header-top .fa-envelope {
    color: var(--primary);
    font-size: 0.8rem;
}

.header-main {
    padding: 12px 0;
    background: rgba(252, 251, 249, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

header.scrolled .header-main {
    background: rgba(252, 251, 249, 0.95);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

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

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-heading);
}

.logo-text span {
    color: var(--primary);
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

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

.main-nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-heading);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 8px;
}

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.8) 0%, rgba(10, 10, 15, 0.4) 50%, rgba(10, 10, 15, 0.7) 100%);
}

.hero .container {
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    animation: fadeInUp 1s ease-out;
    background: rgba(20, 20, 25, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

@media (min-width: 969px) {
    .hero-content {
        margin-left: auto;
        text-align: right;
    }

    .hero-btns {
        justify-content: flex-end;
    }
}

.hero-content h4 {
    color: rgba(255, 255, 255, 0.9);
}

.hero-content .text-primary {
    color: #ffffff !important;
}

.hero-title {
    margin: 12px 0 20px;
    color: #ffffff;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.hero-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-btns {
    flex-wrap: wrap;
}

.hero-content .btn-outline {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-content .btn-outline:hover {
    background: #ffffff;
    color: #000000;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.trust-stars {
    font-size: 1.1rem;
}

.trust-link {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.trust-link:hover {
    color: var(--primary);
}

/* ── Vehicle Info Section ── */
.vehicle-info {
    padding: 100px 0;
    background: var(--bg-section);
}

.vehicle-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    transition: var(--transition);
}

.vehicle-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.vehicle-card .card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    background: var(--primary-glow);
    color: var(--primary);
    margin-bottom: 20px;
}

.vehicle-card h3 {
    margin-bottom: 10px;
}

.vehicle-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ── Specs Section ── */
.specs {
    padding: 100px 0;
}

.specs-grid {
    gap: 20px;
}

.spec-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    transition: var(--transition);
}

.spec-item:hover {
    border-color: var(--border-hover);
}

.spec-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.spec-value {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-heading);
}

.spec-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 4px;
}

/* ── Gallery ── */
.gallery {
    padding: 100px 0;
    background: var(--bg-section);
}

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

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    aspect-ratio: 3/2;
}

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

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item.featured {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-item.size-1x1 {
    grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: 3/2;
}

.gallery-item.size-2x2 {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-item.size-2x1 {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 3/1;
}

/* ── Pricing ── */
.pricing {
    padding: 100px 0;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 44px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

.pricing-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.price-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    background: var(--primary-glow);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-heading);
}

.price-amount small {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.price-period {
    color: var(--text-muted);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.price-features {
    text-align: left;
    margin: 24px 0;
}

.price-features li {
    padding: 8px 0;
    color: var(--text);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-features li i {
    color: var(--primary);
    font-size: 0.85rem;
}

.price-divider {
    height: 1px;
    background: var(--border);
    margin: 12px 0;
}

/* ── How It Works ── */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-section);
}

.step-card {
    text-align: center;
    padding: 36px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
}

.step-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.step-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.3;
    line-height: 1;
}

.step-icon {
    font-size: 2rem;
    color: var(--primary);
    margin: 12px 0 16px;
}

.step-card h3 {
    margin-bottom: 10px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ── Contact / Booking ── */
.booking {
    padding: 100px 0;
}

.booking-content h2 {
    margin-bottom: 16px;
}

.booking-content>p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.booking-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: #ffffff;
    color: var(--text-heading);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

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

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--bg-card);
    color: var(--text-heading);
}

/* ── FAQ ── */
.faq {
    padding: 100px 0;
    background: var(--bg-section);
}

.faq-grid {
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--border-hover);
}

.faq-item summary {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
    font-weight: 500;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary h3 {
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-icon {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.faq-item[open] .faq-icon {
    transform: rotate(90deg);
}

.faq-content {
    padding: 0 24px 20px 52px;
}

.faq-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ── Footer ── */
.footer {
    padding: 60px 0 0;
    background: var(--bg-section);
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
}

.footer-column h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-column p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-column ul li a:hover {
    color: var(--primary);
}

.footer-column ul li i {
    color: var(--primary);
    width: 20px;
    margin-right: 8px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-social a:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ── WhatsApp Sticky ── */
.whatsapp-sticky {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.whatsapp-sticky:hover {
    transform: scale(1.1);
    color: #fff;
}

/* ── Phone Sticky ── */
.phone-sticky {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    color: #ffffff;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px var(--primary-glow);
    transition: var(--transition);
    animation: pulse 2.5s infinite;
}

.phone-sticky:hover {
    transform: scale(1.1);
    color: #ffffff;
}

/* ── Lightbox ── */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.lightbox.active {
    display: flex;
}

.lightbox-wrapper {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: var(--radius);
    object-fit: contain;
    display: block;
}

.lightbox-desc {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 320px;
    pointer-events: none;
    z-index: 10;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.lightbox-desc.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 576px) {
    .lightbox-desc {
        bottom: 12px;
        left: 12px;
        padding: 8px 14px;
        font-size: 0.8rem;
        max-width: calc(100% - 24px);
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* ── Modal ── */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
    padding: 24px;
    backdrop-filter: blur(8px);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-section);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px;
    max-width: 440px;
    width: 100%;
    text-align: center;
}

.modal-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.modal-icon.success {
    color: #22c55e;
}

.modal-icon.error {
    color: #ef4444;
}

/* ── Scroll Animations ── */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 968px) {

    .grid-2,
    .grid-3,
    .grid-4,
    .grid-5 {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    header.menu-open .header-main {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: transparent !important;
        border-bottom-color: transparent !important;
    }

    header.menu-open .logo,
    header.menu-open .menu-toggle {
        position: relative;
        z-index: 1010;
    }

    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
        position: relative;
        z-index: 10;
    }

    .main-nav.active {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(252, 251, 249, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        z-index: 1000;
        align-items: center;
        justify-content: center;
        padding: 80px 24px;
        overflow-y: auto;
    }

    .main-nav.active ul {
        display: flex;
        flex-direction: column;
        gap: 20px;
        text-align: center;
        width: 100%;
        max-height: 100%;
    }

    .main-nav.active li {
        opacity: 0;
        transform: translateY(20px);
        animation: menuLinkFadeIn 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    .main-nav.active li:nth-child(1) {
        animation-delay: 0.1s;
    }

    .main-nav.active li:nth-child(2) {
        animation-delay: 0.15s;
    }

    .main-nav.active li:nth-child(3) {
        animation-delay: 0.2s;
    }

    .main-nav.active li:nth-child(4) {
        animation-delay: 0.25s;
    }

    .main-nav.active li:nth-child(5) {
        animation-delay: 0.3s;
    }

    .main-nav.active li:nth-child(6) {
        animation-delay: 0.35s;
    }

    .main-nav.active li:nth-child(7) {
        animation-delay: 0.4s;
    }

    .main-nav.active a {
        font-family: var(--font-heading);
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--text-heading);
        padding: 8px 16px;
        display: inline-block;
        transition: var(--transition);
    }

    .main-nav.active a:hover {
        color: var(--primary);
        transform: scale(1.05);
    }

    @keyframes menuLinkFadeIn {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hero {
        min-height: auto;
        padding-top: 80px;
        flex-direction: column;
        display: flex;
    }

    .hero-bg {
        position: relative;
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 10;
    }

    .hero-bg img {
        object-position: center 80%;
    }

    .hero-bg .overlay {
        display: none;
    }

    .hero-content {
        position: relative;
        margin-top: -15px;
        padding: 40px 24px;
        background: #15151a;
        border-radius: 24px;
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.4);
    }

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

    .gallery-item.featured,
    .gallery-item.size-2x2,
    .gallery-item.size-2x1 {
        grid-column: span 2;
        aspect-ratio: auto;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }

    .booking .grid-2 {
        gap: 40px;
    }

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

    .header-top {
        display: none;
    }
}

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

    .gallery-item.featured,
    .gallery-item.size-2x2,
    .gallery-item.size-2x1 {
        grid-column: span 1;
        aspect-ratio: auto;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
    }

    .booking-form {
        padding: 24px;
    }

    .p-40 {
        padding: 24px;
    }

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

/* ── Anti-bot: Honeypot field (must be invisible to humans, visible to bots in DOM) ── */
.hp-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    tab-index: -1;
}

/* ── FAB: schovanie pri booking sekcii ── */
.phone-sticky {
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.phone-sticky.fab-hidden {
    opacity: 0;
    transform: scale(0.7) translateY(10px);
    pointer-events: none;
    visibility: hidden;
}

/* ── Custom Flatpickr Disabled Dates ── */
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
    background-color: #ffe5e5 !important;
    color: #ef4444 !important;
    border-color: #ffe5e5 !important;
}

/* ── Custom Flatpickr Half Blocked Dates ── */
.flatpickr-day.half-blocked-am:not(.selected):not(.startRange):not(.endRange) {
    background: linear-gradient(135deg, #ffe5e5 50%, transparent 50%) !important;
    border-color: transparent !important;
}

.flatpickr-day.half-blocked-pm:not(.selected):not(.startRange):not(.endRange) {
    background: linear-gradient(135deg, transparent 50%, #ffe5e5 50%) !important;
    border-color: transparent !important;
}


/* Centering and shadow removal for inline calendar */
#inline-calendar {
    display: none !important;
}

.flatpickr-calendar.inline {
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    border: none !important;
    margin: 0 auto !important;
    background: transparent !important;
    float: none !important;
}

/* ── Mobile responsive calendar fixes ── */
@media (max-width: 640px) {
    .calendar-wrapper {
        padding: 12px !important;
        border-radius: 12px !important;
    }
    #availability .container {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }
}

/* ── Check-in / Check-out Widget ── */
.checkin-widget {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    animation: fadeInUp 0.3s ease;
}

.checkin-widget-title {
    background: var(--primary);
    color: #fff;
    padding: 12px 20px;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

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

.checkin-item {
    padding: 16px 20px;
    border-right: 1px solid var(--border);
}

.checkin-item:last-child {
    border-right: none;
}

.checkin-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.checkin-standard {
    font-size: 0.88rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.checkin-standard i {
    color: #16a34a;
    font-size: 0.85rem;
}

.checkin-standard em {
    color: var(--text-muted);
    font-style: normal;
    font-size: 0.82rem;
}

.checkin-extra {
    margin-top: 8px;
    animation: fadeInUp 0.25s ease;
}

.checkin-extra-label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    cursor: pointer;
    width: 100%;
}

.checkin-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    transition: var(--transition);
    border: 1.5px solid transparent;
    cursor: pointer;
}

.checkin-badge input[type="checkbox"] {
    width: 15px;
    height: 15px;
    cursor: pointer;
    accent-color: var(--primary);
    flex-shrink: 0;
    margin: 0;
}

.checkin-badge.early {
    background: #fef3c7;
    color: #92400e;
    border: 1.5px solid #fde68a;
}

.checkin-badge.early:has(input[type="checkbox"]:checked) {
    background: #fde68a;
    color: #78350f;
    border-color: #d97706;
    box-shadow: 0 0 10px rgba(217, 119, 6, 0.15);
}

.checkin-extra-label:hover .checkin-badge.early:not(:has(input[type="checkbox"]:checked)) {
    background: #fde68a;
}

.checkin-badge.late {
    background: #ede9fe;
    color: #5b21b6;
    border: 1.5px solid #ddd6fe;
}

.checkin-badge.late:has(input[type="checkbox"]:checked) {
    background: #ddd6fe;
    color: #4c1d95;
    border-color: #7c3aed;
    box-shadow: 0 0 10px rgba(124, 58, 237, 0.15);
}

.checkin-extra-label:hover .checkin-badge.late:not(:has(input[type="checkbox"]:checked)) {
    background: #ddd6fe;
}

.checkin-hint {
    font-size: 0.75rem;
    color: #16a34a;
    font-weight: 500;
    padding-left: 28px;
}