/* Base Styles */
.homepage-design {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.container-home-custom {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Slider Section */
.hero-slider-section {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    margin: 0 20px;
}

.hero-slider {
    position: relative;
    width: 100%;
    min-height: 400px;
    border-radius: 16px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 400px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    min-height: 400px;
}

.hero-slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 20px 0;
}

.hero-slide-text {
    color: white;
    text-align: left;
    padding-left: 40px;
}

.hero-slide-text h1,
.hero-slide-text h2.hero-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
}

.hero-slide-description {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
}

.hero-slide-description .hero-highlight {
    text-decoration: underline;
    font-weight: 600;
}

.hero-slide-cta {
    margin-top: 28px;
}

.hero-contact-actions {
    display: flex;
    gap: 12px;
}

.hero-contact-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-contact-badge svg {
    flex-shrink: 0;
}

.hero-contact-badge--call {
    background: white;
    color: #01111E;
}

.hero-contact-badge--call:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.hero-contact-badge--whatsapp {
    background: #25d366;
    color: white;
}

.hero-contact-badge--whatsapp:hover {
    background: #1ebe58;
    transform: translateY(-2px);
}

.hero-contact-badge--cta {
    background: #2ec4b6;
    color: white;
}

.hero-contact-badge--cta:hover {
    background: #25a99d;
    transform: translateY(-2px);
    color: white;
}

.hero-slide-image {
    position: relative;
    width: 500px;
    height: 275px;
    border-radius: 16px;
    overflow: hidden;
    margin-left: auto;
}

.hero-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

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

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

.hero-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero-slider-dot:hover {
    border-color: white;
}

.hero-slider-dot.active {
    background: transparent;
    border-color: white;
    width: 32px;
    border-radius: 6px;
}

.hero-slider-dot.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: white;
    border-radius: 4px;
    animation: dotProgress 5s linear forwards;
}

@keyframes dotProgress {
    from { width: 0%; }
    to { width: 100%; }
}

@media (max-width: 992px) {
    .hero-slide-content {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
        gap: 30px;
        padding: 20px;
    }

    .hero-slide-text {
        padding-left: 0;
        text-align: center;
    }

    .hero-slide-text h1,
    .hero-slide-text h2.hero-title {
        font-size: 2rem;
    }

    .hero-slide-description {
        font-size: 1.2rem;
    }

    .hero-contact-actions {
        justify-content: center;
    }

    .hero-slide-image {
        width: 100%;
        max-width: 400px;
        height: 250px;
        margin: 0 auto;
    }

    .hero-slider {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .hero-slide-content {
        padding: 20px 15px 50px;
    }

    .hero-slide-text h1,
    .hero-slide-text h2.hero-title {
        font-size: 1.6rem;
    }

    .hero-slide-description {
        font-size: 1rem;
    }

    .hero-contact-actions {
        flex-direction: column;
        gap: 10px;
    }

    .hero-contact-badge {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .hero-slide-image {
        width: 100%;
        max-width: 350px;
        height: 200px;
        margin: 0 auto;
    }

    .hero-slider-controls {
        bottom: 15px;
    }

    .hero-slider-dot {
        width: 8px;
        height: 8px;
    }
    
    .hero-slider-dot.active {
        width: 24px;
    }
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: #f8c700;
    color: #01111E;
}

.btn-primary:hover {
    background: #ffd700;
}

/* How It Works Section */
.how-it-works-section {
    padding: 60px 0;
    background: white;
}

.how-it-works-section .homepage-section-title {
    text-align: center;
}

.how-it-works-section .section-subtitle {
    text-align: center;
    color: #01111E;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.process-cards {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}

.process-card {
    flex: 1;
    max-width: 320px;
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.process-card-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: #2ec4b6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(46, 196, 182, 0.4);
}

.process-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #01111E;
    margin: 20px 0 15px 0;
}

.process-card-desc {
    font-size: 0.95rem;
    color: #01111E;
    line-height: 1.7;
    margin: 0;
}

.process-card-desc strong {
    color: #2ec4b6;
}

.process-card-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2ec4b6;
    padding-top: 60px;
}

.process-card-connector svg {
    opacity: 0.5;
}
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    z-index: 2;
}

