*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --primary: #2a96ce; --accent: #fecf2f; --dark: #0a0e17;
    --dark2: #111827; --gray: #6b7280; --light: #f3f4f6;
    --white: #fff; --radius: 16px;
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--dark); background: var(--white); overflow-x: hidden; }

/* ── HEADER ── */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    background: rgba(10,14,23,0.95); backdrop-filter: blur(20px);
    padding: 0 40px; height: 70px;
    display: flex; align-items: center; justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.logo-wrap { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-wrap img { height: 40px; border-radius: 8px; }
.logo-text { color: var(--white); font-size: 1.2rem; font-weight: 700; letter-spacing: 1px; }
.logo-text span { color: var(--accent); }
.header-right { display: flex; align-items: center; gap: 20px; }
nav { display: flex; align-items: center; gap: 24px; }
nav a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color .3s; }
nav a:hover { color: var(--accent); }
.lang-switcher { display: flex; gap: 4px; }
.lang-btn {
    background: none; border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.5);
    padding: 4px 10px; border-radius: 6px; font-size: 0.75rem; font-weight: 600;
    cursor: pointer; transition: all .2s; letter-spacing: .5px;
}
.lang-btn:hover { border-color: rgba(255,255,255,0.35); color: rgba(255,255,255,0.8); }
.lang-btn.active { background: var(--accent); border-color: var(--accent); color: var(--dark); }
.btn-call {
    background: var(--accent); color: var(--dark); padding: 10px 22px;
    border-radius: 50px; font-weight: 700; font-size: 0.85rem; text-decoration: none;
    display: flex; align-items: center; gap: 8px; transition: all .3s;
}
.btn-call:hover { background: #ffe066; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(254,207,47,.3); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.hamburger span { width: 24px; height: 2px; background: var(--white); transition: .3s; }

/* ── HERO ── */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    background: linear-gradient(135deg,rgba(10,14,23,.92),rgba(10,14,23,.65)), url('../img/hero.jpg') center/cover;
    padding: 120px 40px 80px;
}
.hero-content { max-width: 700px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(254,207,47,.15); border: 1px solid rgba(254,207,47,.3);
    padding: 6px 16px; border-radius: 50px; color: var(--accent);
    font-size: .8rem; font-weight: 600; margin-bottom: 24px;
}
.hero h1 { color: var(--white); font-size: 3.5rem; font-weight: 900; line-height: 1.1; margin-bottom: 20px; }
.hero h1 span { color: var(--accent); }
.hero p { color: rgba(255,255,255,.7); font-size: 1.15rem; line-height: 1.7; margin-bottom: 36px; max-width: 540px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
    background: var(--accent); color: var(--dark); padding: 16px 36px;
    border-radius: 50px; font-weight: 700; font-size: 1rem; text-decoration: none;
    display: inline-flex; align-items: center; gap: 10px; transition: all .3s;
}
.btn-primary:hover { background: #ffe066; transform: translateY(-3px); box-shadow: 0 12px 35px rgba(254,207,47,.3); }
.btn-secondary {
    background: transparent; color: var(--white); padding: 16px 36px;
    border: 2px solid rgba(255,255,255,.25); border-radius: 50px;
    font-weight: 600; font-size: 1rem; text-decoration: none; transition: all .3s;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
.hero-stats { display: flex; gap: 48px; margin-top: 60px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,.1); }
.stat h3 { color: var(--accent); font-size: 2.2rem; font-weight: 800; }
.stat p { color: rgba(255,255,255,.5); font-size: .85rem; margin-top: 4px; }

/* ── SECTIONS ── */
section { padding: 100px 40px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--primary); font-size: .8rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px;
}
.section-label::before { content: ''; width: 30px; height: 2px; background: var(--primary); }
.section-title { font-size: 2.5rem; font-weight: 800; margin-bottom: 16px; line-height: 1.2; }
.section-subtitle { color: var(--gray); font-size: 1.05rem; max-width: 600px; line-height: 1.7; }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 24px; margin-top: 50px; }
.service-card { background: var(--white); border: 1px solid #e5e7eb; border-radius: var(--radius); overflow: hidden; transition: all .4s; display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,.1); border-color: var(--primary); }
.service-card img { width: 100%; height: 200px; object-fit: cover; }
.service-card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; text-align: center; align-items: center; }
.service-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.service-card p { color: var(--gray); font-size: .9rem; line-height: 1.6; margin-bottom: 16px; flex: 1; }
.service-price { display: flex; align-items: baseline; gap: 8px; }
.service-price .new { color: var(--primary); font-weight: 800; font-size: 1.25rem; }
.service-price .old { color: var(--gray); font-size: .9rem; text-decoration: line-through; }
.service-price .label { color: var(--gray); font-size: .8rem; }

