/* ==========================================================================
   Vittur.by — Shared styles for all custom page templates
   Подключается на каждой кастомной странице ПЕРВЫМ, до page-specific CSS.
   ========================================================================== */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0a0a0f;
    --bg-card: #12121a;
    --bg-card-hover: #1a1a26;
    --accent: #00d4aa;
    --accent-hover: #00e8bc;
    --accent-dim: rgba(0, 212, 170, 0.12);
    --text-primary: #f0f0f5;
    --text-secondary: #a0a0b0;
    --text-muted: #6a6a7a;
    --border: rgba(255, 255, 255, 0.06);
    --gradient-hero: linear-gradient(180deg, #151520 0%, #0a0a0f 100%);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
    --shadow-accent: 0 4px 20px rgba(0, 212, 170, 0.25);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

html, body { overflow-x: hidden; max-width: 100%; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
    background: var(--bg-dark) !important;
    color: var(--text-primary) !important;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    margin: 0 !important;
    padding: 0 !important;
}

#wpadminbar ~ * { margin-top: 0 !important; }

img { max-width: 100%; display: block; height: auto; }

[id] { scroll-margin-top: 90px; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    padding-top: max(16px, env(safe-area-inset-top));
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
    background: rgba(10, 10, 15, 0.8);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo:hover, .logo:focus { color: var(--text-primary); text-decoration: none; }
.logo span { color: var(--accent); }
.logo:hover span, .logo:focus span { color: var(--accent); }

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color var(--transition);
}

.nav a:hover { color: var(--text-primary); }

.nav a.is-active { color: var(--accent); }

.nav-cta {
    background: var(--accent);
    color: #0a0a0f !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: all var(--transition) !important;
}

.nav-cta:hover {
    background: var(--accent-hover) !important;
    box-shadow: var(--shadow-accent);
    color: #0a0a0f !important;
}

/* Бургер ГАРАНТИРОВАННО скрыт на десктопе */
.mobile-toggle {
    display: none !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: none !important;
    cursor: pointer;
    position: relative;
    z-index: 110;
    outline: none !important;
    background: transparent !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent;
    padding: 0;
}

.mobile-toggle span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--text-primary);
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    left: 4px; /* Смещено левее */
}

/* Позиции полосок в закрытом состоянии */
.mobile-toggle span:nth-child(1) { top: 12px; }
.mobile-toggle span:nth-child(2) { top: 19px; }
.mobile-toggle span:nth-child(3) { top: 26px; }

/* Анимация в крестик (открытое состояние) */
.mobile-toggle.active span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.mobile-toggle.active span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 90;
    opacity: 0;
    transition: opacity var(--transition);
}

.mobile-overlay.active { display: block; opacity: 1; }

/* ========== BREADCRUMBS ========== */
.breadcrumbs {
    padding: 96px 0 0;
    background: var(--bg-dark);
}

.breadcrumbs-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 16px 0 0;
    font-size: 13px;
    color: var(--text-muted);
}

.breadcrumbs-list li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumbs-list li + li::before {
    content: '/';
    color: var(--text-muted);
    opacity: 0.6;
}

.breadcrumbs-list a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition);
}

.breadcrumbs-list a:hover { color: var(--accent); }

.breadcrumbs-list [aria-current="page"] {
    color: var(--text-primary);
    font-weight: 500;
}

/* ========== PAGE HERO (compact, для внутренних страниц) ========== */
.page-hero {
    padding: 130px 0 60px;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Когда .page-hero идёт сразу после .breadcrumbs — отступа уже достаточно сверху */
.breadcrumbs + .page-hero { padding-top: 40px; }

.page-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
}

.page-hero h1 .accent { color: var(--accent); }

.page-hero-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
}

.btn-primary {
    background: var(--accent);
    color: #0a0a0f;
}

.btn-primary:hover {
    background: var(--accent-hover);
    box-shadow: var(--shadow-accent);
    transform: translateY(-2px);
    color: #0a0a0f;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-2px);
    color: var(--text-primary);
}

.btn-book-telegram {
    background: #2AABEE;
    color: #fff;
}

.btn-book-telegram:hover {
    background: #3bb8f5;
    box-shadow: 0 4px 20px rgba(42, 171, 238, 0.3);
    transform: translateY(-2px);
    color: #fff;
}

.btn-book-viber {
    background: #7360F2;
    color: #fff;
}

.btn-book-viber:hover {
    background: #8575f5;
    box-shadow: 0 4px 20px rgba(115, 96, 242, 0.3);
    transform: translateY(-2px);
    color: #fff;
}

.btn-book-phone {
    background: #4CAF50;
    color: #fff;
}

