/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }

/* ===== TOP BAR (Зелёная полоса) ===== */
.top-bar {
    background: #56af0e;
    color: #fff;
    height: 40px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1002;
    font-size: 13px;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.top-email { opacity: 0.9; }
.top-right { display: flex; align-items: center; gap: 15px; }
.btn-call {
    background: #fff;
    color: #56af0e;
    padding: 4px 15px;
    font-weight: 600;
    font-size: 12px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}
.top-phone { font-weight: 600; display: flex; align-items: center; gap: 5px; }

/* ===== MAIN NAV (Чёрное меню) ===== */
.main-nav {
    background: #000;
    position: fixed;
    top: 40px;
    left: 0; right: 0;
    z-index: 1001;
    padding: 15px 0;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}
.logo-icon {
    width: 35px; height: 35px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Cpath fill='%2356af0e' d='M20 2L2 20h6v16h10v-8h4v8h10V20h6L20 2z'/%3E%3Cpath fill='%23fff' d='M16 22h8v6h-8z'/%3E%3C/svg%3E") no-repeat center;
}
.logo-text { font-weight: 700; font-size: 16px; line-height: 1.2; text-transform: uppercase; }
.nav-links { display: flex; gap: 25px; align-items: center; }
.nav-links a {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.nav-links a:hover { color: #56af0e; }
.nav-dropdown { position: relative; cursor: pointer; }
.nav-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 250px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    padding: 10px 0;
    z-index: 1003;
}
.nav-dropdown:hover .nav-dropdown-content { display: block; }
.nav-dropdown-content a {
    color: #333 !important;
    display: block;
    padding: 8px 20px;
    text-transform: none;
    font-size: 13px;
}
.nav-dropdown-content a:hover { background: #f5f5f5; color: #56af0e !important; }

/* ===== HERO SECTION ===== */
.hero-section {
    height: 100vh;
    min-height: 700px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 92px; /* top-bar + nav */
}
.hero-title-box {
    background: #000;
    color: #fff;
    padding: 15px 40px;
    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}
.hero-dots {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 3;
}
.dot-item {
    width: 20px;
    height: 20px;
    background: #333;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}
.dot-item.active, .dot-item:hover { background: #56af0e; }

/* ===== SERVICES SECTION ===== */
.services-section { padding: 80px 0; background: #fff; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 {
    font-size: 24px;
    text-transform: uppercase;
    color: #222;
    margin-bottom: 8px;
}
.section-title p { color: #56af0e; font-size: 14px; font-style: italic; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.service-card {
    border: 1px solid #e5e5e5;
    background: #fff;
    transition: 0.3s;
}
.service-card:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.service-thumb { position: relative; height: 200px; overflow: hidden; }
.service-thumb img { width: 100%; height: 100%; object-fit: cover; }
.service-label {
    position: absolute;
    top: 15px; left: 15px;
    background: #56af0e;
    color: #fff;
    padding: 6px 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}
.service-content { padding: 20px; }
.service-content h3 { font-size: 15px; margin-bottom: 8px; font-weight: 600; }
.service-content p { font-size: 12px; color: #666; line-height: 1.6; }

/* Promo block */
.promo-block {
    background: #ffeb3b;
    padding: 40px 20px;
    text-align: center;
    border: 1px solid #e5e5e5;
}
.promo-icon { font-size: 40px; margin-bottom: 15px; }
.promo-block h3 { font-size: 16px; margin-bottom: 10px; color: #222; }
.promo-block p { font-size: 12px; color: #666; margin-bottom: 15px; }
.btn-green {
    background: #56af0e;
    color: #fff;
    padding: 10px 25px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 11px;
    border: none;
    cursor: pointer;
}
.btn-green:hover { background: #44990c; }

/* ===== CTA SECTION ===== */
.cta-section {
    background: #333;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}
.cta-section h2 { font-size: 28px; text-transform: uppercase; margin-bottom: 15px; }
.cta-section p { font-size: 16px; font-style: italic; opacity: 0.9; margin-bottom: 30px; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 80px 0; background: #f8f9fa; }
.testimonials-section h2 { text-align: center; font-size: 24px; text-transform: uppercase; margin-bottom: 50px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.testimonial-card { text-align: center; padding: 20px; }
.testimonial-card h4 { font-size: 14px; margin-bottom: 10px; color: #222; }
.testimonial-card p { font-size: 13px; color: #666; font-style: italic; line-height: 1.6; }

/* ===== FOOTER ===== */
.footer { background: #0a0a0a; color: #b0b0b0; padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1.5fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-col h4 {
    color: #fff; font-size: 12px; text-transform: uppercase; margin-bottom: 20px;
    padding-bottom: 8px; border-bottom: 2px solid #56af0e; display: inline-block;
}
.footer-img { width: 100%; height: 140px; object-fit: cover; margin-bottom: 15px; opacity: 0.8; }
.footer-logo { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 700; font-size: 14px; margin-bottom: 10px; text-transform: uppercase; }
.footer-desc { font-size: 12px; line-height: 1.6; }
.schedule-row { font-size: 12px; margin-bottom: 8px; }
.contact-list { list-style: none; padding: 0; margin: 15px 0 0; }
.contact-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; font-size: 12px; }
.contact-list i { color: #56af0e; margin-top: 3px; }
.quick-links { list-style: none; padding: 0; margin: 0; }
.quick-links li { margin-bottom: 8px; }
.quick-links a { color: #b0b0b0; font-size: 12px; }
.quick-links a:hover { color: #56af0e; }
.footer-bottom { border-top: 1px solid #1a1a1a; padding-top: 20px; text-align: center; font-size: 11px; color: #666; }
.footer-bottom a { color: #555; margin: 0 5px; }

/* ===== FLOATING ELEMENTS ===== */
.floating-calc {
    position: fixed; bottom: 30px; left: 30px; display: flex; align-items: center;
    cursor: pointer; z-index: 999; transition: 0.3s;
}
.floating-calc:hover { transform: translateY(-3px); }
.calc-circle {
    width: 45px; height: 45px; background: #56af0e; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 10px rgba(86,175,14,0.4);
}
.calc-circle i { color: #fff; font-size: 20px; }
.calc-label {
    background: #56af0e; color: #fff; padding: 12px 18px; font-weight: 700;
    font-size: 11px; text-transform: uppercase; margin-left: -8px; border-radius: 0 5px 5px 0;
}
.scroll-top-btn {
    position: fixed; bottom: 30px; right: 30px; width: 40px; height: 40px;
    background: #56af0e; color: #fff; border-radius: 50%; text-align: center;
    line-height: 40px; z-index: 999; display: none;
}

/* ===== MODAL ===== */
.modal {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8); z-index: 2000; align-items: center; justify-content: center;
}
.modal-content { background: #fff; padding: 30px; max-width: 400px; width: 90%; text-align: center; position: relative; }
.modal-close { position: absolute; top: 10px; right: 15px; font-size: 24px; cursor: pointer; color: #999; }
.modal-content input { width: 100%; padding: 10px; margin-bottom: 10px; border: 1px solid #ddd; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .services-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .nav-links { display: none; }
    .hero-dots { display: none; }
}
@media (max-width: 768px) {
    .services-grid, .testimonials-grid, .footer-grid { grid-template-columns: 1fr; }
    .hero-title-box { font-size: 24px; padding: 10px 20px; }
    .floating-calc .calc-label { display: none; }
}