/* --- CONTACT PAGE STYLES --- */

body {
    background-color: #050505; /* Deep Black */
    color: #fff;
    font-family: 'Arial', sans-serif;
}
/* NAVBAR STYLES IN style.css */


/* 1. HERO SECTION (UPDATED WITH VIDEO) */
.contact-hero {
    position: relative;
    height: 60vh; /* Keep 60vh so form is visible */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: #000;
}

/* Video Background */
.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0.9; /* Adjust visibility */
}

/* Dark Overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    z-index: 1;
}

/* Content on top of video */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 5vw;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.hero-title .outline-text {
    -webkit-text-stroke: 1px #fff;
    color: transparent;
}

.hero-sub {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 500px;
    margin: 0 auto;
    text-shadow: 0 2px 5px rgba(0,0,0,0.8);
}

/* 2. PANEL GRID (Unchanged) */
.contact-panel {
    padding: 80px 0;
    background: #0a0a0a;
}

.panel-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Info is smaller, Form is wider */
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* LEFT: Info Box */
.info-box h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.address-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 50px;
    border-left: 2px solid #333;
    padding-left: 20px;
}

.detail-item {
    margin-bottom: 30px;
}

.detail-item .label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.detail-item .value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
}

/* RIGHT: Form Box */
.form-box {
    background: #111;
    padding: 40px;
    border: 1px solid #222;
}

.industrial-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Input Styling - The "Blueprint" Look */
.industrial-form input,
.industrial-form select,
.industrial-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #444; /* Bottom line only */
    color: #fff;
    font-size: 1.1rem;
    padding: 10px 0;
    transition: border-color 0.3s;
}

.industrial-form input:focus,
.industrial-form textarea:focus {
    outline: none;
    border-bottom-color: #ffffff; /* Orange on focus */
}

/* Fix for Select dropdown arrow */
.industrial-form select {
    appearance: none;
    border-radius: 0;
}

.industrial-form select option {
    background: #111; /* Fixes white dropdown on dark mode */
    color: #fff;
}

.submit-btn {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase;
    align-self: flex-start;
    transition: background 0.3s;
    margin-top: 20px;
}

.submit-btn:hover {
    background: #fff;
    color: var(--accent);
}

/* 3. MAP */
.map-section {
    width: 100%;
    filter: none
    margin-bottom: -5px; /* Removes tiny gap before footer */
}

/* Responsive */
@media (max-width: 900px) {
    .panel-grid {
        grid-template-columns: 1fr; /* Stack vertically */
    }
    
    .contact-hero {
        height: 50vh;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}
