.footer-contact-cta {
    text-align: center;
}

.footer-contact-cta h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
}

.btn-contact {
    display: inline-block;
    padding: 12px 28px;
    background: #fff; /* verde principal */
    color: #321e1394;
    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: #688a6ea2; /* café */
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* why choose */

/* SECTION */
.why-patio-section {
    background: var(--bg-color);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* TITLE */
.why-patio-title {
    text-align: center;
    margin-bottom: 60px;
}

.why-patio-title span {
    color: var(--accent-secondary-color);
    font-weight: 600;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.why-patio-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.why-patio-title p {
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
}

/* GRID */
.why-patio-grid {
    row-gap: 30px;
}

/* CARD */
.why-card {
    background: var(--white-color);
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

/* ICON */
.why-card .icon {
    font-size: 40px;
    margin-bottom: 15px;
}

/* TITLE */
.why-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* TEXT */
.why-card p {
    color: var(--text-color);
    font-size: 14px;
}

/* HOVER EFFECT 🔥 */
.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* CTA */
.why-patio-cta {
    text-align: center;
    margin-top: 60px;
}

.why-patio-cta h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.why-btn {
    display: inline-block;
    padding: 14px 30px;
    background: var(--accent-secondary-color);
    color: #fff;
    border-radius: 30px;
    transition: 0.3s;
    text-decoration: none;
}

.why-btn:hover {
    background: var(--primary-color);
}

.services-marquee {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 18px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: #f8f5ef;
}

.services-marquee__track {
    display: flex;
    width: max-content;
    animation: marquee-right 35s linear infinite;
}

.services-marquee__content {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    white-space: nowrap;
}

.services-marquee__content a {
    display: inline-block;
    text-decoration: none;
    color: #3A5A40;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin: 0 14px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.services-marquee__content a:hover {
    color: #6B4F3A;
    transform: translateY(-1px);
}

.services-marquee__content span {
    color: #6B4F3A;
    font-size: 18px;
    margin: 0 4px;
    opacity: 0.8;
}

@keyframes marquee-right {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0%);
    }
}

/* Pausa al pasar el mouse */
.services-marquee:hover .services-marquee__track {
    animation-play-state: paused;
}

/* Responsive */
@media (max-width: 991px) {
    .services-marquee {
        padding: 14px 0;
    }

    .services-marquee__content a {
        font-size: 14px;
        margin: 0 12px;
    }

    .services-marquee__track {
        animation-duration: 28s;
    }
}

.why-card .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-card .icon img {
    width: 69px;
    height: 69px;
    object-fit: contain;
}

.contact-form{
    padding: 0 !important;
}