/* ===== GLOBAL RESET & VARIABLES ===== */
:root {
    --dct-navy: #053b63;
    --dct-navy-dark: #002f50;
    --dct-orange: #f07832;
    --dct-grey: #f5f5f5;
    --dct-text: #333333;
    --dct-muted: #777777;
    --dct-white: #ffffff;
    --dct-green: #25D366;
}
*, *::before, *::after {
    box-sizing: border-box;
}
html, body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}
body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--dct-text);
    background: var(--dct-white);
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
    font-family: Georgia, 'Times New Roman', serif;
    color: var(--dct-navy);
    margin: 0;
    line-height: 1.3;
}
img, video, iframe {
    max-width: 100%;
    height: auto;
}
a {
    color: var(--dct-navy);
    text-decoration: none;
}
a:hover {
    color: var(--dct-orange);
}
.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}
.dct-header-container {
    width: min(1200px, calc(100% - 30px));
    margin: 0 auto;
}
/* ===== SITE HEADER ===== */
.dct-site-header {
    width: 100%;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 9999;
}
.admin-bar .dct-site-header {
    top: 32px;
}
@media (max-width: 782px) {
    .admin-bar .dct-site-header {
        top: 46px;
    }
}

.dct-topbar {
    height: 36px;
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    display: flex;
    align-items: center;
}
.dct-topbar-inner {
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 36px;
}
.dct-topbar a {
    color: #0b2545;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    transition: color 0.2s;
}
.dct-topbar a:hover {
    color: var(--dct-orange);
}

.dct-main-header {
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
}
.dct-header-inner {
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dct-logo {
    width: 230px;
    max-width: 230px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}
.dct-logo img {
    width: 220px;
    max-width: 220px;
    height: auto;
    display: block;
}

.dct-main-nav {
    margin-left: auto;
    height: 100px;
    display: flex;
    align-items: stretch;
}
.dct-main-nav ul,
.dct-main-nav .menu {
    display: flex !important;
    align-items: stretch;
    justify-content: flex-end;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}
.dct-main-nav li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
    border-left: 1px solid #dddddd;
}
.dct-main-nav li:last-child {
    border-right: 1px solid #dddddd;
}
.dct-main-nav a {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 13px;
    color: #0b2545;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.2s;
}
.dct-main-nav a:hover {
    color: var(--dct-navy);
}

.dct-main-nav .sub-menu,
.dct-main-nav .sub-menu ul {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.14);
    border-top: 2px solid var(--dct-navy);
    z-index: 99999;
    flex-direction: column !important;
    padding: 0 !important;
}
.dct-main-nav li:hover > .sub-menu {
    display: flex !important;
}
.dct-main-nav .sub-menu li {
    border-left: none !important;
    border-right: none !important;
    border-bottom: 1px solid #eeeeee;
}
.dct-main-nav .sub-menu a {
    height: auto;
    min-height: 42px;
    justify-content: flex-start;
    padding: 12px 16px;
    font-size: 14px;
    text-transform: none;
    font-weight: 400;
    color: #333;
}

/* ===== MOBILE TOGGLE ===== */
.dct-mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 6px;
    flex-shrink: 0;
}
.dct-mobile-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: #111111;
    margin: 5px auto;
    border-radius: 2px;
}

