/* Premium Contact Page Redesign */

.contact-banner {
    position: relative;
    height: 50vh;
    min-height: 400px;
    background-image: url('images/hero-bg.png'); 
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    margin-top: 80px;
    display: flex;
    align-items: center;
}

.contact-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(123, 17, 19, 0.9) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.banner-content-modern {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 800px;
}

.banner-title-modern {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--white);
}

/* 50/50 Split Layout */
.contact-split {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.contact-left {
    flex: 1;
    min-width: 400px;
    background-color: #111; /* Sleek Dark */
    color: white;
    padding: 100px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.contact-left::before {
    content: '';
    position: absolute;
    top: -30%; right: -30%; width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(192, 0, 0, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.contact-right {
    flex: 1.2;
    min-width: 400px;
    background-color: #fafafa;
    padding: 100px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Left side styling */
.contact-left h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.1;
    color: var(--white);
}

.contact-left p.lead {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 60px;
    line-height: 1.7;
    max-width: 90%;
}

.premium-contact-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.detail-block {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.detail-block i {
    font-size: 2rem;
    color: var(--accent);
    margin-top: 5px;
}

.detail-block h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-block p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
    margin: 0;
}

.social-links-premium {
    margin-top: 80px;
    display: flex;
    gap: 25px;
    position: relative;
    z-index: 2;
}

.social-links-premium a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links-premium a:hover {
    color: var(--accent);
    transform: translateY(-5px);
}

/* Right side form styling */
.contact-right h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.premium-form .form-group {
    margin-bottom: 25px;
}

.premium-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.premium-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.premium-form input,
.premium-form textarea {
    width: 100%;
    padding: 15px 20px;
    background: #fff;
    border: 1px solid #e0e0e0;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 4px;
}

.premium-form input:focus,
.premium-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 5px 15px rgba(192, 0, 0, 0.08); /* subtle red shadow */
}

.premium-form textarea {
    height: 150px;
    resize: vertical;
}

.btn-premium {
    background-color: var(--accent);
    color: white;
    border: none;
    padding: 18px 45px;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 15px;
    border-radius: 4px;
}

.btn-premium:hover {
    background-color: #a00000;
    transform: translateY(-3px);
}

/* Map Section */
.map-section {
    width: 100%;
    height: 600px;
    display: block;
    line-height: 0;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
    /* Sleek grayscale filter for the map to look more premium */
    filter: grayscale(100%) contrast(1.1); 
}

@media (max-width: 992px) {
    .contact-split {
        flex-direction: column;
    }
    .contact-left, .contact-right {
        padding: 60px 5%;
        min-width: 100%;
    }
    .contact-left h2 {
        font-size: 2.8rem;
    }
}
@media (max-width: 768px) {
    .premium-form .form-row {
        grid-template-columns: 1fr;
    }
    .map-section {
        height: 400px;
    }
}