.btn-book-phone:hover {
    background: #5cbf60;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.3);
    transform: translateY(-2px);
    color: #fff;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal { opacity: 0; transform: translateY(20px); transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1); }

.reveal.active { 
    opacity: 1;
    transform: translateY(0);
}

.hero h1, .hero-subtitle, .hero-buttons, .hero-stats {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-subtitle { animation-delay: 0.1s; opacity: 0; }
.hero-buttons { animation-delay: 0.2s; opacity: 0; }
.hero-stats { animation-delay: 0.3s; opacity: 0; }

/* ========== SECTIONS ========== */
.section { padding: 80px 0; }
.section--alt { background: rgba(255, 255, 255, 0.015); }

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
}

/* ========== HERO FEATURES (используется на rent и других hero) ========== */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
}

.hero-feature-icon {
    width: 44px;
    height: 44px;
    background: var(--accent-dim);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.hero-feature-text { text-align: left; }

.hero-feature-text strong {
    color: var(--text-primary);
    font-weight: 600;
    display: block;
    font-size: 16px;
}

.hero-feature-text span { font-size: 13px; color: var(--text-muted); }

/* ========== ADVANTAGES (используется на rent, uslugi, o-nas, home) ========== */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.advantage-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    opacity: 0;
    transition: opacity var(--transition);
}

.advantage-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: rgba(0, 212, 170, 0.15);
}

.advantage-card:hover::before { opacity: 1; }

.advantage-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-dim);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 20px;
}

.advantage-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
}

.advantage-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ========== HOW IT WORKS — STEPS ========== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 56px;
    height: 56px;
    background: var(--accent);
    color: #0a0a0f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.step-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-connector {
    position: absolute;
    top: 28px;
    left: calc(50% + 36px);
    right: calc(-50% + 36px);
    height: 2px;
    background: var(--border);
    z-index: 1;
}

.step-card:last-child .step-connector { display: none; }

/* ========== BOOKING / CTA cards ========== */
.booking { padding: 80px 0; }

.booking-card,
.booking-rent-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 56px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.booking-card::before,
.booking-rent-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.booking-card h2,
.booking-rent-card h2 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    margin-bottom: 14px;
    position: relative;
}

.booking-card > p,
.booking-rent-card > p {
    color: var(--text-secondary);
    font-size: 16px;
    margin: 0 auto 32px;
    max-width: 540px;
    position: relative;
}

.booking-buttons,
.booking-rent-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.booking-rent-phones {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 24px;
    position: relative;
}

.booking-rent-phones a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: color var(--transition);
}

.booking-rent-phones a:hover { color: var(--accent-hover); }

.booking-note,
.booking-rent-note {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 18px;
    position: relative;
}

/* ========== CONTACTS (used by home/o-nas) ========== */
.contacts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
}

.contact-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 18px;
}

.contact-icon-phone { background: rgba(76, 175, 80, 0.15); }
.contact-icon-telegram { background: rgba(42, 171, 238, 0.15); }
.contact-icon-location { background: rgba(255, 152, 0, 0.15); }

.contact-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-card a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition);
}

.contact-card a:hover { color: var(--accent-hover); }

/* ========== FAQ ========== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item[open] { border-color: rgba(0, 212, 170, 0.2); }

.faq-question {
    padding: 22px 28px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: color var(--transition);
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
    content: '+';
    font-size: 22px;
    font-weight: 300;
    color: var(--accent);
    flex-shrink: 0;
    transition: transform var(--transition);
}

.faq-item[open] .faq-question::after { content: '−'; }
.faq-item[open] .faq-question { color: var(--accent); }

.faq-answer { padding: 0 28px 22px; }
.faq-answer p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }
.faq-answer p + p { margin-top: 10px; }
.faq-answer a { color: var(--accent); text-decoration: none; }
.faq-answer a:hover { color: var(--accent-hover); }

/* ========== SEO TEXT ========== */
.seo-text-section { background: rgba(255, 255, 255, 0.015); }
.seo-text { max-width: 820px; margin: 0 auto; }

.seo-text h2 {
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 700;
    margin-bottom: 22px;
    text-align: center;
}

.seo-text h3 {
    font-size: 19px;
    font-weight: 600;
    margin: 28px 0 12px;
    color: var(--text-primary);
}

.seo-text p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 14px;
}

.seo-text p:last-child { margin-bottom: 0; }
.seo-text strong { color: var(--text-primary); font-weight: 600; }

.seo-text a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition);
}

.seo-text a:hover { color: var(--accent-hover); }

/* ========== FOOTER ========== */
.vittur-footer {
    padding: 60px 0 32px;
    border-top: 1px solid var(--border);
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 24px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 320px;
}

.footer-col h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--text-primary);
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color var(--transition);
}