/* Request Section */
.request-section {
    padding: 50px 0;
    background: white;
}

.request-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
    align-items: stretch;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.feature-card {
    text-align: center;
    padding: 22px 20px;
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.16);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.feature-card img {
    width: 52px;
    height: 52px;
    padding: 10px;
    border-radius: 16px;
    background: rgba(0, 63, 177, 0.08);
    object-fit: contain;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2ec4b6;
    line-height: 1.4;
    margin: 0;
}

.feature-card p {
    font-size: 1rem;
    color: #01111E;
    line-height: 1.6;
    margin: 0;
}

.feature-card:hover {
    border-color: #2ec4b6;
}

.info-card {
    background: #2ec4b6;
    color: white;
    padding: 40px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.info-card h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.info-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
    opacity: 0.95;
}

.info-card ul li {
    font-size: 1.05rem;
    line-height: 1.6;
    opacity: 0.95;
}

.info-card .btn {
    background: #FFD700;
    color: #01111E;
    margin-top: 20px;
    display: inline-block;
}

/* Services Section */
.services-section {
    padding: 50px 0;
    background: #f8f9fa;
}

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

.service-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.16);
    transition: border-color 0.3s ease;
}

.service-card:hover {
    border-color: #2ec4b6;
}

.service-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(90deg, #f8f9fa 0%, #ffb74d 100%);
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.cta-text {
    padding-right: 40px;
}

.cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #01111E;
}

.cta-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

/* ScalaPay Section */
.scalapay-section {
    padding: 50px 0;
    background: white;
}

.scalapay-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.scalapay-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.scalapay-info {
    padding: 20px;
}

.scalapay-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #01111E;
    
}

@media (max-width: 768px) {
    .scalapay-info h2 {
        font-size: 2rem;
    }
}

.scalapay-subtitle {
    font-size: 1.2rem;
    color: #01111E;
    margin-bottom: 30px;
}

.scalapay-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

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

.benefit-icon {
    width: 48px;
    height: 48px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2ec4b6;
}

.benefit-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #01111E;
}

.benefit-text p {
    font-size: 1rem;
    color: #01111E;
    margin: 0;
}

.scalapay-cta {
    display: inline-block;
    margin-top: 20px;
}

/* Device Selection Section */
.device-selection-section {
    padding: 50px 0;
    overflow: hidden;
}

.selection-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 100%;
    padding: 0 20px;
}

/* Image Side */
.selection-image {
    position: relative;
    height: 100%;
    min-height: 500px;
    border-radius: 16px;
    overflow: hidden;
}

.devices-collage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.devices-collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

/* Content Side */
.selection-content {
    text-align: left;
    max-width: 500px;
}

.selection-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #01111E;
    margin-bottom: 1rem;
    
    display: block;
    padding-bottom: 15px;
}

.selection-description {
    font-size: 1.2rem;
    color: #01111E;
    margin-bottom: 2rem;
}

/* Form Styles */
.selection-form {
    background: white;
    padding: 2rem;
    border-radius: 16px;
}

@media (max-width: 768px) {
    .selection-form {
        padding: 1rem;
    }
}

.selector-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.select-group {
    position: relative;
    transition: all 0.3s ease;
}

.select-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #2ec4b6;
    z-index: 1;
    pointer-events: none;
}

.device-select {
    width: 100%;
    padding: 1rem 2.5rem 1rem 3rem;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    font-size: 1rem;
    color: #01111E;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23003fb1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.device-select:focus {
    border-color: #2ec4b6;
    box-shadow: 0 0 0 3px rgba(0,63,177,0.1);
    outline: none;
}

.device-select:hover {
    border-color: #2ec4b6;
}

/* Container Animations */
#deviceCategoryContainer,
#deviceModelContainer,
#repairOptionsContainer {
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

