/*
Theme Name: AZ Executive Transfer
Theme URI: https://azexecutive.co.uk
Author: AZ Executive Transfer
Author URI: https://azexecutive.co.uk
Description: Luxury dark-gold WordPress theme for AZ Executive Transfer chauffeur services.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: az-executive-transfer
Tags: luxury, dark, gold, chauffeur, transport
*/

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dim: rgba(201,168,76,0.15);
  --black: #050508;
  --dark: #0C0C12;
  --dark2: #12121A;
  --dark3: #1A1A26;
  --white: #F5F3EE;
  --white-dim: rgba(245,243,238,0.6);
  --white-faint: rgba(245,243,238,0.08);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* ─── CUSTOM CURSOR ─── */
#cursor {
  position: fixed; width: 10px; height: 10px;
  background: var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
}
#cursor-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.5); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform 0.18s ease, width 0.3s, height 0.3s;
}

/* ─── LOADER ─── */
#loader {
  position: fixed; inset: 0;
  background: var(--black); z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 24px;
  transition: opacity 0.8s, visibility 0.8s;
}
#loader.hide { opacity:0; visibility:hidden; }
.loader-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 300;
  letter-spacing: 0.3em; color: var(--white);
  opacity: 0; animation: loaderFadeIn 0.8s 0.3s forwards;
}
.loader-logo span { color: var(--gold); }
.loader-bar {
  width: 180px; height: 1px;
  background: var(--dark3); position: relative; overflow: hidden;
}
.loader-bar::after {
  content:''; position: absolute;
  left: -100%; top: 0; width: 100%; height: 100%;
  background: var(--gold);
  animation: loaderBar 1.8s 0.5s ease forwards;
}
@keyframes loaderFadeIn { to { opacity: 1; } }
@keyframes loaderBar { to { left: 0; } }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 5%;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.5s, padding 0.3s, backdrop-filter 0.5s;
}
nav.scrolled {
  background: rgba(5,5,8,0.92);
  backdrop-filter: blur(20px); padding: 14px 5%;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem; font-weight: 300;
  letter-spacing: 0.15em; color: var(--white);
  text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.nav-logo .az { color: var(--gold); font-weight: 600; }
.nav-logo .divider { width: 1px; height: 22px; background: rgba(201,168,76,0.4); }
.nav-links {
  display: flex; align-items: center; gap: 36px; list-style: none;
}
.nav-links a {
  color: var(--white-dim); text-decoration: none;
  font-size: 0.78rem; letter-spacing: 0.12em;
  text-transform: uppercase; transition: color 0.3s; position: relative;
}
.nav-links a::after {
  content:''; position: absolute;
  bottom: -4px; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: transparent; border: 1px solid var(--gold);
  color: var(--gold) !important; padding: 10px 24px; border-radius: 2px;
  font-size: 0.75rem !important; letter-spacing: 0.18em !important;
  text-transform: uppercase; cursor: none;
  transition: background 0.3s, color 0.3s !important; text-decoration: none;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--black) !important; }
.nav-cta::after { display: none !important; }

/* hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: none; z-index: 101; background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 1px; background: var(--white);
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); background: var(--gold); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); background: var(--gold); }
.mobile-menu {
  position: fixed; inset: 0; background: var(--black); z-index: 99;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 36px; transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.77,0,0.175,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 300; color: var(--white);
  text-decoration: none; letter-spacing: 0.08em; transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ─── HERO ─── */
