/*
Theme Name: Cukurova Transfer
Theme URI: https://cukurovatransfer.com.tr
Author: Cukurova Transfer
Author URI: https://kakudijital.com
Description: Cukurova Transfer icin VIP arac tasima, turlar ve kurumsal tanitim odakli ozel WordPress temasi.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: cukurova-transfer
*/

/* ═══════════════════════════════════════════════════════
   1. VARIABLES
   ═══════════════════════════════════════════════════════ */
:root {
    --header-bg:   #091525;
    --bg:          #ffffff;
    --surface:     #f5f8f7;
    --text:        #1a2c2c;
    --text-muted:  #617070;
    --accent:      #d4a24c;
    --accent-dark: #9e6e24;
    --green-dark:  #173a3a;
    --border:      rgba(22, 49, 49, 0.10);
    --shadow-sm:   0 2px 10px rgba(0,0,0,0.06);
    --shadow-md:   0 8px 32px rgba(0,0,0,0.10);
    --shadow-lg:   0 24px 64px rgba(0,0,0,0.13);
    --r-sm:        12px;
    --r-md:        20px;
    --r-lg:        28px;
    --max-w:       1180px;
    --section-py:  96px;
}

/* ═══════════════════════════════════════════════════════
   2. RESET & BASE
   ═══════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    background: var(--bg);
    color: var(--text);
}
img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

.container {
    width: min(calc(100% - 40px), var(--max-w));
    margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════
   3. TOPBAR
   ═══════════════════════════════════════════════════════ */
.topbar {
    background: var(--header-bg);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar-inner {
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.topbar-inner p { margin: 0; color: rgba(255,255,255,0.55); font-size: 0.81rem; }
.topbar-contact { display: flex; gap: 20px; }
.topbar-contact a {
    color: rgba(255,255,255,0.6);
    font-size: 0.81rem;
    transition: color .18s;
}
.topbar-contact a:hover { color: var(--accent); }

/* ═══════════════════════════════════════════════════════
   4. SITE HEADER
   ═══════════════════════════════════════════════════════ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(9, 21, 37, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.header-inner {
    height: 76px;
    display: flex;
    align-items: center;
    gap: 20px;
}

/* ═══════════════════════════════════════════════════════
   5. LOGO
   ═══════════════════════════════════════════════════════ */
.brand-wrap { display: flex; align-items: center; flex-shrink: 0; }
.brand-copy { display: none; }
.site-title  { display: none; }
.site-tagline{ display: none; }
.custom-logo    { max-height: 68px; width: auto; }
.fallback-logo img { max-height: 68px; width: auto; }

/* ═══════════════════════════════════════════════════════
   6. MOBILE NAV BASE
   ═══════════════════════════════════════════════════════ */
.primary-nav {
    display: none;
}
.primary-nav .menu-list,
.primary-nav .menu,
.footer-menu,
.primary-nav .sub-menu,
.primary-nav .children {
    list-style: none;
    margin: 0;
    padding: 0;
}
.primary-nav a {
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    font-size: 0.92rem;
}

/* Mobile open state */
.primary-nav.is-open {
    display: block;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 200;
    background: rgba(7,17,32,0.99);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 16px 20px 24px;
}
.primary-nav.is-open .menu-list,
.primary-nav.is-open .menu {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.primary-nav.is-open .menu-list > li > a,
.primary-nav.is-open .menu > li > a {
    display: block;
    padding: 10px 14px;
    border-radius: 10px;
    transition: background .15s;
}
.primary-nav.is-open a:hover { background: rgba(255,255,255,0.07); }

/* Mobile sub-menu — inline */
.primary-nav.is-open .sub-menu,
.primary-nav.is-open .children {
    padding: 4px 0 4px 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.primary-nav.is-open .sub-menu a,
.primary-nav.is-open .children a {
    display: block;
    padding: 8px 14px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    border-radius: 8px;
    transition: background .15s;
}
.primary-nav.is-open .sub-menu a:hover { background: rgba(255,255,255,0.06); }

/* ═══════════════════════════════════════════════════════
   7. HAMBURGER TOGGLE
   ═══════════════════════════════════════════════════════ */
.menu-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05);
    padding: 0;
    cursor: pointer;
    margin-left: auto;
    flex-shrink: 0;
}
.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: opacity .2s;
}

/* ═══════════════════════════════════════════════════════
   8. HEADER ACTIONS
   ═══════════════════════════════════════════════════════ */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.header-mini-link { display: none; }
.header-cta {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 10px 20px;
    font-weight: 700;
    font-size: 0.88rem;
    background: linear-gradient(135deg, var(--accent), #e8c47a);
    color: #1a1000;
    box-shadow: 0 4px 18px rgba(212,162,76,0.32);
    transition: transform .2s, box-shadow .2s;
}
.header-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(212,162,76,0.44); }

/* ═══════════════════════════════════════════════════════
   9. BUTTONS
   ═══════════════════════════════════════════════════════ */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 14px 30px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: transform .2s, box-shadow .2s;
    cursor: pointer;
    border: none;
    line-height: 1;
}
.button-primary {
    background: linear-gradient(135deg, var(--accent), #e8c47a);
    color: #1a1000;
    box-shadow: 0 4px 20px rgba(212,162,76,0.3);
}
.button-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(212,162,76,0.44); }
.button-secondary {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.3);
    color: #fff;
}
.button-secondary:hover { border-color: rgba(255,255,255,0.65); background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.text-link {
    color: var(--accent-dark);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .2s, color .2s;
}
.text-link:hover { gap: 10px; color: var(--accent); }

/* ═══════════════════════════════════════════════════════
   10. TYPOGRAPHY HELPERS
   ═══════════════════════════════════════════════════════ */
.eyebrow, .card-label, .footer-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.74rem;
    font-weight: 800;
    color: var(--accent-dark);
}
.eyebrow::before {
    content: '';
    display: block;
    width: 22px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    flex-shrink: 0;
}
.card-label::before { display: none; }
.footer-kicker::before { display: none; }