/* ===== MOBILE HEADER ===== */
@media (max-width: 991px) {
    .dct-topbar {
        display: none;
    }
    .dct-header-inner {
        min-height: 72px;
    }
    .dct-logo {
        width: 185px;
        max-width: 185px;
    }
    .dct-logo img {
        width: 180px;
        max-width: 180px;
    }
    .dct-main-nav {
        display: none;
        height: auto;
        margin-left: 0;
    }
    .dct-mobile-toggle {
        display: block;
    }
    .dct-main-nav.is-open {
        display: block;
        position: fixed;
        top: 72px;
        right: 0;
        width: 86vw;
        max-width: 360px;
        height: calc(100vh - 72px);
        background: #ffffff;
        box-shadow: -8px 0 24px rgba(0,0,0,0.15);
        overflow-y: auto;
        z-index: 99999;
        padding: 16px 0;
    }
    .dct-main-nav.is-open ul,
    .dct-main-nav.is-open .menu {
        display: block !important;
    }
    .dct-main-nav.is-open li {
        border-left: none !important;
        border-right: none !important;
        border-bottom: 1px solid #eeeeee;
    }
    .dct-main-nav.is-open a {
        height: auto;
        justify-content: flex-start;
        padding: 15px 18px;
        font-size: 14px;
    }
    .dct-main-nav.is-open .sub-menu {
        position: static;
        display: none !important;
        box-shadow: none;
        border-top: none;
        margin-left: 12px !important;
        min-width: auto;
    }
    .dct-main-nav.is-open li.open > .sub-menu {
        display: block !important;
    }
    body.dct-menu-open {
        overflow: hidden;
    }
}

/* ===== HERO ===== */
.dct-hero {
    position: relative;
    min-height: 520px;
    max-height: 620px;
    overflow: hidden;
}
@media (max-width: 768px) {
    .dct-hero {
        min-height: auto;
        max-height: none;
    }
}
.dct-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.dct-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}
.dct-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 60px 0;
    min-height: 520px;
}
@media (max-width: 768px) {
    .dct-hero-content {
        flex-direction: column;
        padding: 40px 0 60px;
        min-height: auto;
        gap: 24px;
    }
}
.dct-hero-text {
    flex: 0 0 45%;
    color: var(--dct-white);
}
@media (max-width: 768px) {
    .dct-hero-text {
        flex: 1 1 100%;
    }
}
.dct-hero-text h1 {
    color: var(--dct-white);
    font-size: 32px;
    margin-bottom: 12px;
    line-height: 1.2;
}
@media (max-width: 768px) {
    .dct-hero-text h1 {
        font-size: 24px;
    }
}
.dct-hero-sub {
    font-size: 15px;
    margin-bottom: 16px;
    opacity: 0.9;
    line-height: 1.5;
}
.dct-hero-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}
.dct-hero-bullets li {
    padding: 4px 0 4px 20px;
    position: relative;
    font-size: 13px;
    opacity: 0.85;
}
.dct-hero-bullets li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--dct-orange);
    font-weight: bold;
}

/* ===== BOOKING WIDGET ===== */
.dct-hero-booking {
    flex: 0 0 380px;
}
@media (max-width: 768px) {
    .dct-hero-booking {
        flex: 1 1 100%;
        width: calc(100% - 32px);
        margin: 0 16px;
    }
}
.dct-booking-widget {
    background: var(--dct-white);
    border-radius: 6px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
    padding: 20px;
}
.dct-bw-powered {
    font-size: 10px;
    color: var(--dct-muted);
    text-align: center;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.dct-bw-tabs {
    display: flex;
    margin-bottom: 16px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--dct-navy);
}
.dct-bw-tab {
    flex: 1;
    padding: 10px;
    border: none;
    background: var(--dct-white);
    color: var(--dct-navy);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.2s;
}
.dct-bw-tab.active {
    background: var(--dct-navy);
    color: var(--dct-white);
}
.dct-bw-field {
    margin-bottom: 12px;
}
.dct-bw-field label {
    display: block;
    font-size: 11px;
    color: var(--dct-muted);
    text-transform: uppercase;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}
.dct-bw-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    background: var(--dct-white);
    transition: border 0.2s;
}
.dct-bw-input:focus {
    outline: none;
    border-color: var(--dct-orange);
}
.dct-bw-row {
    display: flex;
    gap: 10px;
}
.dct-bw-field.half {
    flex: 1;
}
.dct-bw-submit {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    background: linear-gradient(135deg, var(--dct-navy), var(--dct-orange));
    color: var(--dct-white);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.2s;
}
.dct-bw-submit:hover {
    opacity: 0.9;
}

