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

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

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


/* ----------------- 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;
    }
}

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

.brands-section {
    background: white;
    overflow: hidden;
}

.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;
    }
}

/* @media (max-width: 480px) {
    .brands-section {
        padding: 3rem 0;
    }

    .brand-logo {
        height: 65px;
        width: 90px;
        padding: 0 20px;
    }

    .brands-track {
        gap: 0;
    }
} */

/* ----------------- PROBLEM SECTION ----------------- */


.problems-section {
    /* padding: 5rem 0; */
    padding-top: 2rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}

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

.problems-title::before {
    content: "";
}

.highlight-problem {
    color: #B80C09;
}

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

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

.problem-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #D1D4D9;
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: #B80C09;
}

.problem-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fde8e7 0%, #fcd2d0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.problem-icon svg {
    width: 30px;
    height: 30px;
    color: #B80C09;
}

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

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

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

@media (max-width: 640px) {
    .problems-section {
        /* padding: 3rem 0; */
        padding-top: 1rem;
        padding-bottom: 3rem;
    }

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

    .problem-card {
        padding: 1.5rem;
    }
}

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

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

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

.process-step {
    text-align: center;
}

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

.process-icon svg {
    width: 36px;
    height: 36px;
    color: #ffffff;
}

.process-step-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #2B3036;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.process-step-description {
    font-size: 0.95rem;
    color: #686D6C;
    line-height: 1.6;
}

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

    .process-section {
        padding: 4rem 0;
    }
}

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

    .process-title {
        margin-bottom: 3rem;
    }

    .process-grid {
        gap: 2rem;
    }
}

/* ----------------- WHY CHOOSE SECTION ----------------- */
.why-choose-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.why-choose-header {
    margin-bottom: 3.5rem;
    text-align: center;
}

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

.why-choose-subtitle {
    font-size: 1.1rem;
    color: #686D6C;
    font-weight: 500;
}

.highlight-text {
    color: #2B3036;
    font-weight: 700;
}

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

.why-choose-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;
}

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

.why-choose-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);
}

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

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

.why-choose-card-description {
    font-size: 0.95rem;
    color: #686D6C;
    line-height: 1.6;
}

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

    .why-choose-section {
        padding: 4rem 0;
    }
}

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

    .why-choose-header {
        margin-bottom: 2.5rem;
    }

    .why-choose-card {
        padding: 2rem;
    }
}

/* ----------------- CONTACT SECTION ----------------- */

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

/* Contact Section Styles */
.contact-section {
    background: linear-gradient(135deg, #f5f6f7 0%, #eceef0 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(139, 0, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.contact-info {
    color: #2c3e50;
}

.contact-info h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.contact-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background-color: #8B0000;
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
}

.contact-cta:hover {
    background-color: #a00000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.4);
}

.phone-icon {
    width: 24px;
    height: 24px;
    fill: white;
}

.contact-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-top: 1.5rem;
}

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

/* Multi-step Form Styles */
.progress-container {
    margin-bottom: 2rem;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #8B0000 0%, #c41e1e 100%);
    border-radius: 10px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-text {
    text-align: center;
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: #5a6c7d;
    font-weight: 500;
}

.form-content {
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step {
    display: none;
    animation: fadeIn 0.4s ease-in;
    width: 100%;
}

.step.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.option-card {
            background: #f8f9fa;
            border: 2px solid #ddd;
            border-radius: 10px;
            padding: 1.25rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            font-size: 0.95rem;
            font-weight: 500;
            color: #2c3e50;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction:  column;
            align-items: center;
            gap: 1rem;
        }

        .option-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(139, 0, 0, 0.05), transparent);
            transition: left 0.5s ease;
        }

        .option-card:hover {
            border-color: #8B0000;
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(139, 0, 0, 0.1);
            background: white;
        }

        .option-card:hover::before {
            left: 100%;
        }

        .option-card:hover .option-icon {
            color: #8B0000;
            transform: scale(1.1);
        }

        .option-card.selected {
            background: #8B0000;
            border-color: #8B0000;
            color: white;
            transform: scale(1.02);
        }

        .option-card.selected .option-icon {
            color: white;
        }

        .option-icon {
            height: 60px;
            width: auto;
            color: #2c3e50;
            transition: all 0.3s ease;
        }

        .option-text {
            display: block;
        }

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group label .required {
    color: #8B0000;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B0000;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
}

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

.button-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

.btn-primary {
    background: #8B0000;
    color: white;
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.2);
}

.btn-primary:hover:not(:disabled) {
    background: #a00000;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(139, 0, 0, 0.3);
}

.btn-secondary {
    background: white;
    color: #2c3e50;
    border: 2px solid #ddd;
}

.btn-secondary:hover {
    border-color: #8B0000;
    color: #8B0000;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.success-message {
    text-align: center;
    padding: 2rem 1rem;
}

.success-message .icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.success-message h3 {
    font-size: 1.75rem;
    color: #8B0000;
    margin-bottom: 1rem;
}

.success-message p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.6;
}

.summary-box {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-left: 4px solid #8B0000;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid #ddd;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-label {
    font-weight: 600;
    color: #2c3e50;
}

.summary-value {
    color: #5a6c7d;
}

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

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

    .contact-info h2 {
        font-size: 2.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

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

    .contact-info h2 {
        font-size: 2rem;
    }

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

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .form-content {
        min-height: 520px;
    }

    .question-title {
        font-size: 1.25rem;
    }

    .button-container {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}


/* ----------------- 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-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-align: left;
}

@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-text {
        text-align: center;
    }
}