/* ========================= */
/* CONTACT SECTION LAYOUT    */
/* ========================= */

.contact-section {
    position: relative;
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* 🎯 FIX: Removed horizontal padding to stop the double-squeeze */
    padding: var(--space-xl) 0; 
}

.contact-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    z-index: 2;
}

.contact-section .services-title {
    font-size: clamp(1.8rem, 5vw, 2.4rem);
    margin-bottom: var(--space-md);
    text-align: center;
}

.contact-section .hero-footer {
    position: absolute;
    bottom: var(--space-md);
    left: 0;
    width: 100%;
    text-align: center;
    opacity: 0.6;
    pointer-events: none;
}

/* 📱 RESPONSIVE ADJUSTMENTS */

@media (max-width: 768px) {
    .contact-section {
        /* 🎯 FIX: Removed horizontal padding here too */
        padding: var(--space-lg) 0;
    }
    
    .contact-section .container {
        justify-content: center;
        padding-top: var(--space-md);
    }

    .contact-section .hero-footer {
        position: relative;
        margin-top: var(--space-md);
        bottom: 0;
    }
    
    .contact-section .services-title {
        font-size: 1.6rem;
        margin-bottom: var(--space-sm);
    }
}

/* SCREEN HEIGHT FIX */
@media (max-height: 800px) and (min-width: 769px) {
    .contact-card {
        transform: scale(0.9);
        transform-origin: center;
    }
}

@media (max-height: 650px) {
    .contact-card {
        transform: scale(0.85);
        transform-origin: center top;
    }
}