/* Modern Contact Page Redesign */
:root {
    --primary-gradient: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: 1px solid rgba(255, 255, 255, 0.2);
    --text-dark: #1e293b;
    --text-light: #64748b;
    --accent-blue: #3b82f6;
}

/* Main Container with Hero Background */
.contact-hero-section {
    position: relative;
    min-height: 100vh;
    background-image: url('/pics/luxury_car_wash_hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    /* INCREASED PADDING TO CLEAR HEADER */
    padding: 160px 20px 80px 20px;
    font-family: 'Manrope', sans-serif;
}

/* Dark Overlay */
.contact-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.8) 100%);
    z-index: 1;
}

/* Glass Card Container */
.contact-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    background: var(--glass-bg);
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Left Side: Info */
.contact-info-side {
    flex: 1;
    min-width: 350px;
    padding: 60px;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.contact-info-side::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    filter: blur(40px);
}

.section-label {
    color: var(--accent-blue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 16px;
    display: block;
}

.contact-headline {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 24px;
    background: linear-gradient(to right, #1e293b, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-subtext {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 48px;
}

/* Info Cards */
.info-grid {
    display: grid;
    gap: 30px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.info-icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content h4 {
    margin: 0 0 4px 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.info-content p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.info-content a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s;
}

.info-content a:hover {
    color: var(--accent-blue);
}

/* Right Side: Form */
.contact-form-side {
    flex: 1.2;
    min-width: 400px;
    padding: 60px;
    background: white;
}

.form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.modern-input,
.modern-textarea {
    width: 100%;
    padding: 16px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    font-family: inherit;
}

.modern-input:focus,
.modern-textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: white;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.modern-textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Map Section */
.map-container-modern {
    width: 100%;
    height: 400px;
    margin-top: 0;
    position: relative;
    z-index: 2;
}

.map-frame {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%) contrast(1.2);
    transition: filter 0.5s ease;
}

.map-frame:hover {
    filter: grayscale(0%) contrast(1);
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-info-side,
    .contact-form-side {
        padding: 40px 20px;
    }

    .contact-headline {
        font-size: 2.5rem;
    }
}