/* ============================================================
   CADEJO MARINO - NEW SECTIONS CSS
   Prefix: cm- (avoids conflicts with existing styles)
   Color Palette: 
   --primary: #03bfac
   --secondary: #2a3c54
   --accent: #066aab
   --dark: #1a2332
   ============================================================ */

/* ==================== 1. OUR SERVICES SECTION ==================== */
/* ==================== 1. OUR SERVICES SECTION ==================== */
.cm-services {
    padding: 100px 20px;
    background: #f9f6f1;
}

.cm-services__container {
    max-width: 1300px;
    margin: 0 auto;
}

.cm-services__header {
    text-align: center;
    margin-bottom: 50px;
}

.cm-services__label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #2a3c54;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 10px;
}

.cm-services__title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #1a2332;
    margin: 10px 0 15px;
    font-family: 'Poppins', sans-serif;
}

.cm-services__subtitle {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

/* ---- KEY CHANGE: Grid proportions matching the image ---- */
.cm-services__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 18px;
    min-height: 520px;
}

/* Image card: spans both rows, full left column */
.cm-services__image-card {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.cm-services__image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.cm-services__image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    z-index: 2;
}

.cm-services__image-icon {
    width: 42px;
    height: 42px;
    background: rgba(177, 227, 20, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.cm-services__image-icon i {
    font-size: 1.2rem;
    color: #b1e314;
}

.cm-services__image-overlay h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
    line-height: 1.3;
}

.cm-services__image-overlay p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.5;
}

/* ---- Service Cards: smaller, compact ---- */
.cm-services__card {
    background: #f4f1ec;
    border-radius: 16px;
    padding: 28px 22px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.cm-services__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(3, 191, 172, 0.12);
}

.cm-services__card-icon {
    width: 48px;
    height: 48px;
    background: #2a3c54;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.cm-services__card-icon i {
    font-size: 1.3rem;
    color: #fff;
}

.cm-services__card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a2332;
    margin: 0 0 10px;
}

.cm-services__card p {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .cm-services__grid {
        grid-template-columns: 1.2fr 1fr;
        grid-template-rows: auto auto auto;
        min-height: auto;
    }

    .cm-services__image-card {
        grid-row: 1 / 3;
        grid-column: 1 / 2;
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .cm-services__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        min-height: auto;
    }

    .cm-services__image-card {
        grid-row: auto;
        grid-column: auto;
        min-height: 300px;
    }

    .cm-services__title {
        font-size: 2.4rem;
    }
}

@media (max-width: 576px) {
    .cm-services__title {
        font-size: 2rem;
    }

    .cm-services__card {
        padding: 22px 18px;
    }
}

/* ==================== 2. PLAN MY TRIP SECTION ==================== */
/* ==================== 2. PLAN MY TRIP SECTION — SPLIT BACKGROUND ==================== */
/* ==================== 2. PLAN MY TRIP SECTION — SPLIT BACKGROUND ==================== */
.cm-plantrip {
    position: relative;
    padding: 100px 20px;
    min-height: 800px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* ---- Split Background Container ---- */
.cm-plantrip__bg-split {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: 0;
}

/* Left half: Solid dark color */
.cm-plantrip__bg-color {
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, #1a2332 0%, #2a3c54 50%, #1f3044 100%);
}

/* Right half: Image with teal tint */
.cm-plantrip__bg-image {
    width: 50%;
    height: 100%;
    background-image: url('https://heartfelt-gingersnap-8dd232.netlify.app/fotos-cadejo/Tortuguero_8_11zon.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Heavy teal/green overlay on image to blend with left side */
.cm-plantrip__bg-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        #1a2b2e 0%,
        rgba(15, 60, 55, 0.85) 15%,
        rgba(10, 70, 60, 0.75) 50%,
        rgba(15, 55, 50, 0.8) 100%
    );
}

/* Remove old overlay - no longer needed separately */
.cm-plantrip__overlay {
    display: none;
}

/* Container */
.cm-plantrip__container {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
}

/* ---- Left Content ---- */
.cm-plantrip__left {
    flex: 1;
    margin-right: 100px;
}

.cm-plantrip__label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #b1e314;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 18px;
}

