:root {
    --gold: #FFD700;
    --navy: #232B38;
    --white: #fff;
    --light-bg: #F8F9FA;
    --gray: #6C757D;
    --font-main: 'Poppins', 'Montserrat', Arial, sans-serif;
}

/* Contact Hero */
.contact-hero {
    min-height: 50vh;
    background: var(--navy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 0 40px 0;
    position: relative;
    overflow: hidden;
}
.contact-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(35,43,56,0.8);
}
.hero-content {
    position: relative;
    z-index: 1;
}
.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--gold);
    text-shadow: 0 4px 24px rgba(35,43,56,0.12);
    font-family: var(--font-main);
}
.section-subtitle {
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 1px;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 2px 16px rgba(35,43,56,0.07);
    padding: 2.5rem;
    transition: box-shadow 0.2s;
}
.contact-form:hover {
    box-shadow: 0 8px 32px rgba(35,43,56,0.13);
}
.form-control {
    border: 1px solid rgba(35,43,56,0.1);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(255,215,0,0.15);
}
.form-label {
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.btn-submit {
    background: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: 30px;
    padding: 0.75rem 2.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 24px rgba(35,43,56,0.12);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.btn-submit:hover {
    background: var(--navy);
    color: var(--gold);
    box-shadow: 0 8px 32px rgba(35,43,56,0.18);
}

/* Contact Info */
.contact-info-card {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 2px 16px rgba(35,43,56,0.07);
    padding: 2rem;
    height: 100%;
    transition: box-shadow 0.2s, transform 0.2s;
}
.contact-info-card:hover {
    box-shadow: 0 8px 32px rgba(35,43,56,0.13);
    transform: translateY(-6px) scale(1.03);
}
.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--navy);
    font-size: 1.5rem;
    box-shadow: 0 4px 24px rgba(35,43,56,0.12);
}
.contact-info-card h5 {
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: var(--font-main);
}
.contact-info-card p {
    color: var(--gray);
    margin-bottom: 0.5rem;
}

/* Map Section */
.map-section {
    background: var(--light-bg);
    padding: 60px 0;
}
.map-container {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(35,43,56,0.07);
    height: 400px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}
.social-link {
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    transition: background 0.2s, transform 0.2s;
}
.social-link:hover {
    background: var(--navy);
    color: var(--gold);
    transform: translateY(-3px);
}

/* Section Styles */
.section {
    padding: 60px 0;
}
.section-title {
    color: var(--navy);
    font-weight: 800;
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
    font-family: var(--font-main);
}
.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
    margin: 0.5rem auto 0 auto;
}
.bg-light {
    background: var(--light-bg) !important;
}

/* Responsive */
@media (max-width: 767px) {
    .hero-title { font-size: 1.7rem; }
    .contact-form { padding: 1.5rem; }
    .contact-info-card { margin-bottom: 1.5rem; }
    .map-container { height: 300px; }
} 