#deviceCategoryContainer.visible,
#deviceModelContainer.visible,
#repairOptionsContainer.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Search Button */
.search-button {
    width: 100%;
    padding: 1rem 2rem;
    background: #2ec4b6;
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.search-button:hover {
    background: #0056f4;
}

.search-button svg {
    transition: transform 0.3s ease;
}

.search-button:hover svg {
    transform: translateX(5px);
}

/* Help Text */
.help-text {
    text-align: center;
    margin: 1.5rem 0;
    font-size: 0.9rem;
    color: #01111E;
}

.help-text .whatsapp-link {
    color: #25D366;
    text-decoration: none;
    font-weight: 600;
}

.help-text .whatsapp-link:hover {
    text-decoration: underline;
}

/* Delivery CTA */
.delivery-cta {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(254, 132, 3, 0.1);
    border: 2px solid #fe8403;
    border-radius: 16px;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.delivery-icon {
    color: #fe8403;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(254, 132, 3, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.delivery-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.delivery-text {
    flex: 1;
}

.delivery-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #01111E;
}

.delivery-link {
    color: #fe8403;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
}

.delivery-link:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .selection-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .selection-image {
        min-height: 300px;
        margin: 0 -1rem;
        border-radius: 0;
        order: 1;
    }

    .selection-content {
        text-align: center;
        max-width: 100%;
        order: -1;
    }

    .selection-title {
        font-size: 2rem;
    }

    .selection-description {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .hero-text {
        padding-right: 0;
        order: 1;
    }

    .hero-image {
        order: 2;
        min-height: 300px;
        padding: 0 20px;
    }

    .hero-image img {
        max-width: 100%;
        height: 300px;
        object-fit: contain;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.2rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-description .metro-icon {
        height: 0.95em;
        margin: -0.05em 0.35em 0 0.3em;
    }

    .metro-badge {
        font-size: 0.85em;
        padding: 0.18em 0.6em;
        margin-left: 0.4em;
    }

    .hero-cta {
        margin-top: 30px;
        max-width: 100%;
        width: 100%;
    }

    .hero-contact-badge {
        font-size: 0.9rem;
    }
}

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

    .hero-section .container-home-custom {
        padding: 0;
    }

    .hero-content {
        gap: 20px;
    }

    .hero-image {
        min-height: 250px;
        padding: 0;
    }

    .hero-image img {
        height: 250px;
        border-radius: 16px;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .hero-description .metro-icon {
        height: 0.95em;
        margin: -0.05em 0.3em 0 0.25em;
    }

    .metro-badge {
        font-size: 0.88em;
        padding: 0.16em 0.55em;
        margin-left: 0.35em;
    }

    .hero-cta {
        margin-top: 20px;
        max-width: 100%;
    }

    .hero-contact-actions {
        gap: 8px;
    }

    .hero-contact-badge {
        padding: 12px 0;
    }

    .btn {
        width: 100%;
        padding: 12px 20px;
    }

    .device-selection-section {
        padding: 40px 0;
    }

    .device-selection-section .container-home-custom {
        padding: 0;
    }

    .selection-wrapper {
        padding: 0;
    }

    .selection-image {
        border-radius: 16px;
        overflow: hidden;
        margin: 0 auto;
        max-width: 500px;
        min-height: 300px;
        position: relative;
    }

    .devices-collage {
        position: relative;
        height: 400px;
    }

    .devices-collage img {
        border-radius: 16px;
        height: 100%;
        object-fit: cover;
    }

    .how-it-works-section {
        padding: 40px 0;
    }

    .how-it-works-section .section-subtitle {
        margin-bottom: 40px;
    }

    .process-cards {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .process-card {
        max-width: 100%;
        width: 100%;
        padding: 35px 25px;
    }

    .process-card-connector {
        transform: rotate(90deg);
        padding: 0;
        margin: -15px 0;
    }

    .request-section {
        padding: 40px 0;
    }

    .request-section .container-home-custom {
        padding: 0;
    }

    .request-content {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 500px;
        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin: 0 auto;
        max-width: 480px;
        padding: 0 10px;
    }

    .feature-card {
        margin: 0;
        width: 100%;
        padding: 22px 20px;
    }

    .info-card {
        margin: 0 auto;
        width: 100%;
        max-width: 400px;
        height: auto;
    }

    .scalapay-section {
        padding: 40px 0;
    }

    .scalapay-section .container-home-custom {
        padding: 0;
    }

    .scalapay-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .scalapay-info {
        order: -1;
        padding: 0;
        text-align: center;
    }

    .scalapay-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .scalapay-benefits {
        max-width: 400px;
        margin: 0 auto 30px;
    }

    .benefit-item {
        justify-content: center;
        text-align: left;
    }
}

/* Visit Section */
.visit-section {
    padding: 50px 0;
    background: white;
}

.visit-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

.visit-text {
    padding-right: 20px;
}

.visit-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #01111E;
    margin-bottom: 20px;
    
}

.visit-description {
    font-size: 1.2rem;
    color: #01111E;
    line-height: 1.6;
    margin-bottom: 30px;
}

.visit-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #01111E;
    font-size: 1.1rem;
}

.info-item svg {
    color: #2ec4b6;
    flex-shrink: 0;
}

.map-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    border-radius: 16px;
    overflow: hidden;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .visit-section {
        padding: 40px 0;
    }

    .visit-section .container-home-custom {
        padding: 0;
    }

    .visit-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .visit-text {
        padding-right: 0;
        text-align: center;
    }

    .visit-text h2 {
        font-size: 2rem;
    }

    .visit-description {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .visit-info {
        max-width: 400px;
        margin: 0 auto;
    }

    .info-item {
        justify-content: flex-start;
        text-align: left;
    }

    .map-container {
        margin: 0 -20px;
        border-radius: 0;
    }
}

/* Brands Section */
.brands-section {
    padding: 50px 0;
    background: white;
}

.brands-content {
    text-align: center;
}

.brands-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #01111E;
    margin-bottom: 1rem;
    
    display: inline-block;
}

