/* --- GLOBAL STYLES --- */
:root {
    --primary-orange: #ff8c00;
    --dark-bg: #000000; /* Set to pure black to blend with logo.jpg */
    --light-grey: #f4f4f4;
    --white: #ffffff;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    background-color: var(--light-grey);
    color: #333;
}

/* --- NAVIGATION & HEADER (Narrow & Centered) --- */
header.main-header {
    background: var(--dark-bg);
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: grid;
    grid-template-columns: 1fr auto 1fr; /* Centers the logo automatically */
    align-items: center;
    padding: 5px 40px;
    border-bottom: 3px solid var(--primary-orange);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.header-logo { 
    max-height: 150px; /* Optimal size for the oval logo */
    width: auto; 
    display: block;
}

nav.left-nav a { 
    color: white; 
    text-decoration: none; 
    margin-right: 20px; 
    font-weight: bold; 
    text-transform: uppercase; 
    font-size: 0.85rem; 
    transition: 0.3s; 
}
nav.left-nav a:hover { color: var(--primary-orange); }

.btn-call { 
    background: var(--primary-orange); 
    color: white !important; 
    padding: 10px 20px; 
    text-decoration: none; 
    border-radius: 4px; 
    font-weight: bold; 
    font-size: 0.85rem; 
}
.btn-call:hover { background: #e07b00; }

.right-contact { text-align: right; }

/* --- HERO SECTION (Original Video Logic) --- */
.hero-container {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

#hero-video {
    position: absolute;
    top: 50%; left: 50%;
    min-width: 100%; min-height: 100%;
    z-index: 1;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 2;
}

.hero-content { position: relative; z-index: 3; }
.hero-content h1 { font-size: clamp(2.5rem, 8vw, 4.5rem); margin: 0; text-transform: uppercase; letter-spacing: 2px; }

/* --- CONTENT SECTIONS (Original 1-2-3 Logic) --- */
.section { padding: 80px 20px; max-width: 1200px; margin: auto; text-align: center; }
.alt-bg { background-color: #fff; max-width: 100%; border-top: 1px solid #ddd; border-bottom: 1px solid #ddd; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

.card { 
    background: white; padding: 40px; border-radius: 8px; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); border-top: 6px solid var(--primary-orange); 
}

.step-number { 
    background: var(--primary-orange); color: white; width: 40px; height: 40px; 
    border-radius: 50%; display: flex; align-items: center; justify-content: center; 
    margin: 0 auto 20px; font-weight: bold; font-size: 1.2rem;
}

/* --- FOOTER (Original Layout) --- */
footer { background: #1a1a1a; color: #888; padding: 60px 20px; text-align: center; border-top: 5px solid var(--primary-orange); }
footer a { color: var(--primary-orange); text-decoration: none; }
.copyright { font-size: 0.8rem; margin-top: 30px; }

/* --- MOBILE STYLES (Responsive Fix) --- */
@media (max-width: 900px) {
    header.main-header { 
        grid-template-columns: 1fr; 
        text-align: center; 
        padding: 15px 10px; 
    }
    .header-logo { 
        grid-column: 1; 
        margin: 0 auto 15px; 
        max-height: 85px; /* Smaller height for phones */
    }
    nav.left-nav { 
        grid-column: 1; 
        margin-bottom: 15px; 
        display: flex; 
        flex-wrap: wrap; 
        justify-content: center;
        gap: 5px;
    }
    nav.left-nav a { margin: 0 10px; font-size: 0.8rem; }
    .right-contact { grid-column: 1; text-align: center; }
}