/* Design system: 8px grid, typography, colors */
:root {
    --brand-dark: #2d4a44;
    --brand: #3a5c55;
    --brand-accent: #45a08a;
    --brand-teal: #45a08a;
    /* 8px grid */
    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 32px;
    --space-5: 40px;
    --space-6: 48px;
    --space-8: 64px;
    --space-10: 80px;
    --space-12: 96px;
    /* Typography scale */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.5rem;
    --text-5xl: 3rem;
    /* Cards & shadows */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Header scroll animation */
header {
    transition: background-color 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease, transform 0.25s ease;
}

/* Keep navbar always visible while scrolling */
header.sticky {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
}

header.header-scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08) !important;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transform: translateY(0);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #333;
    padding-top: 80px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

/* Home keeps overlay hero look */
body.page-index {
    padding-top: 0;
}

main {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
    position: relative;
}

section {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}
.hero {
    background: linear-gradient(135deg, #45a08a 0%, #2d4a44 100%);
    color: white;
    padding: 100px 0;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    max-width: 700px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    background: #3a5c55;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}

.btn:hover {
    background: #2d4a44;
}

.services {
    padding: 80px 0;
    text-align: center;
}

.services h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.underline {
    width: 60px;
    height: 3px;
    background: #45a08a;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }
}

/* Стили для страницы услуг */
.services-page {
    padding: 80px 0;
}

.services-page h1 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #2d4a44;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.service-card .service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #f5f5f5;
}

.service-card .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card .service-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card .service-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2d4a44;
}

.service-card .service-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    flex-grow: 1;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-page h1 {
        font-size: 28px;
    }
}

/* ============================================
   ГЛАВНАЯ СТРАНИЦА - НОВЫЕ СЕКЦИИ
   ============================================ */

/* Hero Section: по умолчанию (без фото) */
.hero-section {
    background: #2d4a44;
    color: white;
    padding: 100px 0;
}

/*
 * Hero: natural, trustworthy feel
 * — Gradient overlay (no flat blue)
 * — Brighter/contrast on bg image via .hero-bg filter
 * — CTA contrast: darker teal + shadow
 *
 * Overlay gradient (current):
 *   0%   rgba(0,0,0,0.12)  — light at top, sky visible
 *   45%  rgba(0,0,0,0.28)
 *   100% rgba(0,0,0,0.52)  — darker at bottom, text area
 *
 * Alternative gradients (paste into .hero-overlay background):
 *   Warmer: linear-gradient(180deg, rgba(20,30,40,0.2) 0%, rgba(20,30,40,0.5) 100%);
 *   Cooler: linear-gradient(180deg, rgba(15,35,55,0.15) 0%, rgba(15,35,55,0.45) 100%);
 *
 * Accessibility: White text on ~0.5 dark overlay ≈ 8:1+ contrast (WCAG AAA).
 * CTA #0a7a85 on dark ≈ 4.5:1+ (AA). Use focus-visible outline for keyboard.
 */

/* Fallback if .hero-bg not present */
.hero-section.hero-with-photo {
    position: relative;
    min-height: 85vh;
    padding: 120px 0 100px;
    background-color: #1a3a5c;
    display: flex;
    align-items: center;
    color: #fff;
}

/* Home override: keep hero shorter so trust row appears earlier */
body.page-index .hero-section.hero-with-photo {
    min-height: 630px !important;
    height: 630px !important;
    padding: 0 !important;
}

/* Background image layer — brightness/contrast for a more natural look */
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(1.08) contrast(1.06);
    z-index: 0;
}

/* Hero slideshow */
.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    filter: brightness(1.05) contrast(1.05);
}

.hero-slide.is-active {
    opacity: 1;
}

.hero-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, transform 0.3s;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.hero-dot.is-active {
    background: #fff;
    transform: scale(1.3);
}

/* Градиент как на референсе: сильнее сверху (под навбар), в середине светлее — видно небо и горы */
/* Оверлей: затемнение в зоне текста — надпись читается на любом фото */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.28) 0%,
        rgba(0, 0, 0, 0.42) 35%,
        rgba(0, 0, 0, 0.52) 65%,
        rgba(0, 0, 0, 0.58) 100%
    );
    z-index: 1;
}