.reviews-section .brands-title {
    margin-bottom: 2rem;
}

.brands-description {
    font-size: 1.2rem;
    color: #01111E;
    margin-bottom: 3rem;
}

.brands-slider-container {
    position: relative;
    overflow: hidden;
    margin: 0 -20px;
    padding: 0 20px;
}

.brands-slider {
    display: flex;
    gap: 20px;
    will-change: transform;
    padding: 10px 0;
}

.brand-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px;
    background: white;
    border-radius: 16px;
    transition: border-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.16);
    justify-content: center;
    min-width: 160px;
    min-height: 140px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    gap: 12px;
}

.brand-card:hover {
    border-color: #2ec4b6;
}

.brand-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.brand-icon svg {
    width: 64px;
    height: 64px;
    transition: all 0.3s ease;
}

.brand-card:hover .brand-icon svg path {
    fill: #2ec4b6;
}

.brand-name {
    font-size: 1rem;
    font-weight: 600;
    color: #01111E;
    transition: all 0.3s ease;
}

@media (max-width: 992px) {
    .brand-card {
        padding: 20px;
        min-width: 140px;
        min-height: 130px;
    }

    .brand-icon {
        width: 60px;
        height: 60px;
    }

    .brand-icon svg {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .brands-section {
        padding: 40px 0;
    }

    .brands-section .container-home-custom {
        padding: 0;
    }

    .brands-slider-container {
        margin: 0;
        padding: 0 15px;
    }

    .brand-card {
        padding: 18px;
        min-width: 120px;
        min-height: 120px;
    }

    .brand-icon {
        width: 50px;
        height: 50px;
    }

    .brand-icon svg {
        width: 36px;
        height: 36px;
    }

    .brands-title {
        font-size: 1.7rem;
    }

    .brands-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
}

.brands-note {
    margin-top: 40px;
    padding: 0 20px;
}

.note-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(0, 63, 177, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(0, 0, 0, 0.16);
}

.note-content svg {
    flex-shrink: 0;
    color: #2ec4b6;
}

.note-content p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.5;
    color: #01111E;
}

