/* ============ CSS RESET & CUSTOM PROPERTIES ============ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #E63946;
    --primary-dark: #C1121F;
    --primary-light: #FFE5E5;
    --secondary: #1D3557;
    --secondary-light: #264B73;
    --accent: #F4A261;
    --accent-yellow: #FFD166;
    --white: #FFFFFF;
    --off-white: #FFFBF7;
    --gray-bg: #F8F9FA;
    --gray-light: #F0F2F5;
    --gray-text: #6C757D;
    --dark: #1A1A2E;
    --success: #06D6A0;
    --border: #E0E4E8;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 25px rgba(0,0,0,0.08);
    --shadow-lg: 0 16px 40px rgba(0,0,0,0.12);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
    font-weight: 800;
    line-height: 1.2;
    color: var(--secondary);
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============ SCROLL TO TOP ============ */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    border: none;
    cursor: pointer;
    display: none;
    font-size: 1.3rem;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(230,57,70,0.35);
    transition: var(--transition);
}
.scroll-top-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(230,57,70,0.45);
}

/* ============ URGENCY TOP BAR ============ */
.urgency-bar {
    background: var(--secondary);
    color: var(--white);
    text-align: center;
    padding: 12px 20px;
    font-size: 0.95rem;
    font-weight: 600;
}
.urgency-bar .pulse-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #FF4444;
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.6); }
}
.urgency-bar .highlight {
    color: var(--accent-yellow);
    font-weight: 700;
}

/* ============ TOP CONTACT BAR ============ */
.top-contact {
    background: var(--off-white);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    font-size: 0.9rem;
}
.top-contact .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}
.top-contact a, .top-contact span {
    color: var(--dark);
    transition: var(--transition);
    font-weight: 500;
}
.top-contact a:hover { color: var(--primary); }
.top-contact .icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: var(--primary-light);
    border-radius: 50%;
    margin-right: 8px;
    color: var(--primary);
    font-size: 0.85rem;
}
.top-left-group, .top-right-group {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}
.review-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #FFF8E1;
    padding: 7px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    color: #E6A800;
}
.stars-yellow { color: #FFB800; letter-spacing: 1px; }

/* ============ MAIN NAVIGATION ============ */
.main-nav {
    background: var(--white);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--secondary);
    letter-spacing: -0.5px;
}
.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    box-shadow: 0 4px 12px rgba(230,57,70,0.3);
}
.logo span { color: var(--primary); }
.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}
.nav-menu a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark);
    position: relative;
    padding: 6px 0;
    transition: var(--transition);
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }
.nav-menu a:hover,
.nav-menu a.active { color: var(--primary); }
.nav-cta-btn {
    background: var(--primary) !important;
    color: var(--white) !important;
    padding: 14px 28px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    transition: var(--transition);
    box-shadow: 0 6px 18px rgba(230,57,70,0.3);
    letter-spacing: 0.3px;
}
.nav-cta-btn:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(230,57,70,0.45);
}
.nav-cta-btn::after { display: none !important; }
.hamburger-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--secondary);
    background: none;
    border: none;
    padding: 8px;
}

/* ============ HERO SECTION ============ */
.hero-section {
    background: linear-gradient(155deg, #0D1B2A 0%, #1B2838 30%, #1D3557 70%, #0D1B2A 100%);
    color: var(--white);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(230,57,70,0.15) 0%, transparent 70%);
    top: -300px;
    right: -200px;
    border-radius: 50%;
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent-yellow), var(--primary));
}
.hero-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
    letter-spacing: 0.5px;
}
.hero-badge .badge-icon { margin-right: 8px; }
.hero-heading {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}
.hero-heading .text-red { color: var(--primary); }
.hero-heading .text-yellow { color: var(--accent-yellow); }
.hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 35px;
    opacity: 0.9;
    max-width: 520px;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
}
.hero-btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 17px 34px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
    font-family: inherit;
    letter-spacing: 0.3px;
}
.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(230,57,70,0.35);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(230,57,70,0.5);
}
.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.9);
}
.btn-white {
    background: var(--white);
    color: var(--primary) !important;
    border-color: var(--white);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.btn-white:hover {
    background: #F0F0F0;
    transform: translateY(-3px);
}
.hero-trust-row {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.9;
}
.trust-check {
    color: var(--success);
    font-size: 1.1rem;
    font-weight: 700;
}
.hero-image-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.hero-image-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}
.floating-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 6px 20px rgba(230,57,70,0.4);
    animation: float 3s ease-in-out infinite;
    z-index: 2;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.hero-stats {
    display: flex;
    gap: 25px;
    margin-top: 30px;
}
.stat {
    text-align: center;
    background: rgba(255,255,255,0.08);
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    backdrop-filter: blur(5px);
}
.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-yellow);
    display: block;
    line-height: 1;
}
.stat-label {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 5px;
}