.section-heading {
    max-width: 680px;
    margin-bottom: 52px;
}
.section-heading h2 {
    margin: 10px 0 14px;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.8rem);
    line-height: 1.12;
    color: var(--text);
    font-weight: 800;
}
.section-heading p {
    margin: 0;
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.8;
}
.split {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    max-width: 100%;
    margin-bottom: 48px;
}
.split .section-heading { margin-bottom: 0; }

/* ═══════════════════════════════════════════════════════
   11. HERO SECTION
   ═══════════════════════════════════════════════════════ */
.hero-section,
.detail-hero,
.page-hero {
    color: #fff;
    position: relative;
    overflow: hidden;
    background: linear-gradient(150deg, #0d2424 0%, #112e2e 55%, #0a2020 100%);
}
.hero-section { padding: 100px 0 84px; }
.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 72% 28%, rgba(212,162,76,0.13), transparent 50%),
        radial-gradient(ellipse at 12% 72%, rgba(31,80,80,0.12), transparent 48%);
    pointer-events: none;
}
.hero-grid,
.detail-grid,
.page-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}
.hero-grid-refined { align-items: stretch; }
.hero-copy h1, .page-hero h1, .detail-copy h1 {
    margin: 14px 0 18px;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 4.4rem);
    line-height: 1.02;
    color: #fff;
}
.hero-copy p, .detail-copy p, .page-hero p {
    max-width: 56ch;
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0 0 28px;
}
.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.hero-points span {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.8);
    font-size: 0.84rem;
    font-weight: 600;
}

/* Hero visual */
.hero-visual { position: relative; min-width: 0; }
.hero-image-card,
.section-single-visual {
    position: relative;
    overflow: hidden;
    border-radius: var(--r-lg);
    box-shadow: 0 32px 80px rgba(0,0,0,0.28);
}
.hero-image-card img,
.section-single-visual img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
}
.hero-image-card::after,
.section-single-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.68) 100%);
}
.hero-image-overlay {
    position: absolute;
    left: 24px; right: 24px; bottom: 24px;
    z-index: 1;
    color: #fff;
}
.hero-image-overlay span {
    display: block;
    font-size: 0.71rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 6px;
}
.hero-image-overlay strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.3rem, 2vw, 1.9rem);
    line-height: 1.2;
}
.hero-floating-card {
    position: absolute;
    left: -16px;
    bottom: 24px;
    z-index: 2;
    max-width: 234px;
    padding: 16px 18px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 20px 48px rgba(0,0,0,0.18);
}
.hero-floating-card span { display: block; color: #7a8a8a; font-size: 0.82rem; }
.hero-floating-card strong {
    display: block;
    margin-top: 6px;
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    font-size: 0.98rem;
    line-height: 1.3;
}

/* ═══════════════════════════════════════════════════════
   12. STATS SECTION
   ═══════════════════════════════════════════════════════ */
.stats-section {
    padding: 72px 0;
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.stat-grid article {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 32px 24px;
    position: relative;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
}
.stat-grid article:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat-grid article::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
}
.stat-grid strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--green-dark);
    margin-bottom: 8px;
}
.stat-grid span { color: var(--text-muted); font-size: 0.88rem; line-height: 1.5; }

/* ═══════════════════════════════════════════════════════
   13. SERVICES SECTION
   ═══════════════════════════════════════════════════════ */
.services-section,
.white-services {
    padding: var(--section-py) 0;
    background: #fff;
    border-top: 1px solid var(--border);
}
.services-showcase,
.experience-showcase,
.fleet-showcase {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 32px;
    align-items: start;
}
.premium-service-cards,
.compact-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.section-single-visual-tall img { min-height: 100%; }

/* Cards */
.service-card,
.content-card,
.news-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.service-card:hover,
.content-card:hover,
.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(212,162,76,0.28);
}
.service-card { padding: 28px; }
.service-card h3, .card-body h3, .news-card h2, .news-card h3 {
    margin: 0 0 10px;
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    font-size: 1.08rem;
    line-height: 1.3;
}
.service-card p, .card-body p, .news-card p {
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 0;
}
.featured-service-card,
.fleet-card { height: 100%; }
.featured-service-card .card-label { margin-bottom: 12px; }
.fleet-card .card-label { margin-bottom: 12px; }

/* ═══════════════════════════════════════════════════════
   14. EXPERIENCE SECTION
   ═══════════════════════════════════════════════════════ */
.experience-section {
    padding: var(--section-py) 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.experience-content-panel { display: grid; gap: 18px; }
.experience-intro {
    margin: 0;
    padding: 28px 32px;
    border-radius: var(--r-md);
    background: linear-gradient(135deg, #122e2e, #1e4848);
    color: rgba(255,255,255,0.88);
    line-height: 1.85;
    font-size: 0.98rem;
}
.experience-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.polished-steps article,
.experience-steps article {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    padding: 24px;
    transition: transform .25s, box-shadow .25s;
}
.polished-steps article:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.experience-steps strong {
    display: inline-flex;
    width: 42px; height: 42px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: rgba(212,162,76,0.12);
    color: var(--accent-dark);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 12px;
}
.experience-steps h3 {
    margin: 0 0 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: var(--text);
}
.experience-steps p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.91rem;
}

/* ═══════════════════════════════════════════════════════
   15. LISTING SECTIONS (Vehicles, Tours)
   ═══════════════════════════════════════════════════════ */
.listing-section {
    padding: var(--section-py) 0;
    background: #fff;
    border-top: 1px solid var(--border);
}
.listing-section.muted {
    background: var(--surface);
}
.refined-listing .section-heading { max-width: 860px; }
.meta-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 12px 0; }
.meta-row span, .news-meta { color: var(--accent-dark); font-weight: 700; font-size: 0.82rem; }
.news-mini-card .news-meta { display: inline-block; margin-bottom: 10px; }

