/* ============================================================
   TAXI SOLMS — GLOBAL STYLESHEET
   ============================================================
   COLOR PALETTE:
     Primary Yellow : #FFD700
     Primary Black  : #1A1A1A
     Dark Gray      : #111111
     Mid Gray       : #2A2A2A
     Light Gray BG  : #F5F5F5
     White          : #FFFFFF

   EDIT CONFIG: See script.js for email/phone/WhatsApp variables
   ============================================================ */

/* ============================================================
   DESIGN SYSTEM & VARIABLES
   ============================================================ */

/* LOCAL FONTS (GDPR COMPLIANT) */
@font-face {
    font-family: 'Inter';
    src: url('fonts/inter.ttf') format('truetype');
    font-weight: 100 900;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/montserrat.ttf') format('truetype');
    font-weight: 100 900;
    font-display: swap;
}

/* ── CSS Custom Properties ──────────────────────────────────── */
:root {
    --yellow: #FFD700;
    --yellow-dark: #E6C200;
    --yellow-light: #FFF0A0;
    --black: #1A1A1A;
    --black-deep: #111111;
    --black-mid: #2A2A2A;
    --black-card: #222222;
    --gray-light: #F5F5F5;
    --gray-mid: #888888;
    --gray-border: #333333;
    --white: #FFFFFF;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.18);
    --shadow-yellow: 0 4px 20px rgba(255, 215, 0, 0.25);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --nav-height: 80px;
}

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

html {
    scroll-behavior: smooth;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: var(--font-body);
}

input,
select,
textarea {
    font-family: var(--font-body);
    outline: none;
}

/* ── Typography ─────────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.15;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
}

h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
}

h4 {
    font-size: 1.1rem;
    font-weight: 700;
}

p {
    font-size: 1rem;
    color: #CCCCCC;
    line-height: 1.8;
}

.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 0.75rem;
}

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

.section-subtitle {
    color: #AAAAAA;
    font-size: 1.05rem;
    max-width: 600px;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: var(--radius-xl);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--yellow);
    color: var(--black);
    box-shadow: var(--shadow-yellow);
}

.btn-primary:hover {
    background: var(--yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
}

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

.btn-outline:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-2px);
}

.btn-outline-yellow {
    background: transparent;
    color: var(--yellow);
    border-color: var(--yellow);
}

.btn-outline-yellow:hover {
    background: var(--yellow);
    color: var(--black);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.82rem;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1rem;
}

/* ── Navigation ─────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    height: var(--nav-height);
    display: flex;
    align-items: center;
    border-bottom: 2px solid #EEE;
    transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.nav-logo .logo-img {
    height: 56px;
    width: auto;
    object-fit: contain;
}

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

.nav-links a {
    color: var(--black);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    transition: color 0.2s;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--yellow);
}

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--yellow);
    color: var(--black);
    padding: 10px 20px;
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 0.88rem;
    transition: var(--transition);
}

.nav-phone:hover {
    background: var(--yellow-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-yellow);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Drawer */
.mobile-nav {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 999;
    padding: 1.5rem 2rem 2rem;
    border-bottom: 2px solid #EEE;
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.mobile-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.mobile-nav a {
    display: block;
    padding: 14px 0;
    color: var(--black);
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 1px solid #EEE;
    transition: color 0.2s;
}

.mobile-nav a:last-of-type {
    border-bottom: none;
}

.mobile-nav a:hover {
    color: var(--yellow);
}

.mobile-nav .mobile-phone-btn {
    display: block;
    margin-top: 1.5rem;
    text-align: center;
}

/* ── Page Hero Banner (inner pages) ────────────────────────── */
.page-hero {
    min-height: 300px;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: var(--nav-height);
    overflow: hidden;
    background: linear-gradient(135deg, var(--black) 0%, var(--black-mid) 100%);
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, transparent 60%);
}