.cm-plantrip__title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin: 0 0 22px;
    font-family: 'Poppins', sans-serif;
}

.cm-plantrip__desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.85;
    margin-bottom: 28px;
}

.cm-plantrip__badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.cm-plantrip__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: rgba(30, 50, 50, 0.85);
    border: 1px solid rgba(3, 191, 172, 0.2);
    border-radius: 50px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
}

.cm-plantrip__badge i {
    color: #b1e314;
    font-size: 1rem;
}

/* CTA Button */
.cm-plantrip__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 34px;
    background: linear-gradient(135deg, #b1e314 0%, #03bfac 100%);
    color: #1a2332;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(177, 227, 20, 0.3);
}

.cm-plantrip__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(177, 227, 20, 0.5);
    color: #1a2332;
}

/* ---- Right Content (White Card) ---- */
.cm-plantrip__right {
    flex: 0.85;
}

.cm-plantrip__card {
    background: rgba(255, 255, 255, 0.97);
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.cm-plantrip__card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a2332;
    margin: 0 0 30px;
}

.cm-plantrip__step {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
}

.cm-plantrip__step:last-child {
    margin-bottom: 0;
}

.cm-plantrip__step-num {
    min-width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #03bfac 0%, #066aab 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(3, 191, 172, 0.3);
}

.cm-plantrip__step-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a2332;
    margin: 0 0 6px;
}

.cm-plantrip__step-content p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.65;
    margin: 0;
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
    .cm-plantrip__container {
        flex-direction: column;
        gap: 40px;
    }

    .cm-plantrip__title {
        font-size: 2.2rem;
    }

    .cm-plantrip__bg-split {
        flex-direction: column;
    }

    .cm-plantrip__bg-color {
        width: 100%;
        height: 40%;
    }

    .cm-plantrip__bg-image {
        width: 100%;
        height: 60%;
    }

    .cm-plantrip__bg-image::after {
        background: rgba(15, 50, 48, 0.82);
    }
}

@media (max-width: 576px) {
    .cm-plantrip {
        padding: 70px 15px;
        min-height: auto;
    }

    .cm-plantrip__title {
        font-size: 1.8rem;
    }

    .cm-plantrip__badges {
        flex-direction: column;
    }

    .cm-plantrip__card {
        padding: 30px 20px;
    }

    .cm-plantrip__bg-image {
        display: none;
    }

    .cm-plantrip__bg-color {
        width: 100%;
        height: 100%;
    }
}



/* ==================== 3. AUTHENTIC COSTA RICA ==================== */
./* ==================== 3. AUTHENTIC COSTA RICA ==================== */
.cm-authentic {
    position: relative;
    padding: 100px 20px;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.cm-authentic {
    position: relative;
    width: 100%;
 
    padding: 100px 20px;
    
    /* Sistema de centrado absoluto en X e Y */
    display: flex;
    align-items: center;     /* Centrado Vertical (Eje Y) */
    justify-content: center;  /* Centrado Horizontal (Eje X) */
    
    overflow: hidden;
}


/* Full-cover background image */
.cm-authentic__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
    background-image: url('https://heartfelt-gingersnap-8dd232.netlify.app/home-images/AuthenticCostaRicaTailoredto you_3_11zon.webp'); 
}

/* Dark overlay for readability */
.cm-authentic__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right, 
    rgba(10, 18, 28, 0.65) 0%, 
    rgba(10, 18, 28, 0.90) 35%, 
    rgba(10, 18, 28, 0.80) 55%, 
    rgba(10, 18, 28, 0.65) 100%
  );
  z-index: 1;
}


.cm-authentic__container {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    width: 100%; /* Ocupa el ancho disponible dentro del flex padre */
    
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 80px;
    align-items: center; /* Centra las dos columnas internamente entre sí */
}


/* ---- Left Column: Title ---- */
.cm-authentic__left {
    display: flex;
    align-items: flex-end;
    min-height: 400px;
}

