/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #E53935;
    --primary-dark: #C62828;
    --primary-light: #FF6659;
    --dark: #1a1a1a;
    --dark-gray: #2d2d2d;
    --medium-gray: #666;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background: var(--white);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.highlight {
    color: var(--primary);
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow);
}

.header-top {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.header-top .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon svg {
    width: 50px;
    height: 50px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--medium-gray);
    font-weight: 500;
}

.search-bar {
    display: flex;
    align-items: center;
    background: var(--light-gray);
    border-radius: 50px;
    padding: 8px 8px 8px 20px;
    flex: 1;
    max-width: 500px;
}

.search-icon {
    width: 20px;
    height: 20px;
    color: var(--medium-gray);
    margin-right: 10px;
}

.search-bar input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
}

.search-bar input::placeholder {
    color: var(--medium-gray);
}

.search-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.search-btn:hover {
    background: var(--primary-dark);
}

.header-actions {
    display: flex;
    gap: 10px;
}

.action-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.action-btn svg {
    width: 20px;
    height: 20px;
}

.phone-btn {
    background: var(--light-gray);
    color: var(--dark);
}

.phone-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.whatsapp-btn {
    background: #25D366;
    color: var(--white);
}

.whatsapp-btn:hover {
    background: #128C7E;
}

.email-btn {
    background: var(--primary);
    color: var(--white);
}

.email-btn:hover {
    background: var(--primary-dark);
}

/* Navigation */
.nav {
    background: var(--dark);
}

.nav-list {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.nav-list li a {
    display: block;
    padding: 15px 20px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-list li a:hover {
    background: var(--primary);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slides {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding-top: 120px;
    color: var(--white);
}

.slide-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.slide-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.slider-nav {
    position: absolute;
    bottom: 140px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.slider-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.slider-arrow svg {
    width: 24px;
    height: 24px;
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Quote Form */
.quote-form-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

.quote-form {
    background: var(--white);
    border-radius: 20px 20px 0 0;
    padding: 30px 40px;
    display: flex;
    align-items: flex-end;
    gap: 30px;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.1);
}

.form-group {
    flex: 1;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--medium-gray);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.submit-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.submit-btn svg {
    width: 20px;
    height: 20px;
}

/* Features Tags */
.features-tags {
    background: var(--dark);
    padding: 25px 0;
}

.tags-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.tag {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
}

.tag svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

/* Section Styling */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(229, 57, 53, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-badge svg {
    width: 16px;
    height: 16px;
}

.section-subtitle {
    color: var(--medium-gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 50px;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    text-align: center;
}

.features-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--light-gray);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--medium-gray);
    font-size: 0.95rem;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--light-gray);
    text-align: center;
}

.services-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.stats-bar {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 60px;
    padding: 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.stat {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat svg {
    width: 40px;
    height: 40px;
    color: var(--primary);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: left;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

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

.service-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(229, 57, 53, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(229, 57, 53, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon svg {
    width: 30px;
    height: 30px;
    color: var(--primary);
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
}

.service-link svg {
    width: 18px;
    height: 18px;
    transition: var(--transition);
}

.service-link:hover svg {
    transform: translateX(5px);
}

/* Process Section */
.process-section {
    padding: 100px 0;
    text-align: center;
}

.process-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.steps-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    margin-top: 60px;
}

.step-card {
    background: var(--light-gray);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    flex: 1;
    max-width: 260px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    box-shadow: var(--shadow);
}

.step-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.step-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-card p {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.step-connector {
    display: flex;
    align-items: center;
    padding-top: 80px;
    color: var(--primary);
}

.step-connector svg {
    width: 24px;
    height: 24px;
}

/* Reviews Section */
.reviews-section {
    padding: 100px 0;
    background: var(--light-gray);
    text-align: center;
}

.reviews-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.reviews-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-bottom: 50px;
}

.reviews-rating {
    text-align: center;
}

.rating-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--dark);
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin: 10px 0;
}

.rating-stars svg {
    width: 24px;
    height: 24px;
    color: #FFB400;
}

.rating-text {
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.google-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: var(--shadow);
}

.google-logo {
    width: 74px;
    height: 24px;
}

.google-badge span {
    font-weight: 600;
    color: var(--dark);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    text-align: left;
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.reviewer-info h4 {
    font-size: 1rem;
    font-weight: 700;
}

.review-date {
    font-size: 0.8rem;
    color: var(--medium-gray);
}

.review-stars {
    display: flex;
    gap: 3px;
    margin-left: auto;
}

.review-stars svg {
    width: 16px;
    height: 16px;
    color: #FFB400;
}

.review-text {
    font-size: 0.95rem;
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 15px;
}

.review-service {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border: 2px solid var(--dark);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--dark);
    color: var(--white);
}

.btn-outline svg {
    width: 20px;
    height: 20px;
}

/* Coverage Section */
.coverage-section-new {
    position: relative;
    padding: 100px 0;
    background: var(--dark);
    overflow: hidden;
}

.coverage-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1449824913935-59a10b8d2000?w=1920&q=80') center/cover;
}

.coverage-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,26,0.95) 0%, rgba(26,26,26,0.8) 100%);
}

