﻿/* ═══════════════════════════════════════════════
   Black Limousine — Shared Stylesheet
═══════════════════════════════════════════════ */

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

:root {
    --black:   #0A0A0A;
    --dark:    #111111;
    --card:    #161616;
    --border:  rgba(255,255,255,0.07);
    --orange:  #E8611A;
    --orange2: #FF7A35;
    --white:   #FFFFFF;
    --grey:    #888888;
    --font-h:  'Montserrat', sans-serif;
    --font-b:  'Poppins', sans-serif;
}

html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--white); font-family: var(--font-b); overflow-x: hidden; }

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--orange); }

/* ─────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────── */
#nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 999;
    background: var(--black);
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 64px; height: 76px;
    transition: height .3s, box-shadow .3s;
}
#nav.scrolled { height: 62px; box-shadow: 0 4px 30px rgba(0,0,0,.7); }

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-shield { display: block; flex-shrink: 0; filter: drop-shadow(0 2px 10px rgba(0,0,0,.7)); }
.nav-logo-text { font-family: var(--font-h); font-size: .82rem; font-weight: 800; color: var(--white); letter-spacing: .05em; text-transform: uppercase; line-height: 1.25; }
.nav-logo-text span { color: var(--orange); display: block; }

.footer-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-bottom: 14px; }
.footer-logo-bar { width: 4px; height: 26px; background: var(--orange); }

.nav-right { display: flex; align-items: center; gap: 14px; }

/* ─── Dropdown ─── */
.nav-dropdown { position: relative; }

.nav-drop-btn {
    display: flex; align-items: center; gap: 10px;
    background: none; border: 1px solid rgba(255,255,255,.18);
    color: var(--white); padding: 10px 22px;
    font-family: var(--font-h); font-size: .72rem; font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase;
    cursor: pointer; transition: all .25s;
}
.nav-drop-btn:hover { border-color: var(--orange); color: var(--orange); }
.nav-drop-btn.open { border-color: var(--orange); color: var(--orange); }

.menu-icon { display: flex; flex-direction: column; gap: 4px; }
.menu-icon span { display: block; width: 16px; height: 2px; background: currentColor; transition: all .3s; }
.nav-drop-btn.open .menu-icon span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-drop-btn.open .menu-icon span:nth-child(2) { opacity: 0; }
.nav-drop-btn.open .menu-icon span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.drop-chevron { font-size: .6rem; transition: transform .3s; }
.nav-drop-btn.open .drop-chevron { transform: rotate(180deg); }

.nav-drop-list {
    position: absolute; top: calc(100% + 10px); right: 0;
    background: var(--dark); border: 1px solid var(--border);
    border-top: 3px solid var(--orange);
    min-width: 230px;
    opacity: 0; visibility: hidden; transform: translateY(-10px);
    transition: opacity .3s ease, transform .3s ease, visibility .3s;
    z-index: 100;
}
.nav-drop-list.open {
    opacity: 1; visibility: visible; transform: translateY(0);
}

