/* ========== CONTACT HERO ========== */
.contact-hero {
    position: relative;
    height: 45vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: #000;
}

.contact-hero .hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    z-index: 1;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.contact-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 5;
}

.contact-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.contact-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    text-transform: uppercase;
    letter-spacing: 8px;
    font-weight: 700;
    margin: 0;
}

/* ========== CONTACT GRID ========== */
.contact-main {
    padding: 8rem 2rem;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 6rem;
}

/* Form Styles */
.sub-heading {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 1rem;
    display: block;
}

.contact-form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid #e0e0e0;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    background: #fafafa;
    transition: all 0.3s ease;
}

.form-group input:focus, 
.form-group textarea:focus {
    border-color: #1a1a1a;
    background: #fff;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background-color: #1a1a1a;
    color: #fff;
    border: 1px solid #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: transparent;
    color: #1a1a1a;
}

/* Sidebar Details */
.contact-details {
    padding-top: 4rem;
}

.detail-item {
    margin-bottom: 3.5rem;
}

.detail-item h3 {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 1rem;
}

.detail-item p, .social-links a {
    font-size: 1.3rem;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 300;
}

.social-links {
    list-style: none;
    padding: 0;
}

.social-links li {
    margin-bottom: 0.8rem;
}

.social-links a:hover {
    text-decoration: underline;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .contact-main {
        padding: 5rem 2rem;
    }
}