:root {
    --primary: #e67e22;
    --primary-dark: #d35400;
    --accent: #f39c12;
    --dark: #2c2c2c;
    --darker: #1a1a1a;
    --white: #fff;
    --light: #fef8f0;
    --cream: #fdf3e7;
    --gray: #6b7280;
    --radius: 14px;
    --font-display: 'Montserrat', sans-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 {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 50px; position: fixed; top: 0; left: 0; right: 0;
    z-index: 200; background: transparent; transition: all .4s ease;
}
.header.scrolled { background: rgba(26,26,26,.9); backdrop-filter: blur(16px); padding: 12px 50px; }
.logo-wrap { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-wrap img { height: 38px; border-radius: 6px; }
.logo-text { color: var(--accent); font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; }
.logo-text span { color: var(--white); }
nav { display: flex; gap: 30px; flex: 1; justify-content: center; }
nav a { text-decoration: none; color: rgba(255,255,255,.75); font-size: .85rem; font-weight: 500; letter-spacing: .5px; transition: all .3s; position: relative; }
nav a::after { content: ''; position: absolute; bottom: -4px; left: 50%; width: 0; height: 2px; 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(--primary); color: var(--white); border-color: var(--primary); font-weight: 600; }
.btn-call { display: flex; align-items: center; gap: 8px; background: var(--primary); color: var(--white); padding: 10px 22px; border-radius: 50px; font-size: .85rem; font-weight: 600; text-decoration: none; transition: all .3s; white-space: nowrap; }
.btn-call:hover { background: var(--primary-dark); }
.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; }

.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(135deg, rgba(230,126,34,.7), rgba(26,26,26,.75)); }
.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(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: var(--accent); margin-bottom: 24px; }
.hero-content h1 { font-family: var(--font-display); font-size: 3.2rem; font-weight: 800; margin-bottom: 20px; line-height: 1.15; }
.hero-content h1 span { color: var(--accent); }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.8); line-height: 1.7; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 16px; justify-content: center; }
.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); }

.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.4rem; 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-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(230,126,34,.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(230,126,34,.12); }
.service-card img { width: 100%; height: 200px; object-fit: cover; transition: transform .5s; }
.service-card:hover img { transform: scale(1.05); }
.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.1rem; margin-bottom: 10px; font-weight: 700; }
.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; }

.pricing-section { background: var(--white); text-align: center; }
.pricelist-grid { text-align: left; }
.pricelist-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 50px; }
.pricelist-group { background: var(--cream); border-radius: var(--radius); padding: 28px; }
.pricelist-group h3 { font-family: var(--font-display); font-size: 1.05rem; 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: 8px 0; border-bottom: 1px solid rgba(0,0,0,.06); }
.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; }

.gallery-section { background: var(--darker); color: var(--white); text-align: center; }
.gallery-section .section-label { color: var(--accent); }
.gallery-section .section-label::before { background: var(--accent); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 40px; }
.gallery-grid img { width: 100%; height: 200px; object-fit: cover; border-radius: 10px; transition: all .4s; cursor: pointer; }
.gallery-grid img:hover { transform: scale(1.05); opacity: .85; }

.contacts-section { background: var(--light); text-align: center; }
.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: .9rem; margin-bottom: 6px; color: var(--accent); }
.map-info p { font-size: .88rem; margin-bottom: 16px; 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); }

.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; }
.booking-form { margin-top: 40px; max-width: 700px; 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-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 { 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; font-family: var(--font-display); }
.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; }

@media (max-width: 768px) {
    .header { padding: 12px 20px; }
    .header { padding: 10px 16px; }
    nav { display: none; position: fixed; top: 56px; left: 0; right: 0; background: rgba(26,26,26,.97); backdrop-filter: blur(16px); flex-direction: column; padding: 24px; gap: 16px; z-index: 150; border-bottom: 1px solid rgba(230,126,34,.15); }
    nav.open { display: flex; }
    nav a { color: rgba(255,255,255,.8); font-size: .95rem; text-align: center; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
    nav a:last-child { border-bottom: none; }
    nav a::after { display: none; }
    .hamburger { display: flex; }
    .btn-call { padding: 8px 14px; font-size: .78rem; }
    .logo-text { font-size: 1rem; }
    .hero { min-height: 80vh; }
    .hero-content h1 { font-size: 1.8rem; }
    .hero-sub { font-size: .92rem; }
    .hero-btns { flex-direction: column; gap: 12px; align-items: center; }
    .container { padding: 0 20px; }
    .section { padding: 70px 0; }
    .section-title { font-size: 1.6rem; }
    .section-label { display: flex; justify-content: center; }
    .section-title { text-align: center; }
    .section-subtitle { text-align: center; margin-left: auto; margin-right: auto; font-size: .92rem; }
    .services-grid { grid-template-columns: 1fr; }
    .pricelist-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .gallery-grid img { height: 150px; }
    .map-container { grid-template-columns: 1fr; }
    .map-btns { flex-direction: row; gap: 10px; }
    .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; }
    .footer { padding: 40px 20px 20px; }
}
