/* =============================================
   ELITE LUX PREMIUM — MAIN STYLESHEET
   Premium luxury black car service
   Colors: Black #0a0a0a, Charcoal #1a1a1a,
           Gold #c8a848, White #fff, Off-white #f5f5f0
   Fonts: Playfair Display (headings), Inter (body)
   ============================================= */

/* ── RESET & BASE ─────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    background: #ffffff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* ── CUSTOM SCROLLBAR ─────────────────────── */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #c8a848;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #d4b65c;
}

/* ── TYPOGRAPHY ───────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-weight: 600;
    line-height: 1.2;
    color: #0a0a0a;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p {
    margin-bottom: 1.25rem;
}

.lead-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}

.text-center { text-align: center; }
.text-muted { color: #888; font-size: 0.875rem; }
.mt-1 { margin-top: 1.5rem; }

/* ── LAYOUT ───────────────────────────────── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 800px;
}

.section-padding {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 64px 0;
    }
}

/* ── BUTTONS ──────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 14px 32px;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    white-space: nowrap;
}

.btn-gold {
    background: #c8a848;
    color: #0a0a0a;
    border-color: #c8a848;
}

.btn-gold:hover {
    background: #d4b65c;
    border-color: #d4b65c;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(200, 168, 72, 0.3);
}

.btn-outline-white {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255,255,255,0.4);
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: #ffffff;
}

.btn-outline-gold {
    background: transparent;
    color: #c8a848;
    border-color: #c8a848;
}

.btn-outline-gold:hover {
    background: #c8a848;
    color: #0a0a0a;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(200, 168, 72, 0.3);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-header {
    padding: 10px 24px;
    font-size: 0.8125rem;
}

/* ── SECTION HEADERS ──────────────────────── */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #c8a848;
    margin-bottom: 16px;
}

.section-title {
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.0625rem;
    color: #666;
    line-height: 1.7;
}

/* ── HEADER ───────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
    background: transparent;
}

.site-header.header-scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    flex-shrink: 0;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #c8a848;
    letter-spacing: 0.1em;
}

/* Navigation */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-list li a {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-list li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #c8a848;
    transition: width 0.3s ease;
}

.nav-list li a:hover,
.nav-list li.current-menu-item a,
.nav-list li.current_page_item a {
    color: #c8a848;
}

.nav-list li a:hover::after,
.nav-list li.current-menu-item a::after,
.nav-list li.current_page_item a::after {
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.header-phone:hover {
    color: #c8a848;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
}

/* Mobile Nav */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.is-open {
    display: block;
    opacity: 1;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: #0a0a0a;
    z-index: 1002;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    padding: 24px;
}

.mobile-nav.is-open {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(200,168,72,0.2);
}

.mobile-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
}

.mobile-nav-list {
    margin-bottom: 32px;
}