/* ===== SECTION BASE ===== */
.dct-section {
    padding: 50px 0;
}
.dct-section-grey {
    background: var(--dct-grey);
}
.dct-section-white {
    background: var(--dct-white);
}
.dct-section-heading {
    text-align: center;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.dct-heading-left {
    align-items: flex-start;
    text-align: left;
}
.dct-orange-bar {
    display: block;
    width: 32px;
    height: 3px;
    background: var(--dct-orange);
    margin-bottom: 12px;
}
.dct-heading-left .dct-orange-bar {
    margin-left: 0;
}
.dct-section-heading h2 {
    font-size: 26px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dct-navy);
}
@media (max-width: 768px) {
    .dct-section-heading h2 {
        font-size: 20px;
    }
}

/* ===== FLEET GRID ===== */
.dct-fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 768px) {
    .dct-fleet-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
.dct-fleet-card {
    background: var(--dct-white);
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    perspective: 800px;
    position: relative;
    border: 2px solid transparent;
    background-clip: padding-box;
}
.dct-fleet-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--dct-navy), var(--dct-orange), var(--dct-navy), var(--dct-orange));
    background-size: 300% 300%;
    z-index: -1;
    animation: dctBorderGlow 4s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.dct-fleet-card:hover::before {
    opacity: 1;
}
@keyframes dctBorderGlow {
    0% { background-position: 0% 50%; }
    25% { background-position: 100% 0%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
    100% { background-position: 0% 50%; }
}
.dct-fleet-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.dct-fleet-img-wrap {
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    height: 160px;
}
.dct-fleet-img-wrap img {
    max-height: 130px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s;
}
.dct-fleet-name {
    text-align: center;
    font-size: 15px;
    color: #222;
    padding: 10px 12px 0;
    font-family: Arial, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}
.dct-fleet-prices {
    padding: 10px 14px;
}
.dct-fleet-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 12px;
    color: var(--dct-muted);
}
.dct-price-btn {
    display: inline-block;
    padding: 4px 10px;
    background: var(--dct-navy);
    color: var(--dct-white) !important;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    transition: background 0.2s;
    text-decoration: none;
}
.dct-price-btn:hover {
    background: var(--dct-orange);
}
.dct-fleet-actions {
    display: flex;
    border-top: 1px solid #eee;
    gap: 6px;
    padding: 8px;
}
.dct-fleet-action {
    flex: 1;
    text-align: center;
    padding: 10px 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1), 0 1px 3px rgba(0,0,0,0.08);
    animation: dctFloat 3s ease-in-out infinite;
}
.dct-fleet-action.call {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(39,174,96,0.4);
    animation-delay: 0s;
}
.dct-fleet-action.email {
    background: linear-gradient(135deg, #2980b9, #3498db);
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(41,128,185,0.4);
    animation-delay: 0.5s;
}
.dct-fleet-action.whatsapp {
    background: linear-gradient(135deg, #075e54, #25D366);
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
    animation-delay: 1s;
}
.dct-fleet-action:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 28px rgba(0,0,0,0.2) !important;
    color: #fff !important;
}
.dct-fleet-action:active {
    transform: translateY(0) scale(0.98);
}
@keyframes dctFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
.dct-fleet-action::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    background: inherit;
    filter: blur(8px);
    opacity: 0.3;
    z-index: -1;
    transform: translateY(4px) scale(0.95);
    transition: opacity 0.3s;
}
.dct-fleet-action:hover::after {
    opacity: 0.6;
}
.dct-fleet-tldr {
    text-align: center;
    font-size: 13px;
    color: var(--dct-muted);
    margin-top: 28px;
    font-style: italic;
}

/* ===== AIRPORT SERVICES ===== */
.dct-services-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media (max-width: 768px) {
    .dct-services-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}
