/* =========================
   GLOBAL
   ========================= */

:root {
    --ck-red: #e11d27;
    --ck-red-dark: #b91c1c;
    --ck-gold: #fbbf24;
    --ck-bg-dark: #050816;
}

html {
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #020617; /* deep dark behind everything */
    color: #111827;
    margin: 0;
}

.section-padding {
    padding: 4.5rem 0;
}

.section-title {
    font-weight: 800;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.section-sub {
    max-width: 720px;
    margin: 0.75rem auto 0;
    color: #6b7280;
    text-align: center;
}

/* =========================
   NAVBAR + BRAND TEXT
   ========================= */

.ck-navbar {
    background: rgba(5, 8, 22, 0.9);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.navbar-brand {
    font-size: 1.15rem;
    display: flex;
    align-items: center;
}

/* Text-only brand (no logo image) */
.brand-text {
    display: flex;
    align-items: center;
}

.brand-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Bigger on desktop */
@media (min-width: 992px) {
    .brand-title {
        font-size: 2rem;
    }
}

.brand-sub {
    font-weight: 400;
    font-size: 0.9rem;
    color: #d1d5db;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--ck-gold) !important;
}

.lang-switch {
    font-size: 0.85rem;
}

/* Call button in navbar */
.btn-ck-call {
    border-radius: 999px;
    padding: 0.4rem 0.9rem;
    background: var(--ck-red);
    border: 1px solid var(--ck-red-dark);
    color: #f9fafb;
}

.btn-ck-call:hover {
    background: var(--ck-red-dark);
    color: #fff;
}

/* =========================
   HERO SECTION
   ========================= */

.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: 7rem;  /* fixed navbar space */
    padding-bottom: 4rem;

    /* LIGHTER CINEMATIC OVERLAY – more visible car, still readable text */
    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.06),
            rgba(0, 0, 0, 0.28),
            rgba(0, 0, 0, 0.48)
        ),
        url('Lambo.jpeg') center center / cover no-repeat;
}

/* Hero intro animation on load */
.hero-section .container {
    opacity: 0;
    transform: translateY(20px);
    animation: heroIntro 900ms ease-out 120ms forwards;
}

@keyframes heroIntro {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffffff;
}

.hero-sub {
    max-width: 36rem;
    color: #e5e7eb;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(249, 250, 251, 0.12);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ck-gold);
}

.hero-badge i {
    color: var(--ck-gold);
}

.hero-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #f3f4f6;
    margin-bottom: 0.35rem;
}

.hero-list i {
    color: var(--ck-gold);
}

/* Hero buttons */
.btn-ck-primary {
    background: linear-gradient(135deg, var(--ck-red), #f97316);
    border: none;
    color: white;
    border-radius: 999px;
    padding-inline: 1.4rem;
    transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.btn-ck-primary:hover {
    background: linear-gradient(135deg, var(--ck-red-dark), #ea580c);
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

/* Outline buttons (contact / quote) */
.btn-outline-light {
    border-radius: 999px;
    transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease, color 150ms ease;
}

.btn-outline-light:hover {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
    background: #f9fafb;
    color: #111827 !important;
}

/* =========================
   SERVICES
   ========================= */

#services {
    background: #f9fafb;
}

.ck-card {
    background: white;
    border-radius: 1.25rem;
    padding: 1.8rem 1.5rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    transition: transform 140ms ease, box-shadow 140ms ease;
}

.ck-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.15);
}

.ck-card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    background: rgba(248, 113, 113, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1rem;
    color: var(--ck-red-dark);
    font-size: 1.4rem;
}

.ck-card-title {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
}

.ck-card-text {
    color: #4b5563;
    font-size: 0.9rem;
}

/* =========================
   GALLERY
   ========================= */

#gallery {
    background: #0b1120;
    color: #e5e7eb;
    padding-bottom: 5rem;
}

#gallery .section-title {
    color: #fff;
}

