/* --- VARIABLES & RESET --- */
:root {
    --color-bg-main: #1a1a1a;   /* Deep Charcoal */
    --color-bg-darker: #111111; /* Near Black */
    --color-text-primary: #f4f4f4; /* Off-white for readability */
    --color-text-secondary: #a0a0a0; /* Muted gray */
    --color-accent: #c0a062; /* Premium Matte Bronze/Gold */
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;

    --section-padding: 100px 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg-main);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    font-weight: 300;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: 0.05em;
}

h1 { font-size: 3.5rem; line-height: 1.2; margin-bottom: 20px; }
h2 { font-size: 2.5rem; margin-bottom: 25px; }
h3 { font-size: 1.5rem; margin-bottom: 15px; color: var(--color-text-primary); }
h4 { font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 10px; font-weight: 500; }
p { color: var(--color-text-secondary); margin-bottom: 20px; max-width: 700px; }

.accent { color: var(--color-accent) !important; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-600 { max-width: 600px; }
.mt-large { margin-top: 60px; }

/* --- UTILITIES & LAYOUT --- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-pad { padding: var(--section-padding); }
.bg-darker { background-color: var(--color-bg-darker); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;}
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.grid-gap-large { gap: 60px; }

/* --- COMPONENTS --- */
.btn {
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-bg-main);
    border: 1px solid var(--color-accent);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-accent);
}

/* --- HEADER & NAV --- */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(26, 26, 26, 0.9); /* Semi-transparent dark background */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 20px 0;
}

/* Find this in your CSS and replace it */
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ADD THESE NEW CLASSES ANYWHERE IN YOUR CSS */
.header-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    font-family: var(--font-body);
    padding: 5px 12px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    border-radius: 2px;
}

.lang-btn:hover {
    background: var(--color-accent);
    color: var(--color-bg-main);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-decoration: none;
    color: var(--color-text-primary);
    letter-spacing: 0.1em;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--color-text-secondary);
    margin-left: 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
    white-space: nowrap; /* ADD THIS LINE */
}

.nav-link:hover, .nav-link.active { color: var(--color-accent); }

.btn-nav {
    border: 1px solid var(--color-accent);
    padding: 10px 20px;
    color: var(--color-accent);
}
.btn-nav:hover { background: var(--color-accent); color: var(--color-bg-main); }

.mobile-toggle { display: none; cursor: pointer; }
.mobile-toggle span {
    display: block; width: 25px; height: 2px; background: var(--color-accent); margin: 5px; transition: all 0.3s ease;
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center; z-index: -2;
}

.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(26, 26, 26, 0.7); /* Dark overlay to ensure text legibility */
    z-index: -1;
}

.sub-heading {
    font-size: 1.2rem; color: var(--color-text-primary); margin-bottom: 40px;
}

/* --- CONTENT BLOCKS --- */
.image-block img, .fleet-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px; /* Very subtle rounding */
}

.standard-card {
    border: 1px solid rgba(192, 160, 98, 0.3); /* Subtle accent border */
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.standard-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-5px);
}

.standard-card h3 { font-size: 1.1rem; letter-spacing: 0.1em; text-transform: uppercase;}
.standard-card p { font-size: 0.9rem; margin-bottom: 0;}

.service-block {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 30px;
}
.service-block h3 { margin-bottom: 15px; }
.price {
    display: block; color: var(--color-accent); font-weight: 500; margin-top: 15px; letter-spacing: 0.05em;
}

/* --- FOOTER --- */
.footer-section {
    padding: 80px 0 30px;
    background: #0a0a0a;
    border-top: 2px solid var(--color-accent);
}
.footer-content {
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; margin-bottom: 60px;
}
.contact-link {
    display: block; text-decoration: none; color: var(--color-text-secondary); margin-bottom: 10px; font-size: 1.1rem;
}
.copyright {
    text-align: center; font-size: 0.8rem; color: #555; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 20px;
}

/* --- RESPONSIVE MEDIA QUERIES --- */

/* Tablets & Smaller Laptops (Trigger Mobile Nav Here to prevent squish) */
@media (max-width: 1100px) {
    h1 { font-size: 3rem; }
    .grid-5 { grid-template-columns: repeat(3, 1fr); }
    
    /* Mobile Nav Activation */
    .mobile-toggle { display: block; z-index: 101;}
    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: 80%; height: 100vh;
        background: var(--color-bg-main);
        padding: 80px 40px;
        transition: right 0.4s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.5);
    }
    .nav-menu.active { right: 0; }
    .nav-menu ul { flex-direction: column; align-items: flex-start; }
    .nav-link { margin: 0 0 25px 0; display: inline-block; font-size: 1.1rem;}
    .btn-nav { width: 100%; text-align: center; }

    /* Mobile Toggle Animation */
    .mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .mobile-toggle.active span:nth-child(2) { opacity: 0; }
    .mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }
}

/* Mobile Devices (Phones) */
@media (max-width: 768px) {
    :root { --section-padding: 70px 0; }
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .grid-2, .grid-5 { grid-template-columns: 1fr; gap: 40px; }
    .grid-gap-large { gap: 40px; }
    .image-block { order: -1; } 
}