/* ═══════════════════════════════════════════════════════
   16. ABOUT STRIP
   ═══════════════════════════════════════════════════════ */
.about-strip {
    padding: 88px 0;
    background: linear-gradient(135deg, #112a2a 0%, #1b4040 55%, #132e2e 100%);
    color: #fff;
}
.about-grid,
.contact-banner-inner,
.page-content,
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}
.about-grid h2, .contact-banner-inner h2 {
    margin: 10px 0 0;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.7rem, 3vw, 2.8rem);
    line-height: 1.1;
    color: #fff;
}
.about-grid p, .contact-banner-inner p,
.site-footer p, .site-footer li,
.contact-card-panel p {
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════
   17. TESTIMONIALS
   ═══════════════════════════════════════════════════════ */
.testimonial-section {
    padding: var(--section-py) 0;
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.quote-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 32px 26px;
    position: relative;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
}
.quote-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.quote-card::before {
    content: '\201C';
    position: absolute;
    top: -4px; left: 18px;
    font-family: Georgia, serif;
    font-size: 6rem;
    color: rgba(212,162,76,0.11);
    line-height: 1;
    pointer-events: none;
}
.quote-card p {
    color: var(--text-muted);
    line-height: 1.85;
    margin: 0 0 18px;
    font-size: 0.96rem;
}
.quote-card strong {
    display: inline-block;
    color: var(--accent-dark);
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
}
.review-stats-strip, .story-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 32px;
}
.review-stats-strip article, .story-metrics article, .story-panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 26px 22px;
}
.review-stats-strip strong, .story-metrics strong {
    display: block;
    color: var(--green-dark);
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 6px;
}
.review-stats-strip span, .story-metrics span {
    display: block;
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════
   18. NEWS SECTION
   ═══════════════════════════════════════════════════════ */
.news-section {
    padding: var(--section-py) 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
}

/* ═══════════════════════════════════════════════════════
   19. CONTACT BANNER
   ═══════════════════════════════════════════════════════ */
.contact-banner { padding: 80px 0; background: #fff; border-top: 1px solid var(--border); }
.contact-banner-inner {
    background: linear-gradient(135deg, #112828 0%, #1b4242 50%, #122e2e 100%);
    border-radius: var(--r-lg);
    padding: 52px 48px;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.contact-banner-inner::after {
    content: '';
    position: absolute;
    top: -50%; right: -5%;
    width: 360px; height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,162,76,0.1), transparent 60%);
    pointer-events: none;
}
.contact-stack {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
    position: relative;
    z-index: 1;
}
.contact-banner-inner > * { position: relative; z-index: 1; }

/* ═══════════════════════════════════════════════════════
   20. SITE FOOTER
   ═══════════════════════════════════════════════════════ */
.site-main {
    padding-bottom: 80px;
}
.site-footer {
    margin-top: 0;
    padding: 88px 0 0;
    background: #0d1c1c;
    color: #fff;
    border-top: 4px solid rgba(212, 162, 76, 0.25);
}
.site-footer h3, .site-footer h4 {
    font-family: 'Outfit', sans-serif;
    margin-top: 0;
    color: #fff;
    margin-bottom: 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 52px;
    padding-bottom: 56px;
}
.footer-brand .footer-logo-wrap {
    display: inline-block;
    margin-bottom: 20px;
}
.footer-brand .footer-logo-wrap img,
.footer-brand .footer-logo-wrap .custom-logo {
    max-height: 72px;
    width: auto;
    filter: brightness(1.05);
}
.footer-brand p {
    color: rgba(255,255,255,0.55);
    font-size: 0.91rem;
    line-height: 1.75;
    margin: 0;
    max-width: 32ch;
}
.footer-kicker {
    display: inline-block;
    color: var(--accent);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 8px;
}
.footer-contact, .footer-menu { list-style: none; margin: 0; padding: 0; }
.footer-menu { display: grid; gap: 10px; }
.footer-menu a, .footer-contact a {
    color: rgba(255,255,255,0.58);
    font-size: 0.91rem;
    transition: color .18s;
}
.footer-menu a:hover, .footer-contact a:hover { color: var(--accent); }
.footer-contact li { color: rgba(255,255,255,0.58); font-size: 0.91rem; margin-bottom: 8px; }
.footer-bottom {
    padding: 22px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.35);
    font-size: 0.82rem;
    line-height: 1.5;
}
.footer-bottom a {
    color: var(--accent);
    font-weight: 600;
    transition: opacity .18s;
}
.footer-bottom a:hover { opacity: 0.8; }

/* ═══════════════════════════════════════════════════════
   21. FLOATING BUTTONS — icon-only circles
   ═══════════════════════════════════════════════════════ */
.floating-actions {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 200;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.floating-button {
    width: 54px;
    height: 54px;
    min-height: 54px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: transform .22s, box-shadow .22s;
}
.floating-call {
    background: linear-gradient(135deg, #1a2f50, #243e68);
    box-shadow: 0 6px 20px rgba(26,47,80,0.42);
}
.floating-whatsapp {
    background: linear-gradient(135deg, #1b7a50, #24a068);
    box-shadow: 0 6px 20px rgba(27,122,80,0.42);
}
.floating-button:hover { transform: translateY(-4px) scale(1.08); }
.floating-call:hover    { box-shadow: 0 14px 30px rgba(26,47,80,0.52); }
.floating-whatsapp:hover{ box-shadow: 0 14px 30px rgba(27,122,80,0.52); }
.floating-icon {
    width: 32px; height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.16);
    border-radius: 50%;
}
.floating-icon svg { width: 18px; height: 18px; }
.floating-text { display: none !important; }

/* ═══════════════════════════════════════════════════════
   22. MISC / INNER PAGES
   ═══════════════════════════════════════════════════════ */
.page-hero, .detail-hero {
    padding: 72px 0 48px;
}
.detail-hero { padding: 72px 0 40px; }
.page-hero-rich { padding: 72px 0 42px; }
.page-hero-copy { min-width: 0; }
.hero-mosaic {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: repeat(2, 180px);
    gap: 16px;
}
.mosaic-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    min-height: 180px;
    box-shadow: var(--shadow-md);
}
.mosaic-card img, .mosaic-card .placeholder-media {
    width: 100%; height: 100%; object-fit: cover;
}
.mosaic-card::after, .gallery-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.82) 100%);
}
.mosaic-card span, .gallery-overlay {
    position: absolute;
    left: 16px; right: 16px; bottom: 14px;
    z-index: 1; color: #fff;
}
.mosaic-card-1 { grid-row: 1 / span 2; }
.glass-card, .contact-card-panel, .highlight-box {
    background: linear-gradient(135deg, #122e2e, #1d4848);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--r-md);
    padding: 28px;
    color: #fff;
}
.contact-card-panel, .highlight-box { border: none; }
.highlight-box ul { margin: 0; padding-left: 18px; }
.highlight-box li { margin-bottom: 8px; }
.feature-list, .detail-list, .footer-contact { list-style: none; margin: 0; padding: 0; }
.feature-list li { color: #fff; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.feature-list li:last-child { border-bottom: 0; }
.hero-contact { margin-top: 26px; display: grid; gap: 6px; color: #fff; }
.detail-list li {
    display: flex; justify-content: space-between;
    gap: 16px; padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1); color: #fff;
}
.detail-list li span { color: rgba(255,255,255,0.65); }
.signature-section, .gallery-band, .reservation-section { padding: 60px 0 var(--section-py); }
.signature-section.soft { padding-top: 10px; }
.signature-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.signature-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.signature-cards article, .reservation-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 24px;
    transition: transform .25s, box-shadow .25s;
}
.signature-cards article:hover, .reservation-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.signature-cards h3, .reservation-card h3 { margin: 0 0 10px; font-family: 'Outfit', sans-serif; color: var(--text); }
.signature-cards p, .reservation-card p { margin: 0; color: var(--text-muted); line-height: 1.75; }
.reservation-card.large {
    background: linear-gradient(135deg, #112828, #1c3e3e);
    color: #fff; border: none;
}
.reservation-card.large h2 {
    margin: 10px 0 14px;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    line-height: 1.1;
}
.reservation-card.large p { color: rgba(255,255,255,0.75); }
.reservation-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 18px; }
.reservation-grid.three { grid-template-columns: repeat(3, 1fr); }
.gallery-collage { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-card { position: relative; overflow: hidden; border-radius: 20px; min-height: 300px; }
.gallery-card img, .gallery-card .placeholder-media {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .35s;
}
.gallery-card:hover img { transform: scale(1.04); }
.gallery-overlay { position: absolute; left: 18px; right: 18px; bottom: 16px; z-index: 1; color: #fff; }
.gallery-overlay strong { display: block; font-family: 'Outfit', sans-serif; font-size: 1.15rem; }
.gallery-overlay span { display: inline-block; margin-top: 5px; color: rgba(255,255,255,0.72); font-size: 0.9rem; }
.service-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card-grid     { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-grid     { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.experience-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 24px; }
.card-body { padding: 24px; }
.card-media img, .placeholder-media { width: 100%; height: 240px; object-fit: cover; }
.placeholder-media { background: linear-gradient(135deg, #b98939, #09111f); }
.placeholder-media.tall, .detail-media img {
    height: 100%; min-height: 480px;
    border-radius: var(--r-md); object-fit: cover;
}
.check-list { list-style: none; margin: 0; padding: 0; }
.check-list li {
    padding: 12px 0 12px 26px;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.check-list li::before {
    content: ''; position: absolute;
    left: 0; top: 18px;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--accent);
}
.single-post-hero { grid-template-columns: 1fr; }
.single-post-hero .mosaic-card-1 { grid-row: auto; min-height: 320px; }
.about-story-band { padding: 10px 0 36px; }
.story-grid   { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.story-panel h2 { margin: 10px 0 14px; font-family: 'Outfit', sans-serif; font-size: clamp(1.7rem,3vw,2.8rem); line-height: 1.1; }
.story-panel p { margin: 0; color: var(--text-muted); line-height: 1.85; }
.page-content { align-items: start; }
.single-layout { grid-template-columns: 1.3fr 0.7fr; }
.wysiwyg {
    background: #fff;
    border: 1px solid var(--border);
    padding: 36px;
    border-radius: var(--r-md);
}
.wysiwyg p, .wysiwyg li { color: #465063; line-height: 1.9; }
.faq-content h3 {
    margin: 22px 0 10px;
    padding: 14px 16px;
    border-radius: 12px;
    background: linear-gradient(135deg, #fef9ee, #f6e7c4);
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    font-size: 1rem;
}
.muted { background: var(--surface); }
.page-content-section { padding: var(--section-py) 0; }
.cooperation-form { display: grid; gap: 16px; margin-top: 28px; }
.cooperation-form label { display: grid; gap: 8px; }
.cooperation-form span { font-weight: 700; color: var(--text); }
.cooperation-form input,
.cooperation-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fafcfb;
    color: var(--text);
    font: inherit;
    font-size: 0.95rem;
}
.cooperation-form input:focus,
.cooperation-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212,162,76,0.15);
}
.experience-panel.dark, .signature-panel.dark {
    background: linear-gradient(135deg, #112828, #1c3e3e);
    color: #fff;
    border-radius: var(--r-md);
    padding: 32px;
}
.experience-panel.dark h2, .signature-panel.dark h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.7rem,3vw,2.6rem);
    line-height: 1.1; margin: 12px 0;
}
.experience-panel.dark p, .signature-panel.dark p { color: rgba(255,255,255,0.75); line-height: 1.9; }
.enhanced-news-grid { align-items: start; }
.immersive-card .card-media img,
.enhanced-news-card .card-media img { height: 280px; }
.ct-admin-grid { display: grid; gap: 8px; }

/* ═══════════════════════════════════════════════════════
   22b. INNER PAGE — iletişim / iş birliği forms
   ═══════════════════════════════════════════════════════ */
.minimal-page-section {
    padding: var(--section-py) 0;
}
.narrow-page-shell {
    max-width: 980px;
}
.minimal-header {
    text-align: center;
    margin-bottom: 56px;
}
.minimal-header h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.08;
    color: var(--text);
    margin: 12px 0 16px;
}
.minimal-header p {
    max-width: 60ch;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.8;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.info-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 28px 24px;
    transition: box-shadow .22s, transform .22s;
}
.info-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.info-card .card-label { display: block; margin-bottom: 12px; }
.info-card h3 {
    margin: 0 0 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.04rem;
    color: var(--text);
    line-height: 1.3;
    word-break: break-all;
}
.info-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.91rem;
    line-height: 1.75;
}

.form-shell {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 28px;
    align-items: start;
}
.form-intro-card {
    background: linear-gradient(145deg, #112e2e, #1c4545);
    border-radius: var(--r-md);
    padding: 36px 32px;
    color: #fff;
    position: sticky;
    top: 96px;
}
.form-intro-card .eyebrow { color: var(--accent); }
.form-intro-card h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    line-height: 1.15;
    margin: 12px 0 16px;
    color: #fff;
}
.form-intro-card p {
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    font-size: 0.94rem;
    margin: 0 0 8px;
}
.check-list.dark-list { margin-top: 20px; }
.check-list.dark-list li {
    border-bottom-color: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.82);
    font-size: 0.91rem;
}
.check-list.dark-list li::before { background: var(--accent); }

.form-panel {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 36px 32px;
}
.premium-form { display: grid; gap: 20px; }
.premium-form label { display: grid; gap: 8px; }
.premium-form label > span {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text);
}
.premium-form input,
.premium-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    background: var(--surface);
    color: var(--text);
    font: inherit;
    font-size: 0.95rem;
    transition: border-color .18s, box-shadow .18s, background .18s;
}
.premium-form input:focus,
.premium-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212,162,76,0.15);
    background: #fff;
}
.premium-form textarea { resize: vertical; min-height: 130px; }
.form-grid-two { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-actions-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    padding-top: 8px;
}
.form-panel .button-secondary {
    border-color: rgba(23,58,58,0.25);
    color: var(--text);
}
.form-panel .button-secondary:hover {
    border-color: var(--accent-dark);
    color: var(--green-dark);
    background: rgba(23,58,58,0.05);
    transform: translateY(-2px);
}

