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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}



/* ----------------- HERO ----------------- */

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
}

.hero-section {
    background: linear-gradient(135deg, #f5f6f7 0%, #e9ebed 100%);
    padding: 4rem 0;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.hero-content {
    text-align: center;
    width: 100%;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #2B3036;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    color: #686D6C;
    margin-bottom: 2.5rem;
}

.hero-subtitle .highlight {
    color: #B80C09;
    font-weight: 600;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #B80C09;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 1.25rem 3rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(184, 12, 9, 0.3);
    margin-bottom: 1.5rem;
}

.cta-button:hover {
    background-color: #8A0907;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(184, 12, 9, 0.4);
}

.phone-icon {
    width: 28px;
    height: 28px;
    animation: phoneRing 1.5s ease-in-out infinite;
    transform-origin: center;
}

@keyframes phoneRing {
    0%, 100% {
        transform: rotate(0deg);
    }
    10% {
        transform: rotate(-15deg);
    }
    20% {
        transform: rotate(15deg);
    }
    30% {
        transform: rotate(-15deg);
    }
    40% {
        transform: rotate(15deg);
    }
    50% {
        transform: rotate(0deg);
    }
}

.trust-indicators {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.trust-text {
    color: #686D6C;
    font-size: 0.95rem;
    font-weight: 500;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: white;
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    font-size: 0.95rem;
}

.status-dot {
    width: 10px;
    height: 10px;
    background-color: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.location-text {
    color: #2B3036;
    font-weight: 600;
}

.location-area {
    font-weight: 700;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0;
    }

    .cta-button {
        font-size: 1.25rem;
        padding: 1rem 2rem;
    }

    .trust-indicators {
        gap: 0.75rem;
    }
}

/* ----------------- SERVICES SECTION ----------------- */

.services-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #2B3036;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #686D6C;
    margin-bottom: 3.5rem;
    font-weight: 500;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
    background: linear-gradient(135deg, #f5f6f7 0%, #eceef0 100%);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(184, 12, 9, 0.15);
    border-color: #B80C09;
}

.service-btn{
    text-decoration: none;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #B80C09 0%, #8A0907 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 12px rgba(184, 12, 9, 0.3);
}

.service-icon svg {
    width: 34px;
    height: 34px;
    color: #ffffff;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2B3036;
    margin-bottom: 0.75rem;
}

.service-description {
    font-size: 0.95rem;
    color: #686D6C;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.service-link {
    display: inline-block;
    color: #B80C09;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #8A0907;
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .services-section {
        padding: 3rem 0;
    }

    .service-card {
        padding: 2rem;
    }
}

/* ----------------- LOGO SCROLL ----------------- */

.brands-section {
    background: white;
    overflow: hidden;
    padding: 4rem 0;
}

.brands-container {
    max-width: 1400px;
    margin-inline: auto;
    padding-inline: 2rem;
}

.brands-title {
    text-align: center;
    font-size: 1.5rem;
    color: #2B3036;
    margin-bottom: 3rem;
    font-weight: 600;
}

.brands-scroll-wrapper {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
    cursor: grab;
}

.brands-scroll-wrapper.dragging {
    cursor: grabbing;
}

.brands-scroll {
    display: flex;
    will-change: transform;
}

.brands-track {
    display: flex;
    gap: 0;
    flex-shrink: 0;
    align-items: center;
}

.brand-logo {
    height: 160px;
    width: 220px;
    object-fit: contain;
    object-position: center;
    flex-shrink: 0;
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.3s ease;
    user-select: none;
    -webkit-user-drag: none;
    padding: 0 40px;
}

.brand-logo:hover {
    opacity: 1;
    transform: scale(1.08);
}

@media (max-width: 768px) {
    .brands-title {
        font-size: 1.25rem;
        margin-bottom: 2rem;
    }

    .brands-track {
        gap: 0;
    }

    .brand-logo {
        height: 128px;
        width: 176px;
        padding: 0 25px;
    }
}

/* ----------------- ABOUT SECTION ----------------- */

.about-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f6f7 0%, #eceef0 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #2B3036;
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1.05rem;
    color: #686D6C;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #B80C09;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #686D6C;
    font-weight: 500;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(184, 12, 9, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, #fde8e7 0%, #fcd2d0 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: #B80C09;
}

.feature-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #2B3036;
    margin-bottom: 0.25rem;
}

.feature-desc {
    font-size: 0.9rem;
    color: #686D6C;
    line-height: 1.5;
}

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

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .about-section {
        padding: 3rem 0;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ----------------- ZONE SECTION ----------------- */

.zone-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.zones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.zone-card {
    background: linear-gradient(135deg, #f5f6f7 0%, #eceef0 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.zone-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(184, 12, 9, 0.15);
    border-color: #B80C09;
}

.zone-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #B80C09 0%, #8A0907 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 4px 12px rgba(184, 12, 9, 0.3);
}

.zone-icon svg {
    width: 28px;
    height: 28px;
    color: #ffffff;
}

.zone-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #2B3036;
    margin-bottom: 0.5rem;
}

.zone-cities {
    font-size: 0.95rem;
    color: #686D6C;
    line-height: 1.6;
}

.zone-cta {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #fde8e7 0%, #fcd2d0 100%);
    border-radius: 12px;
}

.zone-cta-text {
    font-size: 1.1rem;
    color: #2B3036;
    margin-bottom: 1rem;
    font-weight: 600;
}

.zone-cta-link {
    display: inline-block;
    color: #B80C09;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border-bottom: 2px solid #B80C09;
}

.zone-cta-link:hover {
    color: #8A0907;
    border-color: #8A0907;
}

@media (max-width: 640px) {
    .zone-section {
        padding: 3rem 0;
    }

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

/* ----------------- TESTIMONIALS SECTION ----------------- */

.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f6f7 0%, #eceef0 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(184, 12, 9, 0.15);
    border-color: #B80C09;
}

.testimonial-stars {
    color: #FFB800;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    letter-spacing: 0.25rem;
}

.testimonial-text {
    font-size: 1rem;
    color: #686D6C;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #2B3036;
}

.testimonial-author strong {
    font-weight: 700;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .testimonials-section {
        padding: 3rem 0;
    }

    .testimonial-card {
        padding: 2rem;
    }
}

/* ----------------- FAQ SECTION ----------------- */

.faq-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border: 2px solid #D1D4D9;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #B80C09;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2B3036;
    margin: 0;
}

.faq-toggle {
    font-size: 1.75rem;
    font-weight: 400;
    color: #B80C09;
    min-width: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

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

.faq-answer p {
    padding: 0 2rem 1.5rem 2rem;
    color: #686D6C;
    line-height: 1.7;
    font-size: 1rem;
}

@media (max-width: 640px) {
    .faq-section {
        padding: 3rem 0;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 1.5rem 1.25rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* ----------------- FINAL CTA SECTION ----------------- */

.final-cta-section {
    padding: 5rem 0;
    background-color: #2B3036;
}

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

.final-cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2.5rem;
    letter-spacing: -0.02em;
}

.footer-line {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.footer-info, .footer-contact {
    flex: 1;
}

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

.footer-contact {
    text-align: right;
}

@media (max-width: 768px) {
    .final-cta-section {
        padding: 4rem 0;
    }

    .final-cta-title {
        margin-bottom: 2rem;
    }

    .footer-line {
        margin-top: 3rem;
        padding-top: 1.5rem;
    }

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

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