/* SL Chauffeur Booking — Frontend Template Styles */

/* ── Design tokens ───────────────────────────────────────────────────────── */
:root {
    --slcb-navy:   #0d1b2a;
    --slcb-navy2:  #162032;
    --slcb-gold:   #F1B203;
    --slcb-gold2:  #d9a002;
    --slcb-light:  #f8f9fa;
    --slcb-white:  #ffffff;
    --slcb-text:   #333333;
    --slcb-muted:  #6c757d;
    --slcb-radius: 12px;
}

/* ── Utility ──────────────────────────────────────────────────────────────── */
.slcb-gold      { color: var(--slcb-gold) !important; }
.slcb-bg-navy   { background-color: var(--slcb-navy) !important; }
.slcb-bg-gold   { background-color: var(--slcb-gold) !important; }
.slcb-btn-gold  {
    background-color: var(--slcb-gold);
    border-color: var(--slcb-gold);
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    padding: 10px 28px;
    text-decoration: none;
    display: inline-block;
    transition: background-color .2s, border-color .2s;
}
.slcb-btn-gold:hover {
    background-color: var(--slcb-gold2);
    border-color: var(--slcb-gold2);
    color: #fff;
}
.slcb-btn-outline {
    border: 2px solid var(--slcb-gold);
    color: var(--slcb-gold);
    background: transparent;
    font-weight: 600;
    border-radius: 6px;
    padding: 10px 28px;
    text-decoration: none;
    display: inline-block;
    transition: background-color .2s, color .2s;
}
.slcb-btn-outline:hover {
    background-color: var(--slcb-gold);
    color: #fff;
}

/* ── Archive Hero ─────────────────────────────────────────────────────────── */
.slcb-archive-hero {
    background: linear-gradient(135deg, var(--slcb-navy) 0%, var(--slcb-navy2) 100%);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.slcb-archive-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23F1B203' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.slcb-archive-hero h1 {
    color: var(--slcb-white);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
}
.slcb-archive-hero p {
    color: rgba(255,255,255,.75);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}
.slcb-archive-hero .slcb-gold-bar {
    width: 60px;
    height: 4px;
    background: var(--slcb-gold);
    margin: 16px auto;
    border-radius: 2px;
    position: relative;
}

/* ── Cards Grid ───────────────────────────────────────────────────────────── */
.slcb-cards-section {
    padding: 72px 0;
    background: var(--slcb-light);
}
.slcb-service-card,
.slcb-location-card {
    background: var(--slcb-white);
    border-radius: var(--slcb-radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
    transition: transform .25s, box-shadow .25s;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.slcb-service-card:hover,
.slcb-location-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,.14);
}
.slcb-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.slcb-card-img-placeholder {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, var(--slcb-navy) 0%, var(--slcb-navy2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.slcb-card-img-placeholder i {
    font-size: 3rem;
    color: var(--slcb-gold);
}
.slcb-card-body {
    padding: 28px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.slcb-card-icon {
    width: 52px;
    height: 52px;
    background: rgba(241,178,3,.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.slcb-card-icon i {
    font-size: 1.4rem;
    color: var(--slcb-gold);
}
.slcb-card-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slcb-navy);
    margin-bottom: 10px;
}
.slcb-card-body p {
    color: var(--slcb-muted);
    font-size: .92rem;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 20px;
}
.slcb-card-footer-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--slcb-gold);
    font-weight: 600;
    text-decoration: none;
    font-size: .92rem;
    transition: gap .2s;
}
.slcb-card-footer-link:hover {
    gap: 14px;
    color: var(--slcb-gold2);
}

/* ── Section headings ─────────────────────────────────────────────────────── */
.slcb-section-header {
    text-align: center;
    margin-bottom: 56px;
}
.slcb-section-header .slcb-eyebrow {
    display: inline-block;
    color: var(--slcb-gold);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.slcb-section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--slcb-navy);
    margin-bottom: 14px;
}
.slcb-section-header p {
    color: var(--slcb-muted);
    max-width: 580px;
    margin: 0 auto;
    font-size: 1rem;
}
.slcb-gold-line {
    width: 50px;
    height: 3px;
    background: var(--slcb-gold);
    margin: 14px auto 0;
    border-radius: 2px;
}

