/* =========================================
   CONTACT SECTION (Premium)
   ========================================= */
.contact-section {
    padding-top: 50px;
    padding-bottom: 100px;
    background-color: #f8fafc;
}

/* CONTACT CARD (LEFT FORM) */
.contact-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
}

.contact-card h4 {
    font-weight: 800;
    color: #0f172a;
    position: relative;
    padding-bottom: 15px;
}

.contact-card h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: #0d6efd;
    border-radius: 3px;
}

/* PREMIUM FORM INPUTS */
.contact-card .form-control,
.contact-card .form-select {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px 20px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: none;
}

.contact-card .form-control:focus,
.contact-card .form-select:focus {
    background-color: #ffffff;
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.contact-card label {
    font-weight: 600;
    color: #475569;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.contact-card button[type="submit"] {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    border: none;
    border-radius: 12px;
    padding: 15px 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.2);
    transition: all 0.3s ease;
}

.contact-card button[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(13, 110, 253, 0.3);
}

/* RIGHT INFO CARD */
.contact-info-card {
    background: linear-gradient(135deg, #101a28 0%, #1e293b 100%);
    border-radius: 20px;
    padding: 40px;
    color: #ffffff;
    box-shadow: 0 20px 50px rgba(16, 26, 40, 0.2);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

/* TITLE */
.contact-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
    background: linear-gradient(to right, #ffffff, #93c5fd);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.contact-subtitle {
    color: #94a3b8;
    margin-bottom: 35px;
    font-size: 1.05rem;
}

/* DETAILS LIST */
.contact-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-details li {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    font-size: 1rem;
    color: #cbd5e1;
}

.contact-details i {
    width: 45px;
    height: 45px;
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-right: 18px;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-details li:hover i {
    background: #3b82f6;
    color: #ffffff;
    transform: scale(1.1);
}

.contact-details a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-details a:hover {
    color: #ffffff;
}

/* WHATSAPP CTA */
.whatsapp-cta {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    margin-top: 35px;
}

.whatsapp-cta strong {
    color: #e2e8f0;
}

.whatsapp-cta .btn-success {
    background: #22c55e;
    border: none;
    border-radius: 10px;
    padding: 12px;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.whatsapp-cta .btn-success:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.2);
}

/* SOCIAL */
.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.contact-social a.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-social a.social-icon:hover {
    background: #3b82f6;
    color: #ffffff;
    border-color: #3b82f6;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

/* MAP HEADER */
.map-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    font-size: 1.1rem;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.map-header i {
    color: #60a5fa;
    margin-right: 10px;
}

.map-link {
    font-size: 0.9rem;
    color: #60a5fa;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.map-link:hover {
    color: #93c5fd;
}

/* MAP BOX */
.map-box {
    margin-top: 25px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.map-box iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
    filter: invert(100%) hue-rotate(180deg) brightness(95%) contrast(85%);
}

@media (max-width: 768px) {

    .contact-card,
    .contact-info-card {
        padding: 25px;
        border-radius: 16px;
    }
}

/* =========================================
   HOMEPAGE CONTACT SECTION (Additional)
   ========================================= */
.contact-premium-section {
    background-color: #fff;
}

.contact-premium-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
}

.form-control-premium {
    background-color: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    padding: 12px 20px !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
}

.form-control-premium:focus {
    background-color: #fff !important;
    border-color: #0d6efd !important;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1) !important;
}

.info-premium-box {
    background: linear-gradient(135deg, #101a28 0%, #1e293b 100%);
    border-radius: 24px;
    padding: 50px;
    color: #fff;
    height: 100%;
}

.info-list-premium {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list-premium li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-list-premium i {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.info-list-premium a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.info-list-premium a:hover {
    color: #fff;
}

.info-list-premium span {
    color: #94a3b8;
}