/* Kurumsal content card grid */
.content-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 36px;
}
.link-card {
    display: block;
    transition: transform .22s, box-shadow .22s, border-color .22s;
}
.link-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(212,162,76,0.28);
}
.minimal-wysiwyg { margin-top: 16px; }

/* ═══════════════════════════════════════════════════════
   22c. HOMEPAGE VISUAL REFINEMENTS
   ═══════════════════════════════════════════════════════ */

/* ── Hero ── */
.hero-section { padding: 132px 0 112px; }

.hero-copy h1 {
    text-shadow: 0 2px 32px rgba(0,0,0,0.22);
}
.hero-points span {
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.hero-floating-card {
    border-top: 3px solid var(--accent);
    background: #fff;
    box-shadow: 0 24px 56px rgba(0,0,0,0.22);
    padding: 18px 20px;
    border-radius: 20px;
}
.hero-floating-card span { color: var(--accent-dark); font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; }
.hero-floating-card strong { color: var(--text); font-family: 'Outfit', sans-serif; font-size: 1rem; line-height: 1.35; margin-top: 6px; }

/* ── Stats ── */
.stats-section { padding: 80px 0; }
.stat-grid article { padding: 36px 28px; }
.stat-grid strong {
    font-size: 2.8rem;
    background: linear-gradient(135deg, var(--accent-dark) 0%, #d4a24c 60%, #e8c47a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}
.stat-grid article::before {
    height: 4px;
    background: linear-gradient(90deg, var(--accent), rgba(212,162,76,0.15));
}

/* ── Service cards (numbered) ── */
.featured-service-card { border-top: 3px solid transparent; transition: border-color .25s, transform .25s, box-shadow .25s; }
.featured-service-card:hover { border-top-color: var(--accent); }
.featured-service-card .card-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212,162,76,0.15), rgba(212,162,76,0.06));
    border: 1.5px solid rgba(212,162,76,0.25);
    color: var(--accent-dark);
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: none;
    margin-bottom: 16px;
}
.featured-service-card h3 { font-size: 1.08rem; margin-bottom: 12px; }
.featured-service-card p { font-size: 0.92rem; line-height: 1.78; }