@media (max-width: 768px) {
    .brands-note {
        margin-top: 30px;
    }

    .note-content {
        padding: 15px;
    }

    .note-content p {
        font-size: 1rem;
    }
}

/* Services Cards Section - Vertical Story Cards (9:16) */
.services-cards-section {
    padding: 60px 0;
    background: transparent;
}

.services-cards-header {
    text-align: center;
    margin-bottom: 40px;
}

.services-cards-subtitle {
    font-size: 1.2rem;
    color: #01111E;
    max-width: 600px;
    margin: 0 auto;
}

.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card-item {
    position: relative;
    aspect-ratio: 9 / 16;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-card-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Gradient overlay for better text readability */
.service-card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Legacy image styles - kept for backward compatibility but hidden */
.service-card-image {
    display: none;
}

.service-card-image img {
    display: none;
}

.service-card-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 2;
}

.service-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: inherit;
    margin: 0 0 10px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.service-card-description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: inherit;
    margin: 0 0 16px 0;
    opacity: 0.9;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.service-card-link {
    text-decoration: none;
    cursor: pointer;
}

.service-card-link:hover {
    text-decoration: none;
}

/* Responsive: 3 columns on large tablets */
@media (max-width: 1100px) {
    .services-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}

/* Responsive: 2 columns on tablets */
@media (max-width: 768px) {
    .services-cards-section {
        padding: 40px 0;
    }

    .services-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 15px;
    }

    .service-card-content {
        padding: 18px;
    }

    .service-card-title {
        font-size: 1.1rem;
    }

    .service-card-description {
        font-size: 0.85rem;
    }
}

/* Responsive: 2 columns on small mobile, centered */
@media (max-width: 480px) {
    .services-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 100%;
    }

    .service-card-content {
        padding: 14px;
    }

    .service-card-title {
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .service-card-description {
        font-size: 0.8rem;
        margin-bottom: 0;
    }
}

/* Main Repairs Section */
.main-repairs-section {
    padding: 50px 0;
    background: white;
}

.main-repairs-content {
    text-align: center;
    padding: 0 20px;
}

.repairs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.repair-device-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.16);
    position: relative;
    overflow: hidden;
}

.repair-device-card:hover {
    border-color: #2ec4b6;
}

.repair-device-card .device-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: rgba(0, 63, 177, 0.08);
}

.repair-device-card .device-image svg {
    color: #2ec4b6;
    transition: transform 0.3s ease;
    width: 48px;
    height: 48px;
}

.repair-device-card:hover .device-image svg {
    transform: scale(1.1);
}

.repair-device-card .device-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2ec4b6;
    margin-bottom: 12px;
    text-align: center;
}

.repair-device-card .device-description {
    font-size: 1.05rem;
    color: #01111E;
    line-height: 1.6;
    margin-bottom: 24px;
    text-align: center;
}

.repair-device-card .repair-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    text-align: left;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.repair-device-card .repair-list li {
    font-size: 0.95rem;
    color: #01111E;
    padding: 12px 16px 12px 42px;
    border-radius: 14px;
    position: relative;
    background: #f8f9fb;
    border: 1px solid rgba(0, 63, 177, 0.08);
}

.repair-device-card .repair-list li::before {
    content: '✓';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #2ec4b6;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 992px) {
    .repairs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .repair-device-card {
        padding: 30px 25px;
    }

    .repair-device-card .device-name {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .main-repairs-section {
        padding: 40px 0;
    }

    .main-repairs-section .container-home-custom {
        padding: 0;
    }

    .repairs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .repair-device-card {
        padding: 30px 20px;
    }

    .repair-device-card .device-image svg {
        width: 60px;
        height: 60px;
    }

    .repair-device-card .device-name {
        font-size: 1.5rem;
    }

    .repair-device-card .device-description {
        font-size: 1rem;
    }
}

/* Selection Title */
.selection-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #01111E;
    margin-bottom: 1rem;
    
    display: block;
    padding-bottom: 15px;
}

