/* D2 Premium Styling */
:root {
    --white: #ffffff;
    --black: #050505;
    --dark-grey: #1a1a1a;
    --light-grey: #f4f4f4;
    --accent: #f13223;
    /* Premium Red */

    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;

    --transition-smooth: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background: var(--white);
}

body {
    font-family: var(--font-body);
    color: var(--black);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Loading Screen */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    color: var(--white);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    letter-spacing: 5px;
    animation: pulse 2s infinite ease-in-out;
}

.loader-logo span {
    color: var(--accent);
}

@keyframes pulse {
    0% {
        opacity: 0.5;
        transform: scale(0.95);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0.5;
        transform: scale(0.95);
    }
}

/* Typography Utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 500;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-sm {
    max-width: 800px;
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--white);
}

.text-light {
    color: #aaaaaa;
}

.accent-text {
    color: var(--accent);
}

.bg-light {
    background-color: var(--light-grey);
}

.bg-dark {
    background-color: var(--black);
    color: var(--white);
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.section-pad {
    padding: 120px 0;
}

.divider {
    width: 60px;
    height: 2px;
    background-color: var(--accent);
    margin: 20px 0 30px;
}

.title {
    font-size: 3rem;
    line-height: 1.2;
    letter-spacing: 1px;
}

.kicker {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    color: var(--accent);
    font-size: 0.85rem;
    margin-bottom: 10px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 40px;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
    background: var(--white);
    padding: 20px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-bottom: none;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 2px;
}

.logo-accent {
    color: var(--accent);
}

.navbar.scrolled .logo {
    color: var(--black);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.navbar.scrolled .nav-links a {
    color: var(--black);
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-extra {
    display: flex;
    align-items: center;
    gap: 30px;
}

.btn-nav {
    border: 1px solid var(--white);
    color: var(--white);
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
}

.navbar.scrolled .btn-nav {
    border-color: var(--black);
    color: var(--black);
}

.btn-nav:hover {
    background: var(--white);
    color: var(--black);
}

.navbar.scrolled .btn-nav:hover {
    background: var(--black);
    color: var(--white);
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-smooth);
}

.navbar.scrolled .hamburger span {
    background: var(--black);
}

/* Hero Video */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    background: url('images/hero-bg2.png') center/cover no-repeat;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 5, 0.6);
    z-index: -1;
}

.hero-content {
    z-index: 1;
    max-width: 900px;
    padding: 0 40px;
    margin-top: 40px;
    /* Restore proper top margin so it doesn't hide under the navbar */
}

.subtitle {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.mega-title {
    font-size: 5rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.hero-desc {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.8);
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Button Styles */
.btn-primary,
.btn-secondary,
.btn-submit,
.btn-block-lux {
    padding: 16px 36px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    border-radius: 0;
    /* Square edges for premium feel */
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background: #c2281c;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--black);
}

/* Scroll Bounce */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

@media (max-height: 750px) {
    .scroll-indicator {
        display: none;
    }
}

.mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    display: block;
    position: relative;
}

.wheel {
    width: 2px;
    height: 6px;
    background: var(--white);
    display: block;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        top: 6px;
        opacity: 1;
    }

    100% {
        top: 20px;
        opacity: 0;
    }
}

/* USP Bar */
.usp-bar {
    background: var(--black);
    color: var(--white);
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.usp-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.usp-item i {
    color: var(--accent);
    font-size: 1.2rem;
}

/* Statement Section */
.statement-section {
    padding: 150px 0;
    background: var(--white);
}

.lead-text {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--dark-grey);
}

/* Split Section (About / Contact) */
.split-section {
    display: flex;
    flex-wrap: wrap;
    height: auto;
}

.split-image {
    flex: 1;
    min-width: 300px;
    min-height: 600px;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-content {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center;
    padding: 100px 80px;
}

.vision-mission h5 {
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.vision-mission i {
    color: var(--accent);
    margin-right: 10px;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.service-block {
    text-align: left;
    padding: 40px;
    background: var(--dark-grey);
    border-top: 2px solid transparent;
    transition: var(--transition-smooth);
}

.service-block:hover {
    border-top-color: var(--accent);
    transform: translateY(-10px);
}

.s-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.1);
    display: block;
    margin-bottom: 20px;
}

.service-block h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--white);
}

.service-block p {
    color: var(--light-grey);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Timeline Process */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 1px;
    background: #e0e0e0;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    width: 100%;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.t-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--accent);
    border-radius: 50%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    box-shadow: 0 0 0 6px var(--white);
    z-index: 2;
}

.t-content {
    width: 45%;
    position: relative;
    top: -5px;
}

