/* ============================================================
   DIAMOND CHAUFFEUR TOURISM — EXPANSION ADDITIONS
   New styles for added pages and homepage sections.
   Does NOT modify any existing styles.
   ============================================================ */

/* UAE LOCATIONS SECTION */
.dct-uae-locations {
    background: var(--dct-navy);
    padding: 80px 0;
    text-align: center;
}
.dct-uae-locations .section-label {
    color: var(--dct-orange);
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}
.dct-uae-locations h2 {
    color: #fff;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 50px;
    font-family: Georgia, 'Times New Roman', serif;
}
.dct-locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.dct-location-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 32px 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}
.dct-location-card:hover {
    border-color: var(--dct-orange);
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
}
.dct-location-card .location-icon {
    font-size: 36px;
    margin-bottom: 14px;
    display: block;
}
.dct-location-card h3 {
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 8px;
    font-family: Georgia, 'Times New Roman', serif;
}
.dct-location-card p {
    color: rgba(255,255,255,0.55);
    font-size: 13px;
    margin: 0;
}
@media (max-width: 900px) {
    .dct-locations-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .dct-locations-grid { grid-template-columns: 1fr 1fr; }
    .dct-uae-locations h2 { font-size: 26px; }
}

/* PREMIUM SERVICES SECTION */
.dct-premium-services {
    background: var(--dct-navy-dark);
    padding: 80px 0;
}
.dct-premium-services .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.dct-premium-services .section-label {
    color: var(--dct-orange);
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}
.dct-premium-services h2 {
    color: #fff;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 50px;
    font-family: Georgia, 'Times New Roman', serif;
}
.dct-premium-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.dct-service-card-new {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 36px 32px;
    display: flex;
    gap: 22px;
    align-items: flex-start;
    transition: border-color 0.3s;
}
.dct-service-card-new:hover {
    border-color: var(--dct-orange);
}
.dct-service-card-new .service-icon {
    width: 56px;
    height: 56px;
    background: var(--dct-orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 26px;
}
.dct-service-card-new .service-text h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px;
    font-family: Georgia, 'Times New Roman', serif;
}
.dct-service-card-new .service-text p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 16px;
}
.dct-service-card-new .service-text a {
    color: var(--dct-orange);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.dct-service-card-new .service-text a:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .dct-premium-grid { grid-template-columns: 1fr; }
    .dct-premium-services h2 { font-size: 26px; }
}

/* RESERVATIONS CTA BANNER */
.dct-reservations-cta {
    background: linear-gradient(135deg, var(--dct-orange) 0%, #d06020 100%);
    padding: 70px 20px;
    text-align: center;
}
.dct-reservations-cta h2 {
    color: #000;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 14px;
    font-family: Georgia, 'Times New Roman', serif;
}
.dct-reservations-cta p {
    color: rgba(0,0,0,0.7);
    font-size: 16px;
    margin-bottom: 34px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.dct-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.dct-btn-dark {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: opacity 0.2s;
}
.dct-btn-dark:hover { opacity: 0.85; color: #fff; }
.dct-btn-outline-dark {
    display: inline-block;
    background: transparent;
    color: #000;
    border: 2px solid #000;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.2s;
}
.dct-btn-outline-dark:hover { background: #000; color: #fff; }

/* NEW SERVICE PAGES - HERO */
.dct-page-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                url('') center/cover no-repeat;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
}
.dct-page-hero h1 {
    color: #fff;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    font-family: Georgia, 'Times New Roman', serif;
}
.dct-page-hero p {
    color: rgba(255,255,255,0.75);
    font-size: 17px;
    max-width: 650px;
    margin: 0 auto 28px;
}
.dct-page-hero .hero-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* NEW SERVICE PAGES - CONTENT */
.dct-content-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 70px 20px;
}
.dct-content-section h2 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: Georgia, 'Times New Roman', serif;
}
.dct-content-section p {
    color: rgba(255,255,255,0.65);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 16px;
}
.dct-features-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 40px;
}
.dct-feature-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    padding: 28px 22px;
    text-align: center;
}
.dct-feature-item .feat-icon {
    font-size: 30px;
    margin-bottom: 12px;
    display: block;
}
.dct-feature-item h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: Georgia, 'Times New Roman', serif;
}
.dct-feature-item p {
    color: rgba(255,255,255,0.55);
    font-size: 13px;
    margin: 0;
}
.dct-contact-strip {
    background: rgba(255,255,255,0.04);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 50px 20px;
    text-align: center;
}
.dct-contact-strip h3 {
    color: #fff;
    font-size: 26px;
    margin-bottom: 8px;
    font-family: Georgia, 'Times New Roman', serif;
}
.dct-contact-strip p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 24px;
}
.dct-contact-strip .contact-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
@media (max-width: 768px) {
    .dct-page-hero h1 { font-size: 28px; }
    .dct-features-list { grid-template-columns: 1fr; }
}


/* ===== HEADER OPTIMIZATION — COMPACT LUXURY ===== */
/* Top bar: 40px height, clean contact row */
.dct-topbar {
    height: 40px !important;
    padding: 0 !important;
}
.dct-topbar-inner {
    height: 40px !important;
    gap: 24px;
    justify-content: center;
}
.dct-topbar a {
    font-size: 12px;
    white-space: nowrap;
}