/* Feature Title */
.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2ec4b6;
    line-height: 1.4;
    display: block;
}

/* ScalaPay Title */
.scalapay-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #01111E;
    
    display: block;
    line-height: 1.2;
}

/* Benefit Title */
.benefit-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #01111E;
} 


.homepage-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #01111E;
    margin-bottom: 1rem;
}

.reviews-section {
    padding: 50px 0;
    background: white;
    text-align: center;
}

.reviews-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: white;
    padding: 1.5rem 2.5rem;
    border-radius: 16px;
    margin: 0 auto;
    text-align: left;
    border: 1px solid rgba(0, 0, 0, 0.08);
    max-width: 1200px;
}

.rating-section {
    padding-right: 2rem;
    border-right: 1px solid #eee;
    min-width: 200px;
}

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

.rating-content {
    line-height: 1.4rem;
}

.rating-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #01111E;
    margin: 0 0 0.5rem 0;
}

.rating-stars {
    margin-bottom: 0.5rem;
}

.rating-link {
    margin-bottom: 0.5rem;
}

.rating-link a {
    color: #303030;
    text-decoration: none;
    transition: color 0.2s ease;
}

.rating-link a:hover {
    color: #2ec4b6;
}

.mobile-reviews-toggle {
    display: none;
    margin-top: 0.5rem;
    text-align: center;
}

.reviews-toggle-link {
    color: #2ec4b6;
    cursor: pointer;
    text-decoration: underline;
    font-weight: 500;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.reviews-toggle-link:hover {
    color: #239e92;
}

.reviews-list {
    display: flex;
    gap: 1.5rem;
    flex: 1;
}

.review-item {
    flex: 1;
    min-width: 0;
}

.review-header {
    margin-bottom: 0.5rem;
}

.review-stars {
    display: flex;
    gap: 2px;
}

.review-stars .star {
    color: #fe8403;
    font-size: 0.9rem;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.25rem;
}

.review-author {
    font-size: 0.85rem;
    color: #01111E;
    font-weight: 500;
}

.review-date {
    font-size: 0.75rem;
    color: #01111E;
}

.review-text {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #01111E;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

@media (max-width: 992px) {
    .reviews-container {
        flex-direction: column;
        padding: 1.5rem;
        gap: 0;
    }

    .rating-section {
        border-right: none;
        padding-right: 0;
        width: 100%;
    }

    .mobile-reviews-toggle {
        display: block;
    }

    .reviews-list {
        flex-direction: column;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, opacity 0.3s ease;
        opacity: 0;
        margin-top: 0;
    }

    .reviews-list.expanded {
        max-height: 1000px;
        opacity: 1;
        margin-top: 1rem;
        padding-top: 1rem;
    }

    .review-item {
        padding: 1rem 0;
        border-bottom: 1px solid #eee;
    }

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

@media (max-width: 768px) {
    .reviews-section {
        padding: 40px 20px;
    }

    .homepage-section-title {
        font-size: 1.8rem;
    }
}

.info-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.info-card-list li {
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
}

.info-card-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFD700;
}

.testimonials-eco-section {
    padding: 50px 0;
}

.testimonials-eco-container {
    margin: 0 auto;
}

.testimonials-eco-header {
    text-align: center;
    margin-bottom: 20px;
}

.testimonials-eco-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-eco-stats-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.testimonials-eco-stats-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--smoky-black);
}

.testimonials-eco-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #01111E;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-align: center;
    
    display: inline-block;
}

.testimonials-eco-subtitle {
    font-size: 1.2rem;
    color: #01111E;
    max-width: 600px;
    line-height: 1.5;
    text-align: center;
    margin: 0 auto 3rem;
}

.testimonials-eco-slider-container {
    position: relative;
    overflow: hidden;
    padding: 0;
    --show-left-gradient: 0;
    --show-right-gradient: 1;
}

