/* ==========================================================================
   FAST RENT A CAR - SIALKOT
   Premium Design System & Production Stylesheet
   ========================================================================== */

:root {
  /* Brand Color Palette */
  --bg-carbon: #0B0D10;
  --bg-surface: #15181D;
  --bg-surface-elevated: #1B2028;
  --bg-card: #181C23;
  --bg-card-hover: #202630;
  --bg-light: #F5F6F7;
  --bg-soft: #ECEFF2;

  --accent-red: #E32B2B;
  --accent-red-hover: #FF3E3E;
  --accent-red-glow: rgba(227, 43, 43, 0.35);
  --accent-red-subtle: rgba(227, 43, 43, 0.12);

  --accent-gold: #C8A96B;
  --accent-gold-glow: rgba(200, 169, 107, 0.3);
  --accent-gold-subtle: rgba(200, 169, 107, 0.12);

  --text-white: #FFFFFF;
  --text-primary: #F5F6F7;
  --text-secondary: #9AA0A6;
  --text-muted: #6B7280;
  --text-dark: #111827;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.15);
  --border-highlight: rgba(227, 43, 43, 0.4);

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-stats: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;

  /* Elevations & Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.7);
  --shadow-red: 0 8px 32px rgba(227, 43, 43, 0.35);
  --shadow-gold: 0 8px 32px rgba(200, 169, 107, 0.25);

  /* Layout & Transitions */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --container-max: 1280px;
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Light Theme Variables for Selected Sub-components */
.theme-light {
  --bg-page: #F5F6F7;
  --bg-card-light: #FFFFFF;
  --text-page-title: #0B0D10;
  --text-page-body: #4B5563;
  --border-light-box: #E5E7EB;
}

/* Base & Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-carbon);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

img, svg, picture, video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button, input, select, textarea {
  font: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-carbon);
}
::-webkit-scrollbar-thumb {
  background: #252A33;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-red);
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

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

.container-fluid {
  max-width: 1440px;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.8rem); font-weight: 700; }
h4 { font-size: 1.25rem; font-weight: 700; }
h5 { font-size: 1.1rem; font-weight: 600; }
h6 { font-size: 0.95rem; font-weight: 600; }

p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}

.text-gradient-red {
  background: linear-gradient(135deg, #FFFFFF 30%, #FF6B6B 75%, #E32B2B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
  background: linear-gradient(135deg, #FFFFFF 20%, #F5DEB3 60%, #C8A96B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-red { color: var(--accent-red); }
.text-gold { color: var(--accent-gold); }
.text-white { color: var(--text-white); }
.text-muted { color: var(--text-muted); }

/* Badges & Eyebrows */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-red-subtle);
  color: var(--accent-red);
  border: 1px solid rgba(227, 43, 43, 0.3);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.section-badge.gold {
  background: var(--accent-gold-subtle);
  color: var(--accent-gold);
  border-color: rgba(200, 169, 107, 0.35);
}

.section-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: currentColor;
  box-shadow: 0 0 8px currentColor;
}

/* Section Header Structure */
.section-header {
  margin-bottom: 48px;
}

.section-header.text-center {
  text-align: center;
}

.section-header .section-desc {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
  margin-top: 14px;
}

/* Section Padding */
.section-padding {
  padding-top: 96px;
  padding-bottom: 96px;
}

.section-padding-sm {
  padding-top: 64px;
  padding-bottom: 64px;
}

.section-dark {
  background-color: var(--bg-carbon);
}

.section-surface {
  background-color: var(--bg-surface);
}

/* Buttons & CTAs */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  cursor: pointer;
  line-height: 1.2;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #FF3838 0%, #E32B2B 100%);
  color: var(--text-white);
  box-shadow: var(--shadow-red);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #FF5252 0%, #C91818 100%);
  box-shadow: 0 10px 36px rgba(227, 43, 43, 0.55);
  transform: translateY(-2px);
  color: #FFFFFF;
}