/* ── Experience steps ── */
.polished-steps article { padding: 26px 24px; }
.polished-steps strong {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    color: #1a1000;
    font-size: 0.9rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 4px 16px rgba(212,162,76,0.28);
}
.polished-steps h3 { font-size: 1rem; font-weight: 700; }
.polished-steps p { font-size: 0.91rem; line-height: 1.75; }
.experience-intro {
    font-size: 1rem;
    line-height: 1.9;
    padding: 32px 36px;
    background: linear-gradient(135deg, #112c2c, #1e4848);
    border-left: 4px solid var(--accent);
    border-radius: var(--r-md);
    color: rgba(255,255,255,0.85);
}

/* ── About strip ── */
.about-strip {
    padding: 108px 0;
    background: linear-gradient(135deg, #0d2828 0%, #153838 50%, #0e2c2c 100%);
    position: relative;
    overflow: hidden;
}
.about-strip::before {
    content: '\201C';
    position: absolute;
    right: 4%;
    top: -40px;
    font-family: Georgia, serif;
    font-size: 22rem;
    color: rgba(255,255,255,0.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}
.about-strip::after {
    content: '';
    position: absolute;
    left: -100px;
    bottom: -100px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,162,76,0.06), transparent 60%);
    pointer-events: none;
}
.about-grid { gap: 60px; position: relative; z-index: 1; }
.about-grid h2 {
    font-size: clamp(1.85rem, 3.2vw, 3rem);
    line-height: 1.1;
    margin-bottom: 0;
}
.about-strip .button-secondary {
    margin-top: 28px;
    border-color: rgba(255,255,255,0.25);
    color: #fff;
}
.about-strip .button-secondary:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}
.about-strip .eyebrow { color: var(--accent); }
.about-grid > div > p {
    color: rgba(255,255,255,0.72);
    font-size: 1.04rem;
    line-height: 1.9;
}

