/* =========================================
   CONTACT SECTION
========================================= */

.contact-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

/* =========================================
   BACKGROUND
========================================= */

.contact-background {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            135deg,
            #f8fafc 0%,
            #eef2f7 45%,
            #e2e8f0 100%
        );

    z-index: 1;
}

/* =========================================
   GLOW EFFECTS
========================================= */

.contact-glow {
    position: absolute;
    border-radius: 9999px;
    filter: blur(120px);
    z-index: 1;
}

.contact-glow-left {
    top: -120px;
    left: -120px;

    width: 420px;
    height: 420px;

    background: rgba(220, 38, 38, 0.12);
}

.contact-glow-right {
    bottom: -120px;
    right: -120px;

    width: 350px;
    height: 350px;

    background: rgba(59, 130, 246, 0.10);
}

/* =========================================
   CONTAINER
========================================= */

.contact-container {
    position: relative;
    z-index: 5;

    width: 100%;
    max-width: 1350px;

    margin: auto;
    padding: 0 24px;
}

/* =========================================
   GRID
========================================= */

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

/* =========================================
   CONTENT
========================================= */

.contact-content {
    max-width: 760px;
}

/* =========================================
   BADGE
========================================= */

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    padding: 14px 24px;

    background: rgba(255, 255, 255, 0.85);

    border: 1px solid rgba(255, 255, 255, 0.9);

    border-radius: 999px;

    backdrop-filter: blur(12px);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.06);

    margin-bottom: 34px;
}

.contact-badge-dot {
    width: 12px;
    height: 12px;

    border-radius: 999px;

    background: #dc2626;
}

.contact-badge span {
    color: #dc2626;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 0.24em;
    text-transform: uppercase;
}

/* =========================================
   TITLE
========================================= */

.contact-title {
    font-size: clamp(3rem, 6vw, 6rem);
    line-height: 1.05;
    font-weight: 900;

    color: #0f172a;

    margin-bottom: 28px;
}

.contact-title span {
    color: #dc2626;
}

/* =========================================
   DESCRIPTION
========================================= */

.contact-description {
    color: #475569;

    font-size: 1.15rem;
    line-height: 1.9;

    max-width: 650px;

    margin-bottom: 50px;
}

/* =========================================
   INFO LIST
========================================= */

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* =========================================
   CONTACT CARD
========================================= */

.contact-card {
    position: relative;

    display: flex;
    align-items: center;
    gap: 22px;

    padding: 28px;

    border-radius: 30px;

    background: rgba(255, 255, 255, 0.82);

    border: 1px solid rgba(255, 255, 255, 0.9);

    backdrop-filter: blur(18px);

    box-shadow:
        0 20px 40px rgba(15, 23, 42, 0.06);

    overflow: hidden;

    transition: 0.4s ease;

    text-decoration: none;
}

.contact-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 5px;

    background: linear-gradient(
        to right,
        #dc2626,
        #ef4444
    );
}

.contact-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 30px 60px rgba(15, 23, 42, 0.12);
}

/* =========================================
   ICONS
========================================= */

.contact-icon {
    width: 74px;
    height: 74px;

    border-radius: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    transition: 0.4s ease;
}

.contact-icon i {
    font-size: 32px;
}

/* WhatsApp */

.whatsapp-bg {
    background: rgba(34, 197, 94, 0.12);
}

.whatsapp-icon {
    color: #16a34a;
}

/* Email */

.email-bg {
    background: rgba(59, 130, 246, 0.12);
}

.email-icon {
    color: #2563eb;
}

/* Location */

.location-bg {
    background: rgba(239, 68, 68, 0.12);
}

.location-icon {
    color: #dc2626;
}

/* Hover */

.contact-card:hover .whatsapp-bg {
    background: #16a34a;
}

.contact-card:hover .email-bg {
    background: #2563eb;
}

.contact-card:hover .location-bg {
    background: #dc2626;
}

.contact-card:hover .contact-icon i {
    color: #ffffff;
}

/* =========================================
   TEXT
========================================= */

.contact-card h4 {
    color: #0f172a;

    font-size: 1.35rem;
    font-weight: 900;

    margin-bottom: 8px;
}

.contact-card p {
    color: #475569;

    line-height: 1.7;
}

/* =========================================
   RIGHT SIDE
========================================= */

.contact-highlight {
    position: relative;
}

.contact-highlight-glow {
    position: absolute;
    inset: -30px;

    background:
        radial-gradient(
            rgba(220, 38, 38, 0.15),
            transparent 70%
        );

    filter: blur(80px);

    z-index: 1;
}

.contact-highlight-card {
    position: relative;
    z-index: 5;

    padding: 50px;

    border-radius: 38px;

    background:
        linear-gradient(
            135deg,
            #0f172a,
            #1e293b
        );

    overflow: hidden;

    box-shadow:
        0 35px 80px rgba(15, 23, 42, 0.25);
}

/* =========================================
   HIGHLIGHT ICON
========================================= */

.contact-highlight-icon {
    width: 95px;
    height: 95px;

    border-radius: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #dc2626,
            #ef4444
        );

    margin-bottom: 35px;
}

.contact-highlight-icon i {
    color: #ffffff;
    font-size: 40px;
}

/* =========================================
   HIGHLIGHT TEXT
========================================= */

.contact-highlight-card h3 {
    color: #ffffff;

    font-size: 2.4rem;
    line-height: 1.2;
    font-weight: 900;

    margin-bottom: 24px;
}

.contact-highlight-card p {
    color: rgba(255, 255, 255, 0.82);

    font-size: 1.08rem;
    line-height: 1.9;

    margin-bottom: 42px;
}

/* =========================================
   STATS
========================================= */

.contact-stats {
    display: flex;
    gap: 24px;
}

.contact-stat {
    flex: 1;

    padding: 28px;

    border-radius: 24px;

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(12px);
}

.contact-stat span {
    display: block;

    color: #ffffff;

    font-size: 2.5rem;
    font-weight: 900;

    margin-bottom: 10px;
}

.contact-stat small {
    color: rgba(255, 255, 255, 0.72);

    font-size: 0.95rem;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {

    .contact-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 768px) {

    .contact-section {
        padding: 90px 0;
    }

    .contact-title {
        font-size: 3rem;
    }

    .contact-card,
    .contact-highlight-card {
        padding: 28px;
    }

    .contact-highlight-card h3 {
        font-size: 2rem;
    }

    .contact-stats {
        flex-direction: column;
    }

}