.dct-service-icon-box {
    text-align: center;
    padding: 24px 16px;
    background: var(--dct-white);
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.dct-service-icon-box .dct-service-icon {
    margin-bottom: 12px;
}
.dct-service-icon-box .dct-service-icon img {
    width: 48px;
    height: 48px;
}
.dct-service-icon-box h3 {
    font-size: 14px;
    color: var(--dct-orange);
    margin-bottom: 6px;
    font-family: Arial, sans-serif;
    font-weight: 700;
}
.dct-service-icon-box p {
    font-size: 12px;
    color: var(--dct-muted);
    margin: 0 0 8px;
    line-height: 1.4;
}
.dct-service-icon-box a {
    font-size: 12px;
    color: var(--dct-navy);
    font-weight: 600;
}

/* ===== EXPERIENCES ===== */
.dct-experience-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
}
.dct-experience-scroll::-webkit-scrollbar {
    height: 4px;
}
.dct-experience-scroll::-webkit-scrollbar-thumb {
    background: var(--dct-orange);
    border-radius: 2px;
}
.dct-experience-card {
    flex: 0 0 calc(33.333% - 12px);
    min-width: 200px;
    scroll-snap-align: start;
    background: var(--dct-white);
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s;
    position: relative;
}
.dct-experience-card:hover {
    transform: translateY(-4px);
}
@media (max-width: 768px) {
    .dct-experience-card {
        flex: 0 0 220px;
    }
}
.dct-exp-img {
    height: 140px;
    overflow: hidden;
}
.dct-exp-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.dct-exp-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    background: var(--dct-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dct-exp-badge img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}
.dct-experience-card h3 {
    padding: 12px;
    font-size: 13px;
    text-align: center;
    color: var(--dct-navy);
    font-family: Arial, sans-serif;
}

/* ===== TRAVEL STYLE ===== */
.dct-travel-style .dct-travel-bg {
    background: url('../images/placeholders/dark-road-bg.svg') center / cover no-repeat;
    position: relative;
    padding: 50px 0;
}
.dct-travel-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}
.dct-travel-bg .container {
    position: relative;
    z-index: 1;
}
.dct-travel-bg .dct-section-heading h2 {
    color: var(--dct-white);
}
.dct-travel-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}
@media (max-width: 768px) {
    .dct-travel-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}
.dct-travel-card {
    background: var(--dct-white);
    padding: 24px 16px;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.dct-travel-card h4 {
    font-size: 14px;
    color: var(--dct-navy);
    margin-bottom: 6px;
}
.dct-travel-card p {
    font-size: 12px;
    color: var(--dct-muted);
    margin: 0;
}
.dct-travel-cta {
    text-align: center;
}
.dct-btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: opacity 0.2s;
    text-decoration: none;
}
.dct-btn-orange {
    background: var(--dct-orange);
    color: var(--dct-white);
}
.dct-btn-orange:hover {
    opacity: 0.9;
    color: var(--dct-white);
}

/* ===== REVIEWS ===== */
.dct-reviews-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
}
.dct-reviews-carousel::-webkit-scrollbar {
    height: 4px;
}
.dct-reviews-carousel::-webkit-scrollbar-thumb {
    background: var(--dct-orange);
    border-radius: 2px;
}
.dct-review-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: var(--dct-white);
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.dct-review-stars {
    color: #f5a623;
    font-size: 16px;
    margin-bottom: 8px;
}
.dct-review-text {
    font-size: 13px;
    color: var(--dct-text);
    line-height: 1.5;
    margin-bottom: 10px;
    font-style: italic;
}
.dct-review-author {
    font-size: 12px;
    color: var(--dct-muted);
    font-weight: 600;
}