.page-hero-stripe {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: var(--yellow);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.page-hero-content .breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--gray-mid);
}

.page-hero-content .breadcrumb a {
    color: var(--yellow);
}

.page-hero-content .breadcrumb span {
    color: var(--gray-mid);
}

.page-hero h1 {
    color: var(--white);
}

.page-hero h1 span {
    color: var(--yellow);
}

.page-hero p {
    max-width: 560px;
    margin-top: 0.75rem;
}

/* ── Section Wrapper ────────────────────────────────────────── */
.section {
    padding: 5rem 2rem;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

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

.section-header.centered {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ── Feature / Icon Cards ───────────────────────────────────── */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--black-card);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
    border-color: var(--yellow);
}

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

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 215, 0, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    transition: background 0.3s;
}

.feature-card:hover .feature-icon {
    background: rgba(255, 215, 0, 0.22);
}

.feature-card h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: #AAAAAA;
    margin: 0;
}

/* ── Service Cards ──────────────────────────────────────────── */
.service-card {
    background: var(--black-card);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
    border-color: var(--yellow);
}

.service-card-img {
    height: 190px;
    width: 100%;
    object-fit: cover;
    background: linear-gradient(135deg, #222, #333);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-mid);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.service-card-body {
    padding: 1.5rem;
}

.service-card-body h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.service-card-body p {
    color: #AAAAAA;
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
}

.mehr-link {
    color: var(--yellow);
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}

.mehr-link:hover {
    gap: 10px;
}

.mehr-link svg {
    width: 14px;
    height: 14px;
}

/* ── Fleet Cards ────────────────────────────────────────────── */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.fleet-card {
    background: var(--black-card);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.fleet-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
    border-color: var(--yellow);
}

.fleet-card-img {
    height: 220px;
    width: 100%;
    overflow: hidden;
    background: #222;
}

.fleet-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

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

.fleet-card-body {
    padding: 1.5rem;
}

.fleet-card-body h3 {
    color: var(--white);
    margin-bottom: 0.75rem;
}

.fleet-specs {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.2rem;
}

.fleet-spec {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: #AAAAAA;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid var(--gray-border);
}

/* ── Review Cards ───────────────────────────────────────────── */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.review-card {
    background: var(--black-card);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-md);
    padding: 1.8rem;
    transition: var(--transition);
    position: relative;
}

.review-card:hover {
    border-color: var(--yellow);
    transform: translateY(-4px);
}

.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1rem;
}

.review-stars span {
    color: var(--yellow);
    font-size: 1.1rem;
}

.review-card blockquote {
    font-size: 0.95rem;
    color: #CCCCCC;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.review-card blockquote::before {
    content: '"';
    color: var(--yellow);
    font-size: 2rem;
    line-height: 0;
    vertical-align: -0.4em;
    margin-right: 2px;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--black);
    font-size: 1rem;
    flex-shrink: 0;
}

.reviewer-info .name {
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
}

.reviewer-info .meta {
    color: var(--gray-mid);
    font-size: 0.78rem;
}

/* ── FAQ Accordion ──────────────────────────────────────────── */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--black-card);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item.open {
    border-color: var(--yellow);
}

.faq-question {
    width: 100%;
    padding: 1.4rem 1.5rem;
    background: transparent;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color 0.2s;
}

.faq-item.open .faq-question {
    color: var(--yellow);
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--gray-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
    font-weight: 400;
    transition: var(--transition);
}

.faq-item.open .faq-icon {
    background: var(--yellow);
    color: var(--black);
    border-color: var(--yellow);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 1.5rem 1.4rem;
    font-size: 0.92rem;
    color: #AAAAAA;
    line-height: 1.75;
    margin: 0;
}

/* ── Booking / Contact Forms ────────────────────────────────── */
.form-section {
    background: var(--black-mid);
}