#gallery .section-sub {
    color: #9ca3af;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    border: 1px solid rgba(148, 163, 184, 0.4);
    background: #111827;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 200ms ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 0.6rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #f3f4f6;
    font-size: 0.8rem;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050;
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms ease;
}

.lightbox.visible {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 80vh;
    text-align: center;
    color: #f9fafb;
}

.lightbox-img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 0.75rem;
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}

.lightbox-caption {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: #e5e7eb;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.8rem;
    color: #f9fafb;
    cursor: pointer;
}

/* =========================
   WHY CHOOSE US
   ========================= */

#about {
    background: #f3f4f6;
}

.ck-feature {
    background: white;
    border-radius: 1.25rem;
    padding: 1.5rem 1.4rem;
    border: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow: 0 12px 35px rgba(0,0,0,0.07);
}

.ck-feature-icon {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 0.9rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.75rem;
    background: rgba(249,115,22,0.1);
    color: #ea580c;
}

/* =========================
   SERVICE AREAS (SEO)
   ========================= */

#areas {
    background: #f3f4f6;   /* LIGHT instead of dark */
    color: #111827;
}

#areas .section-title {
    color: #111827;
}

#areas .section-sub {
    color: #4b5563;
}

.areas-grid {
    max-width: 900px;
    margin: 2rem auto 0;
}

.area-card {
    background: #ffffff;   /* white cards for contrast */
    border-radius: 1rem;
    padding: 1.5rem 1.3rem;
    border: 1px solid rgba(148, 163, 184, 0.35);
    color: #374151;
    font-size: 0.9rem;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.area-card h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.4rem;
    color: #b91c1c; /* red accent */
}

/* =========================
   FAQ
   ========================= */

#faq {
    background: #0f172a;
    color: #e5e7eb;
}

#faq .section-title {
    color: #fff;
}

#faq .section-sub {
    color: #9ca3af;
}

.ck-accordion .accordion-item {
    border-radius: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid rgba(156,163,175,0.4);
}

.ck-accordion .accordion-button {
    font-weight: 600;
    font-size: 0.95rem;
}

.ck-accordion .accordion-button:not(.collapsed) {
    background: rgba(255,255,255,0.05);
    color: #fff;
}

/* =========================
   CONTACT
   ========================= */

#contact {
    background: radial-gradient(circle at top left, rgba(255,255,255,0.08), transparent), #020617;
    color: #f3f4f6;
}

#contact .section-sub {
    color: #d1d5db;
}

.text-ck-accent {
    color: var(--ck-gold);
}

/* =========================
   FLOATING CALL BUTTON (MOBILE)
   ========================= */

.floating-call-btn {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 1100;
    background: linear-gradient(135deg, var(--ck-red), #f97316);
    color: #fff;
    border-radius: 999px;
    padding: 0.75rem 1.2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.45);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    animation: pulseCall 2.4s ease-in-out infinite;
}

/* Only show on small screens */
@media (min-width: 768px) {
    .floating-call-btn {
        display: none;
    }
}

@keyframes pulseCall {
    0% {
        transform: translateY(0) scale(1);
        box-shadow: 0 16px 30px rgba(0,0,0,0.35);
    }
    50% {
        transform: translateY(-2px) scale(1.06);
        box-shadow: 0 22px 45px rgba(0,0,0,0.5);
    }
    100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 16px 30px rgba(0,0,0,0.35);
    }
}

/* =========================
   FOOTER
   ========================= */

.ck-footer {
    padding: 1rem 0;
    background: #020617;
    color: #9ca3af;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* =========================
   ANIMATIONS (scroll)
   ========================= */

.fade-in,
.fade-in-up {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 500ms ease-out, transform 500ms ease-out;
}

.fade-in.visible,
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 767px) {
    .hero-section {
        padding-top: 6.2rem;
        padding-bottom: 3rem;
    }
}