.btn-secondary {
  background: var(--bg-surface-elevated);
  color: var(--text-white);
  border: 1px solid var(--border-subtle);
}
.btn-secondary:hover {
  background: #252B36;
  border-color: var(--border-medium);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
  background: #20BA5A;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
  transform: translateY(-2px);
  color: #FFFFFF;
}

.btn-gold {
  background: linear-gradient(135deg, #DFBE7E 0%, #C8A96B 100%);
  color: #0B0D10;
  font-weight: 800;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: linear-gradient(135deg, #ECD39E 0%, #B8995B 100%);
  box-shadow: 0 10px 36px rgba(200, 169, 107, 0.45);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid var(--border-medium);
  color: var(--text-white);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--accent-red);
  background: var(--accent-red-subtle);
  color: var(--accent-red);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-icon-circle {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
}

/* ==========================================================================
   TOP BAR COMPONENT
   ========================================================================== */
.topbar {
  background-color: #080A0D;
  border-bottom: 1px solid var(--border-subtle);
  padding: 8px 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar-item svg {
  color: var(--accent-red);
  flex-shrink: 0;
}

.topbar-link {
  color: var(--text-primary);
  font-weight: 600;
}
.topbar-link:hover {
  color: var(--accent-red);
}

.topbar-badge {
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.3);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
}

/* ==========================================================================
   NAVBAR COMPONENT
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all var(--transition-smooth);
}

.navbar {
  background: rgba(11, 13, 16, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 16px 0;
  transition: all var(--transition-smooth);
}

.site-header.scrolled .navbar {
  padding: 10px 0;
  background: rgba(11, 13, 16, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  border-bottom-color: rgba(227, 43, 43, 0.2);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.brand-logo img {
  height: 48px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-red);
  border-radius: 2px;
  transition: width var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-white);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-subtle);
  color: var(--text-white);
  padding: 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 360px;
  height: 100vh;
  background: var(--bg-surface);
  border-left: 1px solid var(--border-subtle);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
  z-index: 2000;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right var(--transition-smooth);
  overflow-y: auto;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}

.drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.drawer-close {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.drawer-nav-link {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.drawer-nav-link.active, .drawer-nav-link:hover {
  color: var(--accent-red);
}

.drawer-footer {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  background: radial-gradient(circle at 75% 30%, rgba(227, 43, 43, 0.15) 0%, rgba(11, 13, 16, 0.98) 65%);
  padding: 80px 0 100px;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}

.hero-bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, #000 70%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, #000 70%, transparent 100%);
  pointer-events: none;
}

.hero-glow-sphere {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 43, 43, 0.25) 0%, transparent 70%);
  top: 10%;
  right: -5%;
  filter: blur(60px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 680px;
}

.hero-headline {
  margin-bottom: 20px;
  line-height: 1.12;
}

.hero-subhead {
  font-size: 1.15rem;
  line-height: 1.65;
  color: #C0C5CE;
  margin-bottom: 32px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 36px;
}

.hero-trust-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.hero-trust-item .rating-stars {
  color: #FFB800;
  display: inline-flex;
  gap: 2px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-car-wrapper {
  position: relative;
  width: 100%;
}

.hero-car-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform var(--transition-smooth);
}

.hero-floating-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: rgba(21, 24, 29, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-medium);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  animation: floatCard 4s ease-in-out infinite alternate;
}

@keyframes floatCard {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

.hero-floating-card .card-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-red-subtle);
  border: 1px solid rgba(227, 43, 43, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-red);
}

.hero-floating-card .card-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--text-white);
}

.hero-floating-card .card-text span {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   QUICK ENQUIRY STRIP COMPONENT
   ========================================================================== */
.booking-strip-wrap {
  position: relative;
  z-index: 10;
  margin-top: -48px;
  margin-bottom: 48px;
}

.booking-strip-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.booking-form-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 16px;
  align-items: end;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-group label svg {
  color: var(--accent-red);
  font-size: 0.9rem;
}

.form-control {
  width: 100%;
  background: #0D0F13;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text-white);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-red);
  box-shadow: 0 0 0 3px var(--accent-red-subtle);
}

.form-control::placeholder {
  color: #555E6C;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239AA0A6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
}

/* ==========================================================================
   SIGNATURE GSAP CIRCULAR STATS / TRUST RINGS SECTION
   ========================================================================== */
.trust-circles-section {
  background: linear-gradient(180deg, var(--bg-carbon) 0%, var(--bg-surface) 50%, var(--bg-carbon) 100%);
  padding: 80px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}

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

.trust-circle-card {
  background: rgba(21, 24, 29, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: all var(--transition-smooth);
}

.trust-circle-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-highlight);
  box-shadow: var(--shadow-md);
}

.circle-svg-wrapper {
  position: relative;
  width: 140px;
  height: 140px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.circle-bg-track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 7;
}

.circle-bar-fill {
  fill: none;
  stroke: var(--accent-red);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: 377;
  stroke-dashoffset: 377;
  filter: drop-shadow(0 0 6px rgba(227, 43, 43, 0.6));
  transition: stroke-dashoffset 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.circle-svg-wrapper.gold .circle-bar-fill {
  stroke: var(--accent-gold);
  filter: drop-shadow(0 0 6px rgba(200, 169, 107, 0.6));
}

.circle-inner-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.circle-number {
  font-family: var(--font-stats);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
}

.circle-suffix {
  font-size: 1.2rem;
  color: var(--accent-red);
  font-weight: 800;
}

.circle-icon-inner {
  margin-top: 4px;
  color: var(--text-secondary);
}

.circle-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 6px;
}

.circle-subtitle {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   FLEET SECTION & VEHICLE CARDS
   ========================================================================== */
.fleet-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btn {
  background: var(--bg-surface);
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--accent-red);
  color: var(--text-white);
  border-color: var(--accent-red);
  box-shadow: 0 4px 16px rgba(227, 43, 43, 0.35);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 28px;
}

.vehicle-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
  position: relative;
}

