/* === ROOT VARIABLES & GLOBAL STYLES === */
:root {
    --dark-bg: #000000;
    --mid-dark: #0f0f0f;
    --light-text: #ffffff;
    --accent-blue: #00bfff; /* Bright Sky Blue */
    --light-gray: #dddddd;
    --font-main: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === UTILITY STYLES === */
.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--accent-blue);
    color: var(--dark-bg);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 800;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    border: 2px solid var(--accent-blue);
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--accent-blue);
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(0, 191, 255, 0.7);
}

/* === HEADER & NAVIGATION === */
header {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #1a1a1a;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-box {
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--light-text);
}

.logo-box span {
    color: var(--accent-blue);
    text-shadow: 0 0 10px var(--accent-blue);
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 35px;
}

nav ul li a {
    text-decoration: none;
    color: var(--light-gray);
    font-weight: 600;
    transition: color 0.3s, text-shadow 0.3s;
}

nav ul li a:hover, .cta-nav:hover {
    color: var(--light-text);
    text-shadow: 0 0 8px var(--accent-blue);
}

.cta-nav {
    border: 1px solid var(--accent-blue);
    padding: 8px 15px;
    border-radius: 5px;
    text-transform: uppercase;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--accent-blue);
    font-size: 35px;
    cursor: pointer;
    z-index: 1001;
}

/* === HERO SECTION === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('car-tint-bg-placeholder.jpg') center center/cover no-repeat;
    position: relative;
    padding-top: 80px; 
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: inset 0 0 150px rgba(0, 191, 255, 0.3);
    pointer-events: none;
}

.hero-content h1 {
    font-size: 4.5em;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-shadow: 0 0 25px rgba(0, 191, 255, 0.7);
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.6em;
    margin-bottom: 50px;
    font-style: italic;
    color: var(--light-gray);
}

/* === FEATURES / WHY CHOOSE US SECTION === */
.features {
    background-color: var(--mid-dark);
    text-align: center;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
}

.features h2 {
    font-size: 2.5em;
    margin-bottom: 60px;
    text-transform: uppercase;
    color: var(--accent-blue);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: #181818;
    padding: 30px;
    border-radius: 10px;
    border-top: 5px solid var(--accent-blue);
    transition: transform 0.3s, background-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    background-color: #222;
}

.feature-card .icon {
    font-size: 3em;
    display: block;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: var(--light-text);
    text-transform: uppercase;
}

.feature-card p {
    color: var(--light-gray);
    font-size: 1em;
}

/* === ABOUT US SECTION === */
.about {
    background-color: var(--dark-bg);
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 2;
}

.about-text h2 {
    font-size: 3em;
    margin-bottom: 20px;
    color: var(--accent-blue);
    border-left: 5px solid var(--accent-blue);
    padding-left: 20px;
}

.about-text p {
    font-size: 1.1em;
    margin-bottom: 25px;
    color: var(--light-gray);
}

/* === TESTIMONIALS SECTION === */
.testimonials {
    background-color: var(--mid-dark);
    text-align: center;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
}

.testimonials h2 {
    font-size: 2.5em;
    margin-bottom: 60px;
    text-transform: uppercase;
    color: var(--light-text);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: #181818;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #333;
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 191, 255, 0.2);
}

.testimonial-card .quote {
    font-style: italic;
    font-size: 1.1em;
    color: var(--light-gray);
    margin-bottom: 20px;
}

.testimonial-card .author {
    font-weight: 600;
    color: var(--accent-blue);
    text-transform: uppercase;
}

/* === PRICING SECTION === */
.pricing {
    background-color: var(--dark-bg);
    text-align: center;
}

.pricing h2 {
    font-size: 3em;
    margin-bottom: 50px;
    text-transform: uppercase;
    color: var(--accent-blue);
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: left;
    margin-bottom: 40px;
}

.price-card {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #333;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.price-card.primary-card {
    border: 1px solid var(--accent-blue);
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.2);
}

.price-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0, 191, 255, 0.4);
}

.price-card h3 {
    font-size: 2em;
    margin-bottom: 5px;
    color: var(--accent-blue);
    text-transform: uppercase;
}

.price-card p {
    margin-bottom: 15px;
    font-style: italic;
    color: var(--light-gray);
    font-size: 0.9em;
}

.price-card .price {
    font-size: 3.5em;
    font-weight: 800;
    color: var(--light-text);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    display: block;
    margin-bottom: 20px;
}

.price-card ul {
    list-style: none;
    padding-left: 0;
}

.price-card ul li {
    font-size: 1em;
    color: var(--light-gray);
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.price-card ul li::before {
    content: '✓';
    color: var(--accent-blue);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.disclaimer {
    font-size: 0.9em;
    color: #888;
    margin-top: 30px;
}

/* === CONTACT SECTION STYLES === */
.contact {
    background-color: var(--mid-dark);
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
}

.contact-info-box h2 {
    font-size: 3em;
    color: var(--accent-blue);
    margin-bottom: 20px;
}

.contact-info-box > p {
    font-size: 1.1em;
    color: var(--light-gray);
    margin-bottom: 40px;
}

.info-detail {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-detail .icon {
    font-size: 2em;
    margin-right: 15px;
    color: var(--accent-blue);
}

.info-detail .info-text h3 {
    font-size: 1.4em;
    color: var(--light-text);
    margin: 0;
}

.info-detail .info-text p {
    font-size: 1em;
    color: var(--light-gray);
    margin: 0;
    line-height: 1.2;
}

/* Special Note Styling */
.location-note {
    background-color: #1a1a1a;
    border-left: 5px solid var(--accent-blue);
    padding: 15px 20px;
    margin: 30px 0;
    font-style: italic;
    font-size: 0.95em;
}

.location-note strong {
    color: var(--accent-blue);
}

/* Map Placeholder Styling */
.contact-map-placeholder {
    height: 400px;
    background-color: #111;
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
}

.contact-map-placeholder iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Booking Button Specific Styling - making it stand out */
.book-now-btn {
    display: block; 
    text-align: center;
    padding: 20px;
    margin-top: 20px;
    font-size: 1.2em;
}

/* === FOOTER === */
footer {
    background-color: #0d0d0d;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #1a1a1a;
}

footer p {
    color: var(--light-gray);
    font-size: 0.9em;
}


/* === MOBILE RESPONSIVENESS (Media Queries) === */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3.5em;
    }
    
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-text h2 {
        border-left: none;
        padding-left: 0;
        border-bottom: 3px solid var(--accent-blue);
        display: inline-block;
        padding-bottom: 10px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    
    section {
        padding: 60px 0;
    }

    .hero {
        min-height: 70vh;
    }
    
    .hero-content h1 {
        font-size: 2.5em;
        letter-spacing: 3px;
    }

    .hero-content p {
        font-size: 1.2em;
    }

    /* Navigation Hide/Show */
    .menu-toggle {
        display: block;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 75%;
        background-color: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        transition: right 0.4s ease-in-out;
        padding-top: 100px;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 40px;
    }

    nav ul li {
        margin: 25px 0;
    }

    nav ul li a {
        font-size: 1.8em;
    }
    
    .cta-nav {
        border: none;
        padding: 0;
    }
    
    /* Mobile Adjustments for Contact */
    .contact-info-box h2, .contact-info-box > p {
        text-align: center;
    }
    
    .info-detail {
        justify-content: center;
    }
    
    .contact-map-placeholder {
        height: 250px;
    }

    .testimonial-card {
        padding: 20px;
    }
    .testimonial-card .quote {
        font-size: 1em;
    }
    .testimonial-card .author {
        font-size: 0.9em;
    }
}