.drop-item {
    display: flex; align-items: center; gap: 16px;
    padding: 15px 22px; color: rgba(255,255,255,.72); text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: all .22s;
    font-family: var(--font-h);
}
.drop-item:last-child { border-bottom: none; }
.drop-item:hover { background: rgba(232,97,26,.1); color: var(--white); padding-left: 30px; }
.drop-item.active { color: var(--orange); }
.drop-num { font-size: .6rem; font-weight: 700; color: var(--orange); flex-shrink: 0; }
.drop-name { font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.drop-arrow { margin-left: auto; font-size: .7rem; color: var(--orange); opacity: 0; transition: opacity .2s; }
.drop-item:hover .drop-arrow { opacity: 1; }

/* ─── Language Switcher ─── */
.lang-switcher { display: flex; align-items: center; gap: 2px; }
.lang-btn {
    background: none; border: none; color: var(--grey);
    font-family: var(--font-h); font-size: .68rem; font-weight: 700;
    letter-spacing: .08em; cursor: pointer; padding: 6px 8px;
    transition: color .25s;
}
.lang-btn.active { color: var(--orange); }
.lang-btn:hover { color: var(--white); }
.lang-sep { color: var(--border); font-size: .7rem; user-select: none; }

/* ─── CTA Button in nav ─── */
.nav-cta-btn {
    display: inline-block; padding: 11px 28px;
    background: var(--orange); color: var(--white);
    font-family: var(--font-h); font-size: .7rem; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase; text-decoration: none;
    transition: background .25s;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.nav-cta-btn:hover { background: var(--orange2); }

/* ─────────────────────────────────────────
   PAGE HERO (inner pages)
───────────────────────────────────────── */
.page-hero {
    position: relative; height: 52vh; min-height: 380px;
    display: flex; align-items: flex-end;
    padding: 0 64px 64px;
    background-size: cover; background-position: center;
    margin-top: 76px;
}
.page-hero::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(100deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.5) 60%, rgba(0,0,0,.2) 100%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-label {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-h); font-size: .65rem; font-weight: 700;
    letter-spacing: .28em; text-transform: uppercase; color: var(--orange);
    margin-bottom: 12px;
}
.page-hero-label::before { content: ''; width: 28px; height: 2px; background: var(--orange); }
.page-hero h1 {
    font-family: var(--font-h); font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 900; text-transform: uppercase; letter-spacing: -.01em;
    color: var(--white); line-height: 1.0;
}
.page-hero h1 span { color: var(--orange); }
.page-hero-sub {
    font-family: var(--font-b); font-size: .9rem; color: rgba(255,255,255,.6);
    margin-top: 10px; max-width: 480px; line-height: 1.65;
}

/* ─────────────────────────────────────────
   SHARED COMPONENTS
───────────────────────────────────────── */
.section-label {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-h); font-size: .65rem; font-weight: 700;
    letter-spacing: .28em; text-transform: uppercase; color: var(--orange);
    margin-bottom: 14px;
}
.section-label::before { content: ''; width: 26px; height: 2px; background: var(--orange); }

.section-h2 {
    font-family: var(--font-h); font-size: clamp(1.8rem, 3.4vw, 2.7rem);
    font-weight: 900; text-transform: uppercase; line-height: 1.08;
    letter-spacing: -.01em; color: var(--white);
}
.section-h2 span { color: var(--orange); }
.section-sub { font-size: .88rem; color: var(--grey); line-height: 1.78; margin-top: 12px; max-width: 560px; }

/* Buttons */
.btn-orange {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--orange); color: var(--white);
    padding: 15px 38px; font-family: var(--font-h); font-size: .74rem;
    font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    text-decoration: none; transition: all .25s; border: 2px solid var(--orange);
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}
.btn-orange:hover { background: var(--orange2); border-color: var(--orange2); transform: translateY(-2px); }

.btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--white);
    padding: 14px 36px; font-family: var(--font-h); font-size: .74rem;
    font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
    text-decoration: none; border: 1px solid rgba(255,255,255,.25); transition: all .25s;
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }

/* Stats banner */
.stats-banner { background: var(--orange); padding: 56px 64px; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); max-width: 1200px; margin: 0 auto; }
.stat { text-align: center; padding: 0 20px; border-right: 1px solid rgba(0,0,0,.15); }
.stat:last-child { border-right: none; }
.stat-n { font-family: var(--font-h); font-size: 3rem; font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 6px; }
.stat-l { font-family: var(--font-h); font-size: .62rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.65); }