/* ===== TWO COLUMN LAYOUTS ===== */
.dct-two-col {
    display: flex;
    gap: 32px;
    align-items: center;
}
@media (max-width: 768px) {
    .dct-two-col {
        flex-direction: column;
        gap: 20px;
    }
}
.dct-col-img {
    flex: 1;
}
.dct-col-img img {
    width: 100%;
    border-radius: 4px;
}
.dct-col-blue-box {
    flex: 1;
    background: var(--dct-navy);
    padding: 36px 32px;
    border-radius: 4px;
    color: var(--dct-white);
}
.dct-col-blue-box h3 {
    color: var(--dct-white);
    font-size: 20px;
    margin-bottom: 12px;
}
.dct-col-blue-box p {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.9;
}
.dct-orange-underline {
    display: block;
    width: 40px;
    height: 3px;
    background: var(--dct-orange);
    margin-top: 16px;
}
.dct-col-orange-box {
    flex: 1;
    background: var(--dct-orange);
    padding: 36px 32px;
    border-radius: 4px;
    color: var(--dct-white);
}
.dct-col-orange-box h3 {
    color: var(--dct-white);
    font-size: 20px;
    margin-bottom: 12px;
}
.dct-col-orange-box p {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.9;
}
.dct-white-underline {
    display: block;
    width: 40px;
    height: 3px;
    background: var(--dct-white);
    margin-top: 16px;
}
.dct-col-navy-box {
    flex: 1;
    background: var(--dct-navy);
    padding: 36px 32px;
    border-radius: 4px;
    color: var(--dct-white);
}
.dct-col-navy-box h3 {
    color: var(--dct-white);
    font-size: 20px;
    margin-bottom: 12px;
}
.dct-col-navy-box p {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.9;
}

/* ===== RELATED SERVICES ===== */
.dct-services-row-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}
@media (max-width: 768px) {
    .dct-services-row-6 {
        grid-template-columns: repeat(3, 1fr);
    }
}
.dct-service-mini {
    background: var(--dct-white);
    padding: 16px 8px;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
    font-size: 12px;
    font-weight: 600;
    color: var(--dct-navy);
}
.dct-related-bottom {
    margin-top: 20px;
}
.dct-col-orange-list {
    flex: 1;
}
.dct-orange-row {
    background: var(--dct-orange);
    color: var(--dct-white);
    padding: 14px 20px;
    margin-bottom: 6px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}

/* ===== FAST SECTION ===== */
.dct-fast-text h2 {
    font-size: 26px;
    color: var(--dct-navy);
    margin-bottom: 12px;
}
.dct-fast-text p {
    font-size: 14px;
    color: var(--dct-muted);
    line-height: 1.6;
}

/* ===== LONG CONTENT BLOCKS ===== */
.dct-long-content {
    padding: 30px 0 50px;
}
.dct-content-block {
    display: flex;
    gap: 40px;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid #f0f0f0;
}
.dct-content-block:last-child {
    border-bottom: none;
}
@media (max-width: 768px) {
    .dct-content-block {
        flex-direction: column;
        gap: 16px;
    }
    .dct-content-block.dct-block-right {
        flex-direction: column;
    }
}
.dct-block-text {
    flex: 1;
}
.dct-block-text .dct-section-heading {
    margin-bottom: 12px;
}
.dct-block-text .dct-section-heading h2 {
    font-size: 18px;
}
.dct-block-text p {
    font-size: 13px;
    color: var(--dct-muted);
    line-height: 1.6;
    margin: 0;
}
.dct-block-img {
    flex: 0 0 380px;
}
@media (max-width: 768px) {
    .dct-block-img {
        flex: 1 1 100%;
    }
}
.dct-block-img img {
    width: 100%;
    border-radius: 4px;
}
.dct-block-right .dct-block-img {
    order: -1;
}
@media (max-width: 768px) {
    .dct-block-right .dct-block-img {
        order: 0;
    }
}
.dct-other-cities-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}
.dct-other-cities-links a {
    padding: 6px 14px;
    background: var(--dct-navy);
    color: var(--dct-white);
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}
.dct-other-cities-links a:hover {
    background: var(--dct-orange);
    color: var(--dct-white);
}