.coverage-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.coverage-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(229, 57, 53, 0.2);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.coverage-info h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.coverage-info h2 span {
    color: var(--primary);
}

.coverage-info > p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.coverage-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.coverage-stat {
    text-align: center;
}

.coverage-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
}

.coverage-stat .stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.coverage-features-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.cf-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 0.95rem;
}

.cf-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.coverage-cities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.city-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    color: var(--white);
    transition: var(--transition);
}

.city-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.city-card.featured {
    background: var(--primary);
}

.city-card.more {
    background: rgba(229, 57, 53, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.city-icon {
    margin-bottom: 10px;
}

.city-icon svg {
    width: 24px;
    height: 24px;
}

.city-card span {
    font-size: 0.9rem;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    text-align: center;
}

.faq-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background: var(--light-gray);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.05rem;
}

.faq-question svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--medium-gray);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.cta-text {
    text-align: left;
}

.cta-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}

.cta-text h2 .highlight {
    color: rgba(255,255,255,0.9);
}

.cta-text p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
}

.cta-actions {
    display: flex;
    gap: 15px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: var(--white);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-primary svg {
    width: 20px;
    height: 20px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

.btn-secondary svg {
    width: 20px;
    height: 20px;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.trust-item svg {
    width: 20px;
    height: 20px;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
}

.footer-main {
    padding: 80px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-desc {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary);
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-item span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    display: block;
    margin-bottom: 5px;
}

.contact-item a,
.contact-item p {
    color: var(--white);
    font-size: 0.95rem;
}

.contact-item a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--white);
}

/* Responsive */
@media (max-width: 1200px) {
    .services-grid,
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 992px) {
    .header-top .container {
        flex-wrap: wrap;
    }

    .search-bar {
        order: 3;
        max-width: 100%;
        width: 100%;
        margin-top: 15px;
    }

    .nav-list {
        flex-wrap: wrap;
    }

    .slide-content h1 {
        font-size: 2.5rem;
    }

    .quote-form {
        flex-wrap: wrap;
    }

    .stats-bar {
        flex-wrap: wrap;
        gap: 30px;
    }

    .steps-grid {
        flex-wrap: wrap;
    }

    .step-connector {
        display: none;
    }

    .coverage-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .coverage-info h2 {
        font-size: 2.2rem;
    }

    .coverage-features-new {
        justify-content: center;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-text {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .services-grid,
    .reviews-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-slider {
        height: 500px;
    }

    .slide-content {
        padding-top: 80px;
    }

    .slide-content h1 {
        font-size: 2rem;
    }

    .tags-wrapper {
        gap: 15px;
    }

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

    .reviews-stats {
        flex-direction: column;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-trust {
        flex-direction: column;
        gap: 15px;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo-name {
        font-size: 1rem;
    }

    .header-actions {
        gap: 5px;
    }

    .action-btn {
        width: 38px;
        height: 38px;
    }

    .quote-form {
        padding: 20px;
    }

    .section-badge {
        font-size: 0.7rem;
    }

    h2 {
        font-size: 1.8rem !important;
    }

    .coverage-stats {
        flex-direction: column;
        gap: 20px;
    }
}
