/* =========================================
   PREMIUM UI STYLES FOR LOCATION PAGES
   Shared across all cab-service-in-*.php
   and delhi-to-*.php / cab-booking-from-*.php
   ========================================= */

body {
    background-color: #f8f9fa;
}

/* ---- Typography & Legacy Hero ---- */
.loc-hero-box {
    padding: 40px 0 30px;
    text-align: center;
}

.loc-hero-title {
    font-weight: 700;
    font-size: 2.375rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #1c2331 0%, #343a40 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.loc-intro-para {
    font-size: 1rem;
    color: #5a6268;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* ---- Section Headings ---- */
.loc-section-title {
    font-weight: 700;
    font-size: 1.625rem;
    color: #1c2331;
    margin-bottom: 25px;
    margin-top: 0px;
    position: relative;
    padding-bottom: 12px;
}

.loc-section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #f37021, #ffb700);
    border-radius: 4px;
}

/* ---- Premium Service Cards ---- */
.premium-service-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.premium-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #f37021, #ffb700);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.premium-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(243, 112, 33, 0.1);
}

.premium-service-card:hover::before {
    opacity: 1;
}

.svc-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.svc-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #fff5ed 0%, #ffe4d1 100%);
    color: #f37021;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.svc-title {
    font-weight: 700;
    font-size: 1.25rem;
    color: #1c2331;
    margin: 0;
}

.svc-desc {
    color: #5a6268;
    line-height: 1.7;
    font-size: 0.9375rem;
    margin: 0;
    padding-left: 63px;
}

@media (max-width: 768px) {
    .svc-desc {
        padding-left: 0;
        margin-top: 15px;
    }
}

/* ---- Places Chips ---- */
.premium-places-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.places-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.place-chip {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #343a40;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.place-chip:hover {
    background: linear-gradient(135deg, #f37021 0%, #e05e11 100%);
    color: #fff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(243, 112, 33, 0.2);
}

.place-chip i {
    color: #f37021;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.place-chip:hover i {
    color: #fff;
}

/* ---- Why Us Modern Grid ---- */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
    margin-bottom: 40px;
}

.why-us-item {
    background: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid #f1f1f1;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.2s;
}

.why-us-item:hover {
    transform: translateX(5px);
    border-color: #ffd2b8;
}

.why-us-item i {
    color: #28a745;
    font-size: 1.25rem;
    background: #e6f6ea;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.why-us-item span {
    font-weight: 600;
    color: #333;
    font-size: 0.9375rem;
}

