/* ==========================================================
   CONTACT PAGE — Kajhi Trans
   Stylesheet for app/Views/contact.php
   ========================================================== */

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-light);
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.25);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.contact-hero {
    background: linear-gradient(rgba(10, 14, 26, 0.75), rgba(10, 14, 26, 0.75)), url('../img/banner1.png') no-repeat center center;
    background-size: cover;
    border-bottom: 1px solid var(--glass-border);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 50%;
    height: 200%;
    background: radial-gradient(circle, rgba(99,102,241,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.contact-hero-title {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.contact-hero-desc {
    color: var(--text-secondary);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.contact-container {
    padding: 80px 0;
}

/* Contact Info Cards */
.contact-info-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--glass-border-hover);
    transform: translateY(-5px);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 20px;
    flex-shrink: 0;
}

.info-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.info-text {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.info-link {
    color: var(--primary-light);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 600;
}

.info-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Contact Form Card */
.contact-form-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.3s ease;
}

.contact-form-card:hover {
    border-color: var(--glass-border-hover);
}

.form-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.form-subtitle {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 30px;
}

/* Map Box */
.map-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 16px;
    margin-top: 40px;
    overflow: hidden;
}

.map-frame {
    width: 100%;
    height: 350px;
    border: none;
    border-radius: 16px;
    filter: grayscale(1) invert(0.9) contrast(1.2); /* Custom Dark Map Theme */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-form-card {
        padding: 30px 20px;
        margin-top: 30px;
    }
    .contact-info-card {
        padding: 24px 20px;
    }
}
