/* Contact Section Styles - Page Specific */

.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
    color: var(--gold-primary);
}


.breadcrumbs {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    display: inline-flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    padding: 10px 30px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.light-mode .breadcrumbs {
    background: rgba(10, 25, 47, 0.05);
    color: var(--text-secondary);
    border-color: rgba(10, 25, 47, 0.1);
}

.breadcrumbs a {
    color: var(--gold-primary);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 700;
}

.breadcrumbs a:hover {
    color: var(--white);
    transform: translateY(-2px);
}

body.light-mode .breadcrumbs a:hover {
    color: var(--navy-primary);
}


/* Theme-Aware Premium Styling for Contact Page ONLY */
.contact-section:not(#contact) {
    background-color: var(--navy-primary);
    background-image: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-secondary) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    border-top: none;
    transition: background 0.3s ease;
}

/* Decorative Orbs - Page Only (Visible mainly in Dark Mode) */
.contact-section:not(#contact)::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212,175,55,0.03) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.3s;
}

.contact-section:not(#contact)::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(100,255,218,0.02) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.3s;
}

/* Hide Orbs in Light Mode */
body.light-mode .contact-section:not(#contact)::before,
body.light-mode .contact-section:not(#contact)::after {
    opacity: 0;
}

/* Page Layout */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.contact-info-col {
    color: var(--text-primary);
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.contact-desc {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 40px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--navy-secondary); 
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.info-item:hover {
    border-color: var(--gold-primary);
    transform: translateX(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-text h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.info-text p {
    color: var(--text-secondary);
    margin: 0;
}

/* Social Links */
.contact-social h4 {
    color: var(--text-primary);
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 45px;
    height: 45px;
    background: var(--navy-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: 0.3s;
}

.social-btn:hover {
    background: var(--gold-primary);
    color: #fff;
    border-color: var(--gold-primary);
    transform: translateY(-3px);
}

/* Contact Form Column */
.contact-form-col {
    background-color: var(--navy-secondary);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.form-title {
    color: var(--gold-primary);
    margin-bottom: 30px;
    font-size: 1.5rem;
    font-weight: 700;
}

.contact-form .input-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.contact-form input, 
.contact-form select, 
.contact-form textarea {
    width: 100%;
    background: var(--navy-primary);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 12px 15px;
    color: var(--text-primary);
    font-family: inherit;
    transition: 0.3s;
}

.contact-form input:focus, 
.contact-form select:focus, 
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
    background: var(--navy-primary);
}

/* Ensure placeholder visibility in both modes if needed, usually browser handles contrast, 
   but can set ::placeholder color var(--text-secondary) if verified. */

.contact-form .btn-gold {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    background: linear-gradient(90deg, #d4af37, #f6e27a);
    border: none;
    border-radius: 8px;
    color: #0a192f; /* Keep dark text on gold button */
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form .btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.input-row {
    display: flex;
    gap: 20px;
}

.input-row .input-group {
    flex: 1;
}

/* Mobile Adjustments */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-form-col {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .input-row {
        flex-direction: column;
        gap: 0;
    }
    
    .contact-section:not(#contact) {
        padding: 60px 0;
    }
    
    .contact-title {
        font-size: 2rem;
    }
}