/* ===== VIDEO SECTION ===== */
.dct-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 6px;
}
.dct-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===== FAQ ACCORDION ===== */
.dct-faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}
.dct-faq-item {
    border-bottom: 1px solid #e0e0e0;
}
.dct-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--dct-navy);
    text-align: left;
    transition: color 0.2s;
    font-family: Arial, sans-serif;
}
.dct-faq-question:hover {
    color: var(--dct-orange);
}
.dct-faq-icon {
    font-size: 20px;
    font-weight: 300;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 12px;
}
.dct-faq-item.open .dct-faq-icon {
    transform: rotate(45deg);
}
.dct-faq-answer {
    padding: 0 0 16px;
    font-size: 13px;
    color: var(--dct-muted);
    line-height: 1.6;
}

/* ===== TRUST BADGES ===== */
.dct-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: center;
}
@media (max-width: 768px) {
    .dct-trust-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}
.dct-trust-item h4 {
    font-size: 16px;
    color: var(--dct-navy);
    font-family: Arial, sans-serif;
}
.dct-trust-icon {
    font-size: 36px;
    margin-bottom: 8px;
}

/* ===== MAP + LOCATIONS ===== */
.dct-map-container {
    margin-bottom: 32px;
}
.dct-map-iframe iframe {
    width: 100%;
    height: 350px;
    border: 0;
    display: block;
}
.dct-popular-locations {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
}
.dct-location-chip {
    padding: 6px 14px;
    background: var(--dct-grey);
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 12px;
    color: var(--dct-text);
    transition: all 0.2s;
}
.dct-location-chip:hover {
    background: var(--dct-navy);
    color: var(--dct-white);
    border-color: var(--dct-navy);
}
.dct-view-all-locations {
    text-align: center;
    margin-top: 16px;
}
.dct-view-all-locations a {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
}

/* ===== FOOTER ===== */
.dct-footer {
    background: var(--dct-navy-dark);
    color: var(--dct-white);
    padding: 48px 0 0;
}
.dct-footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}
@media (max-width: 768px) {
    .dct-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
.dct-footer-col h4 {
    color: var(--dct-orange);
    font-size: 13px;
    margin-bottom: 12px;
    font-family: Arial, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}
.dct-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.dct-footer-col ul li {
    margin-bottom: 6px;
}
.dct-footer-col ul li a {
    color: rgba(255,255,255,0.8);
    font-size: 12px;
    transition: color 0.2s;
}
.dct-footer-col ul li a:hover {
    color: var(--dct-orange);
}
.dct-footer-address p {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
    margin: 8px 0;
}
.dct-footer-address p a {
    color: var(--dct-orange);
}
.dct-footer-map iframe {
    width: 100%;
    height: 120px;
    border: 0;
    border-radius: 4px;
}
.dct-footer-secondary {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
}
.dct-footer-secondary a {
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.dct-footer-secondary a:hover {
    color: var(--dct-orange);
}
.dct-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 12px;
}
@media (max-width: 768px) {
    .dct-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
.dct-footer-branding {
    display: flex;
    align-items: center;
    gap: 12px;
}
.dct-footer-branding img {
    max-height: 32px;
    width: auto;
}
.dct-footer-branding span {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
}
.dct-footer-legal {
    display: flex;
    gap: 16px;
}
.dct-footer-legal a {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
}
.dct-footer-legal a:hover {
    color: var(--dct-orange);
}
.dct-footer-payments span {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    margin-left: 8px;
}
.dct-footer-social {
    display: flex;
    gap: 8px;
    align-items: center;
}
.dct-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    transition: all 0.3s ease;
}
.dct-footer-social a:hover {
    background: var(--dct-orange);
    color: #fff;
}

/* ===== WHATSAPP FLOAT ===== */
.dct-whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    cursor: pointer;
}
.dct-whatsapp-label {
    display: none;
    background: var(--dct-white);
    color: var(--dct-text);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    white-space: nowrap;
}
.dct-whatsapp-float:hover .dct-whatsapp-label {
    display: block;
}
.dct-whatsapp-icon {
    width: 52px;
    height: 52px;
    background: var(--dct-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37,211,102,0.4);
    transition: transform 0.2s;
}
.dct-whatsapp-float:hover .dct-whatsapp-icon {
    transform: scale(1.08);
}