/* ── Fleet / Tour cards ── */
.fleet-card { padding: 24px 22px; }
.fleet-card h3 a { color: var(--text); transition: color .18s; }
.fleet-card h3 a:hover { color: var(--accent-dark); }

/* ── Homepage Vehicle Card Grid ── */
.vehicle-listing-section { background: var(--surface); }
.vehicle-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.vehicle-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .28s, box-shadow .28s, border-color .28s;
}
.vehicle-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 56px rgba(0,0,0,0.12);
    border-color: rgba(212,162,76,0.35);
}
.vehicle-card-media {
    position: relative;
    display: block;
    height: 230px;
    overflow: hidden;
    background: linear-gradient(135deg, #0d2020, #1b3a3a);
    flex-shrink: 0;
}
.vehicle-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .38s ease;
    display: block;
}
.vehicle-card:hover .vehicle-card-media img { transform: scale(1.06); }
.vehicle-card-media .placeholder-media {
    width: 100%; height: 100%;
    min-height: unset;
    background: linear-gradient(135deg, #0d2020, #1b3a3a);
}
.vehicle-card-badge {
    position: absolute;
    top: 14px; left: 14px;
    z-index: 1;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(212,162,76,0.92);
    color: #1a1000;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}
.vehicle-card-body {
    padding: 24px 22px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.vehicle-card-body h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.12rem;
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.25;
}
.vehicle-card-body h3 a { color: var(--text); transition: color .18s; }
.vehicle-card-body h3 a:hover { color: var(--accent-dark); }
.vehicle-card-body > p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.75;
    margin: 0 0 16px;
    flex: 1;
}
.vehicle-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 18px;
}
.spec-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 11px;
    border-radius: 999px;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.79rem;
    font-weight: 600;
}
.spec-badge svg { flex-shrink: 0; color: var(--accent-dark); }
.spec-badge-accent {
    background: rgba(212,162,76,0.09);
    border-color: rgba(212,162,76,0.25);
    color: var(--accent-dark);
}
.vehicle-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--accent-dark);
    transition: gap .2s, color .18s;
    margin-top: auto;
}
.vehicle-card-cta:hover { gap: 10px; color: var(--accent); }
.vehicle-card-cta svg { flex-shrink: 0; }

/* ── Hizmetlerimiz Page ── */
.services-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}
.service-page-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    position: relative;
    overflow: hidden;
}
.service-page-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), rgba(212,162,76,0.2));
}
.service-page-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(212,162,76,0.3);
}
.spc-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212,162,76,0.14), rgba(212,162,76,0.05));
    border: 1.5px solid rgba(212,162,76,0.25);
    color: var(--accent-dark);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 4px;
    flex-shrink: 0;
}
.service-page-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
    line-height: 1.25;
}
.service-page-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.91rem;
    line-height: 1.78;
    flex: 1;
}
.spc-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 700;
    font-size: 0.86rem;
    color: var(--accent-dark);
    transition: gap .18s, color .18s;
    margin-top: 4px;
}
.spc-link::after { content: '→'; }
.spc-link:hover { gap: 9px; color: var(--accent); }
.services-cta-banner {
    background: linear-gradient(135deg, #112828, #1c4040);
    border-radius: var(--r-lg);
    padding: 52px 48px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 36px;
    align-items: center;
}
.services-cta-banner h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2.1rem);
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.15;
}
.services-cta-banner p {
    color: rgba(255,255,255,0.72);
    margin: 0;
    font-size: 0.97rem;
    line-height: 1.8;
}
.services-cta-banner .contact-stack { justify-content: flex-start; }
.services-cta-banner .button-secondary {
    border-color: rgba(255,255,255,0.25);
    color: #fff;
}
.services-cta-banner .button-secondary:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.5);
}

/* ── Testimonials ── */
.testimonial-section { padding: var(--section-py) 0 calc(var(--section-py) + 16px); }
.quote-card {
    background: #fff;
    border: 1px solid var(--border);
    border-bottom: 3px solid transparent;
    transition: border-bottom-color .25s, transform .25s, box-shadow .25s;
    padding: 36px 28px;
}
.quote-card:hover { border-bottom-color: var(--accent); }
.quote-card::before {
    font-size: 9rem;
    top: -8px;
    left: 16px;
    color: rgba(212,162,76,0.12);
}
.quote-card p {
    font-size: 0.98rem;
    line-height: 1.88;
    color: #4a5a5a;
    position: relative;
    z-index: 1;
}
.quote-card strong {
    font-size: 0.86rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}
