/* ----------------- NAVBAR ----------------- */

* {
    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;
}

nav {
    background-color: white;
    padding: 1.5rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.icon-wrapper {
    width: 40px;
    height: 40px;
    background-color: #fde8e7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-icon-nav, .clock-icon {
    width: 20px;
    height: 20px;
    stroke: #B80C09;
    fill: none;
    stroke-width: 2;
}

.nav-text {
    display: flex;
    flex-direction: column;
}

.nav-phone {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2B3036 !important;
    /* color: inherit !important; */
    text-decoration: none !important;
}

.nav-phone a {
    color: #2B3036 !important;
    text-decoration: none !important;
}

.nav-label {
    font-size: 0.875rem;
    color: #686D6C;
}

.nav-title {
    font-size: 1rem;
    font-weight: 700;
    color: #2B3036;
}

@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-right {
        gap: 1.5rem;
    }

    .logo img {
        height: 40px;
    }
}

/* ----------------- 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;
    }
}

/* ----------------- 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;
    }
}

/* ----------------- STICKY WHATSAPP BUTTON ----------------- */
.whatsapp-sticky {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-sticky:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-sticky svg {
    width: 32px;
    height: 32px;
    color: #ffffff;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7);
    }
}

.whatsapp-sticky {
    animation: pulse-whatsapp 2s infinite;
}

@media (max-width: 768px) {
    .whatsapp-sticky {
        width: 56px;
        height: 56px;
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .whatsapp-sticky svg {
        width: 28px;
        height: 28px;
    }
}