/* Main header area: reduce to 75px */
.dct-header-inner {
    min-height: 75px !important;
}

/* Logo: proportionally smaller */
.dct-logo {
    width: 155px !important;
    max-width: 155px !important;
}
.dct-logo img {
    width: 148px !important;
    max-width: 148px !important;
}

/* Nav container: 75px height */
.dct-main-nav {
    height: 75px !important;
}
.dct-main-nav > ul > li {
    border-left: none !important;
    margin: 0 3px;
}
.dct-main-nav > ul > li:last-child {
    border-right: none !important;
}

/* Premium 3D Luxury Button Style for Nav Links */
.dct-main-nav a {
    height: 50px !important;
    padding: 0 16px !important;
    margin: 12px 0;
    font-size: 11px !important;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #002f50, #053b63);
    color: #fff !important;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}
.dct-main-nav a::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), transparent);
    pointer-events: none;
}
.dct-main-nav a:hover {
    background: linear-gradient(135deg, #053b63, #0a4a7a);
    border-color: rgba(201, 168, 76, 0.7);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.15);
    color: #fff !important;
}
.dct-main-nav a:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Active / current page highlight */
.dct-main-nav li.current-menu-item > a,
.dct-main-nav li.current-menu-parent > a,
.dct-main-nav li.current_page_item > a {
    background: linear-gradient(135deg, #0a4a7a, #002f50);
    border-color: rgba(201, 168, 76, 0.8);
    box-shadow: inset 0 2px 6px rgba(0,0,0,0.4), 0 2px 8px rgba(0,0,0,0.2);
}
.dct-main-nav li.current-menu-item > a::before,
.dct-main-nav li.current-menu-parent > a::before,
.dct-main-nav li.current_page_item > a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 60%;
    height: 2px;
    background: rgba(201, 168, 76, 0.6);
    border-radius: 2px;
}

/* Sub-menu stays clean and unaffected */
.dct-main-nav .sub-menu {
    border-top: 2px solid rgba(201, 168, 76, 0.5) !important;
}
.dct-main-nav .sub-menu a {
    background: #fff !important;
    color: #333 !important;
    border: none !important;
    box-shadow: none !important;
    height: auto !important;
    min-height: 42px;
    border-radius: 0;
    margin: 0;
    font-weight: 400;
    text-shadow: none;
}
.dct-main-nav .sub-menu a:hover {
    background: #f5f5f5 !important;
    color: var(--dct-navy) !important;
    transform: none;
}

/* Sticky header scroll state */
.dct-header-scrolled .dct-topbar {
    height: 0 !important;
    overflow: hidden;
    padding: 0 !important;
    border: none;
}
.dct-header-scrolled .dct-topbar-inner {
    height: 0 !important;
    overflow: hidden;
}
.dct-header-scrolled .dct-header-inner {
    min-height: 60px !important;
}
.dct-header-scrolled .dct-main-nav {
    height: 60px !important;
}
.dct-header-scrolled .dct-main-nav a {
    height: 42px !important;
    margin: 9px 0;
    font-size: 10px !important;
    padding: 0 12px !important;
}
.dct-header-scrolled .dct-logo {
    width: 130px !important;
}
.dct-header-scrolled .dct-logo img {
    width: 125px !important;
}
.dct-header-scrolled.dct-site-header {
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

/* Responsive: mobile gets compact header too */
@media (max-width: 991px) {
    .dct-header-inner {
        min-height: 60px !important;
    }
    .dct-logo {
        width: 140px !important;
        max-width: 140px !important;
    }
    .dct-logo img {
        width: 135px !important;
        max-width: 135px !important;
    }
    .dct-main-nav a {
        height: auto !important;
        margin: 0;
        border-radius: 0;
        background: none;
        color: var(--dct-navy) !important;
        border: none !important;
        box-shadow: none !important;
        font-size: 13px !important;
    }
    .dct-main-nav a:hover {
        background: #f5f5f5 !important;
        color: var(--dct-navy) !important;
        transform: none;
        box-shadow: none !important;
    }
    .dct-main-nav li.current-menu-item > a {
        background: #f0f0f0 !important;
        border: none !important;
        box-shadow: none !important;
    }
    .dct-main-nav li.current-menu-item > a::before {
        display: none;
    }
}

/* ===== OFFERS GRID ===== */
.dct-offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1120px;
    margin: 0 auto;
    padding: 40px 20px;
}
.dct-offer-card {
    background: var(--dct-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.dct-offer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.14);
}
.dct-offer-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.dct-offer-card h3 {
    font-size: 18px;
    padding: 16px 20px 8px;
    color: var(--dct-navy);
}
.dct-offer-content {
    padding: 0 20px;
    font-size: 13px;
    color: var(--dct-muted);
    flex: 1;
}
.dct-offer-price {
    padding: 8px 20px 0;
    font-size: 20px;
    font-weight: 700;
    color: var(--dct-navy);
}
.dct-offer-discount {
    padding: 4px 20px 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--dct-orange);
}
.dct-offer-valid {
    padding: 4px 20px 0;
    font-size: 11px;
    color: var(--dct-muted);
}
.dct-offer-card .dct-btn {
    margin: 16px 20px 20px;
    text-align: center;
}
@media (max-width: 768px) {
    .dct-offers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
