:root {
    --primary-color: #ffc107;
    --dark-color: #1a1a1a;
    --medium-gray: #2c2c2c;
    --light-gray: #f4f4f4;
    --text-color: #e0e0e0;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-color);
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1rem;
}

h1 { font-size: 4rem; }
h2 { font-size: 2.5rem; text-align: center; margin-bottom: 2rem; }
h3 { font-size: 1.5rem; color: var(--primary-color); }

section {
    padding: 60px 20px;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--dark-color);
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #ffda6a;
    transform: translateY(-3px);
}

/* --- Header & Navigation --- */
header {
    background-color: rgba(26, 26, 26, 0.9);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 40px;
    border-bottom: 3px solid var(--primary-color);
    backdrop-filter: blur(5px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    line-height: 1.1; 
}

nav .logo .logo-main {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #fff;
    font-weight: 700;
}

nav .logo .logo-sub {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--primary-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

nav .nav-links {
    list-style: none;
    display: flex;
}

nav .nav-links li {
    margin: 0 15px;
}

nav .nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

nav .nav-links a:hover {
    color: var(--primary-color);
}

.social-media a {
    color: #fff;
    margin-left: 15px;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-media a:hover {
    color: var(--primary-color);
}

/* --- Hero Section & Zoom Effect --- */
#hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    color: #fff;
}

.hero-bg-zoom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/hero-background.png') no-repeat center center/cover;
    background-color: var(--medium-gray);
    filter: brightness(0.5);
    z-index: -1;
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.hero-content {
    z-index: 1;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* --- Services Section --- */
#services {
    background-color: var(--medium-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: var(--dark-color);
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    padding: 20px;
    border-bottom: 4px solid transparent;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin-bottom: 1rem;
    border-radius: 4px;
}

/* --- About Section --- */
/* --- About Section Styling --- */
.about-container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap; /* Allows items to wrap on smaller screens */
}

.about-text {
    flex: 1; /* Takes up half the space */
    min-width: 300px; /* Ensures text doesn't get too squished */
}

/* This is the FIX */
.about-video {
    flex: 1; /* Takes up the other half of the space */
    min-width: 300px; /* Ensures video has a minimum width on small screens */
    width: 100%;
    height: 350px; /* Give it a fixed height for a clean layout */
    object-fit: cover; /* IMPORTANT: Fills the container without stretching/distorting */
    border-radius: 8px; 
    border: 5px solid var(--medium-gray); 
}
/* --- Contact Section --- */
#contact {
    background-color: var(--medium-gray);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info, .contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.contact-socials a {
    color: #fff;
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.contact-socials a:hover {
    color: var(--primary-color);
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background-color: var(--dark-color);
    border: 1px solid #444;
    color: var(--text-color);
    border-radius: 4px;
}

.contact-form textarea {
    resize: vertical;
}

/* --- WhatsApp Floating Button --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.4);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 20px;
    background-color: #000;
    color: #888;
}

/* --- Animations --- */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up {
    transform: translateY(30px);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Google Map Styling --- */
.map-container {
    max-width: 1100px; /* Match the width of the contact form container */
    margin: 40px auto 0 auto; /* Add some space above the map and center it */
}

.map-container iframe {
    width: 100%; /* Make the map responsive */
    height: 400px;
    border-radius: 8px; /* Give it rounded corners to match the site design */
    filter: grayscale(80%) brightness(0.8); /* Optional: Muted, industrial look */
    transition: filter 0.4s ease;
}

.map-container iframe:hover {
    filter: grayscale(0%) brightness(1); /* Full color on hover */
}


/* --- Responsive Design --- */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    nav .nav-links, nav .social-media {
        display: none; /* Simple hide for mobile, can be replaced with a hamburger menu later */
    }

    .about-container {
        flex-direction: column;
    }
}