/*=============================================================
  Diamond Chauffeur Tourism - Main Stylesheet
  Design: Premium Dubai Chauffeur Brand
  Color Palette: Dark Navy #0a0e1a, Blue #1a3a5c, Gold #d4a017, Orange #f58220
==============================================================*/

/* === CSS Variables === */
:root {
    --dcl-dark: #0a0e1a;
    --dcl-primary: #1a3a5c;
    --dcl-deep-blue: #063b63;
    --dcl-gold: #d4a017;
    --dcl-orange: #f58220;
    --dcl-white: #ffffff;
    --dcl-light: #f5f5f5;
    --dcl-text: #1a1a1a;
    --dcl-whatsapp: #25D366;
    --dcl-gray: #666;
    --dcl-border: #e0e0e0;
    --font-heading: 'Playfair Display', 'Cinzel', Georgia, serif;
    --font-body: 'Poppins', 'Montserrat', Arial, sans-serif;
    --transition: 0.3s ease;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 12px 40px rgba(0,0,0,0.15);
}

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--font-body); color: var(--dcl-text); font-size: 16px; line-height: 1.7; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; padding: 0; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* === Typography === */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(34px, 5vw, 68px); }
h2 { font-size: clamp(28px, 3.5vw, 48px); }
h3 { font-size: clamp(22px, 2.5vw, 28px); }
p { margin-bottom: 1rem; font-size: 16px; color: #444; }
@media (max-width: 768px) {
    h1 { font-size: 34px; } h2 { font-size: 28px; } h3 { font-size: 22px; }
}

/* === Buttons === */
.dcl-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 32px; border: none; border-radius: 6px;
    font-family: var(--font-body); font-size: 15px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px; cursor: pointer;
    transition: var(--transition); white-space: nowrap;
}
.dcl-btn-orange { background: var(--dcl-orange); color: var(--dcl-white); }
.dcl-btn-orange:hover { background: #e67310; transform: translateY(-2px); box-shadow: 0 6px 25px rgba(245,130,32,0.4); }
.dcl-btn-gold { background: var(--dcl-gold); color: var(--dcl-white); }
.dcl-btn-gold:hover { background: #b88914; transform: translateY(-2px); }
.dcl-btn-dark { background: var(--dcl-dark); color: var(--dcl-white); }
.dcl-btn-dark:hover { background: #1a1e2e; }
.dcl-btn-outline { background: transparent; color: var(--dcl-white); border: 2px solid var(--dcl-white); }
.dcl-btn-outline:hover { background: var(--dcl-white); color: var(--dcl-dark); }
.dcl-btn-lg { padding: 18px 40px; font-size: 16px; }
.dcl-btn-sm { padding: 10px 22px; font-size: 13px; }
@media (max-width: 768px) {
    .dcl-btn { width: 100%; justify-content: center; }
}

/* === Section Header === */
.dcl-section-header { text-align: center; margin-bottom: 50px; }
.dcl-accent-bar { width: 60px; height: 4px; background: var(--dcl-gold); margin: 0 auto 20px; border-radius: 2px; }
.dcl-section-title { margin-bottom: 15px; color: var(--dcl-dark); }
.dcl-section-subtitle { font-size: 18px; color: var(--dcl-gray); max-width: 700px; margin: 0 auto; }
@media (max-width: 768px) { .dcl-section-header { margin-bottom: 30px; } }

/* === Top Bar === */
.dcl-top-bar {
    background: var(--dcl-dark); color: #ccc; font-size: 13px; padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.dcl-top-bar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.dcl-top-bar-left, .dcl-top-bar-right { display: flex; align-items: center; gap: 15px; flex-wrap: wrap; }
.dcl-top-bar-item { display: flex; align-items: center; gap: 6px; color: #ccc; }
.dcl-top-bar-item svg { flex-shrink: 0; }
.dcl-top-bar-item:hover { color: var(--dcl-gold); }
.dcl-top-bar-divider { width: 1px; height: 14px; background: rgba(255,255,255,0.2); }
.dcl-top-bar-wa { color: var(--dcl-whatsapp); }
.dcl-rating-stars { color: var(--dcl-gold); letter-spacing: 2px; }
@media (max-width: 768px) {
    .dcl-top-bar { display: none; }
}

/* === Main Header === */
.dcl-header {
    background: var(--dcl-white); position: sticky; top: 0; z-index: 1000;
    transition: var(--transition); box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.dcl-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.dcl-header-inner { display: flex; align-items: center; justify-content: space-between; padding: 25px 0; gap: 20px; }
.dcl-logo-img { max-height: 120px; width: auto; }
.dcl-logo-link { flex-shrink: 0; }

/* === Navigation === */
.dcl-nav { flex: 1; display: flex; justify-content: center; }
.dcl-menu { display: flex; align-items: center; gap: 0; }
.dcl-menu > li { position: relative; }
.dcl-menu > li > a {
    display: block; padding: 10px 16px; font-size: 13px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.8px; color: var(--dcl-text);
    font-family: var(--font-body);
}
.dcl-menu > li > a:hover { color: var(--dcl-gold); }
.dcl-menu .sub-menu {
    position: absolute; top: 100%; left: 0; background: var(--dcl-white);
    min-width: 240px; box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: var(--transition); z-index: 100; border-radius: 0 0 8px 8px;
    padding: 8px 0;
}
.dcl-menu li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dcl-menu .sub-menu a {
    display: block; padding: 10px 20px; font-size: 14px; color: var(--dcl-text);
    border-left: 3px solid transparent;
}
.dcl-menu .sub-menu a:hover { background: var(--dcl-light); border-left-color: var(--dcl-gold); color: var(--dcl-gold); }

/* === Header CTA === */
.dcl-header-cta { padding: 12px 28px; font-size: 13px; flex-shrink: 0; }

/* === Hamburger === */
.dcl-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.dcl-hamburger span { width: 26px; height: 2.5px; background: var(--dcl-dark); border-radius: 2px; transition: var(--transition); }
.dcl-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.dcl-hamburger.active span:nth-child(2) { opacity: 0; }
.dcl-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
@media (max-width: 1024px) {
    .dcl-nav { display: none; }
    .dcl-hamburger { display: flex; }
    .dcl-header-cta { padding: 10px 18px; font-size: 12px; }
}

/* === Mobile Menu === */
.dcl-mobile-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 2000;
    opacity: 0; visibility: hidden; transition: var(--transition);
}
.dcl-mobile-overlay.active { opacity: 1; visibility: visible; }
.dcl-mobile-menu {
    position: fixed; top: 0; right: -100%; width: 320px; max-width: 85vw; height: 100%;
    background: var(--dcl-white); z-index: 2001; overflow-y: auto;
    transition: right 0.35s ease; box-shadow: -5px 0 30px rgba(0,0,0,0.15);
}
.dcl-mobile-menu.open { right: 0; }
.dcl-mobile-menu-header { display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; border-bottom: 1px solid var(--dcl-border); }
.dcl-mobile-close { background: none; border: none; font-size: 24px; cursor: pointer; color: var(--dcl-text); padding: 5px; }
.dcl-mobile-nav { padding: 10px 0; }
.dcl-mobile-nav .dcl-menu { flex-direction: column; align-items: stretch; }
.dcl-mobile-nav .dcl-menu > li > a { padding: 14px 20px; font-size: 15px; border-bottom: 1px solid var(--dcl-light); }
.dcl-mobile-nav .dcl-menu .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; padding-left: 20px; border-radius: 0; }
.dcl-mobile-menu-footer { padding: 20px; border-top: 1px solid var(--dcl-border); }
.dcl-mobile-contact-item { display: flex; align-items: center; gap: 10px; padding: 12px 0; font-size: 14px; color: var(--dcl-text); }
.dcl-mobile-wa { color: var(--dcl-whatsapp); font-weight: 600; }

/* === Hero Section === */
.dcl-hero {
    position: relative; min-height: 700px; display: flex; align-items: center;
    background-size: cover; background-position: center; overflow: hidden;
}
.dcl-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(10,14,26,0.9) 0%, rgba(10,14,26,0.6) 50%, rgba(10,14,26,0.4) 100%);
}
.dcl-hero .container { position: relative; z-index: 2; display: flex; align-items: center; gap: 50px; }
.dcl-hero-content { flex: 1.1; color: var(--dcl-white); }
.dcl-hero-badge {
    display: inline-block; background: var(--dcl-gold); color: var(--dcl-dark);
    padding: 6px 18px; border-radius: 50px; font-size: 12px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px;
}
.dcl-hero-title { font-size: clamp(34px, 5vw, 62px); margin-bottom: 20px; line-height: 1.15; }
.dcl-hero-desc { font-size: 18px; line-height: 1.7; margin-bottom: 25px; max-width: 600px; opacity: 0.9; color: #ddd; }
.dcl-hero-bullets { list-style: none; margin-bottom: 30px; }
.dcl-hero-bullets li {
    display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
    font-size: 15px; color: #ddd;
}
.dcl-hero-bullets li::before {
    content: ''; width: 6px; height: 6px; background: var(--dcl-gold);
    border-radius: 50%; flex-shrink: 0;
}
.dcl-hero-actions { display: flex; gap: 15px; flex-wrap: wrap; }
@media (max-width: 1024px) {
    .dcl-hero .container { flex-direction: column; }
    .dcl-hero-content { text-align: center; }
    .dcl-hero-desc { margin-left: auto; margin-right: auto; }
    .dcl-hero-bullets { text-align: left; max-width: 400px; margin-left: auto; margin-right: auto; }
    .dcl-hero-actions { justify-content: center; }
    .dcl-hero { min-height: auto; padding: 80px 0 50px; }
}

/* === Booking Widget === */
.dcl-hero-booking { flex: 0.9; max-width: 420px; }
.dcl-booking-widget {
    background: var(--dcl-white); border-radius: 16px; padding: 28px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25); animation: fadeUp 0.8s ease;
}
.dcl-bw-label { text-align: center; font-size: 11px; color: var(--dcl-gray); margin-bottom: 18px; letter-spacing: 1px; text-transform: uppercase; font-weight: 600; }
.dcl-bw-tabs { display: flex; background: var(--dcl-light); border-radius: 8px; padding: 4px; margin-bottom: 20px; }
.dcl-bw-tab { flex: 1; padding: 10px; text-align: center; border: none; background: none; cursor: pointer; font-size: 13px; font-weight: 700; color: var(--dcl-gray); border-radius: 6px; transition: var(--transition); font-family: var(--font-body); }
.dcl-bw-tab.active { background: var(--dcl-dark); color: var(--dcl-white); }
.dcl-bw-panel { display: none; }
.dcl-bw-panel.active { display: block; }
.dcl-bw-field { margin-bottom: 14px; }
.dcl-bw-field label { display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; color: var(--dcl-text); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.5px; }
.dcl-bw-field label svg { color: var(--dcl-gold); }
.dcl-bw-input, .dcl-bw-select {
    width: 100%; padding: 12px 14px; border: 1px solid var(--dcl-border); border-radius: 6px;
    font-size: 14px; font-family: var(--font-body); transition: var(--transition);
    background: var(--dcl-white); color: var(--dcl-text);
}
.dcl-bw-input:focus, .dcl-bw-select:focus { outline: none; border-color: var(--dcl-gold); box-shadow: 0 0 0 3px rgba(212,160,23,0.1); }
.dcl-bw-time-row { display: flex; align-items: center; gap: 8px; }
.dcl-bw-time-row select { flex: 1; }
.dcl-bw-submit {
    width: 100%; padding: 14px; background: var(--dcl-dark); color: var(--dcl-white);
    border: none; border-radius: 6px; font-size: 15px; font-weight: 700; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: var(--transition); font-family: var(--font-body); margin-top: 5px;
}
.dcl-bw-submit:hover { background: var(--dcl-primary); }
@media (max-width: 1024px) {
    .dcl-hero-booking { max-width: 100%; width: 100%; }
}

/* === Services Grid === */
.dcl-services { padding: 80px 20px; background: var(--dcl-white); }
.dcl-services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.dcl-service-card {
    position: relative; overflow: hidden; border-radius: 12px;
    box-shadow: var(--shadow); transition: var(--transition); cursor: pointer;
    background: var(--dcl-white);
}
.dcl-service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.dcl-service-image { position: relative; height: 220px; overflow: hidden; }
.dcl-service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.dcl-service-card:hover .dcl-service-image img { transform: scale(1.08); }
.dcl-service-badge {
    position: absolute; top: 15px; left: 15px; width: 40px; height: 40px;
    background: rgba(10,14,26,0.85); border-radius: 50%; display: flex;
    align-items: center; justify-content: center;
}
.dcl-service-body { padding: 18px 20px; }
.dcl-service-body h3 { font-size: 18px; color: var(--dcl-text); font-family: var(--font-body); font-weight: 600; }
@media (max-width: 1024px) { .dcl-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .dcl-services-grid { grid-template-columns: 1fr; } }

/* === Fleet Grid === */
.dcl-fleet { padding: 80px 20px; background: var(--dcl-light); }
.dcl-fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dcl-fleet-card {
    background: var(--dcl-white); border-radius: 12px; overflow: hidden;
    box-shadow: var(--shadow); transition: var(--transition);
}
.dcl-fleet-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: var(--shadow-hover); }
.dcl-fleet-img { height: 220px; overflow: hidden; }
.dcl-fleet-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.dcl-fleet-card:hover .dcl-fleet-img img { transform: scale(1.1); }
.dcl-fleet-body { padding: 20px; }
.dcl-fleet-body h3 { font-size: 20px; margin-bottom: 15px; font-family: var(--font-body); font-weight: 700; }
.dcl-fleet-prices { display: flex; flex-direction: column; gap: 8px; }
.dcl-fleet-price-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 12px; background: var(--dcl-deep-blue); border-radius: 6px; color: var(--dcl-white); font-size: 13px; }
.dcl-fleet-price-row a { color: var(--dcl-white); display: flex; align-items: center; gap: 6px; font-weight: 700; }
.dcl-fleet-price-row a:hover { color: var(--dcl-gold); }
@media (max-width: 1024px) { .dcl-fleet-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .dcl-fleet-grid { grid-template-columns: 1fr; } }