/* ===== PAGE HEADER ===== */
.dct-page-header {
    background: var(--dct-grey);
    padding: 40px 0;
}
.dct-page-header h1 {
    font-size: 28px;
    text-transform: uppercase;
}
.dct-page-content {
    padding: 40px 0;
}
.dct-page-content .dct-entry {
    font-size: 14px;
    line-height: 1.7;
}
.dct-entry h2, .dct-entry h3 { margin-top: 24px; }
.dct-entry p { margin: 0 0 12px; }

/* ===== ANIMATION HELPERS ===== */
.dct-animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.dct-animate-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.dct-animate-bar {
    width: 0 !important;
    transition: width 0.6s ease;
}
.dct-animate-bar.visible {
    width: 32px !important;
}
@media (prefers-reduced-motion: reduce) {
    .dct-animate-fade-up {
        opacity: 1;
        transform: none;
    }
}

/* Page Contact Section */
.dct-page-contact {
    background: #f5f5f5;
    padding: 40px 0;
    margin-top: 40px;
    text-align: center;
}
.dct-page-contact h2 {
    color: #073763;
    margin-bottom: 20px;
}
.dct-page-contact p {
    color: #666;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.dct-contact-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}
.dct-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    color: #fff !important;
    transition: opacity 0.2s;
}
.dct-btn:hover { opacity: 0.9; }
.dct-btn-call { background: #073763; }
.dct-btn-wa { background: #25D366; }
.dct-btn-email { background: #EA4335; }

/* Fleet Archive */
.dct-fleet-archive { padding: 40px 0; }
.dct-fleet-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 25px; }
.dct-fleet-card { background: #fff; border: 1px solid #e0e0e0; border-radius: 8px; overflow: hidden; transition: box-shadow 0.3s; }
.dct-fleet-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.dct-fleet-img { height: 220px; background: #f5f5f5; display: flex; align-items: center; justify-content: center; }
.dct-fleet-img img { max-height: 200px; width: auto; object-fit: contain; }
.dct-fleet-body { padding: 20px; }
.dct-fleet-body h3 { color: #073763; font-size: 20px; margin-bottom: 5px; }
.dct-fleet-cat { color: #F47A35; font-size: 13px; font-weight: bold; text-transform: uppercase; }
.dct-fleet-prices { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0; }
.dct-price { background: #f5f5f5; padding: 5px 12px; border-radius: 4px; font-size: 13px; color: #333; font-weight: bold; }
.dct-capacity { color: #888; font-size: 13px; }
.dct-fleet-actions { display: flex; gap: 10px; margin-top: 15px; flex-wrap: wrap; }
.dct-pagination { text-align: center; margin-top: 30px; }

/* Fleet Single */
.dct-fleet-single { padding: 40px 0; }
.dct-fleet-single-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 768px) { .dct-fleet-single-grid { grid-template-columns: 1fr; } }
.dct-fleet-single-img { background: #f5f5f5; border-radius: 8px; padding: 20px; display: flex; align-items: center; justify-content: center; }
.dct-fleet-single-img img { max-height: 400px; width: auto; object-fit: contain; }
.dct-fleet-single-prices { display: flex; gap: 15px; margin-bottom: 20px; }
.dct-price-box { background: #073763; color: #fff; padding: 15px 20px; border-radius: 6px; text-align: center; flex: 1; }
.dct-price-label { display: block; font-size: 12px; text-transform: uppercase; opacity: 0.8; }
.dct-price-value { display: block; font-size: 22px; font-weight: bold; margin-top: 5px; }
.dct-fleet-single-actions { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.dct-fleet-content { color: #555; line-height: 1.8; }

/* Autocomplete dropdown */
.dct-autocomplete-wrap { position: relative; }
.dct-autocomplete-list {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    max-height: 220px;
    overflow-y: auto;
    z-index: 1000;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.dct-autocomplete-item {
    padding: 10px 12px;
    cursor: pointer;
    font-size: 13px;
    color: #333;
    transition: background 0.15s;
}
.dct-autocomplete-item:hover,
.dct-autocomplete-item.active {
    background: #f5f5f5;
    color: var(--dct-orange);
}

/* Booking Results Page */
.dct-results-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}
.dct-results-header {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid var(--dct-orange);
}
.dct-results-header h2 {
    margin: 0 0 8px;
    font-size: 22px;
    color: var(--dct-navy);
}
.dct-results-header p {
    margin: 0;
    color: #666;
    font-size: 14px;
}
.dct-results-header p strong { color: #333; }
.dct-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}
.dct-results-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}
.dct-results-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.dct-results-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.dct-results-card-body {
    padding: 18px;
}
.dct-results-card-body h3 {
    margin: 0 0 12px;
    font-size: 18px;
    color: var(--dct-navy);
}
.dct-results-prices { margin-bottom: 14px; }
.dct-results-prices .price-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
}
.dct-results-prices .price-row span:first-child { color: #666; }
.dct-results-prices .price-row span:last-child { font-weight: 600; color: var(--dct-navy); }
.dct-results-actions {
    display: flex;
    gap: 10px;
}
.dct-results-actions a {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
}
.dct-results-actions .dct-btn-call { background: var(--dct-navy); color: #fff; }
.dct-results-actions .dct-btn-whatsapp { background: #25D366; color: #fff; }
.dct-results-actions .dct-btn-email { background: var(--dct-orange); color: #fff; }
.dct-results-actions a:hover { opacity: 0.85; }
.dct-results-none {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}
.dct-results-none h3 { color: var(--dct-navy); margin-bottom: 10px; }

/* Services Grid */
.dct-page-intro {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}
.dct-page-intro h1 {
    font-size: 32px;
    color: var(--dct-navy);
    margin-bottom: 15px;
}
.dct-page-intro p {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
}
.dct-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 50px;
}
.dct-service-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.35s, box-shadow 0.35s;
}
.dct-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.dct-service-img-link img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}
.dct-service-card-body {
    padding: 22px;
}
.dct-service-card-body h3 {
    margin: 0 0 10px;
    font-size: 20px;
}
.dct-service-card-body h3 a {
    color: var(--dct-navy);
    text-decoration: none;
}
.dct-service-card-body h3 a:hover {
    color: var(--dct-orange);
}
.dct-service-card-body p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin: 0 0 16px;
}
.dct-service-btn {
    display: inline-block;
    padding: 10px 24px;
    background: var(--dct-navy);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s;
}
.dct-service-btn:hover {
    background: var(--dct-orange);
    color: #fff;
}
.dct-page-contact {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
}
.dct-page-contact h2 {
    color: var(--dct-navy);
    margin-bottom: 15px;
}

/* 3D Floating Navigation */
.dct-main-nav a {
    position: relative;
    transform-style: preserve-3d;
    perspective: 800px;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}
.dct-main-nav a:hover {
    transform: translateZ(12px) scale(1.05);
    box-shadow: 0 6px 20px rgba(11,37,69,0.2);
    background: rgba(11,37,69,0.04);
    z-index: 2;
}
.dct-main-nav a::before {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 10%;
    width: 80%;
    height: 10px;
    background: radial-gradient(ellipse, rgba(0,0,0,0.12) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    transform: rotateX(90deg) translateZ(-5px);
    pointer-events: none;
}
.dct-main-nav a:hover::before {
    opacity: 1;
    transform: rotateX(90deg) translateZ(-5px) scale(1.1);
}