.booking-form,
.contact-form-inner {
    background: var(--black-card);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 1.2rem;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #AAAAAA;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid var(--gray-border);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    color: var(--white);
    font-size: 0.92rem;
    transition: border-color 0.25s, box-shadow 0.25s;
    width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #555;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
    background: rgba(255, 215, 0, 0.03);
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

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

.form-note {
    text-align: center;
    font-size: 0.82rem;
    color: var(--gray-mid);
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.form-success-msg {
    display: none;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius-sm);
    padding: 1rem 1.2rem;
    color: #4ade80;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    margin-top: 1rem;
}

/* ── CTA Banner ─────────────────────────────────────────────── */
.cta-banner {
    background: var(--yellow);
    padding: 4rem 2rem;
    text-align: center;
}

.cta-banner h2 {
    color: var(--black);
}

.cta-banner p {
    color: rgba(0, 0, 0, 0.65);
}

.cta-banner .btn-dark {
    background: var(--black);
    color: var(--white);
    padding: 15px 36px;
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-banner .btn-dark:hover {
    background: var(--black-mid);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
    background: var(--gray-light);
    border-top: 2px solid #EEE;
    padding: 4rem 2rem 0;
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--gray-border);
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo .footer-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.footer-brand p {
    font-size: 0.88rem;
    color: var(--black);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: #F5F5F5;
    border: 1px solid #E0E0E0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.footer-col h5 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 1.2rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col ul a {
    color: var(--black);
    font-size: 0.88rem;
    transition: color 0.2s;
}

.footer-col ul a:hover {
    color: var(--yellow);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0.8rem;
}

.footer-contact-item .icon {
    color: var(--black);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-item span {
    font-size: 0.88rem;
    color: var(--black);
    line-height: 1.5;
}

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

.footer-contact-item a:hover {
    color: var(--yellow);
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--black);
    margin: 0;
}

.footer-bottom a {
    color: var(--black);
}

.footer-bottom a:hover {
    color: var(--yellow);
}

/* ── WhatsApp Floating Button ───────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: var(--white);
    padding: 14px 20px 14px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.88rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    text-decoration: none;
    animation: float-pulse 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 22px;
    height: 22px;
    fill: var(--white);
}



@keyframes float-pulse {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

.whatsapp-float:hover {
    animation: none;
}

/* ── Stats Bar ──────────────────────────────────────────────── */
.stats-bar {
    background: var(--yellow);
    padding: 1.5rem 2rem;
}

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

.stat-item h3 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--black);
    line-height: 1;
}

.stat-item p {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* ── Dividers ───────────────────────────────────────────────── */
.yellow-divider {
    width: 60px;
    height: 4px;
    background: var(--yellow);
    border-radius: 2px;
    margin-top: 1rem;
}

.yellow-divider.centered {
    margin: 1rem auto 0;
}

/* ── Value / About Cards ────────────────────────────────────── */
.value-card {
    background: var(--black-card);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    border-color: var(--yellow);
    transform: translateY(-5px);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.2rem;
    transition: background 0.3s;
}

.value-card:hover .value-icon {
    background: rgba(255, 215, 0, 0.2);
}

.value-card h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.9rem;
    color: #AAAAAA;
    margin: 0;
}

/* ── Team Card ──────────────────────────────────────────────── */
.team-card {
    background: var(--black-card);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    text-align: center;
    transition: var(--transition);
    max-width: 280px;
}

.team-card:hover {
    border-color: var(--yellow);
    transform: translateY(-5px);
}

.team-card-img {
    height: 240px;
    overflow: hidden;
    background: #222;
}

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

.team-card-body {
    padding: 1.5rem;
}

.team-card-body h4 {
    color: var(--white);
    margin-bottom: 4px;
}

