/* --- CONTACT PAGE STYLES --- */

/* Hero Section */
.hero {
    position: relative;
    background: url('../assets/hero-bg.jpg') center/cover no-repeat;
    padding: 120px 0;
    text-align: center;
    color: white;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.9), rgba(0, 26, 51, 0.95));
    z-index: -1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero h1 span {
    color: var(--gold, #D4AF37);
    position: relative;
    display: inline-block;
}

.hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--action-orange, #ff6600);
    border-radius: 2px;
}

.hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Contact Layout */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

/* Contact Info Side */
.contact-info {
    padding-right: 20px;
}

.contact-info h2 {
    color: var(--primary-blue, #003366);
    font-size: 2.5rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--action-orange, #ff6600);
    border-radius: 2px;
}

.contact-info p.intro-text {
    color: var(--text-light, #666666);
    margin-bottom: 40px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 35px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 51, 102, 0.08);
    /* Blue shadow hint */
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue, #003366), #001a33);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 51, 102, 0.3);
}

.info-icon i {
    font-size: 1.4rem;
    color: var(--gold, #D4AF37);
}

.info-text h4 {
    color: var(--primary-blue, #003366);
    margin-bottom: 8px;
    font-size: 1.2rem;
    font-weight: 700;
}

.info-text p {
    color: var(--text-light, #666666);
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.5;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.social-link {
    width: 55px;
    height: 55px;
    background: var(--accent-blue, #eef4fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue, #003366);
    font-size: 1.3rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.social-link:hover {
    background: var(--primary-blue, #003366);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 51, 102, 0.3);
}

/* Contact Form Side */
.contact-form-wrapper {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 51, 102, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.contact-form-wrapper h3 {
    color: var(--primary-blue, #003366);
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: var(--primary-blue, #003366);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #eef0f5;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s;
    background: #f8f9fa;
    color: var(--text-dark, #333);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-blue, #003366);
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 51, 102, 0.05);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--action-orange, #ff6600);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.25);
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    background: #e65c00;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 102, 0, 0.35);
}

.submit-btn:disabled {
    background: #cccccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}



/* Map Section */
.map-section {
    background: var(--accent-blue, #eef4fa);
    padding: 80px 0;
    position: relative;
}

.map-header {
    text-align: center;
    margin-bottom: 50px;
}

.map-header h2 {
    color: var(--primary-blue, #003366);
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.map-header p {
    color: var(--text-light, #666);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 51, 102, 0.1);
    border: 5px solid white;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-info {
        padding-right: 0;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }
}