.cm-authentic__title {
    font-size: 3.2rem;
    font-weight: 300;
        font-weight: 700;
    color: #fff;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

/* ---- Right Column: Content ---- */
.cm-authentic__right {
    /* content block */
}

.cm-authentic__intro {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.85;
    margin-bottom: 28px;
}

.cm-authentic__intro strong {
    color: #fff;
    font-weight: 700;
}

/* WHY US? Divider */
.cm-authentic__why {
    margin-bottom: 28px;
    padding-top: 5px;
}

.cm-authentic__why-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.cm-authentic__why-dot {
    width: 6px;
    height: 6px;
    background: #b1e314;
    border-radius: 50%;
}

.cm-authentic__why-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #b1e314;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.cm-authentic__why-intro {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    margin: 0;
}

/* Features list */
.cm-authentic__features {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 35px;
}

.cm-authentic__feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.cm-authentic__feature-icon {
    min-width: 44px;
    height: 44px;
    background: rgba(3, 191, 172, 0.12);
    border: 1px solid rgba(3, 191, 172, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cm-authentic__feature-icon i {
    font-size: 1.15rem;
    color: #b1e314;
}

.cm-authentic__feature-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px;
}

.cm-authentic__feature-text p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* CTA Button */
.cm-authentic__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 34px;
    background: linear-gradient(135deg, #b1e314 0%, #03bfac 100%);
    color: #1a2332;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(177, 227, 20, 0.3);
}

.cm-authentic__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(177, 227, 20, 0.5);
    color: #1a2332;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .cm-authentic__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cm-authentic__left {
        min-height: auto;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .cm-authentic__title {
        font-size: 2.6rem;
    }

    .cm-authentic__overlay {
        background: rgba(10, 18, 28, 0.85);
    }
}

@media (max-width: 576px) {
    .cm-authentic {
        padding: 70px 15px;
        min-height: auto;
    }

    .cm-authentic__title {
        font-size: 2rem;
    }

    .cm-authentic__feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cm-authentic__container {
        gap: 30px;
    }
}

/* ==================== 4. EXPERIENCES HIGHLIGHT ==================== */
.cm-exp__highlight {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #b1e314;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 5px;
}

/* ==================== 5. CR INFORMATION SECTION ==================== */
.cm-crinfo {
    position: relative;
    padding: 100px 20px;
    background-image: url('https://heartfelt-gingersnap-8dd232.netlify.app/fotos-cadejo/Tortuguero_8_11zon.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cm-crinfo__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 35, 50, 0.85);
    z-index: 1;
}

.cm-crinfo__container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.cm-crinfo__header {
    text-align: center;
    margin-bottom: 50px;
}

.cm-crinfo__label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #03bfac;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 12px;
}

.cm-crinfo__title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 15px;
    font-family: 'Poppins', sans-serif;
}

.cm-crinfo__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
}

.cm-crinfo__divider::before,
.cm-crinfo__divider::after {
    content: '';
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #03bfac);
}

.cm-crinfo__divider::after {
    background: linear-gradient(90deg, #03bfac, transparent);
}

.cm-crinfo__leaf {
    color: #b1e314;
    font-size: 1.2rem;
}

.cm-crinfo__subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    font-style: italic;
}

.cm-crinfo__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cm-crinfo__card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(3, 191, 172, 0.1);
}

.cm-crinfo__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(3, 191, 172, 0.2);
}

.cm-crinfo__card-icon {
    width: 55px;
    height: 55px;
    background: rgba(3, 191, 172, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.cm-crinfo__card-icon i {
    font-size: 1.5rem;
    color: #2a3c54;
}

.cm-crinfo__card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a2332;
    margin: 0 0 12px;
}

.cm-crinfo__card p {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 992px) {
    .cm-crinfo__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .cm-crinfo__grid {
        grid-template-columns: 1fr;
    }
    .cm-crinfo__title {
        font-size: 2rem;
    }
}

/* ==================== 6. CONTACT US SECTION ==================== */
/* ==================== 6. CONTACT US SECTION ==================== */
.cm-contact { 
  position: relative; 
  padding: 80px 20px 0; 
  background: #f9f6f1; 
  overflow: hidden; 
  background-image: url('https://heartfelt-gingersnap-8dd232.netlify.app/contact-footer.webp'); 
  background-size: cover; /* Ajusta la imagen completa */
  background-position: center; 
  background-repeat: no-repeat; 

}


.cm-contact__container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding-bottom: 60px;
}