.vehicle-card:hover {
  transform: translateY(-8px);
  border-color: rgba(227, 43, 43, 0.4);
  box-shadow: var(--shadow-lg);
}

.vehicle-card-image-wrap {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
  background: #090B0E;
}

.vehicle-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.vehicle-card:hover .vehicle-card-image {
  transform: scale(1.06);
}

.vehicle-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(11, 13, 16, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-medium);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.vehicle-card-badge.tag {
  left: auto;
  right: 14px;
  background: var(--accent-red);
  border-color: var(--accent-red);
}

.vehicle-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.vehicle-category {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-red);
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.vehicle-title {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.vehicle-specs-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
  padding: 14px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.spec-item svg {
  color: var(--accent-red);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.driver-included-pill {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.25);
  color: #25D366;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
}

.vehicle-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.rate-badge {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-white);
}

/* ==========================================================================
   SERVICES SECTION & CARDS
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-highlight);
  box-shadow: var(--shadow-md);
}

.service-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--accent-red-subtle);
  border: 1px solid rgba(227, 43, 43, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-red);
  margin-bottom: 22px;
  transition: all var(--transition-fast);
}

.service-card:hover .service-icon-box {
  background: var(--accent-red);
  color: var(--text-white);
  box-shadow: 0 8px 24px rgba(227, 43, 43, 0.4);
}

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

.service-summary {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-highlights {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: #B5BAC1;
}

.service-highlight-item svg {
  color: var(--accent-red);
  flex-shrink: 0;
  margin-top: 3px;
}

.service-card-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

/* ==========================================================================
   AIRPORT TRANSFER & WEDDING CAR FEATURE BANNERS
   ========================================================================== */
.feature-banner-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  box-shadow: var(--shadow-lg);
}

