/* ── VARIABLES ── */
:root {
    --primary: #b5838d;
    --primary-dark: #8e6575;
    --accent: #e8b4b8;
    --green: #6b8f71;
    --green-light: #a3c4a8;
    --dark: #2c2c2c;
    --darker: #1a1a1a;
    --white: #fff;
    --light: #fdf6f0;
    --cream: #fef9f4;
    --gray: #6b7280;
    --radius: 16px;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body); color: var(--dark); background: var(--white); scroll-behavior: smooth; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section { padding: 100px 0; }

/* ── HEADER ── */
.header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 50px; position: fixed; top: 0; left: 0; right: 0;
    z-index: 200; background: transparent; backdrop-filter: none;
    border-bottom: none; transition: all .4s ease;
}
.header.scrolled {
    background: rgba(26,26,26,.85); backdrop-filter: blur(16px);
    padding: 14px 50px; border-bottom: 1px solid rgba(232,180,184,.1);
}
.logo-wrap { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-wrap img { height: 44px; border-radius: 50%; border: 2px solid rgba(232,180,184,.3); transition: all .3s; }
.header.scrolled .logo-wrap img { height: 38px; }
.logo-text { color: var(--white); font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; letter-spacing: 1px; }
.logo-text span { color: var(--accent); }
nav { display: flex; gap: 32px; flex: 1; justify-content: center; }
nav a { text-decoration: none; color: rgba(255,255,255,.75); font-size: .85rem; font-weight: 400; letter-spacing: .5px; transition: all .3s; position: relative; }
nav a::after { content: ''; position: absolute; bottom: -4px; left: 50%; width: 0; height: 1.5px; background: var(--accent); transition: all .3s; transform: translateX(-50%); }
nav a:hover { color: var(--white); }
nav a:hover::after { width: 100%; }
.header-right { display: flex; align-items: center; gap: 16px; }
.lang-switcher { display: flex; gap: 4px; }
.lang-btn { background: none; border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.6); padding: 4px 10px; border-radius: 6px; font-size: .75rem; cursor: pointer; transition: all .2s; }
.lang-btn.active { background: var(--accent); color: var(--darker); border-color: var(--accent); font-weight: 600; }
.btn-call { display: flex; align-items: center; gap: 8px; background: rgba(232,180,184,.15); color: var(--accent); padding: 10px 22px; border-radius: 50px; font-size: .85rem; font-weight: 500; text-decoration: none; transition: all .3s; white-space: nowrap; border: 1px solid rgba(232,180,184,.25); }
.btn-call:hover { background: var(--accent); color: var(--darker); border-color: var(--accent); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all .3s; }

/* ── HERO ── */
.hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    background-size: cover; background-position: center; position: relative; text-align: center;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(44,44,44,.5), rgba(44,44,44,.7)); }
.hero-content { position: relative; z-index: 2; color: var(--white); max-width: 700px; padding: 0 20px; }
.hero-badge {
    display: inline-block; padding: 8px 20px; border-radius: 50px; font-size: .78rem;
    font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
    background: rgba(232,180,184,.2); border: 1px solid rgba(232,180,184,.3); color: var(--accent); margin-bottom: 24px;
}
.hero-content h1 { font-family: var(--font-display); font-size: 3.5rem; font-weight: 700; margin-bottom: 20px; line-height: 1.2; }
.hero-content h1 span { color: var(--accent); font-style: italic; }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,.8); line-height: 1.7; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 16px; justify-content: center; margin-bottom: 50px; }
.btn-primary { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 32px; background: var(--primary); color: var(--white); border-radius: 50px; font-size: .92rem; font-weight: 600; text-decoration: none; transition: all .3s; border: none; cursor: pointer; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border: 1px solid rgba(255,255,255,.3); color: var(--white); border-radius: 50px; font-size: .92rem; font-weight: 500; text-decoration: none; transition: all .3s; }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.hero-stats { display: flex; justify-content: center; gap: 50px; }
.hero-stats div { text-align: center; }
.hero-stats strong { display: block; font-size: 2rem; font-family: var(--font-display); color: var(--accent); }
.hero-stats span { font-size: .82rem; color: rgba(255,255,255,.6); }

/* ── SECTION LABELS ── */
.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-family: var(--font-display); font-size: 2.5rem; font-weight: 700; 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-section { background: var(--light); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 50px; }
.service-card { background: var(--white); border: 1px solid rgba(181,131,141,.1); border-radius: var(--radius); overflow: hidden; transition: all .4s; display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(181,131,141,.15); }
.service-card img { width: 100%; height: 220px; object-fit: cover; }
.service-card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; text-align: center; align-items: center; }
.service-card-body h3 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 10px; }
.service-card-body p { color: var(--gray); font-size: .88rem; line-height: 1.6; flex: 1; }
.service-price { margin-top: 16px; }
.service-price .new { color: var(--primary); font-size: 1.1rem; font-weight: 700; }