#hero { height: 100vh; min-height: 700px; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.5s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide:nth-child(1) { background-image: linear-gradient(to bottom, rgba(5,5,8,0.25) 0%, rgba(5,5,8,0.6) 70%, var(--black) 100%), url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1800&q=80'); }
.hero-slide:nth-child(2) { background-image: linear-gradient(to bottom, rgba(5,5,8,0.25) 0%, rgba(5,5,8,0.6) 70%, var(--black) 100%), url('https://images.unsplash.com/photo-1563720223809-b0ec68ab5280?w=1800&q=80'); }
.hero-slide:nth-child(3) { background-image: linear-gradient(to bottom, rgba(5,5,8,0.25) 0%, rgba(5,5,8,0.6) 70%, var(--black) 100%), url('https://images.unsplash.com/photo-1568605117036-5fe5e7bab0b7?w=1800&q=80'); }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 20px; max-width: 900px; }
.hero-label {
  font-size: 0.72rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px; opacity: 0;
  animation: fadeUp 1s 1.8s forwards;
  display: flex; align-items: center; justify-content: center; gap: 16px;
}
.hero-label::before, .hero-label::after { content:''; width: 50px; height: 1px; background: var(--gold); opacity: 0.5; }
.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 6.5rem); font-weight: 300;
  line-height: 1.05; color: var(--white); margin-bottom: 20px;
  opacity: 0; animation: fadeUp 1s 2s forwards;
}
.hero-h1 em { color: var(--gold); font-style: italic; }
.hero-sub {
  font-size: clamp(0.9rem, 2vw, 1.05rem); color: var(--white-dim);
  letter-spacing: 0.08em; margin-bottom: 48px;
  opacity: 0; animation: fadeUp 1s 2.2s forwards;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; opacity: 0; animation: fadeUp 1s 2.4s forwards; }
.btn-gold {
  background: var(--gold); color: var(--black); border: none;
  padding: 16px 40px; font-family: 'Outfit', sans-serif;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; text-decoration: none; cursor: none;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  border-radius: 2px; display: inline-block;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(201,168,76,0.35); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 1px solid rgba(245,243,238,0.35); padding: 16px 40px;
  font-family: 'Outfit', sans-serif; font-size: 0.78rem; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none;
  cursor: none; transition: border-color 0.3s, color 0.3s, transform 0.3s;
  border-radius: 2px; display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.scroll-indicator {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fadeIn 1s 3s forwards; z-index: 2;
}
.scroll-indicator span { font-size: 0.65rem; letter-spacing: 0.25em; color: var(--white-dim); text-transform: uppercase; }
.scroll-mouse { width: 22px; height: 34px; border: 1px solid rgba(201,168,76,0.4); border-radius: 11px; position: relative; }
.scroll-mouse::after { content:''; position: absolute; width: 4px; height: 8px; background: var(--gold); border-radius: 2px; top: 5px; left: 50%; transform: translateX(-50%); animation: scrollBob 2s infinite; }
@keyframes scrollBob { 0%,100% { top: 5px; opacity: 1; } 60% { top: 16px; opacity: 0; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }

/* ─── STATS BAR ─── */
.stats-bar {
  background: var(--dark2);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 32px 5%;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center;
}
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 300; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.72rem; letter-spacing: 0.18em; color: var(--white-dim); text-transform: uppercase; margin-top: 6px; }

/* ─── SECTION COMMONS ─── */
section { padding: 100px 5%; }
.section-tag { font-size: 0.7rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.section-tag::before { content:''; width: 36px; height: 1px; background: var(--gold); }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 4vw, 3.6rem); font-weight: 300; line-height: 1.1; color: var(--white); margin-bottom: 16px; }
.section-title em { color: var(--gold); font-style: italic; }
.section-sub { font-size: 0.95rem; color: var(--white-dim); max-width: 520px; line-height: 1.8; }

/* reveal animations */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ─── SERVICES ─── */
#services { background: var(--dark); }
.services-grid { margin-top: 60px; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1px; background: rgba(201,168,76,0.12); }
.service-card { background: var(--dark); padding: 48px 36px; position: relative; overflow: hidden; transition: background 0.4s; cursor: none; }
.service-card::before { content:''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--gold-dim) 0%, transparent 60%); opacity: 0; transition: opacity 0.4s; }
.service-card:hover { background: var(--dark2); }
.service-card:hover::before { opacity: 1; }
.service-card:hover .service-icon { color: var(--gold); transform: scale(1.1); }
.service-icon { font-size: 2rem; margin-bottom: 20px; display: block; transition: color 0.3s, transform 0.3s; color: var(--white-dim); }
.service-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 400; margin-bottom: 12px; color: var(--white); }
.service-card p { font-size: 0.88rem; color: var(--white-dim); line-height: 1.75; }
.service-card .card-line { position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.5s; }
.service-card:hover .card-line { width: 100%; }

