/* Base Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #000; /* Matches video background */
}

/* Video Background Header */
.video-container {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

#hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

/* Main Content Wrapper */
.content {
    position: relative;
    z-index: 2; /* Sits on top of the video */
    background: #ffffff; /* This covers the video as you scroll */
    box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
}

/* Sections */
.section {
    padding: 100px 10%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section.dark {
    background-color: #1a1a1a;
    color: #f4f4f4;
    max-width: 100%;
}

h1 { font-size: 2.8rem; margin-bottom: 20px; color: #002d62; } /* Professional Navy */
h2 { font-size: 2.2rem; margin-bottom: 30px; }
.lead { font-size: 1.25rem; font-weight: 500; margin-bottom: 20px; color: #555; }

/* Grid & Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: #2a2a2a;
    padding: 30px;
    border-radius: 8px;
    border-bottom: 4px solid #d4af37; /* Gold accent from lion video */
    transition: transform 0.3s ease;
}

.card:hover { transform: translateY(-10px); }

/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 40px auto;
}

input, textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

button {
    padding: 15px;
    background: #002d62;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
}

button:hover { background: #d4af37; color: black; }

footer {
    padding: 40px;
    background: #000;
    color: #777;
    font-size: 0.9rem;
}