/* style.css - Monarch Custom Design LLC */
:root {
    --red: #ed1c24;
    --gold: #f7bd17;
    --black: #080808;
    --dark-bg: #0a0a0a;
    --gray-light: #f5f5f5;
    --text-dark: #1b1b1b;
    --text-muted: #666666;
    --white: #ffffff;
    --border-light: #eeeeee;
    
    --primary: var(--red);
    --primary-dark: #c41018;
    --primary-light: #ff4d54;
    --secondary: var(--gold);
    --secondary-dark: #dba50f;
    --light: var(--white);
    --dark: var(--black);
    --gray: var(--text-muted);
    --border: var(--border-light);
    
    --radius: 22px;
    --radius-sm: 12px;
    --radius-pill: 999px;
    --shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.18);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.55;
    color: var(--text-dark);
    background-color: var(--white);
    font-size: 18px;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 58px 0;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.05;
    margin: 8px 0 14px;
    color: var(--dark);
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--red);
    border-radius: 2px;
}

.section-title.centered {
    text-align: center;
}

.section-title.centered:after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 1.08rem;
    color: var(--text-muted);
    max-width: 760px;
}

.section-subtitle.centered {
    text-align: center;
    margin: 0 auto 30px;
}

.eyebrow {
    color: var(--red);
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.82rem;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: #080808;
    color: #ffffff;
    font-size: 0.85rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 1001;
}

.top-bar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.top-bar-inner span {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.top-bar-inner a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.top-bar-inner a:hover {
    color: #ffffff;
}

.top-bar-inner a i {
    margin-right: 6px;
}

/* ===== HEADER ===== */
header {
    background: var(--white);
    position: sticky;
    top: 42px; /* Высота топбара + паддинги */
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    max-height: 70px;
    width: auto;
}

nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-link {
    color: var(--dark);
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--red);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--red);
}

.nav-link:hover:after {
    width: 100%;
}

.nav-link.active {
    color: var(--red);
}

.nav-link.active:after {
    width: 100%;
}

.header-cta {
    display: flex;
    gap: 8px;
}

.btn {
    padding: 15px 22px;
    border-radius: var(--radius-pill);
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    box-shadow: var(--shadow);
    white-space: nowrap;
    gap: 10px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.btn-small {
    padding: 11px 14px;
    font-size: 0.82rem;
    box-shadow: none;
}

.btn-large {
    padding: 18px 32px;
    font-size: 1rem;
}

.btn-red {
    background: var(--red);
    color: var(--white);
}

.btn-red:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(237, 28, 36, 0.3);
}

.btn-gold {
    background: var(--gold);
    color: var(--black);
}

.btn-gold:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(247, 189, 23, 0.3);
}

.btn-outline {
    border: 2px solid var(--red);
    color: var(--red);
    background: transparent;
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--red);
    color: var(--white);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--dark);
    cursor: pointer;
    padding: 10px;
}

/* ===== HERO ===== */
.hero {
    padding: 60px 0 60px;
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.60)), 
                url('../images/hero-bg.jpg') center/cover no-repeat;
    position: relative;
    overflow: hidden;
    color: var(--white);
    min-height: 600px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 700px;
}

.badge {
    display: inline-flex;
    background: var(--gold);
    color: var(--black);
    border-radius: var(--radius-pill);
    padding: 8px 15px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.85rem;
}

h1 {
    font-size: clamp(2.6rem, 9vw, 5.6rem);
    line-height: 0.95;
    margin: 18px 0;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* ===== TRUST BADGES ===== */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 30px;
}

.trust-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 16px 12px;
    text-align: center;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.trust-label {
    display: block;
    font-weight: 900;
    font-size: 1rem;
    color: var(--black);
    letter-spacing: 0.02em;
}

.trust-value {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ===== HERO CARD ===== */
.hero-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-card h3 {
    color: var(--dark);
    margin: 0 0 8px;
    font-size: 1.5rem;
}

.hero-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1rem;
}

.hero-card .btn {
    width: 100%;
    margin-top: 8px;
}

.hero-card input,
.hero-card textarea,
.hero-card select {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    padding: 14px;
    margin: 7px 0;
    font: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.hero-card input:focus,
.hero-card textarea:focus,
.hero-card select:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(237, 28, 36, 0.1);
}

/* ===== SERVICES ===== */
.services-section {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 30px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--red);
}

