:root {
    /* New color scheme for Painting Arizona */
    --orange: #f26b21;
    --navy: #12355b;
    --gold: #f4b942;
    --dark: #1f2937;
    --light: #f8fafc;
    --white: #ffffff;
    --gray: #6b7280;
    --border: #e5e7eb;
    
    /* Keeping all existing variable names with new colors */
    --primary: var(--navy);
    --primary-dark: #0d2742;
    --primary-black: var(--navy);
    --primary-light: #e6f0fa;
    --primary-lightest: var(--light);
    --secondary: var(--dark);
    --slate: var(--gray);
    --gray-light: var(--light);
    --gray-border: var(--border);
    
    /* Keeping all existing shadows and radii */
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 12px rgba(18, 53, 91, 0.08);
    --shadow-lg: 0 8px 24px rgba(18, 53, 91, 0.12);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--secondary);
    background-color: var(--light);
    font-size: 18px;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.container {
    max-width: 1280px;
    margin: 20px auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: var(--navy);
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--orange);
    border-radius: 2px;
}

/* Top bar - new */
.topbar {
    background: var(--navy);
    color: var(--white);
    font-size: 0.95rem;
}

.topbar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 10px 0;
    text-align: center;
    flex-wrap: wrap;
}

.topbar a { 
    font-weight: 700; 
    color: var(--white);
    text-decoration: none;
}

.topbar a:hover {
    color: var(--orange);
}

/* Header */
header {
    background-color: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--navy);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background-color: var(--orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

.logo-image {
    max-height: 120px;
    width: auto;
}

/* Brand text in header */
.brand-text {
    min-width: 0;
    margin-left: 10px;
}

.brand-text strong {
    display: block;
    color: var(--navy);
    font-size: 1.2rem;
    line-height: 1.2;
}

.brand-text span {
    color: var(--gray);
    font-size: 0.95rem;
}

nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: var(--transition);
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--orange);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--orange);
}

.nav-link:hover:after {
    width: 100%;
}

.nav-link.active {
    color: var(--orange);
}

.nav-link.active:after {
    width: 100%;
}

.header-cta {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 16px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 17px;
    white-space: nowrap;
}

.btn-small {
    padding: 12px 20px;
    font-size: 16px;
}

.btn-large {
    padding: 18px 32px;
    font-size: 18px;
}

.btn-outline {
    border: 2px solid var(--orange);
    color: var(--navy);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-primary {
    background-color: var(--navy);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-accent {
    background-color: var(--orange);
    color: var(--white);
    font-weight: 700;
}

.btn-accent:hover {
    background-color: #e05a1a;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(242, 107, 33, 0.3);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--navy);
    cursor: pointer;
    padding: 10px;
}

/* Hero */
.hero {
    padding: 160px 0 100px;
    background: 
        linear-gradient(120deg, rgba(18, 53, 91, 0.92), rgba(18, 53, 91, 0.75)),
        url('../images/hero-bg.jpg') center/cover no-repeat;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(244, 185, 66, 0.15), transparent 70%);
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-grid-full {
    display: grid;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
}

.hero-content-full {
    max-width: 1800px;
}

.eyebrow-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

h1 {
    font-size: 64px;
    margin-bottom: 30px;
    color: var(--white);
}

.hero-subtitle {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0.95;
}

/* Hero points */
.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 28px;
}

.hero-points span {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    padding: 9px 14px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--white);
}

/* Checklist Grid */
.checklist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.checklist-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background: var(--white);
    border: 1px solid var(--border);
    padding: 15px;
    border-radius: var(--radius-sm);
    color: var(--dark);
}

.checklist-item .check-icon {
    background: var(--orange);
    color: var(--white);
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background-color: var(--primary-light);
    color: var(--navy);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 24px;
    height: 24px;
    background-color: var(--orange);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-text {
    font-size: 17px;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Hero Card */
.hero-card {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-border);
}

.hero-card h3 {
    color: var(--navy);
    margin-bottom: 15px;
    font-size: 28px;
}

.hero-card p {
    color: var(--slate);
    margin-bottom: 25px;
    font-size: 18px;
}

/* Stat Grid */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 25px 0;
}

.stat-card {
    background: var(--light);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-sm);
    padding: 20px;
}

