/* ============================================
   CHEPLEX FIVE STAR LIMO SERVICE
   Premium Luxury Website Styles
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --gold: #C9A84C;
    --gold-light: #E4CC7A;
    --gold-dark: #A68A3E;
    --black: #0A0A0A;
    --black-rich: #111111;
    --black-card: #161616;
    --black-light: #1A1A1A;
    --black-lighter: #222222;
    --white: #FFFFFF;
    --white-off: #F5F0E8;
    --cream: #EDE5D5;
    --gray: #888888;
    --gray-light: #AAAAAA;
    --gray-dark: #555555;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-accent: 'Cormorant Garamond', Georgia, serif;

    --ease-luxury: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

    --nav-height: 80px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

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

::selection {
    background: var(--gold);
    color: var(--black);
}

/* ---------- Preloader ---------- */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s var(--ease-luxury), visibility 0.8s;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-star {
    font-size: 2rem;
    color: var(--gold);
    letter-spacing: 0.5em;
    margin-bottom: 1rem;
    animation: pulse 1.5s ease-in-out infinite;
}

.preloader-text {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.4em;
    color: var(--white);
    margin-bottom: 2rem;
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: var(--black-lighter);
    margin: 0 auto;
    overflow: hidden;
    border-radius: 2px;
}

.preloader-fill {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    animation: preloaderFill 1.8s var(--ease-luxury) forwards;
}

@keyframes preloaderFill {
    to { width: 100%; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ---------- Navigation ---------- */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    transition: background 0.4s, box-shadow 0.4s, height 0.4s;
}

#navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(201, 168, 76, 0.15);
    height: 70px;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-star {
    font-size: 1.5rem;
    color: var(--gold);
    line-height: 1;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    line-height: 1.2;
}

.logo-tagline {
    font-size: 0.55rem;
    letter-spacing: 0.35em;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 500;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s var(--ease-luxury);
}

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

.nav-cta {
    background: var(--gold) !important;
    color: var(--black) !important;
    padding: 0.65rem 1.75rem !important;
    border-radius: 0;
    font-weight: 600 !important;
    letter-spacing: 0.1em !important;
    transition: background 0.3s, transform 0.3s !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--gold-light) !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 24px;
    height: 1.5px;
    background: var(--white);
    transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* Mobile Menu */
#mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--black);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: right 0.5s var(--ease-luxury);
}

#mobile-menu.open {
    right: 0;
}

#mobile-menu ul {
    list-style: none;
    text-align: center;
}

#mobile-menu ul li {
    margin: 1.5rem 0;
}

#mobile-menu ul li a {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    transition: color 0.3s;
}

#mobile-menu ul li a:hover {
    color: var(--gold);
}

.mobile-menu-contact {
    margin-top: 3rem;
}

.mobile-phone {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--gold);
    letter-spacing: 0.1em;
}

/* ---------- Hero Section ---------- */
#hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    transform: scale(1.1);
    animation: heroZoom 20s var(--ease-luxury) forwards;
}

@keyframes heroZoom {
    to { transform: scale(1); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.6) 40%,
        rgba(0, 0, 0, 0.5) 60%,
        rgba(0, 0, 0, 0.75) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 2rem;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(201, 168, 76, 0.4);
    margin-bottom: 2rem;
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--gold-light);
}

.badge-star {
    color: var(--gold);
    letter-spacing: 0.15em;
}

#hero h1 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-line-1 {
    display: block;
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
}

.hero-line-2 {
    display: block;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.hero-line-3 {
    display: block;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.hero-sub {
    font-family: var(--font-accent);
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    color: var(--gray-light);
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: 0.02em;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.hero-scroll span {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gray);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.6); }
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease-luxury);
    position: relative;
    overflow: hidden;
}

.btn-gold {
    background: var(--gold);
    color: var(--black);
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(201, 168, 76, 0.3);
}

.btn-gold-sm {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background: var(--gold);
    color: var(--black);
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease-luxury);
}

.btn-gold-sm:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1.2rem 3rem;
    font-size: 0.85rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 1.1rem;
}

.btn-icon {
    font-size: 1.1rem;
}

/* ---------- Marquee Bar ---------- */
.marquee-bar {
    background: var(--gold);
    padding: 0.9rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

.marquee-track span {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--black);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---------- Section Headers ---------- */
.section-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.section-header h2 em {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
}

.section-desc {
    font-family: var(--font-accent);
    font-size: 1.15rem;
    color: var(--gray-light);
    line-height: 1.8;
    font-weight: 300;
}

/* ---------- Fleet Section ---------- */
#fleet {
    padding: 8rem 0;
    background: var(--black);
}