.review-stats-strip {
    margin-top: 40px;
    grid-template-columns: repeat(3, 1fr);
}
.review-stats-strip article {
    text-align: center;
    border: 1px solid var(--border);
    border-top: 3px solid var(--accent);
}
.review-stats-strip strong {
    font-size: 2.4rem;
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Contact banner ── */
.contact-banner { padding: 96px 0; }
.contact-banner-inner {
    padding: 64px 56px;
    background: linear-gradient(135deg, #0e2828 0%, #183e3e 45%, #112c2c 100%);
}
.contact-banner-inner h2 { font-size: clamp(1.8rem, 3.2vw, 2.8rem); }
.contact-stack { gap: 14px; }

/* ── Section headings global refinements ── */
.section-heading { margin-bottom: 56px; }
.section-heading h2 { margin-bottom: 16px; }

/* ── Services section ── */
.services-section { padding: var(--section-py) 0 calc(var(--section-py) + 8px); }
.services-showcase { gap: 36px; align-items: stretch; }
.premium-service-cards { gap: 20px; }
.section-single-visual img { border-radius: var(--r-lg); }
.section-single-visual::after { border-radius: var(--r-lg); }

/* ═══════════════════════════════════════════════════════
   23. DESKTOP NAV — always visible + hover dropdown
   ═══════════════════════════════════════════════════════ */
@media (min-width: 961px) {

    .menu-toggle { display: none !important; }

    /* Nav always visible on desktop — centered between logo and actions */
    .primary-nav,
    .primary-nav.is-open {
        display: flex !important;
        flex: 1;
        align-items: center;
        justify-content: center;
        position: static !important;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        backdrop-filter: none !important;
        box-shadow: none !important;
    }

    .primary-nav .menu-list,
    .primary-nav .menu {
        display: flex !important;
        flex-direction: row;
        gap: 2px;
        align-items: center;
        flex-wrap: nowrap;
    }

    .primary-nav .menu-item,
    .primary-nav .page_item { position: relative; }

    /* Top-level link */
    .primary-nav .menu-list > li > a,
    .primary-nav .menu > li > a {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        padding: 9px 13px;
        border-radius: 10px;
        font-size: 0.91rem;
        font-weight: 600;
        color: rgba(255,255,255,0.82);
        transition: background .18s, color .18s;
        white-space: nowrap;
    }
    .primary-nav .menu-list > li > a:hover,
    .primary-nav .menu > li > a:hover {
        background: rgba(255,255,255,0.08);
        color: #fff;
    }
    .primary-nav .current-menu-item > a,
    .primary-nav .current_page_item > a,
    .primary-nav .current-menu-ancestor > a {
        color: var(--accent) !important;
        background: rgba(212,162,76,0.1);
    }

    /* Remove old underline animation */
    .primary-nav a::after { display: none !important; }

    /* Chevron for dropdown parent */
    .primary-nav .menu-list > .menu-item-has-children > a::after,
    .primary-nav .menu > .menu-item-has-children > a::after {
        content: '' !important;
        display: inline-block !important;
        position: static !important;
        width: 6px;
        height: 6px;
        border-right: 1.5px solid rgba(255,255,255,0.5);
        border-bottom: 1.5px solid rgba(255,255,255,0.5);
        background: transparent;
        border-radius: 0;
        transform: rotate(45deg) translateY(-1px);
        flex-shrink: 0;
        transition: transform .2s, border-color .18s;
        box-shadow: none;
    }
    .primary-nav .menu-item-has-children:hover > a::after {
        transform: rotate(-135deg) translateY(1px);
        border-color: var(--accent);
    }

    /* Dropdown panel — JS controls display, CSS sets position + style */
    .primary-nav .sub-menu,
    .primary-nav .children {
        position: absolute;
        top: 100%;           /* no gap so mouse can travel without mouseleave firing */
        left: 50%;
        transform: translateX(-50%);
        min-width: 210px;
        background: rgba(7, 16, 30, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 16px;
        padding: 8px;
        padding-top: 14px;   /* visual gap created as internal padding, bridges mouse path */
        display: none;       /* JS overrides this with inline style */
        flex-direction: column;
        gap: 2px;
        z-index: 300;
        box-shadow: 0 24px 56px rgba(0,0,0,0.38);
        list-style: none;
        margin: 0;
    }

    /* Dropdown links */
    .primary-nav .sub-menu a,
    .primary-nav .children a {
        display: block;
        padding: 10px 16px;
        border-radius: 10px;
        font-size: 0.89rem;
        font-weight: 600;
        color: rgba(255,255,255,0.78);
        transition: background .15s, color .15s;
        white-space: nowrap;
    }
    .primary-nav .sub-menu a:hover,
    .primary-nav .children a:hover {
        background: rgba(255,255,255,0.08);
        color: #fff;
    }
    .primary-nav .sub-menu a::after,
    .primary-nav .children a::after { display: none !important; }

    /* Header actions on desktop */
    .header-mini-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 40px;
        padding: 0 16px;
        border-radius: 999px;
        border: 1px solid rgba(255,255,255,0.12);
        color: rgba(255,255,255,0.82);
        font-weight: 700;
        font-size: 0.87rem;
        white-space: nowrap;
        transition: border-color .18s, color .18s;
    }
    .header-mini-link:hover { border-color: rgba(255,255,255,0.3); color: #fff; }
    .header-cta { display: inline-flex; }
}

/* ═══════════════════════════════════════════════════════
   24. TABLET ≤ 960px
   ═══════════════════════════════════════════════════════ */
@media (max-width: 960px) {
    :root { --section-py: 72px; }

    .header-inner { position: relative; flex-wrap: wrap; }
    .header-actions { margin-left: auto; }
    .primary-nav { order: 10; width: 100%; }

    .hero-grid, .detail-grid, .page-hero-grid,
    .about-grid, .contact-banner-inner,
    .page-content, .footer-grid, .single-layout {
        grid-template-columns: 1fr;
    }
    .stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-cards, .card-grid, .news-grid,
    .testimonial-grid, .review-stats-strip, .story-metrics,
    .gallery-collage, .reservation-grid, .reservation-grid.three,
    .premium-service-cards, .compact-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .experience-steps, .services-showcase, .experience-showcase,
    .fleet-showcase, .signature-cards, .experience-grid,
    .signature-grid, .story-grid {
        grid-template-columns: 1fr;
    }
    .section-single-visual img, .hero-image-card img { min-height: 300px; }
    .hero-floating-card { left: auto; right: 14px; bottom: 14px; }
    .contact-banner-inner { padding: 40px 32px; }
    .contact-stack { justify-content: flex-start; }
    .split { flex-direction: column; align-items: flex-start; }
    .header-cta { display: none; }
    .topbar-inner { flex-direction: column; height: auto; padding: 8px 0; gap: 4px; }
    .about-strip { padding: 68px 0; }
    .contact-banner { padding: 60px 0; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

    .contact-info-grid { grid-template-columns: 1fr; }
    .form-shell { grid-template-columns: 1fr; }
    .form-intro-card { position: static; }
    .content-card-grid { grid-template-columns: 1fr; }
    .vehicle-card-grid { grid-template-columns: repeat(2, 1fr); }
    .services-page-grid { grid-template-columns: repeat(2, 1fr); }
    .services-cta-banner { grid-template-columns: 1fr; padding: 40px 32px; }
}

/* ═══════════════════════════════════════════════════════
   25. MOBILE ≤ 640px
   ═══════════════════════════════════════════════════════ */
@media (max-width: 640px) {
    :root { --section-py: 56px; }

    .hero-section { padding: 64px 0 56px; }
    .stat-grid,
    .service-cards, .card-grid, .news-grid,
    .testimonial-grid, .review-stats-strip, .story-metrics,
    .experience-steps, .gallery-collage,
    .reservation-grid, .reservation-grid.three,
    .signature-cards, .premium-service-cards, .compact-card-grid {
        grid-template-columns: 1fr;
    }
    .contact-stack { flex-direction: column; align-items: flex-start; }
    .wysiwyg, .glass-card, .contact-card-panel, .contact-banner-inner { padding: 24px; }
    .about-strip { padding: 52px 0; }
    .contact-banner { padding: 48px 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-brand { grid-column: auto; }
    .site-footer { padding-top: 56px; }
    .floating-button { width: 50px; height: 50px; min-height: 50px; }
    .floating-icon { width: 30px; height: 30px; }
    .floating-icon svg { width: 17px; height: 17px; }

    .form-grid-two { grid-template-columns: 1fr; }
    .form-panel { padding: 24px 20px; }
    .form-intro-card { padding: 28px 22px; }
    .site-main { padding-bottom: 48px; }
    .vehicle-card-grid { grid-template-columns: 1fr; }
    .services-page-grid { grid-template-columns: 1fr; }
    .services-cta-banner { padding: 32px 22px; }
}

/* ═══════════════════════════════════════════════════════
   26. FORM NOTICES
   ═══════════════════════════════════════════════════════ */
.ct-form-notice {
    border-radius: var(--r-sm);
    padding: 16px 22px;
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 28px;
}
.ct-notice-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}
.ct-notice-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* ═══════════════════════════════════════════════════════
   27. REGION PAGES
   ═══════════════════════════════════════════════════════ */
.region-page-header {
    text-align: center;
}
.region-hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 28px;
}

.region-trust-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    overflow: hidden;
    margin: 40px 0;
}
.rtb-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 28px 20px;
    background: var(--bg);
    text-align: center;
}
.rtb-item strong {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    font-family: 'Outfit', sans-serif;
    line-height: 1;
}
.rtb-item span {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.region-section-header {
    text-align: center;
    margin-bottom: 36px;
}
.region-section-header h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--green-dark);
    margin: 8px 0 0;
}