.footer-col a:hover { color: var(--accent); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p { font-size: 13px; color: var(--text-muted); }

.footer-bottom a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-bottom a:hover { color: var(--accent); }

/* ========== MOBILE STICKY CTA BAR ========== */
.mobile-cta-bar { display: none; }

/* ========== RESPONSIVE — SHARED ========== */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .advantages-grid { grid-template-columns: repeat(2, 1fr); }
    .contacts-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .step-connector { display: none; }
}

@media (max-width: 768px) {
    [id] { scroll-margin-top: 70px; }

    .container { padding: 0 18px; }

    .header { padding: 12px 0; padding-top: max(12px, env(safe-area-inset-top)); }
    .logo { font-size: 19px; }

    .nav {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 86vw);
        height: 100vh;
        height: 100dvh;
        background: linear-gradient(180deg, #14141d 0%, #0c0c12 100%);
        -webkit-backdrop-filter: blur(24px);
        backdrop-filter: blur(24px);
        flex-direction: column;
        align-items: stretch;
        padding: calc(80px + env(safe-area-inset-top)) 22px calc(28px + env(safe-area-inset-bottom));
        gap: 2px;
        z-index: 100;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid var(--border);
        overflow-y: auto;
        box-shadow: -20px 0 50px rgba(0, 0, 0, 0.5);
        overscroll-behavior: contain;
    }

    .nav.active { display: flex; transform: translateX(0); }

    .nav a {
        font-size: 16px;
        padding: 16px 18px;
        border-radius: var(--radius-sm);
        color: var(--text-primary);
        min-height: 52px;
        display: flex;
        align-items: center;
    }

    .nav a:hover, .nav a:active {
        background: rgba(0, 212, 170, 0.08);
        color: var(--accent);
    }

    .nav a.is-active {
        background: rgba(0, 212, 170, 0.08);
        color: var(--accent);
    }

    .nav-cta {
        margin-top: 16px;
        justify-content: center;
        padding: 16px 22px !important;
        border-radius: var(--radius-sm) !important;
    }

    .mobile-toggle { display: flex !important; } /* Показываем на мобильных */
    .mobile-overlay.active { display: block; }

    .breadcrumbs { padding-top: 70px; }
    .breadcrumbs-list { font-size: 12px; padding-top: 14px; }

    .page-hero { padding: 100px 0 44px; }
    .breadcrumbs + .page-hero { padding-top: 28px; }
    .page-hero::before { width: 600px; height: 600px; top: -100px; }
    .page-hero-subtitle { font-size: 15px; line-height: 1.6; padding: 0 4px; }

    .btn {
        padding: 15px 24px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
        border-radius: var(--radius-sm);
        min-height: 52px;
    }

    .section { padding: 56px 0; }
    .section-header { margin-bottom: 30px; }
    .section-header h2 { font-size: 24px; line-height: 1.25; }
    .section-header p { font-size: 14px; padding: 0 4px; }

    .hero-features {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        background: transparent;
        border: 0;
        padding: 0;
        margin-top: 24px;
    }

    .hero-feature {
        flex-direction: row;
        text-align: left;
        gap: 12px;
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: var(--radius-md);
        padding: 14px 12px;
        align-items: center;
    }

    .hero-feature::after { display: none !important; }

    .hero-feature-icon { width: 38px; height: 38px; font-size: 18px; border-radius: 10px; margin: 0; }
    .hero-feature-text { text-align: left; }
    .hero-feature-text strong { font-size: 13px; line-height: 1.2; }
    .hero-feature-text span { font-size: 11px; line-height: 1.3; }

    .advantages-grid { grid-template-columns: 1fr; gap: 12px; }
    .advantage-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px 18px;
        gap: 12px;
        border-radius: var(--radius-md);
    }
    .advantage-card::before { display: none; }
    .advantage-icon { margin: 0 0 4px; flex-shrink: 0; width: 48px; height: 48px; font-size: 22px; border-radius: 12px; }
    .advantage-card h3 { font-size: 16px; margin-bottom: 2px; }
    .advantage-card p { font-size: 13.5px; line-height: 1.55; }

    .steps-grid { grid-template-columns: 1fr; gap: 20px; }
    .step-number { width: 48px; height: 48px; font-size: 20px; margin-bottom: 14px; }
    .step-card h3 { font-size: 15px; }
    .step-card p { font-size: 13px; }

    .booking { padding: 48px 0; }
    .booking-card,
    .booking-rent-card { padding: 32px 22px; border-radius: var(--radius-md); }
    .booking-card h2,
    .booking-rent-card h2 { font-size: 22px; margin-bottom: 10px; }
    .booking-card > p,
    .booking-rent-card > p { font-size: 14px; margin-bottom: 22px; line-height: 1.55; }
    .booking-buttons,
    .booking-rent-buttons { flex-direction: column; align-items: stretch; gap: 10px; }
    .booking-rent-phones { gap: 14px; }
    .booking-rent-phones a { font-size: 16px; padding: 6px 0; }

    .contacts-grid { grid-template-columns: 1fr; gap: 14px; }
    .contact-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 22px 16px;
        gap: 12px;
        border-radius: var(--radius-md);
    }
    .contact-icon { margin: 0 0 4px; flex-shrink: 0; width: 44px; height: 44px; font-size: 20px; }
    .contact-card h3 { font-size: 16px; margin-bottom: 2px; }
    .contact-card p { font-size: 14px; line-height: 1.5; }

    .faq-list { gap: 10px; }
    .faq-question { padding: 18px 18px; font-size: 15px; min-height: 56px; }
    .faq-question::after { font-size: 24px; }
    .faq-answer { padding: 0 18px 18px; }
    .faq-answer p { font-size: 14px; line-height: 1.65; }

    .seo-text h2 { font-size: 21px; }
    .seo-text h3 { font-size: 17px; }
    .seo-text p { font-size: 14px; line-height: 1.7; }

    .vittur-footer { padding: 44px 0 28px; margin-top: 16px; }
    .footer-grid { grid-template-columns: 1fr; gap: 26px; margin-bottom: 28px; }
    .footer-brand p { max-width: 100%; font-size: 13px; }
    .footer-col h4 { margin-bottom: 14px; }
    .footer-col a { padding: 6px 0; min-height: 32px; display: flex; align-items: center; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 8px; padding-top: 20px; }
    .footer-bottom p { font-size: 12px; }

    /* ====== MOBILE STICKY CTA BAR ====== */
    .mobile-cta-bar {
        display: flex;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 80;
        gap: 8px;
        padding: 10px 12px;
        padding-bottom: calc(10px + env(safe-area-inset-bottom));
        background: rgba(10, 10, 15, 0.94);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        border-top: 1px solid var(--border);
        box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.35);
    }

    .mobile-cta-bar a {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 11px 6px;
        border-radius: var(--radius-sm);
        font-size: 13px;
        font-weight: 600;
        text-decoration: none;
        text-align: center;
        min-height: 48px;
        line-height: 1.2;
        transition: transform 0.15s ease, filter 0.15s ease;
    }

    .mobile-cta-bar a:active { transform: scale(0.97); filter: brightness(0.92); }

    .mobile-cta-bar svg { flex-shrink: 0; }

    .mobile-cta-tg { background: #2AABEE; color: #fff; }
    .mobile-cta-vb { background: #7360F2; color: #fff; }
    .mobile-cta-phone { background: var(--accent); color: #0a0a0f !important; }

    body { padding-bottom: 76px; padding-bottom: calc(76px + env(safe-area-inset-bottom)); }

    body:has(.nav.active) .mobile-cta-bar { display: none; }
}

@media (max-width: 480px) {
    .container { padding: 0 14px; }
    .section { padding: 44px 0; }
    .section-header { margin-bottom: 26px; }
    .section-header h2 { font-size: 22px; }
    .section-header p { font-size: 13px; }

    .booking { padding: 40px 0; }
    .booking-card,
    .booking-rent-card { padding: 24px 16px; }
    .booking-card h2,
    .booking-rent-card h2 { font-size: 20px; }

    .vittur-footer { padding: 36px 0 24px; }
    .footer-brand .logo { font-size: 20px; }
    .footer-col h4 { font-size: 14px; }
    .footer-col a { font-size: 13px; }

    .page-hero { padding: 92px 0 36px; }
    .breadcrumbs + .page-hero { padding-top: 22px; }

    .advantage-card { padding: 20px 14px; gap: 10px; }
    .advantage-icon { width: 44px; height: 44px; font-size: 20px; }

    .hero-feature { padding: 12px 10px; gap: 10px; }
    .hero-feature-icon { width: 34px; height: 34px; font-size: 16px; }

    .faq-question { padding: 16px; font-size: 14.5px; }
    .faq-answer { padding: 0 16px 16px; }

    .mobile-cta-bar a { font-size: 12.5px; padding: 11px 4px; }
}

@media (max-width: 360px) {
    .nav { width: 100%; }
    .btn { padding: 13px 18px; font-size: 14px; min-height: 48px; }
    .hero-features { gap: 8px; }
    .hero-feature { padding: 10px; }
    .hero-feature-text strong { font-size: 12px; }
    .hero-feature-text span { font-size: 10.5px; }

    .mobile-cta-bar { gap: 6px; padding: 8px 10px; padding-bottom: calc(8px + env(safe-area-inset-bottom)); }
    .mobile-cta-bar a { font-size: 12px; gap: 4px; min-height: 44px; }
    .mobile-cta-bar svg { width: 16px; height: 16px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