.team-card-body .role {
    color: var(--yellow);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ── Contact Page ───────────────────────────────────────────── */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    background: var(--black-card);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.contact-info-item:hover {
    border-color: var(--yellow);
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-item h5 {
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.contact-info-item p {
    color: #888;
    font-size: 0.88rem;
    margin: 0;
    line-height: 1.5;
}

.contact-info-item a {
    color: #888;
}

.contact-info-item a:hover {
    color: var(--yellow);
}

.map-placeholder {
    width: 100%;
    height: 380px;
    background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
    border-radius: var(--radius-md);
    border: 2px dashed var(--gray-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    color: var(--gray-mid);
    overflow: hidden;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--radius-md);
}

.map-consent-overlay {
    transition: opacity 0.3s ease;
}

.map-consent-overlay .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
}

.map-hint {
    font-size: 0.8rem;
    color: #666;
    max-width: 300px;
    text-align: center;
}

/* ── Checkbox Styling ── */
input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    cursor: pointer;
    accent-color: var(--yellow);
}

input[type="checkbox"]+label {
    cursor: pointer;
    user-select: none;
}

.map-placeholder .map-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ── Services Detail Page ───────────────────────────────────── */
.service-detail-section {
    padding: 4rem 2rem;
}

.service-detail-section:nth-child(even) {
    background: var(--black-mid);
}

.service-detail-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-detail-section:nth-child(even) .service-detail-inner {
    direction: rtl;
}

.service-detail-section:nth-child(even) .service-detail-text {
    direction: ltr;
}

.service-detail-section:nth-child(even) .service-detail-image {
    direction: ltr;
}

.service-detail-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 380px;
    background: #222;
    position: relative;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e1e1e, #2a2a2a);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--gray-mid);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-number {
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 215, 0, 0.06);
    line-height: 1;
    margin-bottom: -1rem;
    font-family: var(--font-heading);
}

.service-detail-text p {
    color: #AAAAAA;
    margin-bottom: 0.75rem;
}

.service-detail-text ul {
    list-style: none;
    margin: 1rem 0;
}

.service-detail-text ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #AAAAAA;
    font-size: 0.9rem;
    padding: 5px 0;
}

.service-detail-text ul li::before {
    content: '✓';
    color: var(--yellow);
    font-weight: 900;
}

/* ── About Page ─────────────────────────────────────────────── */
.about-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 500px;
    background: #222;
    position: relative;
}

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

.about-badge {
    position: absolute;
    bottom: 2rem;
    right: -1.5rem;
    background: var(--yellow);
    color: var(--black);
    padding: 1.2rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 900;
    font-family: var(--font-heading);
    text-align: center;
    box-shadow: var(--shadow-card);
}

.about-badge .num {
    font-size: 2.4rem;
    line-height: 1;
}

.about-badge .label {
    font-size: 0.72rem;
    letter-spacing: 1px;
    color: rgba(0, 0, 0, 0.65);
    text-transform: uppercase;
}

.about-text p {
    color: #AAAAAA;
    margin-bottom: 1rem;
    line-height: 1.85;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--white);
    font-weight: 500;
}

.highlight-item::before {
    content: '★';
    color: var(--yellow);
    font-size: 0.85rem;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.anim-fade-up {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

/* Intersection Observer classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .service-detail-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-detail-section:nth-child(even) .service-detail-inner {
        direction: ltr;
    }

    .about-two-col {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 360px;
    }

    .about-badge {
        right: 1rem;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 70px;
    }

    .nav-links,
    .nav-phone {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-nav {
        display: block;
    }

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

    .stats-bar-inner {
        grid-template-columns: 1fr 1fr;
    }

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

    .page-hero {
        min-height: 220px;
    }

    .section {
        padding: 3.5rem 1.2rem;
    }

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

    .about-highlights {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }

    .stats-bar-inner {
        grid-template-columns: 1fr 1fr;
    }

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

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

    .booking-form,
    .contact-form-inner {
        padding: 1.5rem;
    }

    .whatsapp-float .whatsapp-text {
        display: none;
    }

    .whatsapp-float {
        padding: 14px;
        border-radius: 50%;
    }
}