.fleet-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto 4rem;
    background: var(--black-card);
    overflow: hidden;
}

.fleet-card-reverse {
    direction: rtl;
}

.fleet-card-reverse > * {
    direction: ltr;
}

.fleet-card-image {
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.fleet-card-image-tall {
    min-height: 600px;
}

.fleet-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease-luxury);
}

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

.fleet-card-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    padding: 0.4rem 1.2rem;
    background: var(--gold);
    color: var(--black);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.25em;
}

.fleet-card-reverse .fleet-card-badge {
    left: auto;
    right: 1.5rem;
}

.fleet-card-info {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fleet-category {
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.fleet-card-info h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.fleet-card-info p {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.fleet-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-bottom: 2rem;
}

.fleet-features li {
    font-size: 0.8rem;
    color: var(--gray);
    padding-left: 1.2rem;
    position: relative;
    font-weight: 400;
}

.fleet-features li::before {
    content: '&#9733;';
    content: '\2605';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.55rem;
    top: 3px;
}

/* Fleet Showcase */
.fleet-showcase {
    max-width: 1400px;
    margin: 0 auto 4rem;
    position: relative;
    overflow: hidden;
}

.showcase-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.showcase-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 3rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.showcase-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.showcase-text {
    font-family: var(--font-accent);
    font-size: 1.25rem;
    color: var(--gray-light);
    font-weight: 300;
}

/* Interior Showcase */
.interior-showcase {
    max-width: 1400px;
    margin: 0 auto 4rem;
    position: relative;
    overflow: hidden;
    height: 500px;
}

.interior-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.interior-overlay-text {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 60%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
}

.interior-label {
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.interior-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 600;
    font-style: italic;
}

/* Maybach Grid */
.maybach-grid {
    max-width: 1400px;
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    padding: 0;
}

.maybach-grid-item {
    overflow: hidden;
    height: 300px;
}

.maybach-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-luxury);
}

.maybach-grid-item:hover img {
    transform: scale(1.08);
}

.maybach-grid-large {
    grid-column: span 1;
}

/* S-Class Strip */
.sclass-strip {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.strip-item {
    overflow: hidden;
    height: 350px;
}

.strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-luxury);
}

.strip-item:hover img {
    transform: scale(1.08);
}

/* ---------- Stats Bar ---------- */
.stats-bar {
    background: var(--black-rich);
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    padding: 4rem 2rem;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-plus {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold);
}

.stat-label {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray);
    font-weight: 500;
}

.stat-stars {
    font-size: 2rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    line-height: 1.4;
}

/* ---------- Services Section ---------- */
#services {
    padding: 8rem 2rem;
    background: var(--black-rich);
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--black-card);
    padding: 3rem 2.5rem;
    border: 1px solid rgba(255,255,255,0.04);
    transition: all 0.5s var(--ease-luxury);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.5s var(--ease-luxury);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    border-color: rgba(201, 168, 76, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    display: inline-block;
    color: var(--gold);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.8;
    font-weight: 300;
}

/* ---------- About Section ---------- */
#about {
    padding: 8rem 2rem;
    background: var(--black);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center top;
    position: relative;
    z-index: 1;
}

.about-image-frame {
    position: absolute;
    top: -1rem;
    left: -1rem;
    right: 1rem;
    bottom: 1rem;
    border: 1px solid var(--gold);
    z-index: 0;
    opacity: 0.4;
}

.about-image-label {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    padding: 1.5rem 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.6), transparent);
    z-index: 2;
}

.label-name {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
}

.label-title {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}

.about-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.about-content h2 em {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
}

.about-lead {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    color: var(--cream);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-weight: 400;
}

.about-content p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.9;
    margin-bottom: 1rem;
    font-weight: 300;
}

.about-values {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

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

.value-icon {
    font-size: 1rem;
    color: var(--gold);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 168, 76, 0.3);
    flex-shrink: 0;
}

.value strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.value span {
    font-size: 0.8rem;
    color: var(--gray);
    font-weight: 300;
}

/* ---------- Gallery Section ---------- */
#gallery {
    padding: 8rem 0;
    background: var(--black-rich);
}

.gallery-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.4rem;
    padding: 0 0.4rem;
}

.gallery-item {
    overflow: hidden;
    height: 280px;
    cursor: pointer;
    position: relative;
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-luxury), filter 0.5s;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.4s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover::after {
    background: rgba(201, 168, 76, 0.1);
}

