/* ===== Глобальные стили ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #1e1e1e;
    color: #f0f0f0;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Типографика */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #f0b90b;
    border-radius: 2px;
}

a {
    text-decoration: none;
}

section {
    padding: 80px 0;
}

/* ===== Кнопки ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #f0b90b;
    color: #1e1e1e;
    box-shadow: 0 4px 15px rgba(240, 185, 11, 0.3);
}

.btn-primary:hover {
    background-color: #ffd966;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(240, 185, 11, 0.5);
}

.btn-secondary {
    background-color: transparent;
    color: #f0b90b;
    border: 2px solid #f0b90b;
}

.btn-secondary:hover {
    background-color: #f0b90b;
    color: #1e1e1e;
    transform: translateY(-3px);
}

/* Анимация для кнопки телефона */
.btn-phone i {
    animation: shake 0.8s infinite alternate ease-in-out;
}

@keyframes shake {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(15deg); }
}

/* ===== Шапка ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(240, 185, 11, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #f0b90b;
    letter-spacing: 2px;
}
.logo span {
    color: #fff;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 1rem;
}

.nav-menu a:hover {
    color: #f0b90b;
}

.burger {
    display: none;
    cursor: pointer;
    font-size: 1.8rem;
    color: #f0b90b;
}

/* ===== Hero секция ===== */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/bg.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.6rem;
    margin-bottom: 15px;
    color: #f0b90b;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
}

.hero-content .slogan {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Статистика на hero секции ===== */
.stats-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-top: 60px;
    padding: 20px 30px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(240, 185, 11, 0.2);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #f0b90b; /* Акцентный желтый */
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(240, 185, 11, 0.3);
}

.stat-text {
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}