/* ---- Header ---- */
.cm-contact__header {
    text-align: center;
    margin-bottom: 50px;
}

.cm-contact__badge {
    display: inline-block;
    padding: 8px 22px;
    background: #2a3c54;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: capitalize;
    letter-spacing: 0.03em;
    margin-bottom: 18px;
}

.cm-contact__title {
    font-size: 4rem;
    font-weight: 800;
    color: #1a2332;
    margin: 0 0 14px;
    font-family: 'Poppins', sans-serif;
}

.cm-contact__subtitle {
    font-size: 1.1rem;
    color: #555;
    margin: 0;
}

/* ---- Contact Cards ---- */
.cm-contact__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.cm-contact__card {
    background: #fff;
    border-radius: 16px;
    padding: 45px 25px 35px;
    text-align: center;
    border: 1px solid #e8e5e0;
    transition: all 0.3s ease;
}

.cm-contact__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(3, 191, 172, 0.12);
    border-color: rgba(3, 191, 172, 0.3);
}

/* Large icon (matching reference image) */
.cm-contact__card-icon {
    width: 80px;
    height: 80px;
    background: #2a3c54;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
}

.cm-contact__card-icon i {
    font-size: 2rem;
    color: #fff;
}

.cm-contact__card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a2332;
    margin: 0 0 10px;
}

.cm-contact__card p {
    font-size: 0.95rem;
    color: #666;
    margin: 0 0 18px;
}

.cm-contact__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2a3c54;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cm-contact__link:hover {
    color: #03bfac;
    gap: 14px;
}

.cm-contact__link i {
    transition: transform 0.3s ease;
}

.cm-contact__link:hover i {
    transform: translateX(4px);
}

/* ---- Support Banner ---- */
.cm-contact__support {
    display: flex;
    align-items: center;
    gap: 40px;
    background: transparent;
    border-radius: 24px;
    padding: 40px 50px;
    border: 0px solid #e8e5e0;
}

/* Large circular image */
.cm-contact__support-img {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 5px solid rgba(3, 191, 172, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cm-contact__support-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cm-contact__support-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #03bfac;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 10px;
}

.cm-contact__support-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a2332;
    margin: 0 0 14px;
}

.cm-contact__support-text p {
    font-size: 1rem;
    color: #555;
    line-height: 1.75;
    margin: 0;
}

/* ---- Forest Bottom Background ---- */
.cm-contact__forest {
    width: 100%;
    height: 220px;
    background-image: url('https://heartfelt-gingersnap-8dd232.netlify.app/Fondobosqufooter.webp');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    margin-top: -20px;
}

.cm-contact__forest::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, #f9f6f1 0%, transparent 100%);
    z-index: 2;
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
    .cm-contact__title {
        font-size: 3rem;
    }

    .cm-contact__support {
        padding: 30px 35px;
        gap: 30px;
    }

    .cm-contact__support-img {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .cm-contact__cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cm-contact__title {
        font-size: 2.5rem;
    }

    .cm-contact__support {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
    }

    .cm-contact__support-img {
        width: 180px;
        height: 180px;
    }

    .cm-contact__forest {
        height: 160px;
    }
}

@media (max-width: 576px) {
    .cm-contact__title {
        font-size: 2.2rem;
    }

    .cm-contact__card-icon {
        width: 65px;
        height: 65px;
        border-radius: 14px;
    }

    .cm-contact__card-icon i {
        font-size: 1.6rem;
    }

    .cm-contact__support-img {
        width: 150px;
        height: 150px;
    }

    .cm-contact__forest {
        height: 120px;
    }
}

/* Agrega en tu CSS inline o en new-home.css */
@font-face {
    font-family: 'bootstrap-icons';
    font-display: swap;
    src: url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.2/font/fonts/bootstrap-icons.woff2") format("woff2"),
         url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.2/font/fonts/bootstrap-icons.woff") format("woff");
}