.stat-card strong {
    display: block;
    font-size: 1.8rem;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-card span {
    color: var(--slate);
    font-size: 0.95rem;
}

/* Mini Service List */
.mini-service-list {
    list-style: none;
    padding: 0 0 20px 0;
    margin: 20px 0 0;
}

.mini-service-list li {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-border);
    color: var(--slate);
}

.mini-service-list li:last-child {
    border-bottom: none;
}

.mini-service-list .check-icon {
    width: 22px;
    height: 22px;
    font-size: 14px;
    flex-shrink: 0;
}

/* Dot for mini list */
.dot {
    width: 10px;
    height: 10px;
    background: var(--orange);
    border-radius: 50%;
    margin-top: 8px;
    flex: 0 0 10px;
    display: inline-block;
    margin-right: 10px;
}

.mini-service-list .dot {
    margin-top: 6px;
}

/* Form Card */
.form-card {
    background-color: var(--light);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 40px;
    border: 1px solid var(--gray-border);
}

.form-title {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--navy);
}

.form-subtitle {
    color: var(--gray);
    margin-bottom: 30px;
    font-size: 18px;
}

.form-group {
    margin-bottom: 24px;
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 16px;
    color: var(--navy);
}

input, select, textarea {
    width: 100%;
    padding: 18px 20px;
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 17px;
    transition: var(--transition);
    background-color: var(--light);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(242, 107, 33, 0.1);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

/* Services Detailed Grid */
.services-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.service-detailed-card {
    background: var(--light);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-border);
    transition: var(--transition);
    height: 100%;
    border-top: 4px solid var(--orange);
}

.service-detailed-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange);
}

.service-detailed-card .header-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--orange);
    padding-bottom: 10px;
}

.service-detailed-card .icon-box {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(18, 53, 91, 0.12), rgba(242, 107, 33, 0.17));
    color: var(--navy);
    font-size: 28px;
    flex-shrink: 0;
}

.service-detailed-card h3 {
    color: var(--navy);
    font-size: 1.3rem;
    margin: 0;
    flex: 1;
}

.service-detailed-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-detailed-card li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: var(--slate);
    font-size: 16px;
}

.service-detailed-card li:before {
    content: "•";
    color: var(--orange);
    font-weight: bold;
    position: absolute;
    left: 8px;
}

/* Gallery */
.gallery {
    background-color: 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-slide[data-images-per-slide="2"] {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.gallery-slide[data-images-per-slide="3"] {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-slide[data-images-per-slide="4"] {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Для разного количества изображений устанавливаем разную высоту */
.gallery-slide[data-images-per-slide="2"] .gallery-item {
    height: 350px;
}

.gallery-slide[data-images-per-slide="3"] .gallery-item,
.gallery-slide[data-images-per-slide="4"] .gallery-item {
    height: 300px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background-color: var(--light);
    transition: var(--transition);
    height: 300px;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.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);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(18, 53, 91, 0.9), transparent);
    color: var(--light);
    padding: 20px;
    font-size: 16px;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-caption.show-immediately {
    opacity: 1;
}

.gallery-item:hover .image-caption:not(.show-immediately) {
    opacity: 1;
}

.gallery-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.gallery-link:hover {
    opacity: 0.95;
}

.gallery-link-button {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
    text-decoration: none;
    cursor: pointer;
}

.gallery-link:hover .gallery-link-button {
    opacity: 1;
}

.gallery-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--gray-border);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}

.gallery-dot.active {
    background-color: var(--orange);
    transform: scale(1.2);
}

/* Gallery Arrows */
.gallery-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 10;
}

.gallery-arrow {
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--navy);
    cursor: pointer;
    transition: var(--transition);
    pointer-events: auto;
    box-shadow: var(--shadow);
}

.gallery-arrow:hover {
    background-color: var(--navy);
    color: var(--light);
    transform: scale(1.1);
}

/* Gallery Tabs */
.gallery-tabs-container {
    position: relative;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery-tab {
    padding: 15px 30px;
    background-color: var(--light);
    border: 2px solid var(--gray-border);
    border-radius: var(--radius-sm);
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.gallery-tab:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-2px);
}