/* ─── FLEET ─── */
#fleet { background: var(--black); }
.fleet-wrapper { margin-top: 60px; position: relative; }
.fleet-slider { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 20px; }
.fleet-slider::-webkit-scrollbar { display: none; }
.fleet-card { flex: 0 0 340px; scroll-snap-align: start; background: var(--dark2); border: 1px solid rgba(201,168,76,0.1); border-radius: 3px; overflow: hidden; transition: border-color 0.4s, transform 0.4s; cursor: none; }
.fleet-card:hover { border-color: rgba(201,168,76,0.45); transform: translateY(-6px); }
.fleet-img { width: 100%; height: 210px; object-fit: cover; transition: transform 0.5s; display: block; }
.fleet-card:hover .fleet-img { transform: scale(1.04); }
.fleet-img-wrap { overflow: hidden; }
.fleet-info { padding: 28px 24px; }
.fleet-model { font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; font-weight: 400; color: var(--white); margin-bottom: 6px; }
.fleet-class { font-size: 0.7rem; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; margin-bottom: 20px; }
.fleet-specs { display: flex; gap: 20px; margin-bottom: 24px; }
.fleet-spec { display: flex; flex-direction: column; gap: 4px; }
.fleet-spec-val { font-size: 1.1rem; font-weight: 500; color: var(--white); }
.fleet-spec-label { font-size: 0.68rem; letter-spacing: 0.15em; color: var(--white-dim); text-transform: uppercase; }
.fleet-btn { display: block; width: 100%; background: transparent; border: 1px solid rgba(201,168,76,0.3); color: var(--gold); padding: 12px; font-family: 'Outfit', sans-serif; font-size: 0.73rem; letter-spacing: 0.18em; text-transform: uppercase; text-align: center; cursor: none; transition: background 0.3s, border-color 0.3s; text-decoration: none; }
.fleet-btn:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.fleet-controls { display: flex; gap: 12px; justify-content: flex-end; margin-top: 24px; }
.fleet-ctrl { width: 44px; height: 44px; border: 1px solid rgba(201,168,76,0.3); background: transparent; color: var(--gold); display: flex; align-items: center; justify-content: center; cursor: none; transition: background 0.3s, border-color 0.3s; border-radius: 2px; font-size: 1.1rem; }
.fleet-ctrl:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

/* ─── HOW IT WORKS ─── */
#how { background: var(--dark); }
.steps-wrap { margin-top: 64px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; }
.steps-wrap::before { content:''; position: absolute; top: 44px; left: calc(16.6% + 20px); right: calc(16.6% + 20px); height: 1px; background: linear-gradient(to right, var(--gold), rgba(201,168,76,0.3), var(--gold)); }
.step { text-align: center; padding: 0 24px; position: relative; }
.step-num { width: 88px; height: 88px; border: 1px solid rgba(201,168,76,0.35); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 28px; position: relative; background: var(--dark); transition: border-color 0.3s, background 0.3s; }
.step:hover .step-num { border-color: var(--gold); background: var(--gold-dim); }
.step-num span { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; color: var(--gold); }
.step-icon { position: absolute; top: -10px; right: -10px; font-size: 1.2rem; }
.step h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 400; color: var(--white); margin-bottom: 10px; }
.step p { font-size: 0.87rem; color: var(--white-dim); line-height: 1.75; }