.testimonials-eco-slider-container::before,
.testimonials-eco-slider-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 30px; /* Ajustar por el margin-bottom del slider */
    width: 80px;
    pointer-events: none;
    z-index: 10;
    transition: opacity 0.3s ease;
}

.testimonials-eco-slider-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    opacity: var(--show-left-gradient);
}

.testimonials-eco-slider-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    opacity: var(--show-right-gradient);
}

.testimonials-eco-slider {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    overflow: hidden;
    padding-bottom: 20px;
    width: 2188px; /* 8 tarjetas × 256px + 7 gaps × 20px = 2048 + 140 = 2188px */
}

.testimonials-eco-card {
    flex: 0 0 256px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 460px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.16);
}

.testimonials-eco-card-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.testimonials-eco-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.testimonials-eco-card:hover .testimonials-eco-image {
    transform: scale(1.05);
}

.testimonials-eco-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 65%, rgba(0, 0, 0, 1) 100%);
}

.testimonials-eco-user-name {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--mindaro);
    color: var(--smoky-black);
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    backdrop-filter: blur(8px);
}

.testimonials-eco-content-overlay {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    color: white;
}

.testimonials-eco-review {
    font-size: 0.95rem;
    line-height: 1.25;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.testimonials-eco-rating {
    display: flex;
    align-items: center;
}

.testimonials-eco-stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.testimonials-eco-star {
    color: var(--ut-orange);
}

.testimonials-eco-star-empty {
    color: rgba(255, 255, 255, 0.3);
    stroke: rgba(255, 255, 255, 0.3);
}

.testimonials-eco-rating-text {
    margin-left: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.testimonials-eco-device-info {
    padding: 12px 16px;
    background: white;
    flex-grow: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.testimonials-eco-device-name {
    font-size: 0.85rem;
    color: var(--smoky-black);
    line-height: 1.4;
    font-weight: 500;
}

.testimonials-eco-navigation {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.testimonials-eco-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--cobalt-blue);
    background: white;
    color: var(--cobalt-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonials-eco-nav-btn:hover {
    background: var(--cobalt-blue);
    color: white;
    transform: scale(1.1);
}

.testimonials-eco-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials-eco-section {
        padding: 40px 0;
    }

    .testimonials-eco-section .container-home-custom {
        padding: 0;
    }
    
    .testimonials-eco-header {
        margin-bottom: 40px;
    }
    
    .testimonials-eco-title {
        font-size: 2.2rem;
    }
    
    .testimonials-eco-subtitle {
        font-size: 0.9rem;
    }
    
    .testimonials-eco-stats-navigation {
        justify-content: space-between;
        margin-bottom: 25px;
    }
    
    .testimonials-eco-stats-text {
        font-size: 1rem;
    }
    
    .testimonials-eco-slider-container::before,
    .testimonials-eco-slider-container::after {
        width: 60px;
    }
    
    .testimonials-eco-slider {
        width: 2060px; /* 8 tarjetas × 240px + 7 gaps × 20px = 1920 + 140 = 2060px */
    }
    
    .testimonials-eco-card {
        flex: 0 0 240px;
        height: 440px;
    }
    
    .testimonials-eco-card-image {
        height: 380px;
    }
    
    .testimonials-eco-nav-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .testimonials-eco-title {
        font-size: 1.8rem;
    }
    
    .testimonials-eco-subtitle {
        font-size: 0.85rem;
    }
    
    .testimonials-eco-stats-text {
        font-size: 0.95rem;
    }
    
    .testimonials-eco-card {
        flex: 0 0 220px;
        height: 420px;
    }
    
    .testimonials-eco-card-image {
        height: 360px;
    }
    
    .testimonials-eco-slider-container::before,
    .testimonials-eco-slider-container::after {
        width: 40px;
    }
    
    .testimonials-eco-slider {
        width: 1900px; /* 8 tarjetas × 220px + 7 gaps × 20px = 1760 + 140 = 1900px */
    }
}

/* Marquee Banner */
.marquee-banner {
    overflow: hidden;
    padding: 12px 0;
    white-space: nowrap;
    margin-top: 20px;
    border-radius: 12px;
    margin-left: 20px;
    margin-right: 20px;
}

.marquee-content {
    display: inline-flex;
    animation: marquee 20s linear infinite;
}

.marquee-text {
    display: inline-block;
    padding: 0 50px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

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

.marquee-banner:hover .marquee-content {
    animation-play-state: paused;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
}

.faq-section .homepage-section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #01111E;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #2ec4b6;
}

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

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

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

.faq-answer p {
    padding: 12px 24px 20px;
    margin: 0;
    color: #01111E;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-container {
        padding: 0 15px;
    }
    
    .faq-question {
        padding: 16px 20px;
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 20px 16px;
    }
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 60px 0;
}

.why-choose-section .homepage-section-title {
    text-align: center;
    margin-bottom: 40px;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose-visual {
    position: relative;
}

.store-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 600px;
}

.store-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.team-preview {
    display: flex;
    align-items: center;
    gap: 0;
    position: absolute;
    bottom: -35px;
    left: 20px;
    background: white;
    padding: 12px 24px 12px 12px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.team-member {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid white;
    margin-left: -20px;
}

.team-member:first-child {
    margin-left: 0;
}

.team-member img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-label {
    margin-left: 12px;
    font-weight: 600;
    color: #01111E;
    font-size: 0.95rem;
}

.why-choose-info {
    padding-left: 20px;
}

.trust-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.trust-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trust-card-icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.trust-card-number {
    font-size: 1.15rem;
    font-weight: 700;
    color: #01111E;
}

.trust-card-label {
    font-size: 0.9rem;
    color: #01111E;
}

.why-choose-description {
    color: #01111E;
    line-height: 1.7;
    margin-bottom: 25px;
}

.why-choose-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2ec4b6;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.05rem;
    transition: gap 0.3s ease;
}

.why-choose-cta:hover {
    gap: 12px;
    color: #25a99d;
}

.why-choose-cta svg {
    transition: transform 0.3s ease;
}

.why-choose-cta:hover svg {
    transform: translateX(4px);
}

@media (max-width: 992px) {
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .why-choose-info {
        padding-left: 0;
    }
    
    .store-image img {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .why-choose-section {
        padding: 40px 0;
    }
    
    .trust-cards {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .trust-card {
        padding: 15px;
    }
    
    .trust-card-icon {
        font-size: 1.5rem;
        margin-bottom: 5px;
    }
    
    .trust-card-number {
        font-size: 1rem;
    }
    
    .trust-card-label {
        font-size: 0.8rem;
    }
    
    .team-preview {
        bottom: -25px;
        left: 15px;
        padding: 10px 18px 10px 10px;
    }
    
    .team-member {
        width: 55px;
        height: 55px;
        margin-left: -15px;
    }
    
    .team-label {
        font-size: 0.85rem;
    }
}

/* Specialized Repairs Section */
.specialized-repairs-section {
    padding: 60px 0;
}

.specialized-repairs-section .homepage-section-title {
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: #01111E;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.repair-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.repair-card {
    background: #f8f9fa;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.repair-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.repair-card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.repair-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.repair-card:hover .repair-card-image img {
    transform: scale(1.05);
}

.repair-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #01111E;
    margin: 0 0 12px 0;
    padding: 20px 24px 0 24px;
}

.repair-card-desc {
    color: #01111E;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 0 24px;
}

.repair-card-features {
    list-style: none;
    padding: 0 24px 24px 24px;
    margin: 0;
}

.repair-card-features li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: #01111E;
    font-size: 0.9rem;
}

.repair-card-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2ec4b6;
    font-weight: 700;
}



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

@media (max-width: 576px) {
    .specialized-repairs-section {
        padding: 40px 0;
    }
    
    .repair-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .repair-card-title {
        padding: 16px 20px 0 20px;
    }
    
    .repair-card-desc {
        padding: 0 20px;
    }
    
    .repair-card-features {
        padding: 0 20px 20px 20px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
}