.feature-banner-box.reverse {
  direction: rtl;
}
.feature-banner-box.reverse > * {
  direction: ltr;
}

.feature-banner-content {
  padding: 60px 48px;
}

.feature-banner-media {
  height: 100%;
  min-height: 400px;
  position: relative;
}

.feature-banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.airport-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0 32px;
}

.airport-mini-card {
  background: #0F1216;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
}

.airport-mini-card h5 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.airport-mini-card span {
  font-size: 0.8rem;
  color: var(--accent-red);
  font-weight: 600;
}

/* Wedding Luxury Theme */
.wedding-section-box {
  background: radial-gradient(circle at center, #1B1812 0%, #0D0C0A 100%);
  border: 1px solid rgba(200, 169, 107, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
}

/* ==========================================================================
   WITH DRIVER / WHY CHOOSE US
   ========================================================================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: all var(--transition-smooth);
}

.benefit-card:hover {
  border-color: rgba(227, 43, 43, 0.4);
  transform: translateY(-6px);
}

.benefit-number {
  font-family: var(--font-stats);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
  margin-bottom: 12px;
}

.benefit-card:hover .benefit-number {
  color: rgba(227, 43, 43, 0.35);
}

/* ==========================================================================
   GOOGLE REVIEWS SECTION
   ========================================================================== */
.reviews-summary-badge {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
  box-shadow: var(--shadow-md);
}

.reviews-summary-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.google-g-logo {
  width: 48px;
  height: 48px;
}

.rating-big {
  font-family: var(--font-stats);
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--text-white);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 28px;
}

.review-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
}

.review-card:hover {
  border-color: rgba(227, 43, 43, 0.3);
  transform: translateY(-4px);
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-red);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-author h5 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.review-author span {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.review-stars {
  color: #FFB800;
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #C5CBD4;
  margin-bottom: 16px;
  font-style: italic;
}

.review-service-tag {
  font-size: 0.78rem;
  color: var(--accent-red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: auto;
}

/* ==========================================================================
   GALLERY MASONRY & CUSTOM LIGHTBOX
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #090B0E;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-smooth);
}

.gallery-item:hover {
  transform: scale(1.02);
  border-color: var(--accent-red);
  box-shadow: var(--shadow-md);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(11, 13, 16, 0.95) 0%, rgba(11, 13, 16, 0.2) 60%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h5 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.gallery-overlay span {
  font-size: 0.8rem;
  color: var(--accent-red);
  font-weight: 700;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(12px);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-container {
  max-width: 1000px;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img-wrapper {
  max-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
}

.lightbox-caption {
  margin-top: 16px;
  text-align: center;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: var(--accent-red);
  border-color: var(--accent-red);
}

.lightbox-close {
  top: -60px;
  right: 0;
}

.lightbox-prev {
  left: -70px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: -70px;
  top: 50%;
  transform: translateY(-50%);
}

/* ==========================================================================
   CONTACT PAGE & MAP EMBED
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-info-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}

.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 32px 0;
}

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

.contact-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-red-subtle);
  border: 1px solid rgba(227, 43, 43, 0.3);
  color: var(--accent-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-form-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.contact-form-grid .full-width {
  grid-column: span 2;
}

.map-embed-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  height: 420px;
  margin-top: 48px;
}

.map-embed-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================================
   FLOATING ACTIONS (DESKTOP & MOBILE)
   ========================================================================== */
.floating-desktop-actions {
  position: fixed;
  right: 24px;
  bottom: 32px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-action-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-bounce);
  position: relative;
}

.floating-action-btn:hover {
  transform: scale(1.12);
}

.floating-action-btn.whatsapp {
  background: #25D366;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.floating-action-btn.call {
  background: var(--accent-red);
  box-shadow: 0 8px 24px rgba(227, 43, 43, 0.4);
}

.floating-action-btn.scroll-top {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-medium);
  opacity: 0;
  pointer-events: none;
}