/* ─── WHY CHOOSE US ─── */
#why { background: var(--black); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-img-col { position: relative; height: 600px; }
.why-img-main { width: 78%; height: 100%; object-fit: cover; display: block; border-radius: 2px; }
.why-img-accent { position: absolute; bottom: -24px; right: 0; width: 46%; height: 220px; object-fit: cover; border: 3px solid var(--black); border-radius: 2px; }
.why-badge { position: absolute; top: 36px; right: 0; background: var(--gold); color: var(--black); padding: 20px 24px; text-align: center; border-radius: 2px; }
.why-badge-num { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 300; line-height: 1; }
.why-badge-text { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; margin-top: 4px; }
.why-features { margin-top: 40px; display: flex; flex-direction: column; gap: 20px; }
.why-feature { display: flex; align-items: flex-start; gap: 18px; padding: 20px 22px; background: var(--dark2); border-left: 2px solid transparent; transition: border-color 0.3s, background 0.3s; cursor: none; }
.why-feature:hover { border-left-color: var(--gold); background: var(--dark3); }
.why-feature-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.why-feature h4 { font-size: 0.92rem; font-weight: 500; color: var(--white); margin-bottom: 4px; letter-spacing: 0.03em; }
.why-feature p { font-size: 0.82rem; color: var(--white-dim); line-height: 1.65; }

/* ─── TESTIMONIALS ─── */
#testimonials { background: var(--dark); text-align: center; }
.testi-slider { margin-top: 60px; position: relative; overflow: hidden; }
.testi-track { display: flex; transition: transform 0.7s cubic-bezier(0.77,0,0.175,1); }
.testi-card { flex: 0 0 100%; padding: 0 5%; }
.testi-inner { max-width: 760px; margin: 0 auto; background: var(--dark2); border: 1px solid rgba(201,168,76,0.12); padding: 52px 56px; border-radius: 3px; position: relative; }
.testi-inner::before { content: '\201C'; font-family: 'Cormorant Garamond', serif; font-size: 7rem; color: var(--gold); opacity: 0.2; position: absolute; top: -20px; left: 32px; line-height: 1; }
.testi-stars { display: flex; justify-content: center; gap: 5px; margin-bottom: 24px; }
.testi-stars span { color: var(--gold); font-size: 1rem; }
.testi-text { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 300; font-style: italic; color: var(--white); line-height: 1.7; margin-bottom: 28px; }
.testi-author { font-size: 0.78rem; letter-spacing: 0.15em; color: var(--gold); text-transform: uppercase; }
.testi-role { font-size: 0.75rem; color: var(--white-dim); margin-top: 3px; }
.testi-dots { display: flex; justify-content: center; gap: 10px; margin-top: 32px; }
.testi-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(201,168,76,0.25); cursor: none; border: none; transition: background 0.3s, width 0.3s; border-radius: 4px; }
.testi-dot.active { background: var(--gold); width: 28px; }

/* ─── BOOKING ─── */
#booking { background: var(--black); }
.booking-wrap { margin-top: 60px; display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.booking-info p { font-size: 0.92rem; color: var(--white-dim); line-height: 1.8; margin-bottom: 32px; }
.contact-links { display: flex; flex-direction: column; gap: 16px; }
.contact-link { display: flex; align-items: center; gap: 16px; color: var(--white-dim); text-decoration: none; font-size: 0.9rem; padding: 16px 20px; background: var(--dark2); border-left: 2px solid transparent; transition: border-color 0.3s, color 0.3s, background 0.3s; }
.contact-link:hover { color: var(--gold); border-left-color: var(--gold); background: var(--dark3); }
.contact-link-icon { font-size: 1.2rem; flex-shrink: 0; }
.booking-form { background: var(--dark2); border: 1px solid rgba(201,168,76,0.12); padding: 44px 40px; border-radius: 3px; }
.booking-form h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 400; color: var(--white); margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid rgba(201,168,76,0.15); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-group label { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.form-group input, .form-group select, .form-group textarea { background: var(--dark3); border: 1px solid rgba(201,168,76,0.15); color: var(--white); padding: 14px 16px; font-family: 'Outfit', sans-serif; font-size: 0.9rem; font-weight: 300; border-radius: 2px; outline: none; transition: border-color 0.3s; width: 100%; cursor: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: rgba(201,168,76,0.5); }
.form-group select option { background: var(--dark); }
.form-group textarea { resize: vertical; min-height: 80px; }
.submit-btn { width: 100%; background: var(--gold); color: var(--black); border: none; padding: 18px; font-family: 'Outfit', sans-serif; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; cursor: none; margin-top: 8px; border-radius: 2px; transition: background 0.3s, box-shadow 0.3s, transform 0.3s; position: relative; overflow: hidden; }
.submit-btn:hover { background: var(--gold-light); box-shadow: 0 0 35px rgba(201,168,76,0.5); transform: translateY(-2px); }

/* ─── FOOTER ─── */
footer { background: var(--black); border-top: 1px solid rgba(201,168,76,0.15); padding: 64px 5% 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 300; letter-spacing: 0.12em; color: var(--white); display: block; margin-bottom: 16px; }
.footer-brand .logo span { color: var(--gold); }
.footer-brand p { font-size: 0.85rem; color: var(--white-dim); line-height: 1.8; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 38px; height: 38px; border: 1px solid rgba(201,168,76,0.25); display: flex; align-items: center; justify-content: center; color: var(--white-dim); text-decoration: none; font-size: 0.85rem; border-radius: 2px; transition: border-color 0.3s, color 0.3s, background 0.3s; cursor: none; }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }
.footer-col h4 { font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--white-dim); text-decoration: none; font-size: 0.87rem; transition: color 0.3s; cursor: none; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.78rem; color: rgba(245,243,238,0.35); }
.footer-bottom span { color: var(--gold); }

