/* ═══════════════════════════════════════════════
   CONTACT PAGE STYLES
   ═══════════════════════════════════════════════ */

/* ---------- Contact Hero/Banner ---------- */
.contact-hero {
    position: relative;
    padding: 180px 0 100px;
    background: linear-gradient(rgba(15, 29, 53, 0.4), rgba(15, 29, 53, 0.4)), 
                url('../images/img-contact-banner.png');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #ffffff !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-hero .breadcrumb {
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: inline-flex;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 25px;
}

.contact-hero .breadcrumb-item, 
.contact-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
}

.contact-hero .breadcrumb-item.active {
    color: #ffffff;
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.contact-hero p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    color: #ffffff;
}

/* ---------- Contact Section ---------- */
.contact-section {
    padding: 100px 0;
    background-color: var(--white);
}

.contact-header {
    margin-bottom: 60px;
}

.contact-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0F1D35;
    margin-bottom: 15px;
}

.contact-header h2 span {
    color: #2563EB;
}

.contact-header p {
    color: #64748B;
    max-width: 500px;
}

/* ---------- Registration Form ---------- */
.register-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.register-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0F1D35;
    margin-bottom: 10px;
}

.register-card .card-subtitle {
    font-size: 14px;
    color: #64748B;
    margin-bottom: 30px;
}

.form-label {
    font-size: 14px;
    font-weight: 500;
    color: #0F1D35;
    margin-bottom: 8px;
}

.form-control, .form-select {
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 14px;
    color: #0F1D35;
    background-color: #F8FAFC;
}

.form-control:focus, .form-select:focus {
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background-color: #FFFFFF;
}

.btn-register {
    background-color: #0B4A8F;
    color: var(--white);
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    width: 100%;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-register:hover {
    background-color: #083D75;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(11, 74, 143, 0.3);
    color: var(--white);
}

/* ---------- Contact Info Cards ---------- */
.info-cards-row {
    margin-top: 60px;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 15px;
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: #2563EB;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.info-icon-box {
    width: 50px;
    height: 50px;
    background-color: #0B4A8F;
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0F1D35;
    margin-bottom: 5px;
}

.info-text p {
    font-size: 14px;
    color: #64748B;
    margin: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .contact-hero { padding: 150px 0 80px; }
    .contact-hero h1 { font-size: 36px; }
    .register-card { padding: 30px; }
    .contact-img-wrapper { margin-top: 40px; }
}

@media (max-width: 767px) {
    .contact-header { text-align: center; }
    .contact-header p { margin: 0 auto; }
}