/* ── Why Choose Us ────────────────────────────────────────────────────────── */
.slcb-why-section {
    background: var(--slcb-navy);
    padding: 80px 0;
}
.slcb-why-section .slcb-section-header h2 {
    color: var(--slcb-white);
}
.slcb-why-section .slcb-section-header p {
    color: rgba(255,255,255,.65);
}
.slcb-why-item {
    text-align: center;
    padding: 32px 20px;
    border-radius: var(--slcb-radius);
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    transition: background .25s, transform .25s;
    height: 100%;
}
.slcb-why-item:hover {
    background: rgba(241,178,3,.08);
    transform: translateY(-4px);
}
.slcb-why-item .slcb-why-icon {
    width: 64px;
    height: 64px;
    background: rgba(241,178,3,.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.slcb-why-item .slcb-why-icon i {
    font-size: 1.6rem;
    color: var(--slcb-gold);
}
.slcb-why-item h4 {
    color: var(--slcb-white);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.slcb-why-item p {
    color: rgba(255,255,255,.6);
    font-size: .88rem;
    line-height: 1.6;
    margin: 0;
}

/* ── Single hero ─────────────────────────────────────────────────────────── */
.slcb-single-hero {
    min-height: 420px;
    background: linear-gradient(135deg, var(--slcb-navy) 0%, #1a2d45 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.slcb-single-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    background-size: cover;
    background-position: center;
    opacity: .18;
}
.slcb-single-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: .22;
}
.slcb-single-hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0 60px;
}
.slcb-single-hero-content .slcb-eyebrow {
    display: inline-block;
    background: rgba(241,178,3,.2);
    color: var(--slcb-gold);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
}
.slcb-single-hero-content h1 {
    color: var(--slcb-white);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 18px;
}
.slcb-single-hero-content .lead {
    color: rgba(255,255,255,.75);
    font-size: 1.15rem;
    max-width: 600px;
}
.slcb-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}
.slcb-hero-badge {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    color: rgba(255,255,255,.85);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: .82rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}
.slcb-hero-badge i { color: var(--slcb-gold); }

/* ── Fleet table ──────────────────────────────────────────────────────────── */
.slcb-fleet-section {
    padding: 72px 0;
    background: var(--slcb-white);
}
.slcb-fleet-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--slcb-radius);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,.08);
}
.slcb-fleet-table thead {
    background: var(--slcb-navy);
}
.slcb-fleet-table thead th {
    color: var(--slcb-white);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 16px 20px;
    border: none;
}
.slcb-fleet-table thead th:first-child { border-radius: var(--slcb-radius) 0 0 0; }
.slcb-fleet-table thead th:last-child  { border-radius: 0 var(--slcb-radius) 0 0; }
.slcb-fleet-table tbody tr {
    border-bottom: 1px solid #eee;
    transition: background .15s;
}
.slcb-fleet-table tbody tr:hover { background: rgba(241,178,3,.04); }
.slcb-fleet-table tbody td {
    padding: 16px 20px;
    font-size: .92rem;
    color: var(--slcb-text);
    vertical-align: middle;
}
.slcb-fleet-table .fleet-class { font-weight: 700; color: var(--slcb-navy); }
.slcb-fleet-table .fleet-price { font-weight: 700; color: var(--slcb-gold); }

/* ── Areas served ─────────────────────────────────────────────────────────── */
.slcb-areas-section {
    padding: 72px 0;
    background: var(--slcb-light);
}
.slcb-area-tag {
    display: inline-block;
    background: var(--slcb-white);
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 6px 16px;
    font-size: .88rem;
    color: var(--slcb-text);
    margin: 4px;
    transition: border-color .2s, color .2s;
}
.slcb-area-tag:hover {
    border-color: var(--slcb-gold);
    color: var(--slcb-gold);
}

/* ── Features grid ────────────────────────────────────────────────────────── */
.slcb-features-section {
    padding: 72px 0;
    background: var(--slcb-white);
}
.slcb-feature-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 24px;
    background: var(--slcb-light);
    border-radius: var(--slcb-radius);
    height: 100%;
    transition: box-shadow .2s;
}
.slcb-feature-item:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,.09);
}
.slcb-feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(241,178,3,.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slcb-feature-icon i { font-size: 1.3rem; color: var(--slcb-gold); }
.slcb-feature-text h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--slcb-navy);
    margin-bottom: 6px;
}
.slcb-feature-text p {
    font-size: .88rem;
    color: var(--slcb-muted);
    line-height: 1.6;
    margin: 0;
}