/* CTA Banner */
.cta-banner {
    background: var(--dark); padding: 90px 64px; text-align: center;
    border-top: 1px solid var(--border);
}
.cta-banner h2 { font-family: var(--font-h); font-size: clamp(1.6rem,3vw,2.4rem); font-weight: 900; text-transform: uppercase; color: var(--white); margin-bottom: 14px; }
.cta-banner h2 span { color: var(--orange); }
.cta-banner p { font-size: .9rem; color: var(--grey); max-width: 480px; margin: 0 auto 36px; line-height: 1.7; }
.cta-banner-btns { display: flex; gap: 14px; justify-content: center; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer { background: #060606; padding: 80px 64px 36px; border-top: 1px solid var(--border); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 52px; }
.footer-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-bottom: 16px; }
.footer-logo-bar { width: 4px; height: 26px; background: var(--orange); }
.footer-logo-txt { font-family: var(--font-h); font-size: 1.05rem; font-weight: 800; color: var(--white); text-transform: uppercase; letter-spacing: .06em; }
.footer-logo-txt span { color: var(--orange); }
.footer-tag { font-size: .82rem; color: var(--grey); line-height: 1.72; max-width: 260px; margin-bottom: 22px; }
.fsoc { display: flex; gap: 8px; }
.fsoc a { width: 34px; height: 34px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--grey); text-decoration: none; font-size: .76rem; font-weight: 700; transition: all .25s; }
.fsoc a:hover { border-color: var(--orange); color: var(--orange); }
.fcol-t { font-family: var(--font-h); font-size: .62rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--orange); margin-bottom: 18px; }
.flinks { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.flinks a { font-size: .82rem; color: var(--grey); text-decoration: none; transition: color .25s; }
.flinks a:hover { color: var(--orange); }
.footer-bot { padding-top: 26px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-size: .76rem; color: var(--grey); }
.footer-copy span { color: var(--orange); }
.footer-leg { display: flex; gap: 20px; }
.footer-leg a { font-size: .76rem; color: var(--grey); text-decoration: none; transition: color .25s; }
.footer-leg a:hover { color: var(--orange); }

/* ─────────────────────────────────────────
   PARTNERS STRIP
───────────────────────────────────────── */
.partners-strip {
    background: #0D0D0D;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    position: relative;
}
.partners-strip::before,
.partners-strip::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.partners-strip::before { left: 0; background: linear-gradient(to right, #0D0D0D, transparent); }
.partners-strip::after  { right: 0; background: linear-gradient(to left, #0D0D0D, transparent); }

.partners-track-wrap {
    display: flex;
    width: 100%;
    padding: 32px 0;
}
.partners-track {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    animation: scrollPartners 28s linear infinite;
    will-change: transform;
}
.partners-strip:hover .partners-track { animation-play-state: paused; }
@keyframes scrollPartners {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.partners-header { text-align: center; padding: 44px 64px 0; }
.partners-sub { font-size: .84rem; color: var(--grey); margin-top: 8px; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.partner-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 56px;
    border-right: 1px solid var(--border);
    flex-shrink: 0;
    height: 180px;
    opacity: 0.5;
    transition: opacity .3s;
    cursor: default;
}
.partner-item:hover { opacity: 1; }
.partner-item img {
    display: block;
    height: 160px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}
.partner-item svg {
    display: block;
    height: 44px;
    width: auto;
    flex-shrink: 0;
}

/* ── Award badge ── */
.pi-award .pi-ring {
    width: 68px; height: 68px;
    border: 1.5px solid rgba(255,255,255,.7);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.pi-award .pi-inner {
    text-align: center; line-height: 1.1;
}
.pi-award .pi-top {
    font-family: var(--font-h); font-size: .42rem; font-weight: 700;
    letter-spacing: .15em; text-transform: uppercase; color: #fff;
}
.pi-award .pi-stars { font-size: .7rem; color: var(--orange); margin: 1px 0; }
.pi-award .pi-year {
    font-family: var(--font-h); font-size: .72rem; font-weight: 900;
    color: #fff; letter-spacing: .05em;
}
.pi-award .pi-sub {
    font-family: var(--font-h); font-size: .34rem; font-weight: 600;
    letter-spacing: .18em; color: rgba(255,255,255,.5); text-transform: uppercase;
}

/* ── Text logo ── */
.pi-text { display: flex; align-items: center; gap: 10px; }
.pi-text .pi-bar { width: 3px; height: 28px; background: var(--orange); flex-shrink: 0; }
.pi-sm {
    font-family: var(--font-h); font-size: .5rem; font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.45);
}
.pi-lg {
    font-family: var(--font-h); font-size: 1rem; font-weight: 900;
    letter-spacing: .06em; text-transform: uppercase; color: #fff;
}
.pi-xl {
    font-family: var(--font-h); font-size: 1.5rem; font-weight: 900;
    letter-spacing: .04em; text-transform: uppercase; color: #fff;
    line-height: 1;
}
.pi-xs {
    font-family: var(--font-h); font-size: .38rem; font-weight: 600;
    letter-spacing: .1em; color: rgba(255,255,255,.4); text-transform: uppercase;
}

/* ── Circle + text inline ── */
.pi-inline { display: flex; align-items: center; gap: 10px; }
.pi-circle {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,.7);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-h); font-size: .9rem; font-weight: 900;
    color: #fff; flex-shrink: 0;
}

/* ─────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────── */
@keyframes up     { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes pulse  { 0%,100%{opacity:1}50%{opacity:.3} }

.reveal   { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal-l { opacity: 0; transform: translateX(-34px); transition: opacity .8s ease, transform .8s ease; }
.reveal-r { opacity: 0; transform: translateX(34px); transition: opacity .8s ease, transform .8s ease; }
.reveal.on, .reveal-l.on, .reveal-r.on { opacity: 1; transform: none; }

/* ─────────────────────────────────────────
   RESPONSIVE — MOBILE
───────────────────────────────────────── */
@media (max-width: 768px) {
    /* Nav */
    #nav { padding: 0 20px; height: 64px; }
    #nav.scrolled { height: 56px; }
    .nav-cta-btn { display: none; }
    .lang-switcher { display: flex; gap: 0; }
    .lang-btn { font-size: .6rem; padding: 5px 5px; }
    .lang-sep { font-size: .6rem; }
    .nav-drop-btn { padding: 8px 14px; font-size: .65rem; }

    /* Page hero */
    .page-hero { padding: 0 24px 36px; height: 44vh; min-height: 300px; margin-top: 64px; }
    .page-hero h1 { font-size: clamp(1.9rem, 8vw, 3rem); }

    /* Section headings */
    .section-h2 { font-size: clamp(1.5rem, 7vw, 2rem); }

    /* Stats */
    .stats-banner { padding: 44px 24px; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 0; }
    .stat { padding: 20px 12px; border-right: none; border-bottom: 1px solid rgba(0,0,0,.15); }
    .stat:nth-child(odd) { border-right: 1px solid rgba(0,0,0,.15); }
    .stat:nth-last-child(-n+2) { border-bottom: none; }
    .stat-n { font-size: 2.2rem; }

    /* CTA banner */
    .cta-banner { padding: 56px 24px; }
    .cta-banner-btns { flex-direction: column; align-items: stretch; gap: 10px; }
    .cta-banner-btns a { text-align: center; justify-content: center; }

    /* Footer */
    footer { padding: 52px 24px 28px; }
    .footer-top { grid-template-columns: 1fr; gap: 28px; }
    .footer-bot { flex-direction: column; gap: 12px; text-align: center; }
    .footer-leg { justify-content: center; flex-wrap: wrap; }

    /* Partners */
    .partners-header { padding: 24px 20px 0; }
    .partners-sub { font-size: .78rem; }
    .partner-item { padding: 0 20px; height: 90px; }
    .partner-item img { height: 70px; }
    .partners-track-wrap { padding: 20px 0; }
}

@media (max-width: 480px) {
    #nav { padding: 0 16px; }
    .nav-logo-text { display: none; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Floating Contact Buttons ── */
.float-contacts {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}
.float-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 20px;
    font-family: var(--font-h);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 6px 24px rgba(0,0,0,.45);
    transition: transform .2s ease, box-shadow .2s ease;
    white-space: nowrap;
}
.float-btn:hover { transform: translateX(-5px); box-shadow: 0 8px 32px rgba(0,0,0,.55); }
.float-btn-icon { font-size: 1.1rem; flex-shrink: 0; }
.float-btn-tel  { background: var(--orange); }
.float-btn-wa   { background: #25D366; }

@media (max-width: 600px) {
    .float-contacts { bottom: 18px; right: 16px; gap: 8px; }
    .float-btn-text { display: none; }
    .float-btn { padding: 14px 16px; }
    .float-btn-icon { font-size: 1.25rem; }
}

/* ── Custom Cursor ── */
@media (pointer: fine) {
    *, *::before, *::after { cursor: none !important; }

    .cursor-dot {
        position: fixed; width: 6px; height: 6px;
        background: var(--orange); border-radius: 50%;
        pointer-events: none; z-index: 99999;
        transform: translate(-50%, -50%);
        transition: width .15s, height .15s, background .15s, opacity .2s;
    }
    .cursor-ring {
        position: fixed; width: 32px; height: 32px;
        border: 1.5px solid rgba(255,255,255,0.55); border-radius: 50%;
        pointer-events: none; z-index: 99998;
        transform: translate(-50%, -50%);
        transition: width .25s cubic-bezier(.25,.46,.45,.94),
                    height .25s cubic-bezier(.25,.46,.45,.94),
                    border-color .25s, background .25s, opacity .2s;
    }
    .cursor-dot.is-hover { width: 8px; height: 8px; background: #fff; }
    .cursor-ring.is-hover {
        width: 44px; height: 44px;
        border-color: var(--orange);
        background: rgba(232,97,26,.07);
    }
}