/* ── GALLERY SLIDER ── */
.gallery-section { background: var(--dark); color: var(--white); padding: 100px 0; }
.gallery-section .container { padding: 0 40px; }
.gallery-section .section-label { color: var(--accent); }
.gallery-section .section-label::before { background: var(--accent); }
.gallery-section .section-subtitle { color: rgba(255,255,255,.5); }
.slider-wrap { position: relative; margin-top: 50px; overflow: hidden; }
.slider-track { display: flex; transition: transform .45s cubic-bezier(.4,0,.2,1); will-change: transform; }
.slide { flex: 0 0 calc(25% - 9px); margin-right: 12px; border-radius: 14px; overflow: hidden; }
.slide img { width: 100%; height: 260px; object-fit: cover; display: block; transition: transform .4s; }
.slide:hover img { transform: scale(1.04); }
.slider-nav { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 28px; }
.slider-btn {
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
    color: var(--white); font-size: 1.1rem; cursor: pointer; transition: all .2s;
    display: flex; align-items: center; justify-content: center;
}
.slider-btn:hover { background: var(--accent); color: var(--dark); border-color: var(--accent); }
.slider-dots { display: flex; gap: 6px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.2); cursor: pointer; transition: all .3s; }
.dot.active { background: var(--accent); width: 24px; border-radius: 4px; }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 24px; margin-top: 50px; }
.price-card {
    border: 1px solid #e5e7eb; border-radius: var(--radius); padding: 36px;
    transition: all .3s; position: relative; display: flex; flex-direction: column;
}
.price-card:hover { box-shadow: 0 20px 50px rgba(0,0,0,.08); transform: translateY(-4px); }
.price-card.featured { border-color: var(--accent); background: linear-gradient(135deg,#fffef5,#fff); box-shadow: 0 20px 60px rgba(254,207,47,.15); }
.price-card.featured::before {
    content: attr(data-badge); position: absolute; top: -12px; left: 24px;
    background: var(--accent); color: var(--dark); padding: 4px 16px;
    border-radius: 50px; font-size: .75rem; font-weight: 700;
}
.price-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 4px; }
.price-card .price-sub { color: var(--gray); font-size: .9rem; margin-bottom: 20px; }
.price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 4px; }
.price-row .new-price { font-size: 2.5rem; font-weight: 900; color: var(--dark); }
.price-row .old-price { font-size: 1.1rem; color: #9ca3af; text-decoration: line-through; }
.price-note { color: var(--gray); font-size: .8rem; margin-bottom: 24px; }
.price-card ul { list-style: none; margin-bottom: 28px; flex: 1; }
.price-card li { padding: 8px 0; font-size: .92rem; color: #374151; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid #f3f4f6; }
.price-card li:last-child { border-bottom: none; }
.price-card li::before { content: '✓'; color: var(--primary); font-weight: 700; flex-shrink: 0; }
.btn-price { display: block; text-align: center; padding: 14px; border-radius: 50px; font-weight: 700; text-decoration: none; transition: all .3s; }
.btn-price.outline { border: 2px solid #d1d5db; color: var(--dark); }
.btn-price.outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-price.filled { background: var(--accent); color: var(--dark); }
.btn-price.filled:hover { background: #ffe066; transform: translateY(-2px); }

/* ── ADVANTAGES ── */
.advantages { background: var(--light); }
.adv-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); gap: 24px; margin-top: 50px; }
.adv-card { background: var(--white); padding: 32px; border-radius: var(--radius); transition: all .3s; }
.adv-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,.07); }
.adv-icon { width: 52px; height: 52px; background: rgba(42,150,206,.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 16px; }
.adv-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.adv-card p { color: var(--gray); font-size: .9rem; line-height: 1.6; }

/* ── MAP ── */
.map-section { padding: 0; }
.map-section .container { max-width: 1200px; margin: 0 auto; padding: 100px 40px; }
.map-wrap {
    border-radius: 24px; overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.1); margin-top: 50px;
    display: grid; grid-template-columns: 1fr 380px;
}
.map-iframe { display: block; width: 100%; height: 400px; border: none; }
.map-info { background: var(--dark); padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.map-info h3 { color: var(--white); font-size: 1.3rem; font-weight: 700; margin-bottom: 24px; }
.map-info-row { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.map-info-icon { width: 40px; height: 40px; background: rgba(254,207,47,.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.map-info-row p { color: rgba(255,255,255,.55); font-size: .88rem; line-height: 1.6; }
.map-info-row strong { color: var(--white); font-size: .95rem; display: block; margin-bottom: 2px; }
.map-cta-btn { margin-top: 28px; display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: var(--dark); padding: 13px 24px; border-radius: 50px; font-weight: 700; text-decoration: none; font-size: .9rem; transition: all .3s; }
.map-cta-btn:hover { background: #ffe066; transform: translateY(-2px); }

/* ── POPUP ── */
.popup-overlay {
    position: fixed; inset: 0; z-index: 1000;
    background: rgba(0,0,0,.7); backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity .5s; padding: 20px;
}
.popup-overlay.active { opacity: 1; pointer-events: all; }
.popup {
    background: var(--dark2); border-radius: 24px; overflow: hidden;
    max-width: 540px; width: 100%; position: relative;
    transform: translateY(40px) scale(.96); transition: transform .5s cubic-bezier(.22,1,.36,1);
    box-shadow: 0 50px 120px rgba(0,0,0,.6); border: 1px solid rgba(255,255,255,.07);
}
.popup-overlay.active .popup { transform: translateY(0) scale(1); }
.popup-img-wrap { position: relative; }
.popup-img { width: 100%; height: 210px; object-fit: cover; object-position: center 35%; display: block; }
.popup-img-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom,transparent 40%,rgba(17,24,39,.95)); }
.popup-badge { position: absolute; bottom: 16px; left: 24px; background: var(--accent); color: var(--dark); padding: 5px 14px; border-radius: 50px; font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; }
.popup-close-x { position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; background: rgba(0,0,0,.45); border: 1px solid rgba(255,255,255,.15); border-radius: 50%; color: var(--white); font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .2s; z-index: 2; }
.popup-close-x:hover { background: rgba(255,255,255,.15); }
.popup-body { padding: 28px 32px 32px; }
.popup-body h2 { color: var(--white); font-size: 1.45rem; font-weight: 800; margin-bottom: 10px; line-height: 1.25; }
.popup-body h2 span { color: var(--accent); }
.popup-body p { color: rgba(255,255,255,.5); font-size: .88rem; line-height: 1.65; margin-bottom: 24px; }
.popup-timer { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; }
.popup-timer-bar-wrap { flex: 1; height: 4px; background: rgba(255,255,255,.1); border-radius: 2px; overflow: hidden; }
.popup-timer-bar { height: 100%; background: var(--accent); width: 100%; border-radius: 2px; }
.popup-timer-label { color: rgba(255,255,255,.35); font-size: .75rem; white-space: nowrap; }
.popup-btns { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.popup-dismiss { color: rgba(255,255,255,.35); font-size: .82rem; cursor: pointer; background: none; border: none; text-decoration: underline; padding: 0; }
.popup-dismiss:hover { color: rgba(255,255,255,.65); }

/* ── FOOTER ── */
.footer { background: var(--dark); color: rgba(255,255,255,.5); padding: 60px 40px 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; max-width: 1200px; margin: 0 auto; }
.footer h4 { color: var(--white); margin-bottom: 16px; font-size: .95rem; }
.footer p, .footer a { font-size: .88rem; line-height: 1.9; color: rgba(255,255,255,.5); text-decoration: none; display: block; }
.footer a:hover { color: var(--accent); }
.footer .logo-wrap { display: flex !important; }
.footer-bottom { text-align: center; padding-top: 30px; margin-top: 40px; border-top: 1px solid rgba(255,255,255,.08); font-size: .8rem; }

/* ── MOBILE ── */
@media (max-width: 1024px) {
    .map-wrap { grid-template-columns: 1fr; }
    .map-iframe { height: 300px; }
    .slide { flex: 0 0 calc(50% - 6px); }
}
@media (max-width: 900px) {
    .header { padding: 0 20px; }
    nav { display: none; position: fixed; top: 70px; left: 0; right: 0; background: rgba(10,14,23,.98); flex-direction: column; padding: 20px; gap: 16px; z-index: 150; }
    nav.open { display: flex; }
    .hamburger { display: flex; }
    .btn-call { display: none; }
    .hero { padding: 100px 20px 60px; min-height: auto; }
    .hero h1 { font-size: 2.2rem; }
    .hero-stats { flex-direction: column; gap: 20px; }
    section { padding: 60px 20px; }
    .gallery-section .container { padding: 0 20px; }
    .map-section .container { padding: 60px 20px; }
    .section-title { font-size: 1.8rem; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-grid .logo-wrap { justify-content: center; }
    .lang-btn { padding: 3px 8px; font-size: .7rem; }
    .slide { flex: 0 0 calc(100% - 0px); margin-right: 12px; }
}

/* ── MAP NAV BUTTONS ── */
.map-btns { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.map-nav-btn {
    flex: 1; min-width: 130px;
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    background: var(--accent); color: var(--dark);
    padding: 13px 20px; border-radius: 50px;
    font-weight: 700; font-size: 0.9rem; text-decoration: none;
    transition: all .3s;
}
.map-nav-btn:hover { background: #ffe066; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(254,207,47,.35); }
.map-nav-btn.waze { background: #33ccff; color: #fff; }
.map-nav-btn.waze:hover { background: #1ab8e8; box-shadow: 0 8px 24px rgba(51,204,255,.35); }

/* ── PRICE IMPROVEMENTS ── */
.service-price { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.service-price .new { color: var(--primary); font-weight: 800; font-size: 1.3rem; }
.service-price .old { color: #b0b7c3; font-size: 0.95rem; text-decoration: line-through; text-decoration-color: #e53e3e; text-decoration-thickness: 2px; }
.service-price .label { color: var(--gray); font-size: 0.78rem; }

.price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 6px; }
.price-row .new-price { font-size: 2.6rem; font-weight: 900; color: var(--dark); }
.price-row .old-price { font-size: 1.15rem; color: #b0b7c3; text-decoration: line-through; text-decoration-color: #e53e3e; text-decoration-thickness: 2px; font-weight: 500; }

.price-note { display: inline-flex; align-items: center; gap: 6px; font-size: 0.8rem; color: #fff; background: #22c55e; padding: 3px 12px; border-radius: 50px; margin-bottom: 20px; font-weight: 600; }

/* ── MOBILE CENTERING ── */
@media (max-width: 900px) {
    .hero { text-align: center; padding: 100px 24px 60px; }
    .hero-content { max-width: 100%; }
    .hero-badge { margin: 0 auto 24px; }
    .hero p { margin-left: auto; margin-right: auto; }
    .hero-btns { justify-content: center; }
    .hero-stats { justify-content: center; text-align: center; }

    .section-label { display: flex; justify-content: center; }
    .section-title { text-align: center; }
    .section-subtitle { text-align: center; margin-left: auto; margin-right: auto; }

    .adv-card { text-align: center; }
    .adv-icon { margin-left: auto; margin-right: auto; }

    .cta { padding: 60px 24px; }

    .map-info { text-align: center; }
    .map-info-row { justify-content: center; text-align: left; }
    .map-btns { justify-content: center; }

    .footer-grid > div { display: flex; flex-direction: column; align-items: center; }
    .footer p, .footer a { text-align: center; }

    .pricing-grid { grid-template-columns: 1fr; }
    .price-card { text-align: center; }
    .price-row { justify-content: center; }
    .price-card ul { text-align: left; }
    .price-card li { justify-content: flex-start; }

    .services-grid { grid-template-columns: 1fr; }
    .service-card-body { text-align: center; }
    .service-price { justify-content: center; }
}

/* ── MAP BUTTONS MOBILE FIX ── */
@media (max-width: 900px) {
    .map-btns { flex-direction: row; gap: 10px; justify-content: center; }
    .map-nav-btn { flex: 1; min-width: unset; padding: 12px 14px; font-size: 0.82rem; }
    .map-info { padding: 32px 24px; text-align: left; }
    .map-info-row { justify-content: flex-start; text-align: left; }
}

/* ── REVIEWS ── */
.reviews-section { background: var(--dark); color: var(--white); }
.reviews-section .section-label { color: var(--accent); }
.reviews-section .section-label::before { background: var(--accent); }
.reviews-section .section-subtitle { color: rgba(255,255,255,.5); }
.reviews-grid { display: flex; gap: 20px; margin-top: 50px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 16px; scrollbar-width: none; }
.reviews-grid::-webkit-scrollbar { display: none; }
.review-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 28px; transition: all .3s; min-width: 320px; max-width: 380px; flex-shrink: 0; scroll-snap-align: start; }
.review-card:hover { background: rgba(255,255,255,.08); transform: translateY(-4px); }
.review-stars { color: var(--accent); font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.review-text { color: rgba(255,255,255,.7); font-size: .9rem; line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--accent); color: var(--dark); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .95rem; flex-shrink: 0; }
.review-author strong { color: var(--white); font-size: .9rem; display: block; }
.review-car { color: rgba(255,255,255,.4); font-size: .8rem; }

/* ── FULL PRICELIST ── */
.pricelist-section { background: var(--light); }
.pricelist-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 50px; }
.pricelist-group h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--primary); display: inline-block; }
.pricelist-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid #e5e7eb; }
.pricelist-item:last-child { border-bottom: none; }
.pricelist-item span:first-child { font-size: .88rem; color: #374151; flex: 1; }
.pricelist-item span:last-child { font-weight: 700; color: var(--primary); white-space: nowrap; margin-left: 12px; font-size: .9rem; }
.pricelist-note { margin-top: 20px; color: var(--gray); font-size: .78rem; font-style: italic; }
@media (max-width: 900px) {
    .reviews-grid { gap: 16px; }
    .review-card { text-align: center; }
    .review-author { justify-content: center; }
}

/* ── BOOKING FORM ── */
.form-section { background: var(--dark); color: var(--white); text-align: center; }
.form-section .section-label { color: var(--accent); }
.form-section .section-label::before { background: var(--accent); }
.form-section .section-subtitle { color: rgba(255,255,255,.5); margin-left: auto; margin-right: auto; }
.booking-form { margin-top: 40px; max-width: 800px; margin-left: auto; margin-right: auto; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group.full { grid-column: 1/-1; }
.form-group label { display: block; text-align: left; color: rgba(255,255,255,.6); font-size: .82rem; font-weight: 600; margin-bottom: 6px; text-transform: uppercase; letter-spacing: .5px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 14px 16px; border-radius: 12px;
    border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.06);
    color: var(--white); font-size: .95rem; font-family: inherit;
    transition: border-color .3s, background .3s; outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,.25); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); background: rgba(255,255,255,.1); }
.form-group select { cursor: pointer; -webkit-appearance: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns=http://www.w3.org/2000/svg width=12 height=12 fill=%23fecf2f viewBox=0 0 16 16%3E%3Cpath d=M8 11L3 6h10z/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.form-group select option { background: var(--dark2); color: var(--white); }
.form-submit { margin-top: 8px; cursor: pointer; border: none; font-family: inherit; width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }
.form-status { margin-top: 16px; font-size: .9rem; text-align: center; min-height: 24px; }
.form-status.success { color: #22c55e; }
.form-status.error { color: #ef4444; }

@media (max-width: 900px) {
    .form-grid { grid-template-columns: 1fr; }
    .booking-form { max-width: 100%; }
}