/* ============ PROBLEM SECTION ============ */
.problem-solution {
    padding: 100px 0;
    background: var(--white);
}
.section-label {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}
.section-heading {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: 16px;
    color: var(--secondary);
}
.section-heading .accent { color: var(--primary); }
.section-subheading {
    color: var(--gray-text);
    max-width: 650px;
    font-size: 1.1rem;
    line-height: 1.7;
}
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-60 { margin-bottom: 60px; }
.mb-40 { margin-bottom: 40px; }

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}
.problem-card {
    background: #FFF5F5;
    border: 1px solid #FFE0E0;
    border-radius: var(--radius-md);
    padding: 35px 28px;
    transition: var(--transition);
    border-left: 4px solid var(--primary);
}
.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: var(--white);
}
.problem-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: 14px;
}
.problem-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--secondary);
}
.problem-card p {
    color: var(--gray-text);
    font-size: 0.93rem;
}

/* ============ SERVICES SECTION ============ */
.services-section {
    padding: 100px 0;
    background: var(--gray-bg);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}
.service-card-full {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}
.service-card-full:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}
.service-card-img {
    height: 200px;
    overflow: hidden;
}
.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-card-full:hover .service-card-img img {
    transform: scale(1.05);
}
.service-card-full .card-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.service-card-full h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary);
}
.service-card-full p {
    color: var(--gray-text);
    font-size: 0.93rem;
    margin-bottom: 18px;
    flex: 1;
}
.service-card-full .service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}
.service-tag {
    background: var(--primary-light);
    color: var(--primary);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
}
.service-link {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.service-link:hover { gap: 12px; }

/* ============ PROCESS SECTION ============ */
.process-section {
    padding: 100px 0;
    background: var(--white);
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    counter-reset: step;
}
.process-step {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px 28px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border);
}
.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}
.process-step::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(230,57,70,0.3);
}
.process-step .step-icon {
    font-size: 2.8rem;
    margin-bottom: 14px;
    margin-top: 10px;
}
.process-step h4 {
    color: var(--secondary);
    margin-bottom: 8px;
    font-size: 1.05rem;
}
.process-step p {
    color: var(--gray-text);
    font-size: 0.9rem;
}

/* ============ GUARANTEE BANNER ============ */
.guarantee-banner {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: var(--white);
    padding: 70px 0;
    text-align: center;
}
.guarantee-content {
    max-width: 750px;
    margin: 0 auto;
}
.guarantee-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}
.guarantee-banner h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 14px;
}
.guarantee-banner p {
    opacity: 0.9;
    font-size: 1.08rem;
    margin-bottom: 28px;
    line-height: 1.7;
}
.guarantee-badges {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.guarantee-badge-item {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
}

/* ============ TESTIMONIALS ============ */
.testimonials-section {
    padding: 100px 0;
    background: var(--gray-bg);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}
.testimonial-card-full {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 38px 32px;
    position: relative;
    border-top: 4px solid var(--primary);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.testimonial-card-full:hover {
    box-shadow: var(--shadow-md);
}
.testimonial-card-full .quote-icon {
    font-size: 5rem;
    color: var(--primary-light);
    position: absolute;
    top: 5px;
    right: 20px;
    line-height: 1;
    font-family: serif;
    opacity: 0.5;
}
.testimonial-stars {
    color: #FFB800;
    margin-bottom: 14px;
    font-size: 1.2rem;
    letter-spacing: 3px;
}
.testimonial-card-full .testimonial-text {
    font-style: italic;
    margin-bottom: 18px;
    color: var(--dark);
    line-height: 1.8;
    font-size: 0.98rem;
}
.testimonial-card-full .testimonial-author {
    font-weight: 700;
    color: var(--secondary);
    font-size: 0.95rem;
}
.testimonial-card-full .testimonial-city {
    color: var(--gray-text);
    font-size: 0.83rem;
    margin-top: 2px;
}

/* ============ EMERGENCY STRIP ============ */
.emergency-strip {
    background: var(--primary);
    color: var(--white);
    padding: 22px 0;
    text-align: center;
}
.emergency-strip .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}
.emergency-strip .emergency-text {
    font-weight: 700;
    font-size: 1.1rem;
}
.emergency-strip .emergency-phone {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--white);
    transition: var(--transition);
    letter-spacing: 0.5px;
}
.emergency-strip .emergency-phone:hover {
    color: var(--accent-yellow);
    transform: scale(1.05);
}

