/* ============================================
   CTA BANNER - ULTRA-MODERN ENTERPRISE DESIGN
   Inspired by:Apple, Stripe, Vercel, Linear
   ============================================ */

.cta-banner {
    position: relative;
    overflow: hidden;

    /* Clean, bold background with subtle gradient */
    background: linear-gradient(135deg,
            #0a0f0d 0%,
            #0d1410 50%,
            #0a0f0d 100%);

    /* padding: 100px 0; */
    /* margin: 100px 0; */

    /* Minimal border for definition */
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(70, 154, 79, 0.3) 50%,
            transparent 100%);
    pointer-events: none;
}

/* ============================================
   CENTERED LAYOUT - FLEXBOX
   ============================================ */

.cta-banner-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

/* ============================================
   CONTENT AREA
   ============================================ */

.cta-content-area {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.cta-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.5);
    padding: 8px 16px;
    background: rgba(70, 154, 79, 0.08);
    border: 1px solid rgba(70, 154, 79, 0.15);
    border-radius: 6px;
    width: fit-content;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-banner:hover .cta-label {
    background: rgba(70, 154, 79, 0.12);
    border-color: rgba(70, 154, 79, 0.25);
    color: rgba(255, 255, 255, 0.65);
}

.cta-title {
    font-size: clamp(2rem, 2vw + 1rem, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff;
    letter-spacing: -0.04em;
    margin: 0 auto;
    max-width: 700px;
    text-align: center;

    /* Strong, bold text */
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

/* ============================================
   CONTACT AREA
   ============================================ */

.cta-contact-area {
    display: flex;
    flex-direction: row;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    width: 100%;
}

/* ============================================
   CONTACT CARDS - BOLD & MODERN
   ============================================ */

.contact-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 32px;

    /* Sizing for balance */
    flex: 1;
    min-width: 320px;
    max-width: 460px;
    width: 100%;

    /* Card-based design with clear borders */
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;

    /* Strong shadow for depth */
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.1),
        0 1px 2px rgba(0, 0, 0, 0.06);

    text-decoration: none;
    color: inherit;
    cursor: pointer;
    overflow: hidden;

    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Accent border on left */
.contact-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card-email::before {
    background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
    opacity: 0;
    visibility: hidden;
}

.contact-card-whatsapp::before {
    background: linear-gradient(180deg, #10b981 0%, #059669 100%);
    opacity: 0;
    visibility: hidden;
}

/* Hover state - Bold and impactful */
.contact-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);

    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.15),
        0 2px 4px rgba(0, 0, 0, 0.1);

    transform: translateX(4px);
}

.contact-card:hover::before {
    opacity: 1;
    visibility: visible;
}

/* Active state */
.contact-card:active {
    transform: translateX(2px) scale(0.99);
}

/* ============================================
   CARD ICON
   ============================================ */

.contact-card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);

    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover .contact-card-icon {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.contact-card-icon i {
    font-size: 1.25rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.contact-card-email:hover .contact-card-icon {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.contact-card-email:hover .contact-card-icon i {
    color: #60a5fa;
}

.contact-card-whatsapp:hover .contact-card-icon {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
}

.contact-card-whatsapp:hover .contact-card-icon i {
    color: #34d399;
}

/* ============================================
   CARD CONTENT
   ============================================ */

.contact-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.contact-card-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.contact-card:hover .contact-card-label {
    color: rgba(255, 255, 255, 0.7);
}

.contact-card-value {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;

    /* Prevent overflow */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

    transition: all 0.3s ease;
}

.contact-card-email:hover .contact-card-value {
    color: #60a5fa;
}

.contact-card-whatsapp:hover .contact-card-value {
    color: #34d399;
}

/* ============================================
   CARD ARROW
   ============================================ */

.contact-card-arrow {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 8px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);

    opacity: 0.6;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover .contact-card-arrow {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    opacity: 1;
    transform: translate(2px, -2px);
}

.contact-card-arrow i {
    font-size: 0.875rem;
    color: #ffffff;
    transition: color 0.3s ease;
}

.contact-card-email:hover .contact-card-arrow i {
    color: #60a5fa;
}

.contact-card-whatsapp:hover .contact-card-arrow i {
    color: #34d399;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet and below */
@media (max-width: 992px) {
    .cta-banner {
        padding: 80px 0;
    }

    .cta-banner-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .cta-title {
        max-width: 100%;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .cta-banner {
        padding: 60px 0;
    }

    .cta-banner-grid {
        gap: 40px;
        padding: 0 20px;
    }

    .cta-title {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }

    .contact-card {
        padding: 22px 24px;
        gap: 16px;
    }

    .contact-card-icon {
        width: 44px;
        height: 44px;
    }

    .contact-card-icon i {
        font-size: 1.125rem;
    }

    .contact-card-value {
        font-size: 1rem;
    }
}

/* Small mobile */
@media (max-width: 576px) {
    .cta-banner {
        padding: 50px 0;

    }

    .cta-banner-grid {
        gap: 32px;
        padding: 0 16px;
    }

    .cta-label {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .contact-card {
        padding: 18px 20px;
        gap: 14px;
    }

    .contact-card-icon {
        width: 40px;
        height: 40px;
    }

    .contact-card-icon i {
        font-size: 1rem;
    }

    .contact-card-value {
        font-size: 0.9375rem;
    }

    .contact-card-arrow {
        width: 28px;
        height: 28px;
    }

    .contact-card-arrow i {
        font-size: 0.8125rem;
    }
}