/* === Why Choose Us === */
.dcl-why { padding: 80px 20px; background: var(--dcl-white); }
.dcl-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.dcl-why-card {
    text-align: center; padding: 35px 25px; border-radius: 12px;
    transition: var(--transition); background: var(--dcl-light);
}
.dcl-why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.dcl-why-icon { width: 60px; height: 60px; margin: 0 auto 15px; background: rgba(212,160,23,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.dcl-why-card h3 { font-size: 20px; margin-bottom: 10px; font-family: var(--font-body); color: var(--dcl-dark); }
.dcl-why-card p { font-size: 14px; color: var(--dcl-gray); margin: 0; }
@media (max-width: 1024px) { .dcl-why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .dcl-why-grid { grid-template-columns: 1fr; } }

/* === Brand Strip === */
.dcl-brand-strip { padding: 40px 0; background: var(--dcl-white); border-top: 1px solid var(--dcl-border); }
.dcl-brand-strip-label { text-align: center; font-size: 13px; font-weight: 600; color: var(--dcl-gray); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 25px; }
.dcl-brand-strip-logos { display: flex; justify-content: center; align-items: center; gap: 30px; flex-wrap: wrap; }
.dcl-brand-logo { font-size: 14px; font-weight: 700; color: var(--dcl-gray); padding: 10px 20px; background: var(--dcl-light); border-radius: 6px; letter-spacing: 0.5px; }

/* === Split Sections (Long-form) === */
.dcl-longform {
    display: flex; align-items: center; gap: 50px; padding: 80px 20px;
    background: var(--dcl-white);
}
.dcl-longform:nth-child(even) { background: var(--dcl-light); }
.dcl-longform-image { flex: 1; position: relative; }
.dcl-longform-image img { width: 100%; border-radius: 12px; box-shadow: var(--shadow); }
.dcl-longform-text { flex: 1; min-width: 0; overflow-wrap: break-word; word-break: break-word; }
.dcl-longform-text h3 { font-size: clamp(24px, 3vw, 36px); margin-bottom: 20px; color: var(--dcl-dark); }
.dcl-longform-text p { margin-bottom: 15px; color: #555; }
.dcl-longform-text .dcl-feature-list { list-style: none; margin-bottom: 25px; }
.dcl-longform-text .dcl-feature-list li { position: relative; padding-left: 25px; margin-bottom: 10px; color: #444; }
.dcl-longform-text .dcl-feature-list li::before { content: '✓'; position: absolute; left: 0; color: var(--dcl-gold); font-weight: 700; }
@media (max-width: 768px) {
    .dcl-longform-image img { min-height: 220px; object-fit: cover; border-radius: 10px; }
    .dcl-longform-text h3 { font-size: 22px; margin-bottom: 14px; }
    .dcl-longform-text p { font-size: 14px; line-height: 1.6; }
    .dcl-longform-text .dcl-feature-list li { font-size: 14px; padding-left: 22px; }
    .dcl-longform-text .dcl-btn { width: 100%; text-align: center; justify-content: center; }
    .dcl-longform-image { width: 100%; }
    .dcl-longform { flex-direction: column; padding: 50px 20px; gap: 25px; }
    .dcl-longform-text p { max-height: 60px; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; margin-bottom: 10px; }
    .dcl-longform-text p:last-of-type { max-height: 40px; -webkit-line-clamp: 2; }
    /* All same: image on top, text below */
}

/* === FAQ === */
.dcl-faq { padding: 80px 20px; background: var(--dcl-white); }
.dcl-faq-list { max-width: 800px; margin: 0 auto; }
.dcl-faq-item { border: 1px solid var(--dcl-border); border-radius: 8px; margin-bottom: 10px; overflow: hidden; }
.dcl-faq-question {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 18px 22px; background: none; border: none; cursor: pointer;
    font-size: 16px; font-weight: 600; color: var(--dcl-text); text-align: left;
    font-family: var(--font-body); transition: var(--transition);
}
.dcl-faq-question:hover { background: var(--dcl-light); }
.dcl-faq-question svg { transition: transform 0.3s ease; flex-shrink: 0; }
.dcl-faq-question[aria-expanded="true"] svg { transform: rotate(180deg); }
.dcl-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.dcl-faq-answer > div { padding: 0 22px 18px; font-size: 15px; color: #555; line-height: 1.7; }

/* === Map === */
.dcl-map { padding: 80px 20px; background: var(--dcl-light); }
.dcl-map-embed iframe { width: 100%; height: 400px; border-radius: 12px; }

/* === Content Area Styling === */
.dcl-page-content { padding: 60px 0; }
.dcl-page-main { max-width: 100%; }
.dcl-page-main h1, .dcl-page-main h2, .dcl-page-main h3, .dcl-page-main h4 { margin-top: 1.5em; margin-bottom: 0.5em; }
.dcl-page-main h2 { font-size: 28px; }
.dcl-page-main h3 { font-size: 22px; }
.dcl-page-main p { margin-bottom: 1.2em; line-height: 1.8; color: #444; }
.dcl-page-main ul, .dcl-page-main ol { margin-bottom: 1.2em; padding-left: 24px; }
.dcl-page-main li { margin-bottom: 0.5em; line-height: 1.7; }
.dcl-page-main img { border-radius: 8px; margin: 1.5em 0; }
.dcl-page-main blockquote { border-left: 4px solid var(--dcl-gold); padding: 20px; margin: 1.5em 0; background: var(--dcl-light); border-radius: 0 8px 8px 0; font-style: italic; }
.dcl-page-main blockquote p { margin-bottom: 0; }
.dcl-page-main .wp-block-button { margin: 1.5em 0; }
.dcl-page-main .wp-block-columns { gap: 30px; margin: 1.5em 0; }
/* Two column layout */
.dcl-page-two-col { display: grid; grid-template-columns: 1fr 300px; gap: 40px; }
.dcl-page-sidebar .dcl-sidebar-widget { background: var(--dcl-light); padding: 24px; border-radius: 8px; margin-bottom: 24px; }
.dcl-page-sidebar .dcl-sidebar-widget h3 { font-size: 16px; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--dcl-gold); }
.dcl-sidebar-links li { margin-bottom: 8px; }
.dcl-sidebar-links a { color: #555; font-size: 14px; display: block; padding: 6px 0; }
.dcl-sidebar-links a:hover { color: var(--dcl-gold); padding-left: 4px; }
@media (max-width: 768px) { .dcl-page-two-col { grid-template-columns: 1fr; } }

/* === Footer === */
.dcl-footer {
    background: linear-gradient(135deg, var(--dcl-primary) 0%, #0d2137 100%); color: #ccc; padding: 100px 0 0;
    position: relative;
}
.dcl-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.dcl-footer-logo { display: block; margin-bottom: 20px; }
.dcl-footer-logo img { background: var(--dcl-white); padding: 10px 20px; border-radius: 8px; max-height: 80px; width: auto; }
.dcl-footer-about { font-size: 15px; line-height: 1.8; color: #bbb; margin-bottom: 20px; }
.dcl-social-icons { display: flex; gap: 12px; }
.dcl-social-icon {
    width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center; color: #ccc; transition: var(--transition);
}
.dcl-social-icon:hover { background: var(--dcl-gold); color: var(--dcl-dark); }
.dcl-social-icon.dcl-social-facebook:hover { background: #1877F2; color: #fff; }
.dcl-social-icon.dcl-social-instagram:hover { background: #E4405F; color: #fff; }
.dcl-social-icon.dcl-social-tiktok:hover { background: #000000; color: #fff; }
.dcl-social-icon.dcl-social-youtube:hover { background: #FF0000; color: #fff; }
.dcl-social-icon.dcl-social-linkedin:hover { background: #0A66C2; color: #fff; }
.dcl-social-icon.dcl-social-twitter:hover { background: #000000; color: #fff; }
.dcl-social-icon.dcl-social-wa:hover { background: #25D366; color: #fff; }
.dcl-footer h4 { color: var(--dcl-gold); font-size: 20px; margin-bottom: 22px; font-family: var(--font-body); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.dcl-footer-links li { margin-bottom: 12px; }
.dcl-footer-links a { color: #bbb; font-size: 15px; }
.dcl-footer-links a:hover { color: var(--dcl-gold); padding-left: 4px; }
.dcl-footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; font-size: 15px; color: #bbb; }
.dcl-footer-contact-item svg { margin-top: 4px; flex-shrink: 0; color: var(--dcl-gold); }
.dcl-footer-contact-item a { color: #bbb; }
.dcl-footer-contact-item a:hover { color: var(--dcl-gold); }
.dcl-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1); padding: 30px 0;
    text-align: center; font-size: 14px; color: #999;
}
.dcl-footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
.dcl-footer-bottom a { color: #999; }
.dcl-footer-bottom a:hover { color: var(--dcl-gold); }
@media (max-width: 1024px) { .dcl-footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .dcl-footer-grid { grid-template-columns: 1fr; } }

/* === Footer Areas We Serve === */
.dcl-footer-areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.dcl-footer-area-item {
    display: flex; align-items: center; gap: 8px; padding: 8px 10px;
    background: rgba(255,255,255,0.04); border-radius: 6px;
    color: #bbb; font-size: 14px; transition: all 0.3s ease;
    text-decoration: none;
}
.dcl-footer-area-item:hover {
    background: rgba(201,168,76,0.12); color: var(--dcl-gold);
    padding-left: 12px;
}
.dcl-footer-area-icon { flex-shrink: 0; display: flex; }
.dcl-footer-area-text { display: flex; flex-direction: column; line-height: 1.3; }
.dcl-footer-area-text strong { font-size: 13px; color: #ddd; }
.dcl-footer-area-text small { font-size: 11px; color: #999; }
.dcl-footer-area-item:hover .dcl-footer-area-text strong { color: var(--dcl-gold); }
@media (max-width: 480px) { .dcl-footer-areas-grid { grid-template-columns: 1fr; } }


/* === Sticky WhatsApp === */
.dcl-whatsapp-float {
    position: fixed; bottom: 30px; right: 30px; z-index: 999;
    display: flex; align-items: center; gap: 8px;
    background: var(--dcl-whatsapp); color: var(--dcl-white);
    padding: 14px 22px; border-radius: 50px; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    font-size: 14px; font-weight: 600; transition: var(--transition);
    animation: pulse-green 2s infinite;
}
.dcl-whatsapp-float:hover { transform: scale(1.05); box-shadow: 0 6px 30px rgba(37,211,102,0.5); }
.dcl-whatsapp-float svg { width: 22px; height: 22px; }

@keyframes pulse-green {
    0% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
    100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
}

/* === Promo Banner === */
.dcl-promo-banner {
    position: fixed; bottom: 100px; right: 30px; z-index: 998;
    background: linear-gradient(135deg, var(--dcl-dark), #1a1e2e);
    color: var(--dcl-white); padding: 25px; border-radius: 12px;
    max-width: 280px; box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    display: none; text-align: center;
}
.dcl-promo-banner.show { display: block; animation: fadeUp 0.5s ease; }
.dcl-promo-close { position: absolute; top: 8px; right: 12px; background: none; border: none; color: #999; font-size: 20px; cursor: pointer; }
.dcl-promo-content h5 { font-size: 20px; margin-bottom: 8px; color: var(--dcl-gold); }
.dcl-promo-content p { font-size: 13px; color: #ccc; margin-bottom: 15px; }
@media (max-width: 768px) {
    .dcl-whatsapp-float { bottom: 20px; right: 20px; padding: 12px 16px; font-size: 13px; }
    .dcl-promo-banner { bottom: 80px; right: 20px; max-width: 240px; }
}

/* === Animations === */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* === Trusted Brands Strip (text badges) === */
.dcl-brand-logo {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 8px 20px; background: var(--dcl-light); border-radius: 6px;
    font-size: 13px; font-weight: 700; color: var(--dcl-gray);
    transition: var(--transition); letter-spacing: 0.5px; text-transform: uppercase;
}
.dcl-brand-logo:hover { background: var(--dcl-dark); color: var(--dcl-white); }

/* === Trusted Brands Badges === */
.dcl-brand-strip-logos { display: flex; justify-content: center; align-items: center; gap: 12px; flex-wrap: wrap; }

/* === Transport Experiences === */
.dcl-experiences { padding: 80px 20px; background: var(--dcl-dark); }
.dcl-experiences .dcl-section-title { color: var(--dcl-white); }
.dcl-experiences .dcl-section-subtitle { color: #999; }
.dcl-experiences-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dcl-experience-card {
    position: relative; height: 320px; border-radius: 12px; overflow: hidden;
    cursor: pointer; box-shadow: var(--shadow);
}
.dcl-experience-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.dcl-experience-card:hover img { transform: scale(1.1); }
.dcl-experience-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(0deg, rgba(10,14,26,0.85) 0%, transparent 50%);
}
.dcl-experience-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 25px; }
.dcl-experience-info h3 { color: var(--dcl-white); font-size: 20px; font-family: var(--font-body); }
@media (max-width: 1024px) { .dcl-experiences-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .dcl-experiences-grid { grid-template-columns: 1fr; } }

/* === Travel in Style === */
.dcl-travel-style { padding: 80px 20px; background: var(--dcl-dark); position: relative; }
.dcl-travel-style .dcl-section-title { color: var(--dcl-white); }
.dcl-travel-cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.dcl-travel-card {
    position: relative; height: 400px; border-radius: 12px; overflow: hidden;
    transition: var(--transition);
}
.dcl-travel-card:hover { transform: translateY(-8px); }
.dcl-travel-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.dcl-travel-card:hover img { transform: scale(1.08); }
.dcl-travel-card .dcl-experience-overlay { background: linear-gradient(0deg, rgba(10,14,26,0.9) 0%, transparent 60%); }
.dcl-travel-card .dcl-experience-info h3 { font-size: 16px; }
@media (max-width: 1024px) { .dcl-travel-cards { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .dcl-travel-cards { grid-template-columns: 1fr; } }

/* === Testimonials === */
.dcl-testimonials { padding: 80px 20px; background: var(--dcl-light); }
.dcl-testimonials-slider { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dcl-testimonial-card {
    background: var(--dcl-white); padding: 30px; border-radius: 12px;
    box-shadow: var(--shadow); transition: var(--transition);
}
.dcl-testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.dcl-testimonial-stars { color: var(--dcl-gold); font-size: 20px; margin-bottom: 15px; }
.dcl-testimonial-text { font-size: 15px; line-height: 1.7; color: #555; margin-bottom: 20px; font-style: italic; }
.dcl-testimonial-author { display: flex; align-items: center; gap: 12px; }
.dcl-testimonial-photo { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
@media (max-width: 1024px) { .dcl-testimonials-slider { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .dcl-testimonials-slider { grid-template-columns: 1fr; } }

/* === Travel in Style === */
.dcl-travel-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }

/* === Airport Services === */
.dcl-airport-services { padding: 60px 0; background: var(--dcl-deep-blue); color: var(--dcl-white); }
.dcl-airport-icons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.dcl-airport-icon { padding: 30px; border-radius: 12px; background: rgba(255,255,255,0.06); }
.dcl-airport-icon svg { width: 40px; height: 40px; margin-bottom: 15px; color: var(--dcl-gold); }
.dcl-airport-icon h4 { font-size: 18px; font-family: var(--font-body); }
@media (max-width: 768px) { .dcl-airport-icons { grid-template-columns: repeat(2, 1fr); } }

/* === Flight Info Bar === */
.dcl-flight-bar { background: var(--dcl-orange); padding: 40px 0; }
.dcl-flight-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; color: var(--dcl-white); }
.dcl-flight-item { text-align: center; }
.dcl-flight-item svg { width: 36px; height: 36px; margin-bottom: 10px; }
.dcl-flight-item h4 { font-size: 16px; font-family: var(--font-body); }
.dcl-flight-item p { font-size: 13px; opacity: 0.85; color: #fff; }
@media (max-width: 768px) { .dcl-flight-grid { grid-template-columns: repeat(2, 1fr); } }

/* === Popular Locations === */
.dcl-locations { padding: 60px 0; }
.dcl-location-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 10px; }
.dcl-location-link {
    display: block; padding: 12px 16px; background: var(--dcl-light); border-radius: 6px;
    font-size: 14px; font-weight: 600; color: var(--dcl-text); text-align: center;
    transition: var(--transition);
}
.dcl-location-link:hover { background: var(--dcl-deep-blue); color: var(--dcl-white); }

/* === Related Services === */
.dcl-related-services { padding: 60px 0; background: var(--dcl-light); }
.dcl-related-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.dcl-related-card {
    text-align: center; padding: 25px 15px; background: var(--dcl-white);
    border-radius: 10px; transition: var(--transition); box-shadow: var(--shadow);
}
.dcl-related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.dcl-related-card svg { width: 36px; height: 36px; margin-bottom: 10px; color: var(--dcl-gold); }
.dcl-related-card span { display: block; font-size: 14px; font-weight: 700; color: var(--dcl-text); }
@media (max-width: 1024px) { .dcl-related-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .dcl-related-grid { grid-template-columns: repeat(2, 1fr); } }

/* === Image Mapping Utility === */
.dcl-img-map { display: none; }

/* === Responsive extras === */
@media (max-width: 480px) {
    .container { padding: 0 15px; }
    .dcl-hero-title { font-size: 28px; }
    .dcl-hero-desc { font-size: 15px; }
}

/* === Accessibility === */
.screen-reader-text { border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal; }

/* === Skip to content === */
#dcl-main-content:focus { outline: none; }

/* === Fleet Section - PilotAndCar Style === */
.dcl-fleet { padding: 90px 0; background: #ffffff; }
.dcl-fleet-container { max-width: 1320px; margin: 0 auto; padding: 0 20px; }
.dcl-fleet-note { text-align: center; margin-bottom: 40px; padding: 16px 24px; background: #fff3cd; border: 1px solid #ffc107; border-radius: 8px; font-size: 15px; color: #856404; }
.dcl-fleet-note p { margin: 0; }
.dcl-fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.dcl-fleet-card { background: #fff; border-radius: 18px; overflow: hidden; box-shadow: 0 12px 35px rgba(0,0,0,0.12); transition: all 0.35s ease; }
.dcl-fleet-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.18); }
.dcl-fleet-img { height: 250px; overflow: hidden; border-radius: 18px 18px 0 0; }
.dcl-fleet-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.dcl-fleet-card:hover .dcl-fleet-img img { transform: scale(1.05); }
.dcl-fleet-body { padding: 25px; }
.dcl-fleet-title { font-family: "Poppins", "Montserrat", Arial, sans-serif; font-size: 34px; font-weight: 700; color: #111111; margin-bottom: 18px; line-height: 1.2; word-break: break-word; }
.dcl-fleet-prices { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.dcl-fleet-price-row { display: flex; align-items: center; justify-content: space-between; padding: 0 18px; height: 54px; background: #0d3b66; border-radius: 8px; color: #fff; font-size: 15px; font-weight: 600; cursor: pointer; transition: background 0.3s ease; }
.dcl-fleet-price-row:hover { background: #145a8c; }
.dcl-fleet-price-label { font-weight: 500; font-size: 14px; }
.dcl-fleet-price-amount { font-weight: 700; font-size: 15px; margin-left: auto; margin-right: 8px; }
.dcl-fleet-price-row svg { flex-shrink: 0; opacity: 0.7; }
.dcl-fleet-actions { display: flex; gap: 10px; }
.dcl-fleet-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px; height: 52px; border-radius: 8px; font-family: "Poppins", "Montserrat", Arial, sans-serif; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; transition: all 0.3s ease; border: none; cursor: pointer; text-decoration: none; }
.dcl-fleet-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.dcl-fleet-btn-call { background: #0d3b66; color: #fff; }
.dcl-fleet-btn-call:hover { background: #145a8c; color: #fff; }
.dcl-fleet-btn-email { background: #0d3b66; color: #fff; }
.dcl-fleet-btn-email:hover { background: #145a8c; color: #fff; }
.dcl-fleet-btn-whatsapp { background: #fff; color: #25D366; border: 2px solid #25D366; }
.dcl-fleet-btn-whatsapp:hover { background: #25D366; color: #fff; }

/* Responsive */
@media (max-width: 1200px) {
    .dcl-fleet-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .dcl-fleet-title { font-size: 28px; }
}
@media (max-width: 991px) {
    .dcl-fleet-grid { grid-template-columns: repeat(2, 1fr); }
    .dcl-fleet-img { height: 220px; }
    .dcl-fleet-title { font-size: 24px; }
}
@media (max-width: 768px) {
    .dcl-fleet-grid { grid-template-columns: 1fr; }
    .dcl-fleet-img { height: 200px; }
    .dcl-fleet-title { font-size: 22px; }
    .dcl-fleet-actions { flex-direction: column; }
    .dcl-fleet-btn { width: 100%; }
}
@media (max-width: 480px) {
    .dcl-fleet-card { border-radius: 14px; }
    .dcl-fleet-body { padding: 18px; }
    .dcl-fleet-title { font-size: 20px; }
}

/* === Get a Free Quote - 3D Animated Section === */
.dcl-quote {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, #0a0e1a 0%, #141b33 30%, #1a2a4a 60%, #0d1f3c 100%);
    overflow: hidden;
    perspective: 1200px;
}
.dcl-quote::before {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(212,160,23,0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 50%, rgba(245,130,32,0.06) 0%, transparent 60%);
    pointer-events: none;
}
.dcl-quote .dcl-section-title { color: #fff; }
.dcl-quote .dcl-section-subtitle { color: rgba(255,255,255,0.7); }
.dcl-quote .dcl-accent-bar { background: linear-gradient(90deg, #d4a017, #f58220, #d4a017); background-size: 200% 100%; animation: shimmer 3s ease-in-out infinite; }

.dcl-quote-form {
    position: relative;
    max-width: 780px;
    margin: 50px auto 0;
    padding: 50px 55px;
    background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 28px;
    box-shadow:
        0 30px 80px rgba(0,0,0,0.5),
        0 10px 30px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.15),
        0 0 0 1px rgba(212,160,23,0.1);
    transform: rotateX(2deg) translateZ(0);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.dcl-quote-form:hover {
    transform: rotateX(0deg) translateZ(20px);
    box-shadow:
        0 40px 100px rgba(0,0,0,0.6),
        0 15px 40px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.2),
        0 0 30px rgba(212,160,23,0.15),
        0 20px 60px -20px rgba(212,160,23,0.2);
    border-color: rgba(212,160,23,0.3);
}
.dcl-quote-form::before {
    content: "";
    position: absolute; top: -1px; left: 10%; right: 10%; height: 2px;
    background: linear-gradient(90deg, transparent, #d4a017, #f58220, transparent);
    border-radius: 2px;
    opacity: 0.6;
}
.dcl-quote-form::after {
    content: "";
    position: absolute; bottom: -1px; left: 20%; right: 20%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,160,23,0.3), transparent);
}

.dcl-form-row {
    display: flex; gap: 18px; margin-bottom: 18px;
}
.dcl-form-row input,
.dcl-form-row select,
.dcl-quote-form textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    color: #fff;
    font-size: 15px;
    font-family: "Poppins", "Montserrat", Arial, sans-serif;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.2);
    transform: translateZ(0);
}
.dcl-form-row input:focus,
.dcl-form-row select:focus,
.dcl-quote-form textarea:focus {
    outline: none;
    border-color: #d4a017;
    background: rgba(255,255,255,0.1);
    box-shadow:
        0 0 0 3px rgba(212,160,23,0.15),
        inset 0 2px 8px rgba(0,0,0,0.3),
        0 0 20px rgba(212,160,23,0.05);
    transform: translateZ(4px);
}
.dcl-form-row input::placeholder,
.dcl-quote-form textarea::placeholder { color: rgba(255,255,255,0.4); }
.dcl-form-row select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns=http://www.w3.org/2000/svg width=12 height=8 viewBox=0 0 12 8%3E%3Cpath fill=%23d4a017 d=M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 44px;
    cursor: pointer;
}
.dcl-form-row select option { background: #1a2a4a; color: #fff; }
.dcl-quote-form textarea {
    resize: vertical;
    min-height: 120px;
    margin-bottom: 22px;
}
.dcl-quote-form .dcl-btn-orange {
    width: 100%;
    padding: 18px 30px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #d4a017, #f58220, #d4a017);
    background-size: 200% 200%;
    animation: gradientMove 4s ease-in-out infinite;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow:
        0 8px 25px rgba(212,160,23,0.3),
        0 2px 10px rgba(0,0,0,0.2),
        inset 0 1px 0 rgba(255,255,255,0.2);
    transform: translateY(0);
}
.dcl-quote-form .dcl-btn-orange:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow:
        0 12px 35px rgba(212,160,23,0.4),
        0 4px 15px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.2);
}
.dcl-quote-form .dcl-btn-orange:active {
    transform: translateY(0px) scale(0.99);
}

.dcl-form-message {
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 14px;
    display: none;
    text-align: center;
}
.dcl-form-message.success {
    display: block;
    background: rgba(76,175,80,0.15);
    border: 1px solid rgba(76,175,80,0.3);
    color: #81c784;
}
.dcl-form-message.error {
    display: block;
    background: rgba(244,67,54,0.15);
    border: 1px solid rgba(244,67,54,0.3);
    color: #e57373;
}

/* Floating particles */
.dcl-quote::after {
    content: "";
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(212,160,23,0.3), transparent),
        radial-gradient(2px 2px at 40% 70%, rgba(245,130,32,0.2), transparent),
        radial-gradient(3px 3px at 60% 20%, rgba(212,160,23,0.2), transparent),
        radial-gradient(2px 2px at 80% 80%, rgba(255,255,255,0.15), transparent),
        radial-gradient(3px 3px at 10% 90%, rgba(245,130,32,0.2), transparent),
        radial-gradient(2px 2px at 90% 10%, rgba(212,160,23,0.15), transparent);
    pointer-events: none;
    animation: floatParticles 12s ease-in-out infinite alternate;
}

/* Animations */
@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
@keyframes floatParticles {
    0% { transform: translateY(0) scale(1); opacity: 1; }
    50% { transform: translateY(-20px) scale(1.05); opacity: 0.8; }
    100% { transform: translateY(10px) scale(0.95); opacity: 0.9; }
}

/* Responsive */
@media (max-width: 768px) {
    .dcl-quote { padding: 60px 0; }
    .dcl-quote-form { padding: 30px 24px; margin-top: 30px; transform: none; }
    .dcl-quote-form:hover { transform: none; }
    .dcl-form-row { flex-direction: column; gap: 14px; }
    .dcl-form-row input,
    .dcl-form-row select,
    .dcl-quote-form textarea { padding: 14px 16px; font-size: 14px; }
    .dcl-quote-form .dcl-btn-orange { padding: 16px 24px; font-size: 15px; }
}
@media (max-width: 480px) {
    .dcl-quote { padding: 40px 0; }
    .dcl-quote-form { padding: 24px 18px; border-radius: 20px; }
}


/* ============================================================
   MOBILE-ONLY IMPROVEMENTS
   Affects only screens < 992px
   Desktop (>= 992px) is UNCHANGED
   ============================================================ */

/* === Tablet: max-width: 991px === */
@media (max-width: 991px) {
    /* Improved spacing */
    .dcl-hero { padding: 60px 0 40px; min-height: auto; }
    .dcl-hero .container { gap: 30px; }
    .dcl-hero-content { text-align: center; padding: 0; }
    .dcl-hero-badge { font-size: 11px; padding: 5px 14px; }
    .dcl-hero-title { font-size: 32px; }
    .dcl-hero-desc { font-size: 15px; margin-left: auto; margin-right: auto; }
    .dcl-hero-actions { justify-content: center; }
    
    /* Booking widget mobile-first */
    .dcl-hero-booking { max-width: 100%; width: 100%; }
    .dcl-booking-widget { padding: 22px; border-radius: 16px; box-shadow: 0 12px 40px rgba(0,0,0,0.2); }
    .dcl-bw-tabs { padding: 3px; border-radius: 10px; }
    .dcl-bw-tab { padding: 12px 10px; font-size: 13px; border-radius: 8px; }
    .dcl-bw-field { margin-bottom: 12px; }
    .dcl-bw-field label { font-size: 11px; margin-bottom: 4px; }
    .dcl-bw-input, .dcl-bw-select { padding: 14px 16px; font-size: 15px; border-radius: 10px; }
    .dcl-bw-submit { padding: 16px; font-size: 15px; border-radius: 10px; margin-top: 8px; }
    .dcl-bw-time-row select { padding: 14px 16px; font-size: 15px; border-radius: 10px; }
    
    /* Section spacing */
    .dcl-services, .dcl-fleet, .dcl-why, .dcl-experiences, .dcl-travel-style,
    .dcl-testimonials, .dcl-related-services, .dcl-faq, .dcl-map { padding: 60px 0; }
    .dcl-brand-strip { padding: 30px 0; }
.dcl-longform { padding: 60px 20px; }
    
    /* Section headers */
    .dcl-section-header { margin-bottom: 35px; }
    .dcl-section-title { font-size: 30px; }
    
    /* Fleet cards - premium mobile */
    .dcl-fleet-grid { gap: 20px; }
    .dcl-fleet-card { border-radius: 16px; }
    .dcl-fleet-img { height: 200px; border-radius: 16px 16px 0 0; }
    .dcl-fleet-body { padding: 20px; }
    .dcl-fleet-title { font-size: 22px; margin-bottom: 14px; }
    .dcl-fleet-prices { gap: 8px; margin-bottom: 16px; }
    .dcl-fleet-price-row { height: 48px; padding: 0 14px; font-size: 14px; border-radius: 10px; }
    .dcl-fleet-price-amount { font-size: 14px; }
    .dcl-fleet-actions { gap: 8px; }
    .dcl-fleet-btn { height: 48px; font-size: 12px; border-radius: 10px; }
    
    /* Services */
    .dcl-service-image { height: 180px; }
    .dcl-service-body { padding: 16px; }
    .dcl-service-body h3 { font-size: 16px; }
    
    /* Why Choose */
    .dcl-why-card { padding: 28px 20px; }
    .dcl-why-icon { width: 50px; height: 50px; }
    .dcl-why-card h3 { font-size: 18px; }
    
    /* Experiences */
    .dcl-experience-card { height: 260px; }
    
    /* Testimonials */
    .dcl-testimonial-card { padding: 24px; }
    
    /* Split sections */
    .dcl-longform-image img { border-radius: 10px; }
    
    /* FAQ */
    .dcl-faq-question { padding: 16px; font-size: 15px; }
    .dcl-faq-answer > div { padding: 0 16px 16px; font-size: 14px; }
    
    /* Footer */
    .dcl-footer { padding: 60px 0 0; }
    .dcl-footer-grid { gap: 30px; margin-bottom: 30px; }
    .dcl-footer h4 { font-size: 17px; margin-bottom: 18px; }
    
    /* Flight bar */
    .dcl-flight-bar { padding: 30px 0; }
    .dcl-flight-grid { gap: 20px; }
}

/* === Mobile: max-width: 767px === */
@media (max-width: 767px) {
    /* Header mobile improvements */
    .dcl-header-inner { padding: 12px 0; }
    .dcl-logo-img { max-height: 70px; }
    .dcl-hamburger { padding: 6px; }
    .dcl-hamburger span { width: 24px; height: 2px; }
    .dcl-header-cta { display: none; }
    
    /* Mobile menu improvements */
    .dcl-mobile-menu { width: 300px; }
    .dcl-mobile-menu-header { padding: 12px 16px; }
    .dcl-mobile-nav .dcl-menu > li > a { padding: 12px 16px; font-size: 14px; }
    .dcl-mobile-nav .dcl-menu .sub-menu { padding-left: 16px; }
    .dcl-mobile-menu-footer { padding: 16px; }
    .dcl-mobile-contact-item { padding: 10px 0; font-size: 13px; }
    
    /* Hero mobile */
    .dcl-hero { padding: 40px 0 30px; min-height: auto; }
    .dcl-hero-title { font-size: 28px; margin-bottom: 12px; }
    .dcl-hero-desc { font-size: 14px; line-height: 1.5; margin-bottom: 16px; }
    .dcl-hero-badge { font-size: 10px; padding: 4px 12px; margin-bottom: 12px; }
    .dcl-hero .container { gap: 20px; }
    .dcl-hero-actions .dcl-btn { padding: 12px 24px; font-size: 13px; }
    
    /* Booking widget mobile */
    .dcl-booking-widget { padding: 18px; border-radius: 14px; }
    .dcl-bw-label { font-size: 10px; margin-bottom: 14px; }
    .dcl-bw-tabs { border-radius: 8px; padding: 3px; margin-bottom: 16px; }
    .dcl-bw-tab { padding: 10px 8px; font-size: 12px; border-radius: 6px; }
    .dcl-bw-field { margin-bottom: 10px; }
    .dcl-bw-field label { font-size: 10px; margin-bottom: 3px; gap: 4px; }
    .dcl-bw-field label svg { width: 14px; height: 14px; }
    .dcl-bw-input, .dcl-bw-select { padding: 12px 14px; font-size: 14px; border-radius: 8px; }
    .dcl-bw-submit { padding: 14px; font-size: 14px; border-radius: 8px; }
    .dcl-bw-time-row select { padding: 12px 14px; font-size: 14px; border-radius: 8px; }
    .dcl-bw-time-row span { font-size: 16px; font-weight: 700; }
    
    /* Typography mobile */
    h1 { font-size: 28px; }
    h2 { font-size: 24px; }
    h3 { font-size: 20px; }
    .dcl-section-title { font-size: 26px; }
    .dcl-section-subtitle { font-size: 15px; }
    .dcl-section-header { margin-bottom: 28px; }
    
    /* Section spacing */
    .dcl-services, .dcl-fleet, .dcl-why, .dcl-experiences, .dcl-travel-style,
    .dcl-testimonials, .dcl-related-services, .dcl-faq, .dcl-map, .dcl-airport-services { padding: 50px 0; }
    .dcl-brand-strip { padding: 24px 0; }
.dcl-longform { padding: 50px 20px; }
    
    /* Fleet cards */
    .dcl-fleet-grid { gap: 16px; }
    .dcl-fleet-card { border-radius: 14px; }
    .dcl-fleet-img { height: 180px; }
    .dcl-fleet-body { padding: 16px; }
    .dcl-fleet-title { font-size: 20px; margin-bottom: 12px; }
    .dcl-fleet-prices { gap: 6px; margin-bottom: 14px; }
    .dcl-fleet-price-row { height: 44px; padding: 0 12px; font-size: 13px; border-radius: 8px; }
    .dcl-fleet-price-label { font-size: 13px; }
    .dcl-fleet-price-amount { font-size: 13px; }
    .dcl-fleet-actions { gap: 6px; }
    .dcl-fleet-btn { height: 44px; font-size: 12px; border-radius: 8px; gap: 4px; }
    .dcl-fleet-btn svg { width: 14px; height: 14px; }
    
    /* Services */
    .dcl-services-grid { gap: 16px; }
    .dcl-service-image { height: 160px; }
    .dcl-service-body { padding: 14px; }
    .dcl-service-body h3 { font-size: 15px; }
    
    /* Why Choose */
    .dcl-why-grid { gap: 16px; }
    .dcl-why-card { padding: 24px 16px; }
    .dcl-why-icon { width: 44px; height: 44px; margin-bottom: 12px; }
    .dcl-why-icon svg { width: 22px; height: 22px; }
    .dcl-why-card h3 { font-size: 16px; margin-bottom: 8px; }
    .dcl-why-card p { font-size: 13px; }
    
    /* Experiences */
    .dcl-experiences-grid { gap: 16px; }
    .dcl-experience-card { height: 220px; }
    .dcl-experience-info { padding: 20px; }
    .dcl-experience-info h3 { font-size: 17px; }
    
    /* Travel Style */
    .dcl-travel-cards { gap: 12px; }
    .dcl-travel-card { height: 300px; }
    .dcl-travel-card .dcl-experience-info h3 { font-size: 14px; }
    
    /* Testimonials */
    .dcl-testimonials-slider { gap: 16px; }
    .dcl-testimonial-card { padding: 20px; }
    .dcl-testimonial-text { font-size: 14px; }
    
    /* Split sections */
    .dcl-longform { gap: 20px; }
    .dcl-longform-text h3 { font-size: 22px; margin-bottom: 14px; }
    .dcl-longform-text p { font-size: 14px; }
    
    /* Flight bar */
    .dcl-flight-grid { gap: 16px; }
    .dcl-flight-item svg { width: 28px; height: 28px; }
    .dcl-flight-item h4 { font-size: 14px; }
    .dcl-flight-item p { font-size: 12px; }
    
    /* Airport services */
    .dcl-airport-icons { gap: 16px; }
    .dcl-airport-icon { padding: 20px; }
    .dcl-airport-icon svg { width: 32px; height: 32px; }
    .dcl-airport-icon h4 { font-size: 15px; }
    
    /* Locations */
    .dcl-locations { padding: 40px 0; }
    .dcl-location-grid { gap: 8px; }
    .dcl-location-link { padding: 10px 14px; font-size: 13px; }
    
    /* Related services */
    .dcl-related-grid { gap: 10px; }
    .dcl-related-card { padding: 18px 12px; }
    .dcl-related-card svg { width: 28px; height: 28px; }
    .dcl-related-card span { font-size: 12px; }
    
    /* FAQ */
    .dcl-faq-question { padding: 14px 16px; font-size: 14px; }
    .dcl-faq-answer > div { padding: 0 16px 14px; font-size: 13px; }
    
    /* Map */
    .dcl-map-embed iframe { height: 280px; }
    
    /* Footer */
    .dcl-footer { padding: 50px 0 0; }
    .dcl-footer-grid { gap: 24px; margin-bottom: 24px; }
    .dcl-footer-logo img { max-height: 60px; padding: 8px 16px; }
    .dcl-footer-about { font-size: 13px; margin-bottom: 14px; }
    .dcl-social-icon { width: 32px; height: 32px; }
    .dcl-social-icon svg { width: 14px; height: 14px; }
    .dcl-footer h4 { font-size: 16px; margin-bottom: 16px; }
    .dcl-footer-links li { margin-bottom: 8px; }
    .dcl-footer-links a { font-size: 13px; }
    .dcl-footer-contact-item { font-size: 13px; margin-bottom: 12px; }
    .dcl-footer-contact-item svg { width: 14px; height: 14px; }
    .dcl-footer-bottom { padding: 20px 0; font-size: 12px; }
    .dcl-footer-bottom-inner { flex-direction: column; text-align: center; gap: 8px; }
    
    /* Areas We Serve */
    .dcl-footer-areas-grid { gap: 6px; }
    .dcl-footer-area-item { padding: 6px 8px; font-size: 12px; }
    .dcl-footer-area-text strong { font-size: 12px; }
    .dcl-footer-area-text small { font-size: 10px; }
    
    /* WhatsApp float */
    .dcl-whatsapp-float { bottom: 16px; right: 16px; padding: 10px 14px; font-size: 12px; }
    .dcl-whatsapp-float svg { width: 18px; height: 18px; }
    .dcl-whatsapp-float span { display: none; }
    
    /* Promo banner */
    .dcl-promo-banner { bottom: 70px; right: 16px; max-width: 220px; padding: 18px; }
    .dcl-promo-content h5 { font-size: 16px; }
    .dcl-promo-content p { font-size: 12px; }
    
    /* Buttons */
    .dcl-btn { padding: 12px 20px; font-size: 13px; }
    .dcl-btn-sm { padding: 8px 16px; font-size: 12px; }
    .dcl-btn-lg { padding: 14px 28px; font-size: 14px; }
    
    /* Content area */
    .dcl-page-content { padding: 40px 0; }
    .dcl-page-main h2 { font-size: 22px; }
    .dcl-page-main h3 { font-size: 18px; }
    .dcl-page-main p { font-size: 14px; line-height: 1.6; }
    .dcl-page-two-col { gap: 24px; }
    
    /* Fleet note */
    .dcl-fleet-note { padding: 12px 16px; font-size: 13px; margin-bottom: 24px; }
    
    /* Quote form */
    .dcl-quote-form { padding: 24px 20px; border-radius: 20px; }
    .dcl-form-row input, .dcl-form-row select, .dcl-quote-form textarea { padding: 14px 16px; font-size: 14px; border-radius: 10px; }
    .dcl-quote-form .dcl-btn-orange { padding: 14px 20px; font-size: 14px; border-radius: 10px; }
    
    /* Container */
    .container { padding: 0 16px; }
}

/* === Small Mobile: max-width: 480px === */
@media (max-width: 480px) {
    .container { padding: 0 14px; }
    
    .dcl-hero-title { font-size: 24px; }
    .dcl-hero-desc { font-size: 13px; }
    .dcl-hero-badge { font-size: 9px; padding: 3px 10px; }
    
    .dcl-booking-widget { padding: 16px; border-radius: 12px; }
    .dcl-bw-tab { padding: 8px 6px; font-size: 11px; }
    .dcl-bw-input, .dcl-bw-select { padding: 10px 12px; font-size: 13px; }
    .dcl-bw-submit { padding: 12px; font-size: 13px; }
    
    h1 { font-size: 24px; }
    h2 { font-size: 22px; }
    h3 { font-size: 18px; }
    .dcl-section-title { font-size: 22px; }
    
    .dcl-fleet-title { font-size: 18px; }
    .dcl-fleet-img { height: 160px; }
    .dcl-fleet-price-row { height: 40px; font-size: 12px; }
    .dcl-fleet-btn { height: 40px; font-size: 11px; }
    
    .dcl-service-image { height: 140px; }
    .dcl-footer-grid { gap: 20px; }
    .dcl-footer { padding: 40px 0 0; }
}

/* === Location Autocomplete === */
.dcl-autocomplete-wrap { position: relative; }
.dcl-autocomplete-list {
    position: absolute; top: 100%; left: 0; right: 0; z-index: 9999;
    background: #fff; border: 1px solid #e0e0e0; border-top: none;
    border-radius: 0 0 10px 10px; box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    max-height: 240px; overflow-y: auto; display: none; margin: 0; padding: 0;
    list-style: none;
}
.dcl-autocomplete-item {
    padding: 12px 16px; font-size: 14px; cursor: pointer;
    color: #333; transition: background 0.15s ease; border-bottom: 1px solid #f0f0f0;
}
.dcl-autocomplete-item:last-child { border-bottom: none; }
.dcl-autocomplete-item:hover,
.dcl-autocomplete-item.active { background: #f5f5f5; color: #d4a017; }
@media (max-width: 767px) {
    .dcl-autocomplete-item { padding: 14px 16px; font-size: 15px; }
}

/* ============================================================
   MOBILE REDESIGN - Pilot & Car Inspired
   Only affects screens below 992px
   Desktop (>= 992px) is 100% UNCHANGED
   ============================================================ */

/* Hide mobile section on desktop */
.dcl-mobile-booking-section { display: none; }

/* === Mobile: max-width: 991px === */
@media (max-width: 991px) {
    /* ---------- Mobile Booking Section (below hero) ---------- */
    .dcl-mobile-booking-section {
        display: block !important;
        background: #ffffff;
        padding: 30px 20px 45px;
    }
    .dcl-mobile-booking-inner {
        max-width: 600px;
        margin: 0 auto;
    }

    /* "Powered by" line */
    .dcl-mb-powered {
        text-align: center;
        font-size: 11px;
        color: #999;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        font-weight: 600;
        margin: 0 0 24px;
        padding-top: 14px;
        border-top: 1px solid #eee;
    }

    /* ---------- Hero: hide booking, show only content overlay ---------- */
    .dcl-hero-booking { display: none !important; }

    .dcl-hero {
        padding: 0;
        min-height: auto;
    }
    .dcl-hero-content {
        text-align: center;
        padding: 60px 20px 50px;
        width: 100%;
    }

    /* ---------- Booking Widget inside mobile section ---------- */
    .dcl-mobile-booking-section .dcl-booking-widget {
        background: #ffffff;
        border-radius: 20px;
        padding: 24px;
        box-shadow: 0 4px 24px rgba(0,0,0,0.08);
        border: 1px solid #f0f0f0;
    }
    .dcl-mobile-booking-section .dcl-bw-label {
        font-size: 10px;
        margin-bottom: 16px;
        color: #999;
    }
    .dcl-mobile-booking-section .dcl-bw-tabs {
        background: #f5f5f5;
        border-radius: 12px;
        padding: 4px;
        margin-bottom: 20px;
    }
    .dcl-mobile-booking-section .dcl-bw-tab {
        padding: 12px 10px;
        font-size: 13px;
        font-weight: 700;
        border-radius: 10px;
        color: #888;
        transition: all 0.25s ease;
    }
    .dcl-mobile-booking-section .dcl-bw-tab.active {
        background: #0a0e1a;
        color: #ffffff;
    }
    .dcl-mobile-booking-section .dcl-bw-field { margin-bottom: 14px; }
    .dcl-mobile-booking-section .dcl-bw-field label {
        font-size: 10px;
        margin-bottom: 5px;
        color: #333;
    }
    .dcl-mobile-booking-section .dcl-bw-input,
    .dcl-mobile-booking-section .dcl-bw-select {
        padding: 14px 16px;
        font-size: 15px;
        border-radius: 12px;
        border: 1.5px solid #e0e0e0;
        background: #fafafa;
        transition: all 0.25s ease;
    }
    .dcl-mobile-booking-section .dcl-bw-input:focus,
    .dcl-mobile-booking-section .dcl-bw-select:focus {
        background: #ffffff;
        border-color: #d4a017;
        box-shadow: 0 0 0 3px rgba(212,160,23,0.1);
    }
    .dcl-mobile-booking-section .dcl-bw-time-row select {
        padding: 14px 16px;
        font-size: 15px;
        border-radius: 12px;
        border: 1.5px solid #e0e0e0;
        background: #fafafa;
    }
    .dcl-mobile-booking-section .dcl-bw-submit {
        width: 100%;
        padding: 16px;
        background: #0a0e1a;
        color: #ffffff;
        border: none;
        border-radius: 12px;
        font-size: 16px;
        font-weight: 700;
        letter-spacing: 0.5px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transition: all 0.3s ease;
        margin-top: 8px;
    }
    .dcl-mobile-booking-section .dcl-bw-submit:hover {
        background: #1a2a4a;
    }
    .dcl-mobile-booking-section .dcl-bw-submit:active {
        transform: scale(0.98);
    }

    /* ---------- BY HOUR Booking Note ---------- */
    .dcl-bw-booking-note {
        display: none;
        text-align: center;
        padding: 12px 16px;
        margin-top: 16px;
        background: #fffbe6;
        border-radius: 10px;
        font-size: 13px;
        color: #666;
        border: 1px solid #ffe58f;
    }
    .dcl-bw-booking-note strong {
        color: #b8860b;
        font-weight: 700;
    }
    .dcl-bw-booking-note p {
        margin: 0;
    }

    /* ---------- Fleet Cards - Premium Mobile ---------- */
    .dcl-fleet-grid {
        gap: 20px;
    }
    .dcl-fleet-card {
        border-radius: 18px;
        box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    }
    .dcl-fleet-card:hover {
        transform: none;
        box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    }
    .dcl-fleet-img {
        height: 220px;
        border-radius: 18px 18px 0 0;
    }
    .dcl-fleet-card:hover .dcl-fleet-img img {
        transform: none;
    }
    .dcl-fleet-body {
        padding: 20px;
    }
    .dcl-fleet-title {
        font-size: 24px;
        margin-bottom: 16px;
    }
    .dcl-fleet-prices {
        gap: 10px;
        margin-bottom: 18px;
    }
    .dcl-fleet-price-row {
        height: 50px;
        padding: 0 16px;
        font-size: 14px;
        border-radius: 10px;
    }
    .dcl-fleet-price-label {
        font-size: 14px;
    }
    .dcl-fleet-price-amount {
        font-size: 14px;
    }
    .dcl-fleet-actions {
        flex-direction: column;
        gap: 10px;
    }
    .dcl-fleet-btn {
        width: 100%;
        height: 50px;
        font-size: 14px;
        border-radius: 10px;
        text-decoration: none;
    }
}

/* === Mobile refinements: max-width: 767px === */
@media (max-width: 767px) {
    /* Booking section */
    .dcl-mobile-booking-section {
        padding: 24px 16px 36px;
    }
    .dcl-mobile-booking-section .dcl-booking-widget {
        padding: 20px;
        border-radius: 16px;
    }
    .dcl-mb-powered {
        font-size: 10px;
        margin-bottom: 18px;
        padding-top: 10px;
    }
    .dcl-mobile-booking-section .dcl-bw-tab {
        padding: 10px 8px;
        font-size: 12px;
    }
    .dcl-mobile-booking-section .dcl-bw-input,
    .dcl-mobile-booking-section .dcl-bw-select {
        padding: 12px 14px;
        font-size: 14px;
        border-radius: 10px;
    }
    .dcl-mobile-booking-section .dcl-bw-time-row select {
        padding: 12px 14px;
        font-size: 14px;
        border-radius: 10px;
    }
    .dcl-mobile-booking-section .dcl-bw-submit {
        padding: 14px;
        font-size: 15px;
        border-radius: 10px;
    }
    .dcl-bw-booking-note {
        padding: 10px 14px;
        font-size: 12px;
    }

    /* Hero */
    .dcl-hero-content {
        padding: 60px 16px 50px;
    }

    /* Fleet cards */
    .dcl-fleet-img {
        height: 200px;
    }
    .dcl-fleet-title {
        font-size: 20px;
    }
    .dcl-fleet-price-row {
        height: 46px;
        font-size: 13px;
    }
    .dcl-fleet-btn {
        height: 46px;
        font-size: 13px;
    }
}

/* === Small mobile: max-width: 480px === */
@media (max-width: 480px) {
    .dcl-mobile-booking-section {
        padding: 20px 14px 30px;
    }
    .dcl-mobile-booking-section .dcl-booking-widget {
        padding: 16px;
        border-radius: 14px;
    }
    .dcl-mobile-booking-section .dcl-bw-tab {
        font-size: 11px;
        padding: 8px 6px;
    }
    .dcl-mobile-booking-section .dcl-bw-input,
    .dcl-mobile-booking-section .dcl-bw-select {
        padding: 10px 12px;
        font-size: 13px;
        border-radius: 8px;
    }
    .dcl-mobile-booking-section .dcl-bw-submit {
        padding: 12px;
        font-size: 14px;
        border-radius: 8px;
    }
    .dcl-hero-content {
        padding: 50px 14px 40px;
    }
    .dcl-fleet-img {
        height: 180px;
    }
    .dcl-fleet-title {
        font-size: 18px;
    }
    .dcl-fleet-price-row {
        height: 42px;
        font-size: 12px;
    }
    .dcl-fleet-btn {
        height: 42px;
        font-size: 12px;
    }
}

/* === Mobile fixes for all sections: max-width 480px === */
@media (max-width: 480px) {
    .dcl-longform-image img { min-height: 200px; }
    .dcl-longform-text h3 { font-size: 20px; }
    .dcl-longform-text p { font-size: 13px; line-height: 1.5; }
    .dcl-airport-icons { grid-template-columns: 1fr; gap: 12px; }
    .dcl-airport-icon { padding: 16px; }
    .dcl-related-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .dcl-related-card { padding: 16px 10px; }
    .dcl-flight-grid { grid-template-columns: 1fr; gap: 12px; }
    .dcl-flight-item { padding: 14px; }
}

/* ============================================================
   COMPREHENSIVE MOBILE FIXES - All Sections
   Only affects screens < 992px
   Desktop is 100% UNCHANGED
   ============================================================ */
@media (max-width: 991px) {
    /* Prevent horizontal scroll */
    body { overflow-x: hidden; }

    /* All images responsive */
    img { max-width: 100%; height: auto; }

    /* Touch target sizing for interactive elements */
    .dcl-btn, .dcl-bw-submit, .dcl-fleet-btn,
    .dcl-menu > li > a, .dcl-mobile-nav a,
    .dcl-footer a, .dcl-location-link,
    .dcl-social-icon, .dcl-faq-question {
        min-height: 44px;
    }

    /* Section spacing consistency */
    .dcl-section-header { margin-bottom: 30px; }

    /* Featured vehicle section (if missing mobile) */
    .dcl-featured { padding: 40px 0; }
    .dcl-featured-grid { display: flex; flex-direction: column; gap: 24px; }
    .dcl-featured-image img { width: 100%; border-radius: 12px; }
    .dcl-featured-info h3 { font-size: 22px; margin-bottom: 12px; }
    .dcl-featured-prices { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
    .dcl-price-pill { padding: 10px 16px; background: #0d3b66; color: #fff; border-radius: 8px; font-size: 13px; display: flex; gap: 8px; align-items: center; }
    .dcl-price-label { font-weight: 500; }
    .dcl-price-amount { font-weight: 700; }
    .dcl-featured-excerpt { font-size: 14px; color: #555; margin-bottom: 16px; line-height: 1.6; }
    

    /* Testimonials mobile spacing */
    .dcl-testimonial-card { padding: 20px; }
    .dcl-testimonial-text { font-size: 14px; line-height: 1.6; }

    /* Travel cards mobile */
    .dcl-travel-card { height: 250px; }

    /* Promo banner mobile */
    .dcl-promo-banner { max-width: 200px; padding: 16px; }
    .dcl-promo-content h5 { font-size: 15px; }
    .dcl-promo-content p { font-size: 12px; }

    /* Location grid mobile */
    .dcl-location-grid { gap: 8px; }
    .dcl-location-link { padding: 10px 14px; font-size: 13px; }

    /* Quote form mobile */
    .dcl-quote-form { padding: 28px 22px; border-radius: 18px; }
    .dcl-form-row { gap: 12px; }
    .dcl-form-row input, .dcl-form-row select,
    .dcl-quote-form textarea { padding: 14px 16px; font-size: 14px; border-radius: 10px; }

    /* Sidebar widgets mobile */
    .dcl-sidebar-widget { margin-bottom: 24px; }
    .dcl-sidebar-links a { padding: 10px 0; font-size: 14px; }

    /* Page content mobile */
    .dcl-page-content { padding: 40px 0; }
    .dcl-page-main h2 { font-size: 24px; }
    .dcl-page-main h3 { font-size: 20px; }
    .dcl-page-main p { font-size: 14px; line-height: 1.7; }
    .dcl-page-two-col { gap: 24px; }

    /* Tables - prevent overflow */
    table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* Reservation form overrides */
.dcl-reservation-form .dcl-quote-form,
.dcl-reservation-form .dcl-quote-form:hover { background:#fff; border:1px solid #e0e0e0; box-shadow:0 4px 20px rgba(0,0,0,0.08); transform:none; }
.dcl-reservation-form .dcl-form-row input,
.dcl-reservation-form .dcl-form-row input[type="number"],
.dcl-reservation-form .dcl-form-row select,
.dcl-reservation-form .dcl-quote-form textarea { background:#fff; color:#1a1a2e !important; border:1px solid #d0d0d0; caret-color:#1a1a2e; }
.dcl-reservation-form .dcl-form-row input::placeholder,
.dcl-reservation-form .dcl-quote-form textarea::placeholder { color:#999; opacity:1; }
.dcl-reservation-form .dcl-form-row select option { background:#fff; color:#1a1a2e; }

/* Blog / Archive Grid */
.dcl-archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  padding: 40px 0;
}

.dcl-archive-grid .dcl-service-archive-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
  transition: all 0.35s ease;
}

.dcl-archive-grid .dcl-service-archive-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}

.dcl-archive-grid .dcl-blog-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.dcl-archive-grid .dcl-blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.dcl-archive-grid .dcl-service-archive-card:hover .dcl-blog-img img {
  transform: scale(1.08);
}

.dcl-archive-grid .dcl-service-archive-card h2,
.dcl-archive-grid .dcl-service-archive-card h3 {
  padding: 15px 20px 5px;
  margin: 0;
  font-size: 20px;
  font-family: var(--font-heading);
}

.dcl-archive-grid .dcl-service-archive-card h2 a,
.dcl-archive-grid .dcl-service-archive-card h3 a {
  color: var(--dcl-dark);
  text-decoration: none;
}

.dcl-archive-grid .dcl-service-archive-card h2 a:hover {
  color: var(--dcl-gold);
}

.dcl-archive-grid .dcl-service-archive-card p {
  padding: 10px 20px;
  margin: 0;
  color: var(--dcl-gray);
  font-size: 14px;
  line-height: 1.6;
}

.dcl-archive-grid .dcl-service-archive-card .dcl-btn {
  margin: 10px 20px 20px;
}

.dcl-pagination {
  text-align: center;
  padding: 20px 0;
}

@media (max-width: 768px) {
  .dcl-archive-grid { grid-template-columns: 1fr; }
  .dcl-archive-grid .dcl-blog-img { height: 180px; }
}