/* ============ FINAL CTA ============ */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(155deg, #0D1B2A 0%, #1D3557 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.final-cta::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(230,57,70,0.12) 0%, transparent 70%);
    top: -150px;
    left: -150px;
    border-radius: 50%;
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 {
    color: var(--white);
    font-size: 2.6rem;
    margin-bottom: 16px;
}
.final-cta p {
    opacity: 0.9;
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.7;
}
.final-cta .btn-primary {
    font-size: 1.2rem;
    padding: 20px 48px;
}
.cta-urgency {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.95rem;
    margin-top: 22px;
    border: 1px solid rgba(255,255,255,0.15);
}

/* ============ ABOUT PAGE ============ */
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 50px 0;
}
.stat-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 35px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.stat-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.stat-box .stat-number-lg {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary);
    display: block;
}
.stat-box .stat-label-sm {
    color: var(--gray-text);
    font-size: 0.9rem;
    margin-top: 8px;
    font-weight: 600;
}

/* ============ CONTACT PAGE ============ */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    padding: 80px 0;
}
.contact-info-side h2 { margin-bottom: 20px; font-size: 2.2rem; }
.contact-info-side h2 .accent { color: var(--primary); }
.contact-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 22px;
    padding: 22px;
    background: var(--gray-bg);
    border-radius: var(--radius-md);
    transition: var(--transition);
}
.contact-card:hover {
    background: var(--primary-light);
}
.contact-card-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.contact-card h4 { font-size: 1rem; margin-bottom: 4px; color: var(--secondary); }
.contact-card p { color: var(--gray-text); font-size: 0.93rem; }
.form-wrapper {
    background: var(--white);
    padding: 45px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}
.form-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--secondary);
}
.form-wrapper .form-subtitle {
    color: var(--gray-text);
    margin-bottom: 30px;
    font-size: 0.95rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-field {
    margin-bottom: 20px;
}
.form-field label {
    display: block;
    margin-bottom: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--secondary);
}
.form-field label .required { color: var(--primary); }
.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--gray-light);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(230,57,70,0.08);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.submit-btn {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 18px;
    font-size: 1.08rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 0.3px;
    box-shadow: 0 6px 20px rgba(230,57,70,0.3);
}
.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(230,57,70,0.45);
}
.form-trust-row {
    display: flex;
    gap: 18px;
    margin-top: 18px;
    font-size: 0.82rem;
    color: var(--gray-text);
    justify-content: center;
    flex-wrap: wrap;
}
.form-trust-row span { display: flex; align-items: center; gap: 5px; font-weight: 500; }

/* ============ FOOTER ============ */
.site-footer {
    background: var(--secondary);
    color: rgba(255,255,255,0.85);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col h4 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}
.footer-col p, .footer-col li {
    font-size: 0.9rem;
    margin-bottom: 10px;
    line-height: 1.6;
}
.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}
.footer-col ul li a:hover {
    color: var(--accent-yellow);
    padding-left: 6px;
}
.footer-contact-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 12px;
}
.footer-contact-item .fc-icon {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 3px;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
    opacity: 0.7;
}
.footer-bottom a {
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}
.footer-bottom a:hover { color: var(--accent-yellow); }

/* ============ RESPONSIVE ============ */
@media (max-width: 968px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hamburger-toggle { display: block; }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 90px 30px;
        box-shadow: -8px 0 30px rgba(0,0,0,0.15);
        transition: right 0.4s ease;
        gap: 20px;
        z-index: 1001;
    }
    .nav-menu.active { right: 0; }
    
    .hero-section .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-btn-group { justify-content: center; }
    .hero-trust-row { justify-content: center; }
    .hero-image-card { order: -1; max-width: 380px; margin: 0 auto; }
    .hero-image-card img { height: 300px; }
    .hero-section { padding: 60px 0; }
    .hero-stats { justify-content: center; }
    
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-heading { font-size: 2rem; }
    .section-heading { font-size: 1.7rem; }
    .hero-btn-group { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
    .hero-stats { flex-direction: column; gap: 10px; }
    .testimonials-grid { grid-template-columns: 1fr; }
}