/* --- CONTACT SECTION STYLES --- */

.contact-section-1 {
    padding: 8rem 5%;
    background-color: transparent;
    position: relative;
    z-index: 5;
}

/* Main Section Headline (Majestic Tone) */
.contact-headline-1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 4rem;
    text-align: center;
    /* Use Gold/Brass gradient for authority */
    background: linear-gradient(90deg, #ffebad 0%, #d8ae43 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.contact-subheading-1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #fff;
    /* Azure Blue underline for contact details, Purple for form */
    border-bottom: 2px solid rgba(0, 191, 255, 0.4); 
    padding-bottom: 5px;
}

/* Contact Card (Reusing Glass Panel) */
.contact-card-1 {
    /* The glass-panel class handles the border, blur, and background */
    padding: 3rem !important;
}

/* Contact Information */
.contact-intro-text-1 {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.info-group-1 {
    margin-bottom: 2rem;
}

.contact-item-1 {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
}

.icon-wrap-1 {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    border: 1px solid transparent;
}

.azure-bg { background-color: rgba(0, 191, 255, 0.15); border-color: rgba(0, 191, 255, 0.4); }
.gold-bg { background-color: rgba(255, 215, 0, 0.1); border-color: rgba(255, 215, 0, 0.3); }
.green-bg { background-color: rgba(72, 187, 120, 0.15); border-color: rgba(72, 187, 120, 0.4); }

.icon-azure-1 { color: #00bfff; filter: drop-shadow(0 0 5px #00bfff); }
.icon-gold-1 { color: #ffebad; filter: drop-shadow(0 0 5px #ffebad); }
.icon-green-1 { color: #48bb78; filter: drop-shadow(0 0 5px #48bb78); }

.info-text-1 {
    color: #fff;
    font-size: 1rem;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 0.5px;
}

/* Social Links */
.social-links-1 {
    display: flex;
    gap: 15px;
}

.social-btn-1 {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    transition: background 0.3s, border-color 0.3s;
    border: 1px solid transparent;
}

.social-btn-1.hover-azure:hover {
    background: rgba(0, 191, 255, 0.1);
    color: #00bfff;
    border-color: #00bfff;
    filter: drop-shadow(0 0 5px #00bfff);
}

/* Message Form */

.form-label-1 {
    display: block;
    color: #00bfff;
    font-size: 0.9rem;
    margin-bottom: 8px;
    font-weight: 600;
    font-family: 'Rajdhani', sans-serif;
}

.form-input-1 {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 6px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input-1:focus {
    outline: none;
    border-color: #00bfff;
    box-shadow: 0 0 10px rgba(0, 191, 255, 0.5); /* Neon focus effect */
    background: rgba(0, 191, 255, 0.05);
}

.form-input-1::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Submit Button */
.submit-btn-1 {
    width: 100%;
    /* Use the primary Azure/Blue gradient */
    background: linear-gradient(90deg, #00bfff 0%, #0080ff 100%);
    color: #0a0a0f;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 12px;
    border-radius: 6px;
    text-transform: uppercase;
    transition: background 0.3s, transform 0.3s;
    box-shadow: 0 5px 20px rgba(0, 191, 255, 0.4);
}

.submit-btn-1:hover {
    background: linear-gradient(90deg, #0080ff 0%, #00bfff 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 191, 255, 0.6);
}

.form-status-1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    color: #48bb78; /* Default success color */
}

/* Simple Footer */
.contact-footer-1 {
    text-align: center;
    margin-top: 4rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}