/* Optional: warmer overlay — add class "hero-overlay--warm" to overlay div */
.hero-overlay--warm {
    background: linear-gradient(
        180deg,
        rgba(25, 35, 45, 0.15) 0%,
        rgba(25, 35, 45, 0.4) 100%
    );
}

.hero-section.hero-with-photo .hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-section.hero-with-photo .hero-content {
    max-width: 640px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.hero-section.hero-with-photo .hero-content {
    grid-template-columns: 1fr;
    max-width: 100%;
}

.hero-text {
    max-width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.15;
    max-width: 100%;
    word-wrap: break-word;
    letter-spacing: -0.02em;
}

.hero-section.hero-with-photo .hero-text h1 {
    font-size: clamp(40px, 5.5vw, 64px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6), 0 4px 12px rgba(0, 0, 0, 0.4);
}

.hero-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 100%;
    word-wrap: break-word;
}

.hero-section.hero-with-photo .hero-text p,
.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: var(--space-4);
    opacity: 1;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.35);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    flex-wrap: wrap;
    margin-top: var(--space-4);
    margin-bottom: var(--space-3);
    font-size: 1rem;
    opacity: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-trust-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
}

.hero-secondary-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-top: var(--space-3);
}

.hero-secondary-links {
    margin-top: var(--space-2);
    font-size: 1rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-secondary-links a {
    color: #fff;
    text-decoration: underline;
    margin-right: var(--space-3);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-secondary-links a:hover {
    color: #fff;
}

.hero-buttons {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
    max-width: 100%;
    align-items: center;
}

/* CTA: stronger contrast on gradient hero — darker teal + edge shadow */
.btn-hero-primary {
    background: #0a7a85;
    color: #fff;
    padding: var(--space-2) var(--space-5);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1.125rem;
    transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
    display: inline-block;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25), 0 1px 0 rgba(255, 255, 255, 0.1) inset;
}

.btn-hero-primary:hover {
    background: #086870;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(255, 255, 255, 0.1) inset;
}

.btn-hero-primary:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.btn-hero-outline {
    background: transparent;
    color: #fff;
    padding: var(--space-2) var(--space-4);
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.25s;
    display: inline-block;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

.btn-primary {
    background: #3a5c55;
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
    transition: background 0.3s;
    display: inline-block;
    white-space: nowrap;
    box-sizing: border-box;
    max-width: 100%;
    flex: 0 0 auto;
}

.btn-primary:hover {
    background: #2d4a44;
}

.btn-outline {
    background: transparent;
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-block;
    white-space: nowrap;
    box-sizing: border-box;
    max-width: 100%;
    flex: 0 0 auto;
}

.btn-outline:hover {
    background: white;
    color: #2d4a44;
}

.btn-call {
    background: transparent;
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-block;
    white-space: nowrap;
    box-sizing: border-box;
    max-width: 100%;
    flex: 0 0 auto;
}

.btn-call:hover {
    background: white;
    color: #2d4a44;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.truck-illustration {
    width: 100%;
    max-width: 100%;
    height: auto;
    box-sizing: border-box;
}

.truck-illustration img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.truck-illustration > div {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
}

/* Statistics Section */
.stats-section {
    background: white;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-size: 42px;
    font-weight: bold;
    color: #2d4a44;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Logo strip */
.logo-strip {
    background: #f8fafc;
    padding: var(--space-6) var(--space-2);
    text-align: center;
}

.logo-strip-label {
    font-size: var(--text-sm);
    color: #64748b;
    margin-bottom: var(--space-3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.logo-strip-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-4);
    align-items: center;
}

.logo-strip-item {
    font-weight: 600;
    font-size: var(--text-lg);
    color: var(--brand-dark);
}

/* Services 4-card grid — виджет покрупнее */
.services-section {
    padding: var(--space-10) var(--space-2);
}

.services-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
    margin-top: var(--space-6);
}

.service-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    box-shadow: var(--shadow-sm);
    border: 1px solid #e2e8f0;
    transition: box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.service-card:focus-within {
    outline: 2px solid var(--brand-teal);
    outline-offset: 2px;
}

.service-card-icon {
    width: 56px;
    height: 56px;
    margin-bottom: var(--space-3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-icon img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.service-card-icon-placeholder {
    width: 56px;
    height: 56px;
    background: var(--brand-teal);
    border-radius: var(--radius-sm);
    opacity: 0.2;
}

.service-card h3 {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--brand-dark);
    margin-bottom: var(--space-2);
    line-height: 1.3;
}

.service-card p {
    font-size: var(--text-base);
    color: #64748b;
    line-height: 1.6;
    margin-bottom: var(--space-3);
}

.service-card-link {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--brand-teal);
    text-decoration: none;
}

.service-card-link:hover {
    text-decoration: underline;
}

.service-card-link:focus-visible {
    outline: 2px solid var(--brand-teal);
    outline-offset: 2px;
}

/* Trust / Credibility section */
.trust-section {
    background: #f8fafc;
    padding: var(--space-10) var(--space-2);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
    max-width: 800px;
    margin: 0 auto var(--space-4);
}

.trust-card {
    text-align: center;
    padding: var(--space-4);
}

.trust-number {
    display: block;
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: var(--space-1);
}

.trust-label {
    font-size: var(--text-sm);
    color: #64748b;
    margin: 0;
}

.trust-footer {
    text-align: center;
    font-size: var(--text-sm);
    color: #64748b;
    margin: 0;
}

/* FAQ section */
.faq-section {
    padding: var(--space-10) var(--space-2);
    background: #fff;
}

.faq-section h2 {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: var(--space-2);
}

.faq-list {
    max-width: 640px;
    margin: var(--space-5) auto 0;
    list-style: none;
    padding: 0;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
}

.faq-question {
    width: 100%;
    padding: var(--space-3) 0;
    text-align: left;
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--brand-dark);
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--brand-teal);
}