.gallery-tab.active {
    background-color: var(--orange);
    border-color: var(--orange);
    color: var(--white);
    box-shadow: var(--shadow);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Testimonials */
.testimonials {
    position: relative;
}

.testimonials-slider-container {
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: var(--radius);
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    background-color: var(--light);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
    min-width: 100%;
    border: 1px solid var(--gray-border);
}

.testimonial-text {
    font-size: 22px;
    line-height: 1.6;
    color: var(--secondary);
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
    padding-left: 30px;
}

.testimonial-text:before {
    content: "“";
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 60px;
    color: var(--navy);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 50px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 24px;
    font-weight: bold;
}

.author-info h4 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--navy);
}

.author-info p {
    color: var(--gray);
    font-size: 16px;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    height: 20px;
}

.testimonials-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--gray-border);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}

.testimonials-dot.active {
    background-color: var(--navy);
    transform: scale(1.2);
}

.testimonials-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.testimonials-arrow {
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--navy);
    cursor: pointer;
    transition: var(--transition);
    pointer-events: auto;
    box-shadow: var(--shadow);
}

.testimonials-arrow:hover {
    background-color: var(--navy);
    color: var(--light);
    transform: scale(1.1);
}

/* Responsive для testimonials */
@media (max-width: 768px) {
    .testimonials-arrows {
        padding: 0 10px;
    }
    
    .testimonials-arrow {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .testimonial-text {
        font-size: 18px;
        padding-left: 20px;
    }
    
    .testimonial-text:before {
        font-size: 40px;
    }
}

@media (max-width: 576px) {
    .testimonials-nav {
        margin-top: 30px;
        gap: 15px;
    }
    
    .testimonials-dot {
        width: 10px;
        height: 10px;
    }
    
    .testimonial-card {
        padding: 25px 15px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .author-info h4 {
        font-size: 18px;
    }
}

/* Service Area Section */
.service-area-section {
    background-color: var(--cream);
}

/* Contact Section */
.contact {
    padding: 80px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info h3 {
    color: var(--navy);
    margin-bottom: 25px;
    font-size: 28px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin: 25px 0;
}

.contact-icon {
    background-color: var(--orange);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 24px;
    flex-shrink: 0;
}

/* Social Icons */
.social-icons-handyman {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icons-handyman a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s;
    color: var(--light);
}

.social-icons-handyman a:hover {
    transform: scale(1.1);
}

.social-icons-handyman .facebook {
    background: #1877F2;
}

.social-icons-handyman .instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

/* Footer */
footer {
    background-color: #0f172a;
    color: var(--light);
    padding: 70px 0 30px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    font-size: 22px;
    margin-bottom: 25px;
    color: var(--light);
}

.footer-contact {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact a {
    color: var(--orange);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--light);
    text-decoration: underline;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 18px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--orange);
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--light);
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 900;
}

.sticky-buttons {
    display: flex;
    gap: 15px;
}

.sticky-buttons .btn {
    flex: 1;
}

/* Floating Action Buttons */
.floating-btn {
    position: fixed;
    right: 18px;
    z-index: 1001;
    padding: 14px 20px;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}

.floating-btn.sms {
    bottom: 88px;
    background-color: var(--orange);
    color: var(--white);
}

.floating-btn.call {
    bottom: 148px;
    background-color: var(--navy);
    color: var(--white);
}

.floating-btn i {
    font-size: 18px;
}

/* Desktop Sticky CTA */
.desktop-sticky-cta {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 16px;
    z-index: 80;
    width: min(720px, calc(100% - 20px));
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 18px 40px rgba(0,0,0,0.16);
    border-radius: 999px;
    display: flex;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.desktop-sticky-cta a {
    flex: 1;
    padding: 16px 18px;
    text-align: center;
    font-weight: 800;
    text-decoration: none;
}

.desktop-sticky-cta a:first-child {
    background: var(--orange);
    color: var(--white);
}

.desktop-sticky-cta a:last-child {
    background: var(--navy);
    color: var(--white);
}

/* Map wrapper */
.map-wrap {
    margin-top: 40px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--gray-border);
    box-shadow: var(--shadow);
}

.map-wrap iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}

/* Form Messages */
.form-message.form-message--error {
    border: 2px solid #dc2626;
    background-color: rgba(220, 38, 38, 0.1);
    color: #dc2626;
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    margin: 20px 0;
    font-weight: 500;
    text-align: center;
}

.form-message.form-message--success {
    border: 2px solid #059669;
    background-color: rgba(5, 150, 105, 0.1);
    color: #059669;
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    margin: 20px 0;
    font-weight: 500;
    text-align: center;
}

