/* Contact Page Specific Styles */

/* Hero Section - Matching other pages */
.inner-page .navbar {
    /* background: rgba(255, 255, 255, 0.95); */
    background: rgba(0,0,0,0.95);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    padding: 0px 20px;
}

.inner-page .navbar .scrolled-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.inner-page .navbar-brand {
    color: var(--color-black);
}

.inner-page .navbar-brand img {
    max-height: 100px;
}

.inner-page .menu-trigger {
    color: var(--color-white);
}

.inner-page .menu-icon {
    /* border-color: rgba(0,0,0,0.2);
    color: var(--color-black); */
}

.contact-hero {
    height: 30vh;
    /* min-height: 400px; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-top: 80px; */
    background-color: var(--color-black);
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), url('../images/about_us_bg.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 0 0 60px 60px;
    margin-bottom: 2rem;
}

.contact-hero h1 {
    /* font-size: 10vw; */
    font-size: 5vw;
    /* letter-spacing: -5px; */
    color: var(--color-white);
    font-weight: 700;
    /* text-transform: uppercase; */
    font-family: var(--font-heading);
}

.contact-band-section {
    background-color: var(--color-black);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 60px;
    margin: 0.2rem;
    padding: 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.about-intro-text {
    line-height: 1.8;
    font-weight: 300;
}

/* Contact Section Scoped Dark Theme */
#contactPage {
    /* background-color: var(--color-black); */
    color: var(--color-white);
}

/* Ensure both cards are equal height and match padding */
.contact-form-card {
    background: #111;
    border-radius: 30px;
    padding: 3rem;
    border: 1px solid rgba(255,255,255,0.05);
    height: 100%;
}

.contact-info-wrapper {
    background-color: #e6e6e6;
    border-radius: 30px;
    padding: 3rem;
    height: 100%;
}


/* Form Styles */
.form-control-dark {
    background-color: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 10px;
}

.form-control-dark:focus {
    background-color: #222;
    border-color: var(--color-gold);
    color: #fff;
    box-shadow: none;
}

.form-control-dark::placeholder {
    color: rgba(255,255,255,0.3);
}

/* Custom Select Dropdown Arrow */
.form-select.form-control-dark {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

/* Info Section Styles */

.info-item {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}


.info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}


.social-links a:hover {
    background: var(--color-gold);
    color: var(--color-black) !important;
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .contact-form-card {
        padding: 2rem;
    }
    
    .contact-info-wrapper {
        padding-left: 0 !important;
        padding-top: 2rem !important;
    }

    .contact-hero h1 {
        font-size: 10vw;
    }
}