.faq-question:focus-visible {
    outline: 2px solid var(--brand-teal);
    outline-offset: 2px;
}

.faq-question[aria-expanded="true"]::after {
    content: "−";
    font-size: 1.25rem;
}

.faq-question[aria-expanded="false"]::after {
    content: "+";
    font-size: 1.25rem;
}

.faq-answer {
    padding: 0 0 var(--space-3);
    margin: 0;
    font-size: var(--text-sm);
    line-height: 1.6;
    color: #475569;
}

.faq-answer[hidden] {
    display: none;
}

/* About Section */
.about-section {
    background: white;
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.chart-illustration {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.chart-illustration svg {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

.about-text h2 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.about-text .underline {
    width: 60px;
    height: 3px;
    background: #45a08a;
    margin: 0 0 30px 0;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
    margin: 30px 0;
}

.features-list li {
    font-size: 16px;
    color: #555;
    margin-bottom: 12px;
    padding-left: 5px;
}

/* How We Work Section */
.how-we-work-section {
    background: #f3f4f6;
    padding: 100px 0;
    text-align: center;
    scroll-margin-top: 80px; /* Отступ для фиксированного хедера */
}

.how-we-work-section h2 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
}

.how-we-work-section .underline {
    margin: 0 auto 20px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.step-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    text-align: left;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: #45a08a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.step-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.step-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

/* Services Section */
.services-section {
    background: white;
    padding: 100px 0;
    text-align: center;
    scroll-margin-top: 80px; /* Отступ для фиксированного хедера */
}

.services-section h2 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.services-section .underline {
    margin: 0 auto 20px;
}

.services-section .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
    text-align: left;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.service-item {
    background: white;
    border-radius: 12px;
    padding: 35px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #45a08a, #3a5c55);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #45a08a;
}

.service-item:hover::before {
    opacity: 1;
}

.service-icon {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img,
.service-icon svg {
    width: 60px;
    height: 60px;
}

.service-item h3 {
    font-size: 20px;
    font-weight: bold;
    color: #2d4a44;
    margin-bottom: 12px;
}

.service-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    flex-grow: 1;
}

/* Why Choose Us Section */
.why-choose-section {
    background: #f3f4f6;
    padding: 100px 0;
    text-align: center;
}

.why-choose-section h2 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.why-choose-section .underline {
    margin: 0 auto 20px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.advantage-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.advantage-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.advantage-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.advantage-card h3 {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.advantage-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

/* Testimonials Section */
.testimonials-section {
    background: white;
    padding: 100px 0;
    text-align: center;
}

.testimonials-section h2 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.testimonials-section .underline {
    margin: 0 auto 20px;
}

.testimonials-grid {
    display: grid;
    gap: 30px;
    margin-top: 50px;
    text-align: left;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.testimonials-grid--split {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    align-items: start;
}

.testimonial-card {
    background: #f3f4f6;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #45a08a;
}

.stars {
    color: #fbbf24;
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial-card__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
}

.testimonial-card__head .stars {
    margin-bottom: 0;
    flex-shrink: 0;
    line-height: 1.2;
}

.testimonial-card__author-corner {
    text-align: right;
    flex-shrink: 0;
    max-width: min(260px, 55%);
}

.testimonial-card__author-corner strong {
    display: block;
    font-size: 16px;
    color: #333;
    font-style: normal;
    font-weight: 600;
    line-height: 1.3;
}

.testimonial-card__author-corner span {
    display: block;
    font-size: 13px;
    color: #666;
    margin-top: 4px;
    line-height: 1.35;
}

.testimonial-card__quote {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin: 0;
    font-style: italic;
    white-space: pre-line;
}

.testimonial-card--combined__stars {
    margin-bottom: 20px;
}

.testimonial-snippet:not(:first-of-type) {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid #e5e7eb;
}

.testimonial-snippet__quote {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin: 0 0 14px 0;
    font-style: italic;
}

.testimonial-snippet__meta {
    text-align: right;
}

.testimonial-snippet__meta strong {
    display: block;
    font-size: 16px;
    color: #333;
    font-style: normal;
    font-weight: 600;
}

.testimonial-snippet__meta span {
    display: block;
    font-size: 14px;
    color: #666;
    margin-top: 4px;
}

@media (max-width: 480px) {
    .testimonial-card__head {
        flex-wrap: wrap;
        gap: 12px;
    }

    .testimonial-card__author-corner {
        margin-left: auto;
        max-width: 100%;
        text-align: right;
    }
}

/* Partners Section */
.partners-section {
    background: white;
    padding: 100px 0;
    text-align: center;
}

.partners-section h2 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.partners-section .underline {
    margin: 0 auto 20px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.partner-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 40px 20px;
    font-size: 24px;
    font-weight: bold;
    color: #45a08a;
    transition: all 0.3s;
}

.partner-card:hover {
    border-color: #45a08a;
    box-shadow: 0 2px 10px rgba(69, 160, 138, 0.2);
}

.partners-footer {
    margin-top: 30px;
    font-size: 14px;
    color: #666;
}

/* CTA Section */
.cta-section {
    background: #45a08a;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.btn-white {
    background: white;
    color: #45a08a;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s;
    border: 2px solid white;
    display: inline-block;
    white-space: nowrap;
    box-sizing: border-box;
    max-width: 100%;
}

.btn-white:hover {
    background: transparent;
    color: white;
}

/* Footer */
footer {
    background: #374151;
    color: white;
    padding: 60px 0 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

footer .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.8;
    color: #d1d5db;
    margin-bottom: 10px;
}

.footer-column a {
    display: block;
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #4b5563;
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: #9ca3af;
}

.footer-bottom a {
    color: #9ca3af;
    text-decoration: none;
    margin: 0 10px;
}

.footer-bottom a:hover {
    color: white;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-image {
        order: -1;
    }

    .hero-section:not(.hero-with-photo) .hero-text h1 {
        font-size: 40px;
    }

    .hero-section.hero-with-photo .hero-text h1 {
        font-size: 36px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .steps-grid,
    .advantages-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    footer .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .services-section .services-grid,
    .services-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Contact Page Styles */
.contact-page {
    padding: 80px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-block {
    background: #f3f4f6;
    padding: 30px;
    border-radius: 10px;
}

.info-icon {
    font-size: 32px;
    margin-bottom: 15px;
    color: #45a08a;
}

.info-block h3 {
    font-size: 18px;
    font-weight: bold;
    color: #2d4a44;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.info-block p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper h2 {
    font-size: 28px;
    font-weight: bold;
    color: #2d4a44;
    margin-bottom: 10px;
}

.form-note {
    font-size: 12px;
    color: #666;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-label {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #555;
}

.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #45a08a;
}

.name-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s;
    background: white;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #45a08a;
    box-shadow: 0 0 0 3px rgba(69, 160, 138, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form .btn-primary {
    align-self: flex-start;
    margin-top: 10px;
}

/* Messages/Alerts */
.messages {
    margin-bottom: 25px;
}

.alert {
    padding: 15px 20px;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 15px;
    border-left: 4px solid;
}

.alert-success {
    background-color: #d1fae5;
    border-color: #0d8b96;
    color: #065f46;
}

.alert-error {
    background-color: #fee2e2;
    border-color: #ef4444;
    color: #991b1b;
}

.alert-info {
    background-color: #dbeafe;
    border-color: #45a08a;
    color: #3a5c55;
}

.alert-warning {
    background-color: #fef3c7;
    border-color: #f59e0b;
    color: #92400e;
}

@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    

    .container {
        padding: 0 15px;
        width: 100%;
        box-sizing: border-box;
    }

    * {
        box-sizing: border-box;
    }

    

    .hero-section {
        padding: 60px 0;
    }

    .hero-section.hero-with-photo {
        min-height: 75vh;
        padding: 100px 0 60px;
    }

    .hero-text h1 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .hero-text p {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        flex-wrap: wrap;
    }

    .btn-primary,
    .btn-outline,
    .btn-call,
    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding: 15px 20px;
        box-sizing: border-box;
    }
    
    .stats-section {
        padding: 40px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-card {
        padding: 20px;
    }

    .stat-number {
        font-size: 36px;
    }
    
    .about-section {
        padding: 60px 0;
    }

    .about-text h2 {
        font-size: 28px;
    }

    .about-text p {
        font-size: 15px;
    }
    
    .steps-grid,
    .advantages-grid,
    .testimonials-grid,
    .partners-grid,
    .services-section .services-grid,
    .services-grid-4 {
        grid-template-columns: 1fr;
        gap: var(--space-3);
        margin-top: var(--space-4);
    }

    .services-section {
        padding: var(--space-8) var(--space-2);
    }

    .service-card {
        padding: var(--space-4);
    }

    .service-card h3 {
        font-size: var(--text-lg);
    }

    .service-card p {
        font-size: var(--text-sm);
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .how-we-work-section,
    .services-section,
    .why-choose-section,
    .testimonials-section,
    .partners-section {
        padding: 60px 0;
    }

    .how-we-work-section h2,
    .services-section h2,
    .why-choose-section h2,
    .testimonials-section h2,
    .partners-section h2 {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .step-card,
    .advantage-card,
    .testimonial-card {
        padding: 25px 20px;
    }
    
    footer {
        padding: 40px 0 15px;
    }

    footer .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-column {
        text-align: center;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-section h2 {
        font-size: 32px;
    }

    .cta-section p {
        font-size: 16px;
    }
    
    .name-fields,
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
}

/* ============================================
   ABOUT US PAGE
   ============================================ */

.about-page {
    padding: 100px 0 80px;
    background: white;
}

.about-hero {
    text-align: center;
    margin-bottom: 60px;
}

.about-hero h1 {
    font-size: 48px;
    font-weight: bold;
    color: #2d4a44;
    margin-bottom: 15px;
}

.about-subtitle {
    font-size: 20px;
    color: #666;
}

.about-main-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-section-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-section-block.reverse {
    direction: rtl;
}

.about-section-block.reverse > * {
    direction: ltr;
}

.about-image-block {
    width: 100%;
}

.about-image-placeholder {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-image-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text-block h2 {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.about-text-block .underline {
    width: 60px;
    height: 3px;
    background: #45a08a;
    margin-bottom: 25px;
}

.about-text-block p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-text-block .features-list {
    list-style: none;
    margin: 25px 0;
}

.about-text-block .features-list li {
    font-size: 16px;
    color: #555;
    margin-bottom: 12px;
    padding-left: 5px;
}

/* Values Section */
.about-values {
    text-align: center;
    margin: 80px 0;
    padding: 60px 0;
    background: #f9fafb;
    border-radius: 12px;
}

.about-values h2 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.about-values .underline {
    width: 60px;
    height: 3px;
    background: #45a08a;
    margin: 0 auto 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.value-card h3 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Statistics Section */
.about-stats-section {
    text-align: center;
    margin: 80px 0;
    padding: 60px 0;
}

.about-stats-section h2 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.about-stats-section .underline {
    width: 60px;
    height: 3px;
    background: #45a08a;
    margin: 0 auto 50px;
}

.stats-grid-about {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item-about {
    padding: 30px;
    background: #f9fafb;
    border-radius: 10px;
    transition: transform 0.3s;
}

.stat-item-about:hover {
    transform: translateY(-5px);
}

.stat-number-about {
    font-size: 42px;
    font-weight: bold;
    color: #2d4a44;
    margin-bottom: 10px;
}

.stat-label-about {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Team Section */
.about-team {
    margin: 80px 0;
    padding: 60px 0;
    background: #f9fafb;
    border-radius: 12px;
}

.about-team h2 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 15px;
}

.about-team .underline {
    width: 60px;
    height: 3px;
    background: #45a08a;
    margin: 0 auto 50px;
}

.team-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-feature {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.team-feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.team-feature h3 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 12px;
}

.team-feature p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* CTA Section */
.about-cta {
    text-align: center;
    margin: 80px 0;
    padding: 60px;
    background: linear-gradient(135deg, #45a08a 0%, #2d4a44 100%);
    border-radius: 12px;
    color: white;
}

.about-cta h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    color: white;
}

.about-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.about-cta .btn-primary {
    background: white;
    color: #45a08a;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: bold;
}

.about-cta .btn-primary:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 1024px) {
    .about-section-block {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-section-block.reverse {
        direction: ltr;
    }
    
    .values-grid,
    .team-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid-about {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive - About Page */
@media (max-width: 1024px) {
    .about-page {
        padding: 80px 0 60px;
    }

    .about-section-block {
        gap: 40px;
    }

    .about-text-block h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .about-page {
        padding: 70px 0 50px;
    }

    .about-hero {
        margin-bottom: 40px;
    }

    .about-hero h1 {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .about-subtitle {
        font-size: 16px;
    }

    .about-section-block {
        margin-bottom: 50px;
    }

    .about-text-block h2 {
        font-size: 24px;
    }

    .about-text-block p {
        font-size: 15px;
    }
    
    .about-values,
    .about-stats-section,
    .about-team {
        margin: 50px 0;
        padding: 40px 20px;
    }

    .about-values h2,
    .about-stats-section h2,
    .about-team h2 {
        font-size: 28px;
    }
    
    .values-grid,
    .team-features,
    .stats-grid-about {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .value-card,
    .team-feature,
    .stat-item-about {
        padding: 25px 20px;
    }
    
    .about-cta {
        padding: 40px 20px;
        margin: 50px 0;
    }
    
    .about-cta h2 {
        font-size: 24px;
    }

    .about-cta p {
        font-size: 16px;
    }
}

/* ============================================
   REQUEST A QUOTE PAGE
   ============================================ */

.quote-page {
    padding: 100px 0 80px;
    background: white;
}

.quote-header {
    text-align: center;
    margin-bottom: 50px;
}

.quote-header h1 {
    font-size: 48px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
}

.quote-underline {
    position: relative;
    display: inline-block;
}

.quote-underline::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 4px;
    background: #45a08a;
}

.quote-intro {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.quote-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

/* Quote Form */
.quote-form-wrapper {
    background: #f9fafb;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.quote-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quote-form .form-label {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quote-form input[type="text"],
.quote-form input[type="email"],
.quote-form input[type="tel"],
.quote-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: white;
}

.quote-form input[type="text"]:focus,
.quote-form input[type="email"]:focus,
.quote-form input[type="tel"]:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: #45a08a;
    box-shadow: 0 0 0 3px rgba(69, 160, 138, 0.1);
}

.quote-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Services Checkboxes */
.services-checkboxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    padding: 12px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    transition: all 0.3s;
}

.checkbox-label:hover {
    border-color: #45a08a;
    background: #f0f7ff;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #45a08a;
    margin-top: 2px;
    flex-shrink: 0;
}

.checkbox-label span {
    font-size: 14px;
    color: #333;
    line-height: 1.4;
}

.no-services {
    color: #666;
    font-size: 14px;
    font-style: italic;
}

/* Quote Benefits */
.quote-benefits {
    background: #f9fafb;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.quote-benefits h2 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    background: #0d8b96;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-content {
    flex: 1;
}

.benefit-content h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.benefit-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Contact Info (right column on Contact Us page) */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    background: #2d4a44;
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-item h3 {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin: 0 0 4px;
}

.contact-info-item p {
    font-size: 14px;
    color: #555;
    margin: 0;
    line-height: 1.5;
}

.contact-info-item a {
    color: #2d4a44;
    text-decoration: none;
}

.contact-info-item a:hover {
    text-decoration: underline;
}

.contact-hours {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 20px;
}

.contact-hours h3 {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px;
}

.contact-hours p {
    font-size: 14px;
    color: #555;
    margin: 0 0 4px;
    line-height: 1.5;
}

.contact-hours-note {
    margin-top: 8px !important;
    font-style: italic;
    color: #2d4a44 !important;
    font-weight: 500;
}

/* Google Maps embed */
.contact-map {
    margin-top: 50px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.contact-map iframe {
    display: block;
}

.quote-form .btn-primary {
    background: #45a08a;
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    align-self: flex-start;
    margin-top: 10px;
}

.quote-form .btn-primary:hover {
    background: #556b2f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(69, 160, 138, 0.3);
}

/* Responsive */
/* Responsive - Quote Page */
@media (max-width: 1024px) {
    .quote-page {
        padding: 80px 0 60px;
    }

    .quote-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-checkboxes {
        grid-template-columns: 1fr;
    }

    .quote-header h1 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .quote-page {
        padding: 70px 0 50px;
    }
    
    .quote-header {
        margin-bottom: 30px;
    }

    .quote-header h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .quote-intro {
        font-size: 14px;
        padding: 0 15px;
    }
    
    .quote-content {
        gap: 25px;
    }

    .quote-form-wrapper,
    .quote-benefits {
        padding: 20px;
    }

    .quote-benefits h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .benefits-list {
        gap: 20px;
    }

    .benefit-item {
        gap: 12px;
    }

    .benefit-content h3 {
        font-size: 16px;
    }

    .benefit-content p {
        font-size: 13px;
    }
    
    .quote-form .btn-primary {
        width: 100%;
        padding: 15px;
    }

    .quote-form input[type="text"],
    .quote-form input[type="email"],
    .quote-form input[type="tel"],
    .quote-form textarea {
        font-size: 16px; /* Предотвращает zoom на iOS */
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
        width: 100%;
        box-sizing: border-box;
    }

    .logo {
        font-size: 14px;
    }

    .hero-text {
        width: 100%;
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 24px;
        max-width: 100%;
        word-wrap: break-word;
    }

    .hero-text p {
        font-size: 14px;
        max-width: 100%;
        word-wrap: break-word;
    }

    .hero-buttons {
        width: 100%;
        max-width: 100%;
    }

    .btn-primary,
    .btn-outline,
    .btn-call,
    .btn-white {
        width: 100%;
        max-width: 100%;
        padding: 15px;
        box-sizing: border-box;
    }

    .quote-header h1 {
        font-size: 28px;
    }

    .quote-form-wrapper,
    .quote-benefits {
        padding: 15px;
    }

    .about-hero h1 {
        font-size: 24px;
    }

    .step-card,
    .advantage-card,
    .testimonial-card {
        padding: 20px 15px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
        top: -12px;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    footer {
        padding: 30px 0 15px;
    }

    .footer-bottom {
        font-size: 11px;
        padding-top: 15px;
    }
}