/* ── FAQ ──────────────────────────────────────────────────────────────────── */
.slcb-faq-section {
    padding: 72px 0;
    background: var(--slcb-light);
}
.slcb-accordion-item {
    background: var(--slcb-white);
    border: 1px solid #e8e8e8;
    border-radius: var(--slcb-radius) !important;
    margin-bottom: 12px;
    overflow: hidden;
}
.slcb-accordion-btn {
    background: var(--slcb-white);
    color: var(--slcb-navy);
    font-weight: 600;
    font-size: .97rem;
    padding: 18px 24px;
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.slcb-accordion-btn:not(.collapsed) {
    background: rgba(241,178,3,.06);
    color: var(--slcb-gold);
}
.slcb-accordion-btn .slcb-faq-icon { transition: transform .25s; font-size: .85rem; }
.slcb-accordion-btn:not(.collapsed) .slcb-faq-icon { transform: rotate(180deg); }
.slcb-accordion-body {
    padding: 0 24px 20px;
    color: var(--slcb-muted);
    font-size: .92rem;
    line-height: 1.7;
}

/* ── Reviews ──────────────────────────────────────────────────────────────── */
.slcb-reviews-section {
    padding: 72px 0;
    background: var(--slcb-navy);
}
.slcb-reviews-section .slcb-section-header h2 { color: var(--slcb-white); }
.slcb-reviews-section .slcb-section-header p   { color: rgba(255,255,255,.6); }
.slcb-review-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--slcb-radius);
    padding: 28px 24px;
    height: 100%;
    position: relative;
}
.slcb-review-card::before {
    content: '\201C';
    font-size: 4rem;
    color: var(--slcb-gold);
    opacity: .35;
    position: absolute;
    top: 10px;
    right: 20px;
    font-family: Georgia, serif;
    line-height: 1;
}
.slcb-review-stars { color: var(--slcb-gold); font-size: .9rem; margin-bottom: 12px; }
.slcb-review-text {
    color: rgba(255,255,255,.78);
    font-size: .92rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}
.slcb-review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.slcb-review-photo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--slcb-gold);
}
.slcb-review-photo-placeholder {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--slcb-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: .95rem;
}
.slcb-review-name  { color: var(--slcb-white); font-weight: 600; font-size: .9rem; }
.slcb-review-label { color: rgba(255,255,255,.45); font-size: .8rem; }

/* ── Case Study ───────────────────────────────────────────────────────────── */
.slcb-case-section {
    padding: 80px 0;
    background: var(--slcb-white);
}
.slcb-case-inner {
    background: linear-gradient(135deg, var(--slcb-navy) 0%, var(--slcb-navy2) 100%);
    border-radius: 16px;
    overflow: hidden;
}
.slcb-case-text {
    padding: 52px 48px;
    color: rgba(255,255,255,.8);
}
.slcb-case-text h3 {
    color: var(--slcb-white);
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 16px;
}
.slcb-case-img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
}

/* ── Location single: dark hero ───────────────────────────────────────────── */
.slcb-loc-hero {
    min-height: 480px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.slcb-loc-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,27,42,.92) 0%, rgba(22,32,50,.8) 100%);
    z-index: 1;
}
.slcb-loc-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.slcb-loc-hero-content {
    position: relative;
    z-index: 2;
    padding: 100px 0 80px;
}

/* ── Location services grid ───────────────────────────────────────────────── */
.slcb-loc-services-section {
    padding: 72px 0;
    background: var(--slcb-light);
}
.slcb-loc-service-card {
    background: var(--slcb-white);
    border-radius: var(--slcb-radius);
    padding: 28px 24px;
    box-shadow: 0 4px 18px rgba(0,0,0,.07);
    height: 100%;
    transition: transform .25s, box-shadow .25s;
    text-decoration: none;
    display: block;
    color: inherit;
}
.slcb-loc-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0,0,0,.12);
    color: inherit;
}
.slcb-loc-service-card h4 {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--slcb-navy);
    margin: 14px 0 8px;
}
.slcb-loc-service-card p {
    font-size: .87rem;
    color: var(--slcb-muted);
    line-height: 1.55;
    margin: 0;
}
.slcb-loc-service-card .slcb-highlight-tag {
    display: inline-block;
    background: rgba(241,178,3,.12);
    color: var(--slcb-gold);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 4px;
    margin-top: 12px;
}

/* ── CTA Section ──────────────────────────────────────────────────────────── */
.slcb-cta-section {
    background: var(--slcb-gold);
    padding: 72px 0;
    text-align: center;
}
.slcb-cta-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--slcb-navy);
    margin-bottom: 14px;
}
.slcb-cta-section p {
    color: rgba(13,27,42,.75);
    font-size: 1.08rem;
    margin-bottom: 28px;
}
.slcb-btn-dark {
    background: var(--slcb-navy);
    color: var(--slcb-white);
    font-weight: 700;
    padding: 12px 34px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: background .2s;
}
.slcb-btn-dark:hover { background: var(--slcb-navy2); color: var(--slcb-white); }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .slcb-archive-hero h1        { font-size: 2rem; }
    .slcb-single-hero-content h1 { font-size: 2.1rem; }
    .slcb-loc-hero-content       { padding: 70px 0 50px; }
    .slcb-section-header h2      { font-size: 1.7rem; }
    .slcb-case-text              { padding: 36px 28px; }
    .slcb-cta-section h2         { font-size: 1.7rem; }
}