/* ─── FLOATING BUTTONS ─── */
.float-btns { position: fixed; right: 24px; bottom: 24px; z-index: 200; display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.float-btn { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; text-decoration: none; color: var(--black); transition: transform 0.3s, box-shadow 0.3s; cursor: none; box-shadow: 0 4px 20px rgba(0,0,0,0.4); }
.float-btn:hover { transform: scale(1.12); }
.float-wa { background: #25D366; color: white; }
.float-chat { background: var(--gold); }

/* ─── GOLD LINE ─── */
.gold-line { width: 60px; height: 1px; background: var(--gold); margin: 20px 0; }

/* ─── PRICE ESTIMATOR ─── */
.estimator-section { background: var(--dark3); border: 1px solid rgba(201,168,76,0.15); border-radius: 3px; padding: 36px; margin-top: 48px; }
.estimator-section h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--white); margin-bottom: 20px; }
.estimator-row { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 12px; align-items: end; }
.est-result { background: var(--gold-dim); border: 1px solid rgba(201,168,76,0.3); padding: 12px 16px; border-radius: 2px; display: none; margin-top: 16px; }
.est-result.show { display: block; }
.est-result-price { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--gold); }
.est-result-note { font-size: 0.78rem; color: var(--white-dim); margin-top: 4px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  #why { grid-template-columns: 1fr; }
  .why-img-col { height: 360px; margin-bottom: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .booking-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .steps-wrap { grid-template-columns: 1fr; }
  .steps-wrap::before { display: none; }
  .step { margin-bottom: 40px; }
  section { padding: 70px 5%; }
  .form-row { grid-template-columns: 1fr; }
  .estimator-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  #cursor, #cursor-ring { display: none; }
  body { cursor: auto; }
  .btn-gold, .btn-outline, .fleet-btn, .submit-btn, .float-btn, .fleet-ctrl, .testi-dot, .hamburger, a, button, input, select, textarea { cursor: pointer; }
}
@media (max-width: 500px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .testi-inner { padding: 36px 24px; }
  .booking-form { padding: 28px 20px; }
}

/* ─── INNER PAGES ─── */
.az-page-content {
  min-height: 80vh;
  background: var(--black);
  padding-top: 120px;
}
.az-page-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 5% 100px;
}
.az-page-hero {
  margin-bottom: 48px;
}
.az-page-body {
  font-size: 0.97rem;
  color: var(--white-dim);
  line-height: 1.9;
}
.az-page-body h1,
.az-page-body h2,
.az-page-body h3,
.az-page-body h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  color: var(--white);
  margin: 36px 0 14px;
  line-height: 1.2;
}
.az-page-body h2 { font-size: 2rem; }
.az-page-body h3 { font-size: 1.5rem; }
.az-page-body h4 { font-size: 1.2rem; color: var(--gold); }
.az-page-body p { margin-bottom: 18px; }
.az-page-body a { color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(201,168,76,0.3); transition: border-color 0.3s; }
.az-page-body a:hover { border-color: var(--gold); }
.az-page-body ul,
.az-page-body ol {
  padding-left: 24px;
  margin-bottom: 18px;
}
.az-page-body li { margin-bottom: 8px; }
.az-page-body strong { color: var(--white); font-weight: 500; }
.az-page-body em { color: var(--gold); font-style: italic; }
.az-page-body img {
  max-width: 100%;
  border-radius: 3px;
  margin: 24px 0;
  border: 1px solid rgba(201,168,76,0.12);
}
.az-page-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.9rem;
}
.az-page-body table th {
  background: var(--dark2);
  color: var(--gold);
  padding: 12px 16px;
  text-align: left;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.az-page-body table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--white-dim);
}
.az-page-body blockquote {
  border-left: 2px solid var(--gold);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--dark2);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--white);
  border-radius: 0 3px 3px 0;
}

