/* Base Variables & Setup */
:root {
    --color-black: #0c0f12;
    --color-dark-grey: #1a1e23;
    --color-grey: #8a8e93;
    --color-light-grey: #e1e3e6;
    --color-white: #ffffff;
    --color-creme: #f5f2eb;
    --color-blue: #004b87; /* Refined, premium deep blue */
    --color-blue-light: #0066cc;
    --color-gold: #c5a059; /* Subtle accent for premium feel */

    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;

    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-black);
    color: var(--color-light-grey);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo span {
    font-family: var(--font-heading);
    color: var(--color-white);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

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

.section {
    padding: 6rem 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

/* Scroll Animations Setup */
.scroll-fade, .scroll-fade-up, .scroll-fade-right {
    opacity: 0;
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}
.scroll-fade { transform: translateY(30px); }
.scroll-fade-up { transform: translateY(50px); }
.scroll-fade-right { transform: translateX(50px); }

.scroll-fade.active, .scroll-fade-up.active, .scroll-fade-right.active {
    opacity: 1;
    transform: translate(0);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--color-blue);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-blue-light);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.4);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--color-white);
    color: var(--color-white);
}

.btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-black);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--color-white);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}
.btn-whatsapp:hover {
    background-color: #128C7E;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}
.btn-whatsapp i {
    font-size: 1.2rem;
}


/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition-smooth);
    background: rgba(12, 15, 18, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(12, 15, 18, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 50px;
    border-radius: 4px;
}

.logo span {
    font-size: 1.25rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links li a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 5px;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-blue);
    transition: var(--transition-smooth);
}

.nav-links li a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-image: url('../assets/images/Hero_Background.jpeg'); /* Clean blue car */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(12, 15, 18, 0.9) 0%, rgba(0, 75, 135, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--color-creme);
    font-weight: 300;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.section-title p {
    color: var(--color-grey);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background-color: var(--color-dark-grey);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.about-text .subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-blue-light);
    margin-bottom: 2rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--color-light-grey);
    font-weight: 300;
}

.contact-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-white);
}

.contact-info i {
    font-size: 1.5rem;
    color: var(--color-blue-light);
}

.about-image {
    flex: 1;
}

.image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    pointer-events: none;
}

.image-wrapper img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

/* Gallery Section */
.gallery {
    background-color: var(--color-black);
}

.ba-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.ba-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #000;
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}
.ba-item.active {
    opacity: 1;
    transform: translateY(0);
}

.ba-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-right: 2px solid var(--color-white);
    transition: width 0.1s ease;
    z-index: 2;
}

.ba-slider img {
    width: auto;
    min-width: 100%;
}

.ba-item .labels {
    position: absolute;
    bottom: 1rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    z-index: 3;
    pointer-events: none;
}

.ba-item .label {
    background: rgba(0, 0, 0, 0.6);
    color: var(--color-white);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(4px);
}

.ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
    z-index: 3;
    pointer-events: none;
}
.ba-handle::before, .ba-handle::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}
.ba-handle::before {
    left: 8px;
    border-right: 8px solid var(--color-black);
}
.ba-handle::after {
    right: 8px;
    border-left: 8px solid var(--color-black);
}

/* Booking Section */
.booking {
    background-color: var(--color-dark-grey);
}

.booking-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
}

.payment-info {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.secure-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 75, 135, 0.2);
    color: var(--color-blue-light);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 75, 135, 0.5);
}

.payment-info p {
    color: var(--color-grey);
    font-size: 0.95rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background-color: #050608;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1rem;
    border-radius: 4px;
}

.footer-brand p {
    color: var(--color-grey);
    margin-bottom: 0.5rem;
}

.footer h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a {
    color: var(--color-grey);
}

.footer-links ul li a:hover {
    color: var(--color-white);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 1rem;
    color: var(--color-grey);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact a {
    color: var(--color-white);
}

.footer-contact .bx {
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    color: var(--color-grey);
    font-size: 0.85rem;
}

/* Services Section */
.services {
    background-color: var(--color-black);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.service-card {
    background-color: var(--color-dark-grey);
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}
.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-blue);
    box-shadow: 0 10px 30px rgba(0, 75, 135, 0.2);
}
.service-card i {
    font-size: 3rem;
    color: var(--color-blue-light);
    margin-bottom: 1rem;
}
.service-card h3 {
    font-size: 1.25rem;
}
/* Pricing Section */
.pricing {
    background-color: var(--color-black);
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}
.pricing-card {
    background-color: var(--color-dark-grey);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}
.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}
.pricing-card.premium {
    border-color: var(--color-blue);
    position: relative;
}
.pricing-card.premium::before {
    content: 'Most Popular';
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--color-blue);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 1rem;
    border-bottom-left-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.pricing-header {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-white);
}
.pricing-header p {
    font-size: 0.85rem;
    color: var(--color-grey);
}
.pricing-body {
    padding: 2rem;
}
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}
.price-row:last-child {
    border-bottom: none;
}
.price-row.highlight {
    color: var(--color-blue-light);
    font-weight: 600;
    font-size: 1.1rem;
}
.price-row.highlight small {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--color-grey);
}
.service-name {
    flex: 1;
}
.price {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.25rem;
}

/* Why Choose Us */
.why-us {
    background-color: var(--color-dark-grey);
}
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}
.why-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 2rem;
    background: rgba(12, 15, 18, 0.5);
    border-radius: 8px;
}
.why-card i {
    font-size: 2.5rem;
    color: var(--color-gold);
}
.why-card h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Areas Covered */
.areas {
    background-color: var(--color-black);
}
.areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}
.area-badge {
    background-color: var(--color-dark-grey);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: var(--color-light-grey);
    font-weight: 500;
    transition: var(--transition-smooth);
}
.area-badge:hover {
    background-color: var(--color-blue);
    color: var(--color-white);
    border-color: var(--color-blue);
}

/* Service Modal */
.service-card { cursor: pointer; }
.modal {
    display: none; 
    position: fixed; 
    z-index: 2000; 
    left: 0; 
    top: 0; 
    width: 100%; 
    height: 100%; 
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}
.modal-content {
    background-color: var(--color-dark-grey);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    transform: translateY(30px);
    transition: transform 0.3s ease;
}
.modal.active .modal-content {
    transform: translateY(0);
}
.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    color: var(--color-grey);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}
.close-modal:hover { color: var(--color-white); }
.modal-header {
    display: flex; padding-bottom: 0.5rem;
    align-items: center; gap: 1rem; margin-bottom: 1rem; border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.modal-header i { font-size: 2rem; color: var(--color-blue-light); }
.modal-header h2 { font-size: 1.7rem; }
.modal-desc { font-size: 1.1rem; color: var(--color-light-grey); margin-bottom: 1.5rem; font-style: italic; }
.modal-section { margin-bottom: 1.5rem; }
.modal-section h4 { font-family: var(--font-body); display: flex; align-items: center; gap: 0.5rem; font-size: 1rem; margin-bottom: 0.5rem; }
.modal-section.includes h4 { color: #25D366; }
.modal-section.excludes h4 { color: #ff4d4d; }
.modal-section p { font-size: 0.95rem; color: var(--color-grey); line-height: 1.5; }
.modal-footer { text-align: right; margin-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 1.5rem; }

/* Responsive */
@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        display: none; /* simple mobile handler */
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-btns {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}
