/* ================================================================================
   CONTACT PAGE - UPDATED STYLES
   ================================================================================ */
.contact-page {
    background: var(--black);
    min-height: 100vh;
}

/* ================================================================================
   CONTACT HERO WITH PARALLAX BACKGROUND
   ================================================================================ */
.contact-hero {
    position: relative;
    padding: 140px 2rem 80px;
    text-align: center;
    overflow: hidden;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-parallax.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transform: translateZ(0);
    will-change: transform;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(26,26,26,0.7) 100%);
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
}

.hero-underline {
    width: 120px;
    height: 3px;
    background: var(--gold);
    margin: 1.5rem auto;
}

.contact-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--gray-mid);
}

/* ================================================================================
   SHOWCASE SECTION WITH IMAGE SUPPORT
   ================================================================================ */
.showcase-section {
    background: var(--gray-dark);
    padding: 6rem 2rem;
    position: relative;
}

.showcase-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--gray-dark));
    pointer-events: none;
}

.showcase-card {
    position: relative;
    border-radius: 12px;
    max-width: 900px;
    margin: 2rem auto 0;
    border: 1px solid rgba(219,192,120,0.3);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/showcase-preview.jpg');
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    z-index: 0;
}

.showcase-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(219,192,120,0.3);
    border-color: var(--gold);
}

.showcase-card:hover::before {
    transform: scale(1.05);
}

.showcase-card-content {
    padding: 3rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.showcase-card h3 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 700;
}

.showcase-card p {
    font-size: 1.15rem;
    color: var(--white);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.showcase-card .btn {
    display: inline-block;
}

/* ================================================================================
   CONTACT SECTION - STACKED LAYOUT
   ================================================================================ */
.contact-section {
    background: var(--black);
    padding: 6rem 2rem;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, var(--gray-dark), var(--black));
    pointer-events: none;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

/* Contact Form Panel */
.contact-form {
    background: rgba(1,60,68,0.3);
    color: var(--white);
    padding: 3rem;
    border-radius: 10px;
    border: 1px solid rgba(219,192,120,0.2);
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
}

.contact-form h2 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(219,192,120,0.3);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--white);
    transition: all 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.3);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(0,0,0,0.7);
    box-shadow: 0 0 0 3px rgba(219,192,120,0.1);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--black);
    color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    background: var(--gold);
    color: var(--black);
    padding: 1rem 3rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background: #E5C98F;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(219,192,120,0.5);
}

/* Contact Info Grid - Compact Design */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.contact-info-item {
    background: rgba(0,0,0,0.3);
    padding: 1.5rem;
    border-radius: 6px;
    border-left: 3px solid var(--gold);
    transition: all 0.3s;
}

.contact-info-item:hover {
    background: rgba(255,255,255,0.05);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(219,192,120,0.2);
}

.contact-info-item h3 {
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.contact-info-item p,
.contact-info-item a {
    font-size: 1rem;
    color: var(--gray-mid);
    text-decoration: none;
    transition: color 0.3s;
    line-height: 1.6;
    margin-bottom: 0.3rem;
}

.contact-info-item a:hover {
    color: var(--gold);
}

.secondary-text {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* Social Icons for Connect Section */
.social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.1);
}

.social-icons img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ================================================================================
   MAP SECTION
   ================================================================================ */
.map-section {
    background: var(--gray-dark);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
}

.map-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, var(--black), var(--gray-dark));
    pointer-events: none;
}

.map-section h2 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.map-section p {
    color: var(--gray-mid);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.map-placeholder {
    max-width: 1200px;
    margin: 0 auto;
    height: 400px;
    background: url("../images/LakeMacCouncil_SpeersPoint.png") center / cover no-repeat;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    border: 1px solid rgba(219,192,120,0.2);
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-text {
    position: relative;
    z-index: 1;
    background: rgba(0,0,0,0.8);
    padding: 2rem 3rem;
    border-radius: 8px;
    border: 1px solid var(--gold);
    backdrop-filter: blur(10px);
}

.map-text h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.map-text p {
    color: var(--white);
    font-size: 1.1rem;
}

/* ================================================================================
   RESPONSIVE DESIGN
   ================================================================================ */
@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.2rem;
    }
    
    .contact-hero p {
        font-size: 1.1rem;
    }
    
    .contact-hero-bg {
        background-attachment: scroll;
    }
    
    .showcase-card-image {
        height: 200px;
    }
    
    .showcase-card-content {
        padding: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .map-placeholder {
        height: 300px;
    }
    
    .map-text {
        padding: 1.5rem 2rem;
    }
}