.floating-action-btn.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.floating-action-btn .btn-tooltip {
  position: absolute;
  right: 68px;
  background: #0B0D10;
  color: #FFFFFF;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
  border: 1px solid var(--border-subtle);
}

.floating-action-btn:hover .btn-tooltip {
  opacity: 1;
}

/* Mobile Sticky Bottom Bar */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(11, 13, 16, 0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-subtle);
  padding: 10px 16px;
  z-index: 1500;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.6);
}

.mobile-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 10px;
}

.mobile-bottom-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: #FFFFFF;
  text-align: center;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: #07080A;
  border-top: 1px solid var(--border-subtle);
  padding-top: 80px;
  padding-bottom: 40px;
}

.footer-cta-card {
  background: linear-gradient(135deg, #1C2028 0%, #15181D 100%);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 48px;
  margin-bottom: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  box-shadow: var(--shadow-lg);
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand p {
  margin-top: 16px;
  margin-bottom: 24px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.footer-col-title {
  font-size: 1.15rem;
  margin-bottom: 20px;
  color: var(--text-white);
  position: relative;
  padding-bottom: 10px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--accent-red);
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list a {
  color: var(--text-secondary);
  font-size: 0.92rem;
  transition: all var(--transition-fast);
}

.footer-links-list a:hover {
  color: var(--text-white);
  transform: translateX(4px);
}

.footer-social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-icon-btn:hover {
  background: var(--accent-red);
  border-color: var(--accent-red);
  transform: translateY(-3px);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   PAGE HERO / SUBPAGE HEADER
   ========================================================================== */
.page-hero {
  background: radial-gradient(circle at 80% 20%, rgba(227, 43, 43, 0.12) 0%, #0B0D10 70%);
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--border-subtle);
  text-align: center;
}

.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.breadcrumbs a:hover {
  color: var(--accent-red);
}

.breadcrumb-separator {
  color: var(--text-muted);
}

/* ==========================================================================
   RESPONSIVE DESIGN SYSTEM
   ========================================================================== */
@media (max-width: 1200px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }
  .hero-content {
    margin: 0 auto;
  }
  .hero-cta-group, .hero-trust-strip {
    justify-content: center;
  }
  .booking-form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .booking-form-grid .btn-submit-wrap {
    grid-column: span 2;
  }
  .footer-main-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}

@media (max-width: 992px) {
  .nav-links, .nav-actions .btn {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .trust-circles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-banner-box {
    grid-template-columns: 1fr;
  }
  .feature-banner-media {
    min-height: 300px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .airport-cards-grid {
    grid-template-columns: 1fr;
  }
  .floating-desktop-actions {
    display: none;
  }
  .mobile-bottom-bar {
    display: block;
  }
  body {
    padding-bottom: 60px;
  }
}

@media (max-width: 768px) {
  .topbar {
    display: none;
  }
  .section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .booking-form-grid {
    grid-template-columns: 1fr;
  }
  .booking-form-grid .btn-submit-wrap {
    grid-column: span 1;
  }
  .fleet-grid, .services-grid, .reviews-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-grid .full-width {
    grid-column: span 1;
  }
  .footer-main-grid {
    grid-template-columns: 1fr;
  }
  .footer-cta-card {
    padding: 32px 24px;
    text-align: center;
    justify-content: center;
  }
  .reviews-summary-badge {
    padding: 24px;
    text-align: center;
    justify-content: center;
  }
  .reviews-summary-left {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .trust-circles-grid {
    grid-template-columns: 1fr;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .circle-svg-wrapper {
    width: 120px;
    height: 120px;
  }
  .circle-number {
    font-size: 1.5rem;
  }
  .hero-floating-card {
    display: none;
  }
  .mobile-bottom-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mobile-bottom-grid .btn-quote {
    display: none;
  }
}

/* Reduced Motion Compliance */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