/* ── GALLERY SLIDER ── */
.gallery-section { background: var(--darker); 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: 280px; 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-section { background: var(--cream); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 50px; }
.pricing-card {
    background: var(--white); border: 1px solid rgba(181,131,141,.1); border-radius: var(--radius);
    padding: 40px 30px; text-align: center; transition: all .4s; position: relative; display: flex; flex-direction: column;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(181,131,141,.12); }
.pricing-card.featured { border: 2px solid var(--primary); }
.pricing-card.featured::before {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 60%; height: 3px; background: linear-gradient(90deg, var(--accent), var(--primary));
}
.pricing-badge { display: inline-block; padding: 4px 16px; border-radius: 50px; font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; background: rgba(181,131,141,.1); color: var(--primary); margin-bottom: 16px; }
.pricing-card h3 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 16px; }
.pricing-price .new { font-size: 1.8rem; font-weight: 700; color: var(--primary); }
.pricing-card ul { list-style: none; margin: 24px 0; text-align: left; }
.pricing-card li { padding: 8px 0; font-size: .9rem; color: var(--gray); border-bottom: 1px solid rgba(0,0,0,.05); }
.pricing-card li::before { content: '✓ '; color: var(--green); font-weight: 700; }
.pricing-card .btn-primary { margin-top: auto; width: 100%; }

/* ── REVIEWS ── */
.reviews-section { background: var(--darker); 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: #f59e0b; font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.review-text { font-size: .9rem; line-height: 1.7; color: rgba(255,255,255,.7); margin-bottom: 20px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--primary); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .9rem; }

/* ── CONTACTS / MAP ── */
.contacts-section { background: var(--light); }
.map-container { max-width: 1200px; margin: 50px auto 0; display: grid; grid-template-columns: 1.5fr 1fr; border-radius: var(--radius); overflow: hidden; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 350px; display: block; }
.map-info { background: var(--darker); padding: 40px; display: flex; flex-direction: column; justify-content: center; color: var(--white); }
.map-info h3 { font-family: var(--font-display); font-size: .95rem; margin-bottom: 6px; color: var(--accent); }
.map-info p { font-size: .9rem; margin-bottom: 20px; color: rgba(255,255,255,.7); }
.map-info a { color: var(--accent); text-decoration: none; }
.map-btns { display: flex; gap: 10px; margin-top: 10px; }
.btn-map { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; border-radius: 10px; font-size: .85rem; font-weight: 500; text-decoration: none; color: var(--white); border: 1px solid rgba(255,255,255,.15); transition: all .2s; flex: 1; justify-content: center; }
.btn-map:hover { border-color: var(--accent); color: var(--accent); }

/* ── BOOKING FORM ── */
.form-section { background: var(--darker); 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; }
.footer .logo-wrap { display: flex !important; }
.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;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--accent);
}
.form-group select option { background: var(--dark); 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; }

/* ── POPUP ── */
.popup-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 300; align-items: center; justify-content: center; }
.popup-overlay.active { display: flex; }
.popup-card { background: var(--white); border-radius: var(--radius); padding: 40px; max-width: 420px; text-align: center; position: relative; }
.popup-close { position: absolute; top: 12px; right: 16px; background: none; border: none; font-size: 1.8rem; cursor: pointer; color: var(--gray); }
.popup-card h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 12px; }
.popup-card h3 span { color: var(--primary); }
.popup-card p { color: var(--gray); font-size: .92rem; line-height: 1.6; margin-bottom: 20px; }
.popup-timer { font-size: 2rem; font-weight: 700; color: var(--primary); margin-bottom: 20px; font-family: var(--font-display); }

/* ── FOOTER ── */
.footer { background: var(--darker); 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: 768px) {
    .header { padding: 12px 20px; }
    nav { display: none; position: fixed; top: 70px; left: 0; right: 0; background: rgba(26,26,26,.95); backdrop-filter: blur(16px); flex-direction: column; padding: 24px; gap: 16px; z-index: 150; border-bottom: 1px solid rgba(232,180,184,.1); }
    nav.open { display: flex; }
    .hamburger { display: flex; }
    .header-right .btn-call span { display: none; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-stats { flex-direction: column; gap: 20px; }
    .container { padding: 0 20px; }
    .section { padding: 70px 0; }
    .section-title { font-size: 1.8rem; }
    .section-label { display: flex; justify-content: center; }
    .section-subtitle { text-align: center; margin-left: auto; margin-right: auto; }
    .services-grid { grid-template-columns: 1fr; }
    .gallery-section .container { padding: 0 20px; }
    .slide { flex: 0 0 calc(100% - 12px); }
    .pricing-grid { grid-template-columns: 1fr; }
    .map-container { grid-template-columns: 1fr; }
    .map-btns { flex-direction: row; gap: 10px; justify-content: center; }
    .map-btns .btn-map { flex: 1; }
    .form-grid { grid-template-columns: 1fr; }
    .booking-form { max-width: 100%; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-grid .logo-wrap { justify-content: center; }
    .footer-grid > div { display: flex; flex-direction: column; align-items: center; }
    .footer p, .footer a { text-align: center; }
    .service-card-body { text-align: center; }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .slide { flex: 0 0 calc(50% - 6px); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}