.mobile-nav-list li {
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mobile-nav-list li a {
    display: block;
    padding: 16px 0;
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.mobile-nav-list li a:hover,
.mobile-nav-list li.current-menu-item a {
    color: #c8a848;
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (max-width: 960px) {
    .main-nav { display: none; }
    .header-actions .header-phone .phone-text { display: none; }
    .header-actions .btn-header { display: none; }
    .mobile-toggle { display: flex; }
}

@media (max-width: 480px) {
    .header-actions .header-phone .phone-text { display: none; }
}

/* ── HERO ─────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.1) 50%, rgba(10,10,10,0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}

.hero-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c8a848;
    margin-bottom: 24px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.75rem, 7vw, 5rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.hero-scroll:hover {
    opacity: 1;
}

.hero-scroll span {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #ffffff;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, #c8a848, transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ── TRUST STRIP ──────────────────────────── */
.trust-strip {
    background: #0a0a0a;
    border-top: 1px solid rgba(200, 168, 72, 0.15);
    border-bottom: 1px solid rgba(200, 168, 72, 0.15);
    padding: 32px 0;
}

.trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.75);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.trust-item svg {
    stroke: #c8a848;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .trust-items { gap: 24px; }
    .trust-item { font-size: 0.8125rem; }
    .trust-item svg { width: 24px; height: 24px; }
}

/* ── SERVICES GRID ────────────────────────── */
.services-section {
    background: #f5f5f0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.service-card {
    background: #ffffff;
    padding: 40px 32px;
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #c8a848;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card-image {
    margin: -32px -32px 24px -32px;
    height: 200px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

.service-icon {
    margin-bottom: 24px;
}

.service-icon svg {
    stroke: #c8a848;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.service-card p {
    color: #666;
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #c8a848;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 12px;
    color: #b89838;
}

@media (max-width: 960px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
    .services-grid { grid-template-columns: 1fr; }
    .service-card { padding: 32px 24px; }
}

/* ── FLEET SHOWCASE ───────────────────────── */
.fleet-section {
    background: #0a0a0a;
    padding: 100px 0;
}

.fleet-section .section-eyebrow {
    color: #c8a848;
}

.fleet-section .section-title {
    color: #ffffff;
}

.fleet-section .section-subtitle {
    color: rgba(255,255,255,0.6);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.fleet-card {
    background: #1a1a1a;
    border: 1px solid rgba(200, 168, 72, 0.15);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.fleet-card:hover {
    border-color: rgba(200, 168, 72, 0.4);
    box-shadow: 0 8px 40px rgba(200, 168, 72, 0.08);
}

.fleet-card-image {
    aspect-ratio: 16/10;
    background: #111;
    overflow: hidden;
}

.fleet-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fleet-card:hover .fleet-card-image img {
    transform: scale(1.05);
}

.fleet-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: rgba(255,255,255,0.2);
}

.fleet-placeholder svg {
    stroke: rgba(200, 168, 72, 0.2);
}

.fleet-placeholder span {
    font-size: 0.8125rem;
    letter-spacing: 0.05em;
}

.fleet-card-body {
    padding: 32px;
}

.fleet-card-body h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.fleet-tagline {
    color: #c8a848;
    font-size: 0.875rem;
    font-style: italic;
    margin-bottom: 24px;
}

.fleet-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.fleet-spec {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.spec-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.spec-value {
    font-size: 0.9375rem;
    color: #ffffff;
    font-weight: 500;
}

.fleet-amenities {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fleet-amenities li {
    color: rgba(255,255,255,0.65);
    font-size: 0.875rem;
    padding-left: 20px;
    position: relative;
}

.fleet-amenities li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: #c8a848;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .fleet-grid { grid-template-columns: 1fr; }
    .fleet-section { padding: 64px 0; }
}

/* ── WHY CHOOSE US ────────────────────────── */
.why-section {
    background: #ffffff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.why-card {
    text-align: center;
    padding: 0 16px;
}

.why-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(200, 168, 72, 0.15);
    margin-bottom: 16px;
    line-height: 1;
}

.why-card h3 {
    font-size: 1.35rem;
    margin-bottom: 16px;
}

.why-card p {
    color: #666;
    font-size: 0.9375rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ── SERVICE AREAS ────────────────────────── */
.areas-section {
    background: #1a1a1a;
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    padding: 80px 0;
    position: relative;
}

.areas-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.85);
}

.areas-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.areas-text .section-eyebrow {
    color: #c8a848;
}

.areas-text .section-title {
    color: #ffffff;
    margin-bottom: 16px;
}

.areas-text .section-subtitle {
    color: rgba(255,255,255,0.6);
}

.areas-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.areas-column h4 {
    color: #c8a848;
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.areas-column ul li {
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

@media (max-width: 768px) {
    .areas-content { grid-template-columns: 1fr; gap: 40px; }
    .areas-section { padding: 64px 0; }
}

/* ── TESTIMONIALS ─────────────────────────── */
.testimonials-section {
    background: #f5f5f0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,0.06);
    transition: box-shadow 0.4s ease;
}

.testimonial-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.testimonial-stars {
    color: #c8a848;
    font-size: 1.25rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-card blockquote {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9375rem;
    color: #0a0a0a;
}

.testimonial-author span {
    font-size: 0.8125rem;
    color: #888;
}

@media (max-width: 768px) {
    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonial-card { padding: 32px 24px; }
}

/* ── CTA SECTION ──────────────────────────── */
.cta-section {
    background: #0a0a0a;
    padding: 80px 0;
    border-top: 1px solid rgba(200, 168, 72, 0.1);
}

.cta-content {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}

.cta-content .section-eyebrow {
    color: #c8a848;
}

.cta-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-subtitle {
    color: rgba(255,255,255,0.6);
    font-size: 1.0625rem;
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── BLOG GRID ────────────────────────────── */
.blog-section {
    background: #ffffff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.blog-card-image {
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 28px;
}

.blog-date {
    font-size: 0.75rem;
    color: #c8a848;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
}

.blog-card-body h2,
.blog-card-body h3 {
    font-size: 1.15rem;
    margin: 8px 0 12px;
    line-height: 1.35;
}

.blog-card-body h2 a,
.blog-card-body h3 a {
    color: #0a0a0a;
    transition: color 0.3s ease;
}

.blog-card-body h2 a:hover,
.blog-card-body h3 a:hover {
    color: #c8a848;
}

.blog-card-body p {
    color: #666;
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.no-posts {
    text-align: center;
    color: #888;
    grid-column: 1 / -1;
    padding: 40px 0;
}

@media (max-width: 960px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
    .blog-grid { grid-template-columns: 1fr; }
}

/* ── PAGE HERO ────────────────────────────── */
.page-hero {
    background: #0a0a0a;
    padding: 160px 0 80px;
    text-align: center;
}

.page-hero-compact {
    padding: 140px 0 60px;
}

.page-hero .hero-eyebrow {
    color: #c8a848;
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.page-hero-title {
    color: #ffffff;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 16px;
}

.post-meta {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
}

.breadcrumbs {
    color: rgba(255,255,255,0.4);
    font-size: 0.8125rem;
    margin-top: 16px;
}

.breadcrumbs a {
    color: #c8a848;
}

/* ── PAGE CONTENT ─────────────────────────── */
.page-content h2 {
    margin-top: 48px;
    margin-bottom: 16px;
}

.page-content h3 {
    margin-top: 32px;
    margin-bottom: 12px;
}

.page-content ul {
    margin-bottom: 24px;
    padding-left: 0;
}

.page-content ul li {
    color: #555;
    font-size: 0.9375rem;
    padding: 6px 0 6px 24px;
    position: relative;
}

.page-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 6px;
    height: 6px;
    background: #c8a848;
    border-radius: 50%;
}

/* ── SERVICE DETAIL (services page) ───────── */
.service-detail {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    margin-bottom: 64px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.service-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-detail-icon svg {
    stroke: #c8a848;
}

.service-detail-content h2 {
    margin-top: 0;
}

@media (max-width: 640px) {
    .service-detail {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ── FLEET SHOWCASE (fleet page) ──────────── */
.fleet-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.fleet-showcase {
    margin-bottom: 64px;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 4px;
    overflow: hidden;
}

.fleet-showcase-header {
    background: #0a0a0a;
    padding: 40px;
    text-align: center;
}

.fleet-showcase-header h2 {
    color: #ffffff;
    margin-bottom: 8px;
    margin-top: 0;
}

.fleet-showcase-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.fleet-showcase-image {
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.fleet-placeholder-lg {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: rgba(0,0,0,0.2);
}

.fleet-placeholder-lg svg {
    stroke: rgba(200, 168, 72, 0.15);
}

.fleet-placeholder-lg span {
    font-size: 0.875rem;
}

.fleet-showcase-details {
    padding: 40px;
}

.fleet-showcase-details h3 {
    margin-top: 24px;
    margin-bottom: 16px;
}

.fleet-specs-large {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.fleet-amenities-large li {
    color: #555;
}

@media (max-width: 768px) {
    .fleet-showcase-body { grid-template-columns: 1fr; }
    .fleet-showcase-details { padding: 32px 24px; }
}

/* ── ABOUT PAGE ───────────────────────────── */
.about-intro {
    text-align: center;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.about-content h2:first-child {
    margin-top: 0;
}

/* ── CONTACT PAGE ─────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info h2 {
    margin-top: 0;
    margin-bottom: 16px;
}

.contact-methods {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-method {
    display: flex;
    gap: 16px;
    align-items: start;
}

.contact-method-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(200, 168, 72, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-method-icon svg {
    stroke: #c8a848;
}

.contact-method h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-method p {
    margin-bottom: 2px;
    font-size: 0.9375rem;
}

.contact-method a {
    color: #c8a848;
}

.contact-method a:hover {
    color: #b89838;
}

.contact-form-wrapper {
    background: #f5f5f0;
    padding: 40px;
    border-radius: 4px;
}

.contact-form-wrapper h2 {
    margin-top: 0;
    margin-bottom: 24px;
}

/* CF7 form styling */
.contact-form-wrapper .wpcf7-form p {
    margin-bottom: 20px;
}

.contact-form-wrapper .wpcf7-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.contact-form-wrapper .wpcf7-form input[type="text"],
.contact-form-wrapper .wpcf7-form input[type="email"],
.contact-form-wrapper .wpcf7-form input[type="tel"],
.contact-form-wrapper .wpcf7-form textarea,
.contact-form-wrapper .wpcf7-form select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    transition: border-color 0.3s ease;
    background: #ffffff;
}

.contact-form-wrapper .wpcf7-form input:focus,
.contact-form-wrapper .wpcf7-form textarea:focus {
    outline: none;
    border-color: #c8a848;
}

.contact-form-wrapper .wpcf7-form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form-wrapper .wpcf7-form input[type="submit"] {
    background: #c8a848;
    color: #0a0a0a;
    border: 2px solid #c8a848;
    padding: 14px 40px;
    font-size: 0.9375rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
}

.contact-form-wrapper .wpcf7-form input[type="submit"]:hover {
    background: #d4b65c;
    border-color: #d4b65c;
}

@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-form-wrapper { padding: 32px 24px; }
}

/* ── BOOKING PAGE ─────────────────────────── */
.booking-intro {
    max-width: 650px;
    margin: 0 auto 40px;
}

.booking-embed {
    max-width: 900px;
    margin: 0 auto;
}

.booking-phone {
    text-align: center;
    margin-top: 32px;
    color: #666;
}

.booking-phone a {
    color: #c8a848;
    font-weight: 600;
}

/* ── 404 PAGE ─────────────────────────────── */
.error-404 {
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: #0a0a0a;
}

.error-content {
    color: #ffffff;
}

.error-code {
    font-family: 'Playfair Display', serif;
    font-size: clamp(5rem, 15vw, 10rem);
    font-weight: 700;
    color: rgba(200, 168, 72, 0.2);
    line-height: 1;
    margin-bottom: 16px;
}

.error-404 h1 {
    color: #ffffff;
    margin-bottom: 16px;
}

.error-404 .lead-text {
    color: rgba(255,255,255,0.6);
    margin-bottom: 32px;
}

.error-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── SINGLE POST ──────────────────────────── */
.post-featured-image {
    margin-bottom: 40px;
    border-radius: 4px;
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
    height: auto;
}

.post-body p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #444;
}

.post-body h2 {
    margin-top: 48px;
}

.post-body h3 {
    margin-top: 32px;
}

.post-navigation {
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.post-nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.post-nav-link {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.post-nav-link:hover {
    border-color: #c8a848;
}

.post-nav-label {
    font-size: 0.75rem;
    color: #c8a848;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.post-nav-title {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #333;
}

.post-nav-next {
    text-align: right;
}

/* ── FOOTER ───────────────────────────────── */
.site-footer {
    background: #0a0a0a;
}

.footer-main {
    padding: 80px 0 48px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-logo {
    display: block;
    margin-bottom: 20px;
}

.footer-about p {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
    line-height: 1.7;
}

.footer-rating {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.5);
}

.footer-rating .stars {
    color: #c8a848;
    font-size: 1rem;
}

.footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #c8a848;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li,
.footer-col ul li a {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #c8a848;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-list svg {
    stroke: #c8a848;
    flex-shrink: 0;
}

.footer-bottom {
    padding: 24px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.3);
    font-size: 0.8125rem;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 12px;
    font-size: 0.8125rem;
}

.footer-links a {
    color: rgba(255,255,255,0.3);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #c8a848;
}

.footer-links .sep {
    color: rgba(255,255,255,0.15);
}

@media (max-width: 960px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-main { padding: 48px 0 32px; }
    .footer-bottom-inner { justify-content: center; text-align: center; }
}

/* ── PAGINATION ───────────────────────────── */
.pagination {
    margin-top: 48px;
    text-align: center;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
}

.pagination a:hover {
    border-color: #c8a848;
    color: #c8a848;
}

.pagination .current {
    background: #c8a848;
    border-color: #c8a848;
    color: #0a0a0a;
}

/* ── FADE-IN ANIMATIONS ───────────────────── */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.services-grid .fade-in:nth-child(2) { transition-delay: 0.1s; }
.services-grid .fade-in:nth-child(3) { transition-delay: 0.2s; }
.services-grid .fade-in:nth-child(4) { transition-delay: 0.3s; }

.trust-items .fade-in:nth-child(2) { transition-delay: 0.05s; }
.trust-items .fade-in:nth-child(3) { transition-delay: 0.1s; }
.trust-items .fade-in:nth-child(4) { transition-delay: 0.15s; }
.trust-items .fade-in:nth-child(5) { transition-delay: 0.2s; }

.why-grid .fade-in:nth-child(2) { transition-delay: 0.1s; }
.why-grid .fade-in:nth-child(3) { transition-delay: 0.2s; }

.testimonials-grid .fade-in:nth-child(2) { transition-delay: 0.1s; }
.testimonials-grid .fade-in:nth-child(3) { transition-delay: 0.2s; }
.testimonials-grid .fade-in:nth-child(4) { transition-delay: 0.3s; }

.blog-grid .fade-in:nth-child(2) { transition-delay: 0.1s; }
.blog-grid .fade-in:nth-child(3) { transition-delay: 0.2s; }

/* ── WORDPRESS SPECIFIC ───────────────────── */
.wp-block-image img {
    border-radius: 4px;
}

.aligncenter {
    display: block;
    margin: 0 auto;
}

.alignleft {
    float: left;
    margin-right: 24px;
    margin-bottom: 16px;
}

.alignright {
    float: right;
    margin-left: 24px;
    margin-bottom: 16px;
}

/* Screen reader text */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* ── FLEET VEHICLE GRID RESPONSIVE ──────── */
@media (max-width: 992px) {
    .fleet-vehicle-grid {
        grid-template-columns: 1fr 1fr !important;
    }
}

@media (max-width: 768px) {
    .fleet-vehicle-grid {
        grid-template-columns: 1fr !important;
    }
    .fleet-card-body .fleet-specs {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .page-content [style*="grid-template-columns:repeat(4"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