/* ---- Conclusion Box ---- */
.conclusion-box {
    background: linear-gradient(135deg, #fdfbf7 0%, #fff 100%);
    border-left: 5px solid #ffb700;
    border-radius: 0 12px 12px 0;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

/* ---- Sticky Sidebar CTA ---- */
.sticky-sidebar {
    position: sticky;
    top: 110px;
    margin-bottom: 40px;
}

.sidebar-img-box {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
}

.sidebar-img-box img {
    width: 100%;
    height: auto;
    transition: transform 0.5s;
}

.sidebar-img-box:hover img {
    transform: scale(1.05);
}

.contact-cta-card {
    background: linear-gradient(135deg, #1c2331, #2a3447);
    padding: 35px 25px;
    border-radius: 16px;
    color: #fff;
    text-align: center;
    box-shadow: 0 15px 35px rgba(28, 35, 49, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-cta-card::after {
    content: '\f1ba';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: -20px;
    bottom: -30px;
    font-size: 7.5rem;
    opacity: 0.05;
    transform: rotate(-15deg);
    pointer-events: none;
}

.contact-cta-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffb700;
    font-size: 1.375rem;
}

.contact-cta-card p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.6;
}

/* ---- CTA Buttons ---- */
.premium-btn {
    background: linear-gradient(135deg, #f37021 0%, #e05e11 100%);
    color: #fff !important;
    padding: 14px 25px;
    border-radius: 30px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none !important;
    transition: all 0.3s;
    width: 100%;
    border: none;
    font-size: 1rem;
    box-shadow: 0 8px 20px rgba(243, 112, 33, 0.3);
    margin-bottom: 15px;
    cursor: pointer;
}

.premium-btn:hover {
    background: linear-gradient(135deg, #e05e11 0%, #cc520f 100%);
    color: #fff !important;
    text-decoration: none !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(243, 112, 33, 0.4);
}

.premium-btn.green {
    background: linear-gradient(135deg, #28a745 0%, #208838 100%);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3);
    color: #fff !important;
}

.premium-btn.green:hover {
    background: linear-gradient(135deg, #208838 0%, #19692c 100%);
    box-shadow: 0 12px 25px rgba(40, 167, 69, 0.4);
    color: #fff !important;
}

/* ---- Premium Hero Section ---- */
.premium-hero-section {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    padding: 70px 0 80px;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.premium-hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(243, 112, 33, 0.15) 0%, rgba(243, 112, 33, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.premium-hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 183, 0, 0.1) 0%, rgba(255, 183, 0, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-breadcrumb {
    margin-bottom: 20px;
    font-size: 0.875rem;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-breadcrumb a {
    color: #f37021;
    text-decoration: none;
    transition: color 0.2s;
}

.hero-breadcrumb a:hover {
    color: #fff;
}

.hero-breadcrumb i {
    font-size: 0.625rem;
}

.premium-hero-title {
    font-weight: 700;
    font-size: 2.625rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #fff;
}

.premium-hero-title span {
    color: #f37021;
}

.premium-hero-desc {
    font-size: 1rem;
    color: #d1d5db;
    line-height: 1.9;
    margin-bottom: 30px;
    font-weight: 400;
}

.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-trust-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(5px);
}

.hero-trust-badge i {
    color: #f37021;
}

/* ---- Hero Bottom Curve ---- */
.hero-curve {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    transform: translateY(1px);
}

.hero-curve svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 40px;
}

.hero-curve .shape-fill {
    fill: #fff;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .premium-hero-title {
        font-size: 2rem;
    }

    .sticky-sidebar {
        position: static;
    }
}

@media (max-width: 576px) {
    .premium-hero-title {
        font-size: 1.625rem;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }
}
/* ── Distance Card ── */
.distance-card {
    display: flex; gap: 20px; background: linear-gradient(135deg,#1a1a2e,#16213e);
    border-radius: 14px; padding: 24px 30px; margin: 24px 0; flex-wrap: wrap;
}
.dist-item { display: flex; flex-direction: column; align-items: center; flex: 1; color: #fff; gap: 6px; }
.dist-item i { font-size: 28px; color: #f5a623; }
.dist-item span { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; opacity: .7; }
.dist-item strong { font-size: 18px; font-weight: 700; }

/* ── FAQ Box ── */
.faq-box { margin: 20px 0; }
.faq-item { background: #fff; border-radius: 10px; padding: 18px 22px; margin-bottom: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,.07); border-left: 4px solid #f5a623; }
.faq-question { font-weight: 700; color: #1a1a2e; margin-bottom: 8px; font-size: 15px; }
.faq-question i { color: #f5a623; margin-right: 8px; }
.faq-answer { color: #5a6268; font-size: 14px; line-height: 1.6; }

/* ── Places List ── */
.places-list { list-style: none; padding: 0; margin: 0 0 20px; display: grid;
    grid-template-columns: 1fr 1fr; gap: 8px; }
.places-list li { background: #f8f9fa; border-radius: 8px; padding: 10px 14px;
    font-size: 14px; color: #333; border-left: 3px solid #f5a623;
    display: flex; align-items: center; gap: 8px; }
.places-list li::before { content: '📍'; font-size: 13px; }

/* ── Routes Tags ── */
.routes-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 28px; }
.route-tag { background: #1a1a2e; color: #fff !important; border-radius: 50px; padding: 7px 18px;
    font-size: 13px; font-weight: 600; text-decoration: none !important; transition: all .2s; }
.route-tag:hover { background: #f5a623; color: #1a1a2e !important; }

/* ── Luxury Car Cards ── */
.luxury-feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 20px 0 28px; }
.luxury-feature-item { background: linear-gradient(135deg,#1a1a2e,#16213e); color: #fff;
    border-radius: 10px; padding: 16px 18px; display: flex; align-items: center; gap: 12px; }
.luxury-feature-item i { font-size: 22px; color: #f5a623; min-width: 28px; }
.luxury-feature-item span { font-size: 13px; line-height: 1.4; }

/* ── Responsive ── */
@media(max-width:600px){
    .places-list { grid-template-columns: 1fr; }
    .luxury-feature-grid { grid-template-columns: 1fr; }
    .distance-card { flex-direction: column; align-items: center; }
}