/* ---------- CTA Section ---------- */
.cta-section {
    position: relative;
    padding: 8rem 2rem;
    text-align: center;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px);
    transform: scale(1.1);
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-label {
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    color: var(--gold);
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-content h2 em {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
}

.cta-content p {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    color: var(--gray-light);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- Contact Section ---------- */
#contact {
    padding: 8rem 2rem;
    background: var(--black);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-info h2 em {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
}

.contact-info > p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem 1.25rem;
    background: var(--black-card);
    border: 1px solid rgba(255,255,255,0.04);
    transition: border-color 0.3s;
}

.contact-item:hover {
    border-color: rgba(201, 168, 76, 0.2);
}

.contact-icon {
    font-size: 1.25rem;
    color: var(--gold);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 168, 76, 0.2);
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
}

.contact-item span {
    color: var(--gray-light);
    font-size: 0.95rem;
    font-weight: 300;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--gray-light);
    transition: all 0.3s var(--ease-luxury);
}

.social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--black-card);
    border: 1px solid rgba(255,255,255,0.04);
}

.contact-form {
    padding: 3rem;
}

.contact-form h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--black-light);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color 0.3s;
    outline: none;
    -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--black-card);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* ---------- Footer ---------- */
#footer {
    background: var(--black-rich);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 5rem 2rem 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 4rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.8;
    font-weight: 300;
    max-width: 300px;
}

.footer-links-col h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    letter-spacing: 0.05em;
}

.footer-links-col ul {
    list-style: none;
}

.footer-links-col ul li {
    margin-bottom: 0.6rem;
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 300;
}

.footer-links-col ul li a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 1.5rem 0;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--gray-dark);
    font-weight: 300;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: var(--gray);
    transition: color 0.3s;
}

.footer-social a:hover {
    color: var(--gold);
}

/* ---------- Lightbox ---------- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
    cursor: pointer;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--gold);
}

.lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    transform: scale(0.9);
    transition: transform 0.4s var(--ease-luxury);
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

/* ---------- Animations ---------- */
[data-animate] {
    opacity: 0;
    transition: opacity 0.8s var(--ease-luxury), transform 0.8s var(--ease-luxury);
}

[data-animate="fade-up"] {
    transform: translateY(40px);
}

[data-animate="fade-down"] {
    transform: translateY(-40px);
}

[data-animate="fade-right"] {
    transform: translateX(-40px);
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

[data-animate].animated {
    opacity: 1;
    transform: translate(0);
}

/* ---------- Responsive Design ---------- */
@media (max-width: 1100px) {
    .fleet-card {
        grid-template-columns: 1fr;
    }

    .fleet-card-reverse {
        direction: ltr;
    }

    .fleet-card-image {
        min-height: 350px;
    }

    .fleet-card-info {
        padding: 3rem 2.5rem;
    }

    .maybach-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }

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

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

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

    .stats-container {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item {
        height: 220px;
    }

    .sclass-strip {
        grid-template-columns: 1fr;
    }

    .strip-item {
        height: 280px;
    }
}

@media (max-width: 600px) {
    :root {
        --nav-height: 65px;
    }

    .nav-container {
        padding: 0 1.5rem;
    }

    .logo-name {
        font-size: 1rem;
    }

    .hero-badge {
        padding: 0.4rem 1rem;
        font-size: 0.6rem;
        flex-direction: column;
        gap: 0.3rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

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

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

    .gallery-item-wide {
        grid-column: span 2;
    }

    .gallery-item {
        height: 160px;
    }

    .fleet-card-info {
        padding: 2rem 1.5rem;
    }

    .fleet-features {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .interior-showcase {
        height: 350px;
    }

    .interior-overlay-text {
        padding: 2rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .maybach-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.3rem;
    }

    .maybach-grid-item {
        height: 200px;
    }

    .stats-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.25rem;
    }

    .cta-section {
        padding: 5rem 1.5rem;
    }

    #fleet, #services, #about, #gallery, #contact {
        padding: 5rem 1.5rem;
    }

    .fleet-card {
        margin: 0 0 3rem;
    }

    .fleet-showcase,
    .interior-showcase,
    .maybach-grid,
    .sclass-strip {
        margin: 0 0 3rem;
    }

    .showcase-img img {
        height: 250px;
    }
}

@media (max-width: 400px) {
    .hero-line-1 {
        font-size: 2.5rem;
    }

    .hero-line-2,
    .hero-line-3 {
        font-size: 2rem;
    }

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

    .gallery-item-wide {
        grid-column: span 1;
    }
}
