/* -------------------------------------- */
/* Contact Section CSS Layout             */
/* -------------------------------------- */

.contact-light-section {
    padding: 60px 0;
    background-color: #FAF8F5; /* Light warm off-white */
    position: relative;
    z-index: 10;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Subtle Gold Grid Background for Light Theme */
.contact-light-section::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.2;
    pointer-events: none;
    background-image: linear-gradient(rgba(234, 161, 15, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(234, 161, 15, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
}

.contact-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1280px;
    margin: 0 auto;
    align-items: center;
}

/* Left Side */
.contact-left-content {
    padding-right: 30px;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(234, 161, 15, 0.1);
    border: 1px solid rgba(234, 161, 15, 0.3);
    color: #b45309;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 25px;
}

.contact-badge .badge-dot {
    width: 6px;
    height: 6px;
    background-color: #b45309;
    border-radius: 50%;
    margin-right: 8px;
}

.contact-left-title {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
    color: #0A0A0A;
}

.contact-left-desc {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.55;
    margin-bottom: 30px;
    font-weight: 500;
}

/* WhatsApp Button */
.btn-whatsapp-solid {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color-gold-start), var(--color-gold-end));
    color: #0A0A0A;
    padding: 13px 28px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(234, 161, 15, 0.25);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.btn-whatsapp-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(234, 161, 15, 0.35);
}

.btn-whatsapp-solid svg {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

/* Trust Badges */
.trust-badges-row {
    display: flex;
    gap: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 24px;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tb-icon {
    width: 30px;
    height: 30px;
    background: rgba(234, 161, 15, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-start);
}

.tb-text {
    display: flex;
    flex-direction: column;
}

.tb-text strong {
    font-size: 0.72rem;
    font-weight: 800;
    color: #0A0A0A;
    text-transform: uppercase;
}

.tb-text span {
    font-size: 0.65rem;
    color: #6b7280;
    font-weight: 500;
}

/* Right Side Card (Light Theme) */
.contact-right-card {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
}

.contact-list-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.contact-list-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-list-item:first-child {
    padding-top: 0;
}

.contact-list-item:hover .cl-icon-box {
    background: var(--color-gold-start);
    color: #ffffff;
    border-color: var(--color-gold-start);
    transform: scale(1.05);
}

.cl-icon-box {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1.5px solid rgba(234, 161, 15, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-start);
    transition: all 0.3s ease;
}

.cl-icon-box svg {
    width: 16px;
    height: 16px;
}

.cl-content {
    flex-grow: 1;
}

.cl-content h5 {
    font-size: 0.72rem;
    color: var(--color-gold-start);
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.cl-content p,
.cl-content a {
    display: block;
    font-size: 0.88rem;
    color: #1f2937;
    font-weight: 600;
    text-decoration: none;
    line-height: 1.45;
    transition: color 0.3s;
}

.cl-content a:hover {
    color: var(--color-gold-start);
}

.cl-arrow {
    font-size: 1.1rem;
    color: #d1d5db;
    transition: color 0.3s, transform 0.3s;
}

.contact-list-item:hover .cl-arrow {
    color: var(--color-gold-start);
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .contact-split-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-left-content {
        padding-right: 0;
        text-align: left;
    }

    .trust-badges-row {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 16px 24px;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        padding-top: 20px;
    }

    .contact-badge {
        margin: 0 0 25px 0;
    }
}

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

    .contact-left-title {
        font-size: 1.6rem;
        line-height: 1.2;
    }

    .contact-left-desc {
        font-size: 0.88rem;
        margin-bottom: 20px;
    }

    .contact-right-card {
        padding: 25px 20px;
        border-radius: 20px;
    }

    .btn-whatsapp-solid {
        padding: 11px 24px;
        font-size: 0.75rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .contact-light-section {
        padding: 40px 0;
    }

    .contact-right-card {
        padding: 20px 15px;
    }

    .contact-list-item {
        gap: 12px;
        padding: 14px 0;
    }

    .cl-icon-box {
        width: 32px;
        height: 32px;
    }

    .cl-icon-box svg {
        width: 14px;
        height: 14px;
    }

    .cl-content h5 {
        font-size: 0.65rem;
        margin-bottom: 2px;
    }

    .cl-content p,
    .cl-content a {
        font-size: 0.8rem;
        line-height: 1.35;
        word-break: break-all;
    }

    .cl-arrow {
        display: none; /* Hide arrow on small devices to give text maximum width */
    }

    .trust-badges-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        border-top: none;
        padding-top: 10px;
    }

    .tb-text {
        text-align: left;
    }
}