.service-card .icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(237, 28, 36, 0.08);
    color: var(--red);
    font-size: 28px;
    margin-bottom: 15px;
}

.service-card h3 {
    margin: 0 0 8px;
    font-size: 1.2rem;
    color: var(--dark);
}

.service-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ===== SERVICE TAGS ===== */
.service-tags {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-top: 22px;
}

.service-tags div {
    background: var(--gray-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    font-weight: 800;
    font-size: 0.85rem;
    text-align: center;
    transition: var(--transition);
}

.service-tags div:hover {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
    transform: translateY(-2px);
}

/* ===== GALLERY ===== */
.gallery-section {
    background: var(--gray-light);
}

.gallery-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    padding-bottom: 10px;
}

.gallery-track {
    display: flex;
    transition: transform 0.5s ease;
}

.gallery-slide {
    min-width: 100%;
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 10px;
}

.gallery-item {
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    background: linear-gradient(135deg, #333, #777);
}

.gallery-item:nth-child(1) { background: linear-gradient(135deg, #1a1a2e, #16213e); }
.gallery-item:nth-child(2) { background: linear-gradient(135deg, #8b5b2b, #e2c28a); }
.gallery-item:nth-child(3) { background: linear-gradient(135deg, #444, #b8b8b8); }
.gallery-item:nth-child(4) { background: linear-gradient(135deg, #31471f, #8fb15a); }
.gallery-item:nth-child(5) { background: linear-gradient(135deg, #2c3e50, #3498db); }
.gallery-item:nth-child(6) { background: linear-gradient(135deg, #4a2c2a, #8d6b63); }

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-item-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 16px 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.gallery-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border-light);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}

.gallery-dot.active {
    background-color: var(--red);
    transform: scale(1.2);
}

.gallery-dot:hover {
    background-color: var(--red);
    opacity: 0.7;
}

.gallery-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    pointer-events: none;
    z-index: 10;
}

.gallery-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border-light);
    color: var(--dark);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-arrow:hover {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
    transform: scale(1.05);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    background: var(--white);
}

.testimonials-slider-container {
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    min-width: 100%;
    border: 1px solid var(--border-light);
    box-sizing: border-box;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    padding-left: 30px;
}

.testimonial-text:before {
    content: '"';
    position: absolute;
    left: 0;
    top: -8px;
    font-size: 50px;
    color: var(--red);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-left: 30px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    background: var(--red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1.05rem;
    margin: 0 0 3px;
    color: var(--dark);
    font-weight: 700;
}

.author-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.testimonials-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-light);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonials-dot.active {
    background: var(--red);
    transform: scale(1.2);
}

.testimonials-dot:hover {
    background: var(--red);
    opacity: 0.7;
}

.testimonials-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    pointer-events: none;
    z-index: 10;
}

.testimonials-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border-light);
    color: var(--dark);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials-arrow:hover {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
    transform: scale(1.05);
}

/* ===== CONTACT ===== */
.contact-section {
    background: var(--gray-light);
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.contact-box {
    background: var(--black);
    color: var(--white);
    border-radius: 26px;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 420px;
}

.contact-box .eyebrow {
    color: var(--gold);
}

.contact-title {
    color: var(--white);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin: 8px 0 18px;
    line-height: 1.1;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.9);
    margin: 10px 0;
    font-size: 1.05rem;
}

.contact-details strong {
    color: var(--gold);
    font-weight: 700;
}

.contact-details a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--gold);
    text-decoration: underline;
}

.contact-btn {
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-weight: 800;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 999px;
    background: var(--gold);
    color: var(--black);
    text-decoration: none;
    width: fit-content;
}

.contact-btn:hover {
    background: #e6aa14;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(247, 189, 23, 0.3);
}

.contact-btn i {
    font-size: 1.1rem;
}

.map-container {
    border-radius: 26px;
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 420px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
    display: block;
}

/* ===== FOOTER ===== */
footer {
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 40px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    text-align: left;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-section a {
    color: var(--gold);
    text-decoration: none;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-license {
    color: var(--gold);
    font-weight: bold;
    margin: 0.5rem 0;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ===== MOBILE STICKY CTA ===== */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--border-light);
    padding: 12px 16px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    z-index: 900;
}

.sticky-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.sticky-buttons .btn {
    padding: 13px 10px;
    font-size: 0.9rem;
    box-shadow: none;
}

/* ===== FLOATING BUTTONS - СКРЫТЫ ===== */
.floating-btn {
    display: none;
}

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    animation: zoomIn 0.3s ease;
}

.lightbox-content img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 32px;
    line-height: 42px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    z-index: 10000;
    backdrop-filter: blur(4px);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ===== FORM MESSAGES ===== */
.form-message.form-message--error {
    border: 2px solid #dc2626;
    background: rgba(220, 38, 38, 0.08);
    color: #dc2626;
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    margin: 15px 0;
    font-weight: 500;
    text-align: center;
}

.form-message.form-message--success {
    border: 2px solid #059669;
    background: rgba(5, 150, 105, 0.08);
    color: #059669;
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    margin: 15px 0;
    font-weight: 500;
    text-align: center;
}

/* ======================================== */
/* ===== RESPONSIVE ===== */
/* ======================================== */

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-tags {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 20px;
        box-shadow: var(--shadow);
        border-bottom: 1px solid var(--border-light);
        max-height: 100vh;
        overflow-y: auto;
        z-index: 999;
    }
    
    nav.active {
        display: flex;
    }
    
    .header-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-sticky-cta {
        display: block;
    }
    
    .trust-badges {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-tags {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-box {
        min-height: auto;
        padding: 30px 25px;
    }
    
    .map-container {
        min-height: 320px;
    }
    
    .map-container iframe {
        min-height: 320px;
    }
    
    .gallery-slide {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {

    header {
        top: 36px; /* Меньше на мобильных */
    }

    .top-bar {
        font-size: 0.75rem;
        padding: 8px 0;
    }
    
    .top-bar-inner {
        gap: 12px;
    }
    
    .logo-image {
        max-height: 55px;
    }
    
    .hero {
        padding: 40px 0 40px;
        min-height: auto;
    }
    
    h1 {
        font-size: 2.4rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .services-grid {
        gap: 12px;
    }
    
    .service-card {
        padding: 18px;
    }
    
    .service-tags {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .service-tags div {
        font-size: 0.75rem;
        padding: 10px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .testimonial-text {
        font-size: 1rem;
        padding-left: 20px;
    }
    
    .testimonial-text:before {
        font-size: 36px;
    }
    
    .testimonial-author {
        padding-left: 20px;
    }
    
    .author-avatar {
        width: 46px;
        height: 46px;
        font-size: 1rem;
    }
    
    .author-info h4 {
        font-size: 0.95rem;
    }
    
    .gallery-arrows,
    .testimonials-arrows {
        padding: 0 8px;
    }
    
    .gallery-arrow,
    .testimonials-arrow {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .contact-box {
        padding: 25px 20px;
    }
    
    .contact-title {
        font-size: 1.6rem;
    }
    
    .contact-details p {
        font-size: 0.95rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media (max-width: 576px) {

    header {
        top: 89px;
    }

    .container {
        padding: 0 16px;
    }
    
    .top-bar {
        font-size: 0.65rem;
        padding: 6px 0;
    }
    
    .top-bar-inner {
        gap: 4px;
        flex-direction: column;
        text-align: center;
    }
    
    nav {
        padding: 70px 20px 20px;
    }
    
    .hero {
        padding: 30px 0 40px;
    }
    
    .trust-badges {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .trust-item {
        padding: 12px 8px;
    }
    
    .trust-label {
        font-size: 0.85rem;
    }
    
    .trust-value {
        font-size: 0.7rem;
    }
    
    .hero-card {
        padding: 20px;
    }
    
    .hero-card h3 {
        font-size: 1.2rem;
    }
    
    .service-tags {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery-slide {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    .testimonial-card {
        padding: 20px 15px;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
        padding-left: 16px;
    }
    
    .testimonial-text:before {
        font-size: 28px;
        top: -4px;
    }
    
    .testimonial-author {
        padding-left: 16px;
        flex-wrap: wrap;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 0.85rem;
    }
    
    .testimonials-nav {
        gap: 8px;
        margin-top: 20px;
    }
    
    .testimonials-dot {
        width: 10px;
        height: 10px;
    }
    
    .contact-box {
        padding: 20px 16px;
    }
    
    .contact-title {
        font-size: 1.4rem;
    }
    
    .contact-btn {
        width: 100%;
        justify-content: center;
        font-size: 0.85rem;
        padding: 12px 20px;
    }
    
    .map-container {
        min-height: 250px;
    }
    
    .map-container iframe {
        min-height: 250px;
    }
}


label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 16px;
    color: var(--black);
}