/* Responsive */
@media (max-width: 1200px) {
    h1 {
        font-size: 54px;
    }
    
    .hero-grid {
        gap: 40px;
    }

    .section-title {
        font-size: 38px;
    }
    
    .gallery-slide {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Responsive для 4 изображений */
    .gallery-slide[data-images-per-slide="4"] {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .gallery-slide[data-images-per-slide="3"] {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 1080px) {
    .topbar-inner {
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 992px) {
    body {
        font-size: 17px;
    }
    
    .hero {
        padding: 140px 0 80px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
    }
    
    .hero:before {
        width: 100%;
        opacity: 0.5;
    }
    
    nav {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background-color: var(--light);
        flex-direction: column;
        padding: 30px;
        box-shadow: var(--shadow-lg);
        gap: 25px;
        border-top: 1px solid rgba(0,0,0,0.1);
    }
    
    nav.active {
        display: flex;
    }
    
    .header-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-sticky-cta {
        display: block;
    }
    
    .floating-btn {
        display: none;
    }
    
    .desktop-sticky-cta {
        display: none;
    }
    
    .checklist-grid {
        grid-template-columns: 1fr;
    }
    
    .services-detailed-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 30px 25px;
    }
    
    .testimonial-text {
        font-size: 20px;
    }
    
    .hero-card {
        padding: 30px;
    }
    
    .gallery-slide[data-images-per-slide="4"] {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .hero-points {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 44px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 34px;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-card {
        padding: 30px;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 16px;
    }
    
    .stat-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-slide[data-images-per-slide="4"],
    .gallery-slide[data-images-per-slide="3"],
    .gallery-slide[data-images-per-slide="2"] {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .gallery-slide[data-images-per-slide="2"] .gallery-item {
        height: 300px;
    }
    
    .gallery-slide[data-images-per-slide="3"] .gallery-item,
    .gallery-slide[data-images-per-slide="4"] .gallery-item {
        height: 250px;
    }
    
    .gallery-arrows,
    .testimonials-arrows {
        padding: 0 10px;
    }
    
    .gallery-arrow,
    .testimonials-arrow {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .testimonial-text {
        font-size: 18px;
        padding-left: 20px;
    }
    
    .testimonial-text:before {
        font-size: 40px;
    }
    
    .hero-card {
        padding: 25px;
    }
    
    .hero-card h3 {
        font-size: 24px;
    }
    
    .map-wrap iframe {
        height: 300px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    .gallery-slide[data-images-per-slide="2"] .gallery-item {
        height: 250px;
    }
    
    .gallery-slide[data-images-per-slide="3"] .gallery-item,
    .gallery-slide[data-images-per-slide="4"] .gallery-item {
        height: 200px;
    }
    
    .testimonial-card {
        padding: 25px 15px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .author-info h4 {
        font-size: 18px;
    }
    
    .testimonials-nav {
        margin-top: 30px;
        gap: 15px;
    }
    
    .testimonials-dot {
        width: 10px;
        height: 10px;
    }
    
    .gallery-tabs {
        flex-direction: column;
    }
    
    .gallery-tab {
        width: 100%;
        text-align: center;
    }
    
    .hero-card {
        padding: 20px;
    }
    
    .stat-card strong {
        font-size: 1.5rem;
    }
    
    .mini-service-list li {
        font-size: 15px;
        padding: 10px 0;
    }
}

/* Стили для about секции */
.eyebrow-tag.dark {
    color: var(--navy);
    border-color: rgba(18,53,91,0.2);
    background: rgba(18,53,91,0.05);
}

.hero-points.dark span {
    background: var(--navy);
    color: var(--white);
}

/* Стили для логотипа */
.brand-text {
    line-height: 1.2;
}

.brand-text strong {
    font-size: 1.3rem;
    display: block;
    margin-bottom: 2px;
    color: var(--navy);
}

.brand-text span {
    font-size: 0.8rem;
    display: block;
    color: var(--gray);
    max-width: 220px;
}

/* Добавляем в конец файла style.css новые классы */

/* Чередование фона секций */
.section:nth-child(even) {
    background-color: var(--gray-light);
}

.section:nth-child(odd) {
    background-color: var(--white);
}

/* Карта */
.map-container {
    margin-top: 40px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--gray-border);
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}

@media (max-width: 768px) {
    .map-container iframe {
        height: 300px;
    }
}

/* Подсказка в форме */
.form-tip {
    color: var(--slate);
    font-size: 0.95rem;
    margin: 15px 0 20px;
    padding: 12px 16px;
    background: rgba(242, 107, 33, 0.05);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--orange);
}

/* Стили для why choose us секции */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.feature-card {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background: var(--white);
    border: 1px solid var(--border);
    padding: 20px;
    border-radius: var(--radius-sm);
    color: var(--dark);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange);
}

.feature-check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    box-shadow: 0 4px 8px rgba(242, 107, 33, 0.3);
}

.feature-content {
    flex: 1;
}

.feature-content strong {
    color: var(--navy);
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.feature-content span {
    color: var(--slate);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Стили для about секции */
.about-section {
    background-color: var(--white);
    padding: 80px 0;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(18,53,91,0.08);
    border: 1px solid rgba(18,53,91,0.15);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--navy);
}

.about-title {
    font-size: 42px;
    color: var(--navy);
    margin-bottom: 20px;
}

.about-text {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 25px;
    line-height: 1.6;
    opacity: 0.95;
}

.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 30px 0 0;
    justify-content: flex-start;
}

.about-badge {
    background: var(--navy);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 4px 8px rgba(18,53,91,0.2);
}

/* Стили для секции с городами */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.city-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 20px;
    text-align: center;
    font-weight: 600;
    color: var(--navy);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.city-card:hover {
    transform: translateY(-3px);
    border-color: var(--orange);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 992px) {
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .cities-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-title {
        font-size: 32px;
    }
    
    .about-text {
        font-size: 18px;
    }
}

/* Добавляем в конец файла style.css */

/* Section subtitle */
.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: -30px auto 40px;
    color: var(--slate);
    font-size: 1.1rem;
    line-height: 1.6;
}

.section-subtitle.centered {
    text-align: center;
    margin: 20px auto;
}

.section-subtitle.small {
    font-size: 0.95rem;
    margin: -10px auto 30px;
}

/* Feature cards - новые стили для галочек */
.feature-card {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background: var(--white);
    border: 1px solid var(--border);
    padding: 20px;
    border-radius: var(--radius-sm);
    color: var(--dark);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange);
}

.feature-check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    box-shadow: 0 4px 8px rgba(242, 107, 33, 0.3);
}

.feature-content {
    flex: 1;
}

.feature-content strong {
    color: var(--navy);
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.feature-content span {
    color: var(--slate);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Service header */
.service-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--orange);
    padding-bottom: 10px;
}

.service-header h3 {
    margin: 0;
    border-bottom: none;
    padding-bottom: 0;
    font-size: 1.2rem;
}

/* Full width button */
.btn-full {
    width: 100%;
    padding: 20px;
    font-size: 18px;
}

/* Popular services */
.popular-services .full-width {
    grid-column: span 2;
}

.two-column-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.two-column-list ul {
    margin: 0;
}

@media (max-width: 768px) {
    .popular-services .full-width {
        grid-column: span 1;
    }
    
    .two-column-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* Contact link */
.contact-link {
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
}

.contact-link:hover {
    color: var(--orange);
    text-decoration: underline;
}

/* Form message */
.form-message {
    text-align: center;
    margin-top: 15px;
    font-size: 16px;
}

/* About badges */
.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 30px 0 0;
    justify-content: flex-start;
}

.about-badge {
    background: var(--navy);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 4px 8px rgba(18,53,91,0.2);
    transition: var(--transition);
}

.about-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(18,53,91,0.3);
}

/* Map container */
.map-container {
    margin-top: 40px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--gray-border);
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}

@media (max-width: 768px) {
    .map-container iframe {
        height: 300px;
    }
}

/* Form tip */
.form-tip {
    color: var(--slate);
    font-size: 0.95rem;
    margin: 15px 0 20px;
    padding: 12px 16px;
    background: rgba(242, 107, 33, 0.05);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--orange);
}

/* Cities grid */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.city-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 20px;
    text-align: center;
    font-weight: 600;
    color: var(--navy);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.city-card:hover {
    transform: translateY(-3px);
    border-color: var(--orange);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 992px) {
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .cities-grid {
        grid-template-columns: 1fr;
    }
}