.region-services-block {
    margin: 56px 0;
}

.region-airport-highlight {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: start;
    background: var(--green-dark);
    color: #fff;
    border-radius: var(--r-lg);
    padding: 56px 52px;
    margin: 56px 0;
}
.rah-content .eyebrow { color: var(--accent); }
.rah-content h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    margin: 10px 0 16px;
    color: #fff;
}
.rah-content p { color: rgba(255,255,255,0.82); margin: 0 0 20px; }
.region-airport-features {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.region-airport-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
}
.region-airport-features li::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}
.rah-distance {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
}
.rah-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 200px;
    justify-content: center;
    align-self: center;
}

.region-why-us {
    margin: 56px 0;
}
.region-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.rwg-item {
    background: var(--surface);
    border-radius: var(--r-md);
    padding: 28px 26px;
    border: 1px solid var(--border);
}
.rwg-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--green-dark);
    margin: 0 0 8px;
}
.rwg-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.region-faq {
    margin: 56px 0;
}
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}
.faq-detail {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    overflow: hidden;
}
.faq-summary {
    cursor: pointer;
    padding: 18px 22px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--green-dark);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary::after {
    content: '+';
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--accent);
    flex-shrink: 0;
    transition: transform 0.2s;
}
.faq-detail[open] .faq-summary::after {
    transform: rotate(45deg);
}
.faq-answer {
    padding: 0 22px 18px;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
}
.faq-answer p { margin: 0; }

@media (max-width: 900px) {
    .region-trust-bar { grid-template-columns: repeat(2, 1fr); }
    .region-airport-highlight { grid-template-columns: 1fr; padding: 40px 32px; }
    .rah-cta { flex-direction: row; flex-wrap: wrap; }
    .region-why-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .region-trust-bar { grid-template-columns: repeat(2, 1fr); }
    .region-hero-actions { flex-direction: column; }
    .region-airport-highlight { padding: 32px 22px; }
}