/* ===== Сетка услуг ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(240, 185, 11, 0.15);
    border-bottom-color: #f0b90b;
    cursor: pointer;
}

.service-icon {
    font-size: 3rem;
    color: #f0b90b;
    margin-bottom: 10px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.service-card p {
    color: #b0b0b0;
    font-size: 0.95rem;
}


/* ===== О нас ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-info p {
    margin-bottom: 20px;
    color: #d0d0d0;
}

.contact-details {
    margin-top: 30px;
    background-color: #2a2a2a;
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid #f0b90b;
}

.contact-details p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-details i {
    color: #f0b90b;
    width: 20px;
    font-size: 1.2rem;
}

.about-image img {
    width: 100%;
    height: 520px;      
    object-fit: cover; 
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    border: 3px solid #f0b90b;
}


/* ===== Блок с доверительными ссылками ===== */
.trust-badges {
    margin-top: 30px;
    padding: 20px 25px;
    background: linear-gradient(145deg, #2a2a2a 0%, #1e1e1e 100%);
    border-radius: 15px;
    border: 1px solid rgba(240, 185, 11, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.trust-title {
    color: #f0b90b;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-title:before {
    content: '★';
    color: #f0b90b;
    font-size: 1.2rem;
}

.trust-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.trust-link {
    flex: 1 1 auto;
    min-width: 180px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(240, 185, 11, 0.05);
    border: 1px solid rgba(240, 185, 11, 0.2);
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.trust-link:hover {
    background-color: #f0b90b;
    color: #1e1e1e;
    transform: translateY(-3px);
    border-color: #f0b90b;
    box-shadow: 0 5px 20px rgba(240, 185, 11, 0.3);
}

.trust-link i {
    font-size: 1.3rem;
    color: #f0b90b;
    transition: color 0.3s ease;
}

.trust-link:hover i {
    color: #1e1e1e;
}

.trust-link span {
    font-weight: 500;
}

.trust-badge {
    margin-left: auto;
    background-color: rgba(240, 185, 11, 0.2);
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 0.85rem;
    color: #f0b90b;
    transition: all 0.3s ease;
}

.trust-link:hover .trust-badge {
    background-color: #1e1e1e;
    color: #f0b90b;
}

.trust-note {
    font-size: 0.9rem;
    color: #999;
    margin-top: 10px;
    font-style: italic;
    text-align: right;
}


/* ===== Слайдер ===== */
.swiper {
    width: 100%;
    padding: 20px 0 40px;
}

.swiper-slide {
    background-color: #2a2a2a;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.swiper-slide img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.slide-caption {
    padding: 15px;
    text-align: center;
    font-weight: 600;
    color: #f0b90b;
}

.swiper-pagination-bullet {
    background: #f0b90b;
}

/* ===== Прайс-лист ===== */
.price-list {
    max-width: 900px;
    margin: 0 auto;
    background-color: #2a2a2a;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 12px 0 4px 0;
    border-bottom: 1px dashed #444;
    gap: 20px;
}

.price-item:first-of-type {
    padding-top: 0;
}

.price-item .service-name {
    font-weight: 500;
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.4;
    flex: 1;
}

.price-item .price-value {
    font-weight: 700;
    color: #f0b90b;
    font-size: 1.2rem;
    background-color: rgba(240, 185, 11, 0.1);
    padding: 5px 15px;
    border-radius: 30px;
    white-space: nowrap;
    border: 1px solid rgba(240, 185, 11, 0.2);
}

.price-note {
    font-size: 0.85rem;
    color: #b0b0b0;
    margin-bottom: 15px;
    margin-left: 15px;
    padding-left: 10px;
    border-left: 2px solid rgba(240, 185, 11, 0.3);
    font-style: italic;
}

.hidden-prices {
    display: none;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid rgba(240, 185, 11, 0.2);
}

.btn-show-more {
    display: block;
    margin: 30px auto 0;
    background: none;
    border: 2px solid #f0b90b;
    color: #f0b90b;
    padding: 14px 40px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}

.btn-show-more:hover {
    background-color: #f0b90b;
    color: #1e1e1e;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(240, 185, 11, 0.3);
}

/* Блок с важной информацией */
.price-info {
    max-width: 900px;
    margin: 30px auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.price-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(240, 185, 11, 0.05);
    padding: 15px 25px;
    border-radius: 50px;
    border: 1px solid rgba(240, 185, 11, 0.15);
    flex: 1 1 auto;
    min-width: 280px;
}

.price-info-item i {
    color: #f0b90b;
    font-size: 1.3rem;
}

.price-info-item span {
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.4;
}

.price-info-item strong {
    color: #f0b90b;
    font-weight: 600;
}

/* ===== Контактный CTA ===== */

/* Сетка для полей в одной строке (имя и телефон) */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Подсказка для поля адреса */
.field-note {
    font-size: 0.8rem;
    color: #b0b0b0;
    margin-top: -10px;
    margin-bottom: 15px;
    margin-left: 5px;
    font-style: italic;
}

/* Чекбокс для GDPR */
.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0 20px;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
    height: auto;
    accent-color: #f0b90b;
    transform: scale(1.1);
    cursor: pointer;
}

.form-checkbox label {
    color: #b0b0b0;
    font-size: 0.85rem;
    line-height: 1.4;
    cursor: pointer;
}

.form-checkbox label a {
    color: #f0b90b;
    text-decoration: none;
}

.form-checkbox label a:hover {
    text-decoration: underline;
}

/* Обновленные стили для полей ввода */
.form-group {
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 5px;
    background-color: #2a2a2a;
    border: 2px solid transparent;
    border-radius: 10px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f0b90b;
    background-color: #333;
    box-shadow: 0 0 0 3px rgba(240, 185, 11, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
    font-size: 0.95rem;
}

/* Стили для обязательных полей (можно добавить звездочку) */
.form-group input[required] {
    border-left: 3px solid #f0b90b;
}

.form-note {
    text-align: center;
    color: #b0b0b0;
    font-size: 0.9rem;
    margin-top: 15px;
    font-style: italic;
}

/* Кнопка отправки */
#contact .btn {
    width: 100%;
    font-size: 1.1rem;
    padding: 16px;
    margin-top: 10px;
    background-color: #f0b90b;
    color: #1e1e1e;
    font-weight: 700;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

#contact .btn:hover {
    background-color: #ffd966;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(240, 185, 11, 0.3);
}

#contact .btn:active {
    transform: translateY(0);
}


/* ===== Подвал ===== */
footer {
    background-color: #151515;
    padding: 40px 0 20px;
    border-top: 3px solid #f0b90b;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    color: #f0b90b;
}

.footer-social a {
    color: #fff;
    font-size: 1.5rem;
    margin-left: 20px;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #f0b90b;
}

.footer-copyright {
    text-align: center;
    color: #777;
    font-size: 0.9rem;
    border-top: 1px solid #333;
    padding-top: 20px;
}

/* ===== Адаптивность ===== */
@media (max-width: 992px) {
    h2 { font-size: 2rem; }
    .hero-content h1 { 
        font-size: 2.6rem;
        max-width: 700px;
    }
    .about-grid { grid-template-columns: 1fr; }
    .about-image { order: -1; }
}

@media (max-width: 768px) {
    .hero {
        height: inherit;
    }
    .burger { display: block; }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(30, 30, 30, 0.98);
        width: 100%;
        text-align: center;
        padding: 40px 0;
        gap: 20px;
        transition: 0.3s;
        backdrop-filter: blur(10px);
    }
    .nav-menu.active { left: 0; }
    .services-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons .btn { width: 80%; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-buttons .btn { width: 100%; }
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.25; 
    }

    .stats-container {
        flex-direction: column;
        gap: 30px;
        margin-top: 40px;
        padding: 30px 20px;
        width: 100%;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-text {
        font-size: 0.9rem;
    }

    .trust-links {
        flex-direction: column;
    }
    
    .trust-link {
        width: 100%;
    }

    .price-list {
        padding: 25px 20px;
    }
    
    .price-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 15px 0 5px 0;
    }
    
    .price-item .service-name {
        font-size: 1rem;
        padding-right: 0;
    }
    
    .price-item .price-value {
        font-size: 1.1rem;
        padding: 4px 12px;
        align-self: flex-start;
    }
    
    .price-note {
        font-size: 0.8rem;
        margin-bottom: 10px;
        margin-left: 0;
    }
    
    .price-info {
        flex-direction: column;
        gap: 12px;
    }
    
    .price-info-item {
        padding: 12px 20px;
        min-width: auto;
    }
    
    .price-info-item i {
        font-size: 1.1rem;
    }
    
    .price-info-item span {
        font-size: 0.9rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-checkbox {
        align-items: flex-start;
    }
    
    .form-checkbox input[type="checkbox"] {
        margin-top: 3px;
    }
    
    .field-note {
        font-size: 0.75rem;
    }

    .form-note {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 { 
        font-size: 1.8rem;
        line-height: 1.3; 
    }
    .container { padding: 0 15px; }

    .stats-container {
        margin-top: 30px;
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }

    .trust-badges {
        padding: 15px;
    }
    
    .trust-title {
        font-size: 1rem;
    }
    
    .trust-link {
        padding: 10px 15px;
    }

    .price-list {
        padding: 20px 15px;
    }
    
    .price-item .service-name {
        font-size: 0.95rem;
    }
    
    .price-item .price-value {
        font-size: 1rem;
        padding: 3px 10px;
    }
    
    .btn-show-more {
        padding: 12px 30px;
        font-size: 0.95rem;
        width: 100%;
    }
    
}