.t-content.left {
    margin-right: auto;
    text-align: right;
    padding-right: 40px;
}

.t-content.right {
    margin-left: auto;
    text-align: left;
    padding-left: 40px;
}

.t-content .step {
    color: var(--accent);
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 5px;
}

.t-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Auction Banner */
.auction-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1580273916550-e323be2ae537?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') center/cover fixed;
    padding: 100px 40px;
    text-align: center;
    color: var(--white);
}

.auction-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.auction-banner p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.btn-outline-light {
    border: 1px solid var(--white);
    padding: 15px 30px;
    color: var(--white);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    display: inline-block;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--black);
}

/* Luxury Vehicles */
.luxury-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.lux-card {
    background: var(--white);
    transition: var(--transition-smooth);
}

.lux-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.lux-img {
    height: 280px;
    position: relative;
    overflow: hidden;
}

.lux-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}

.lux-card:hover .lux-img img {
    transform: scale(1.03);
}

.status-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--black);
    color: var(--white);
    padding: 6px 14px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lux-info {
    padding: 35px 30px;
    border: 1px solid #eaeaea;
    border-top: none;
}

.v-name {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.v-desc {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 25px;
    height: 48px;
}

.v-specs {
    border-top: 1px solid #eaeaea;
    padding-top: 20px;
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.spec {
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
}

.spec span {
    color: #888;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 1px;
}

.spec strong {
    font-weight: 500;
    color: var(--black);
}

.btn-block-lux {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--white);
    border: 1px solid var(--black);
    color: var(--black);
}

.btn-block-lux:hover {
    background: var(--black);
    color: var(--white);
}

.btn-outline-dark {
    border: 1px solid var(--black);
    padding: 15px 30px;
    color: var(--black);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    display: inline-block;
}

.btn-outline-dark:hover {
    background: var(--black);
    color: var(--white);
}

/* Trust Grid Inner */
.trust-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.trust-item {
    padding: 20px;
}

.trust-item i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.trust-item h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Section & Form */
.contact-section .split-content {
    background: var(--white);
}

.c-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.c-icon {
    width: 50px;
    height: 50px;
    background: var(--light-grey);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--accent);
}

.c-text span {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 5px;
}

.c-text a,
.c-text p {
    font-size: 1.1rem;
    font-weight: 500;
}

.split-form {
    flex: 1;
    padding: 100px 80px;
    display: flex;
    align-items: center;
}

.form-wrapper {
    width: 100%;
    max-width: 500px;
}

.form-wrapper h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.form-desc {
    color: #666;
    margin-bottom: 30px;
}

.lux-form .form-row {
    margin-bottom: 20px;
}

.lux-form input,
.lux-form select,
.lux-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #ddd;
    background: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    border-radius: 0;
    transition: var(--transition-smooth);
}

.lux-form input:focus,
.lux-form select:focus,
.lux-form textarea:focus {
    outline: none;
    border-color: var(--black);
}

.btn-submit {
    background: var(--black);
    color: var(--white);
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-submit:hover {
    background: var(--accent);
}

.social-links-lg a {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border: 1px solid #ddd;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 15px;
    color: var(--black);
}

.social-links-lg a:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

/* Footer */
.lux-footer {
    padding: 80px 0 40px;
}

.footer-logo {
    font-size: 2rem;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.footer-tagline {
    color: var(--light-grey);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.footer-divider {
    width: 40px;
    height: 1px;
    background: var(--accent);
    margin: 30px auto;
}

.copyright {
    color: #777;
    font-size: 0.9rem;
}

/* Floating WA */
.wa-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 100;
    transition: var(--transition-smooth);
}

.wa-float:hover {
    transform: translateY(-5px);
    background: #128C7E;
}

/* Reveal Animation */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .mega-title {
        font-size: 3.5rem;
    }

    .split-content,
    .split-form {
        padding: 80px 40px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 400px;
        background: var(--black);
        flex-direction: column;
        padding: 120px 40px;
        z-index: -1;
        transition: var(--transition-smooth);
    }

    .nav-links.active {
        right: 0;
        box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
    }

    .nav-links a {
        color: var(--white);
        font-size: 1.2rem;
    }

    .mega-title {
        font-size: 2.8rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .usp-grid {
        justify-content: center;
    }

    .timeline::before {
        left: 20px;
    }

    .t-dot {
        left: 20px;
    }

    .t-content {
        width: calc(100% - 50px);
        margin-left: auto !important;
        padding-left: 20px !important;
        text-align: left !important;
    }

    .split-section {
        flex-direction: column;
    }

    .split-image {
        min-height: 400px;
    }

    .split-content,
    .split-form {
        padding: 60px 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .wa-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}