/* Elementor compatibility */
.elementor-section { width: 100%; }
.az-page-content .elementor { color: var(--white); }

/* ─── SERVICES 3-COL FIXED GRID ─── */
.services-grid-3 {
  grid-template-columns: repeat(3, 1fr) !important;
}
@media (max-width: 900px) {
  .services-grid-3 { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 560px) {
  .services-grid-3 { grid-template-columns: 1fr !important; }
}

/* ─── CONTACT LINK SVG ICONS ─── */
.contact-link-icon svg {
  color: var(--gold);
  opacity: 0.8;
  transition: opacity 0.3s;
  flex-shrink: 0;
}
.contact-link:hover .contact-link-icon svg {
  opacity: 1;
}

/* ─── DARK / LIGHT MODE TOGGLE BUTTON ─── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.mode-toggle {
  background: transparent;
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
  flex-shrink: 0;
}
.mode-toggle:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
}
.mode-icon { display: flex; align-items: center; justify-content: center; }

/* ─── LIGHT MODE OVERRIDES ─── */
body.light-mode {
  --black: #F8F6F1;
  --dark: #EDEAE3;
  --dark2: #E4E0D8;
  --dark3: #D8D3C8;
  --white: #1A1A1A;
  --white-dim: rgba(26,26,26,0.65);
  --white-faint: rgba(26,26,26,0.06);
  background: #F8F6F1;
  color: #1A1A1A;
}
body.light-mode nav.scrolled {
  background: rgba(248,246,241,0.95);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
body.light-mode .nav-logo,
body.light-mode .nav-links a { color: #1A1A1A; }
body.light-mode .nav-links a:hover { color: var(--gold); }
body.light-mode #loader { background: #F8F6F1; }
body.light-mode .loader-logo { color: #1A1A1A; }
body.light-mode .mobile-menu { background: #F8F6F1; }
body.light-mode .mobile-menu a { color: #1A1A1A; }
body.light-mode .service-card { background: #EDEAE3; }
body.light-mode .service-card:hover { background: #E4E0D8; }
body.light-mode .fleet-card { background: #E4E0D8; border-color: rgba(201,168,76,0.2); }
body.light-mode .testi-inner { background: #E4E0D8; }
body.light-mode .booking-form { background: #E4E0D8; }
body.light-mode .why-feature { background: #E4E0D8; }
body.light-mode .form-group input,
body.light-mode .form-group select,
body.light-mode .form-group textarea {
  background: #D8D3C8;
  color: #1A1A1A;
  border-color: rgba(201,168,76,0.25);
}
body.light-mode footer {
  background: #EDEAE3;
  border-top-color: rgba(201,168,76,0.2);
}
body.light-mode .footer-bottom { border-top-color: rgba(26,26,26,0.1); }
body.light-mode .contact-link { background: #E4E0D8; }
body.light-mode .contact-link:hover { background: #D8D3C8; }
body.light-mode .estimator-section { background: #D8D3C8; }
body.light-mode .step-num { background: #EDEAE3; }
body.light-mode .hamburger span { background: #1A1A1A; }

/* ─── WHATSAPP FLOAT BUTTON ─── */
.float-btns { position: fixed; right: 24px; bottom: 24px; z-index: 200; }
.float-btn.float-wa {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}
.float-btn.float-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}
