/* ==========================================================================
   AIR TIME LIMOUSINE - PREMIUM DESIGN SYSTEM
   ========================================================================== */

/* Font imports moved to HTML head for optimal performance */

:root {
  --color-bg-main: #0a0b0d;
  --color-bg-card: #121418;
  --color-bg-input: #1a1d24;
  --color-border: #262a33;
  --color-border-hover: #3b414f;
  
  --color-primary: #c5a880; /* Premium Champagne Gold */
  --color-primary-hover: #d4af37; /* Metallic Bright Gold */
  --color-primary-rgb: 197, 168, 128;
  
  --color-text-light: #ffffff;
  --color-text-muted: #b3b8c2;
  --color-text-dark: #121418;
  
  --color-success: #2ecc71;
  --color-danger: #e74c3c;
  --color-overlay: rgba(10, 11, 13, 0.85);

  --font-display: 'Cinzel', Georgia, serif;
  --font-body: 'Inter', sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-premium: 0 15px 35px rgba(0, 0, 0, 0.5), 0 5px 15px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 15px rgba(197, 168, 128, 0.2);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--color-bg-main);
  color: var(--color-text-light);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 0; /* Adjusted dynamically for mobile sticky bar */
}

/* Scrollbar Style */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-main);
}
::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition-smooth);
}
a:hover {
  color: var(--color-primary-hover);
}

ul {
  list-style: none;
}

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

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  line-height: 1.3;
}

.text-gold {
  color: var(--color-primary);
}

.section-subtitle {
  text-align: center;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--color-primary);
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: var(--color-primary);
}

p {
  color: var(--color-text-muted);
}

/* ==========================================================================
   LAYOUT CONTAINERS & UTILITIES
   ========================================================================== */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 6rem 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Flex Alignments */
.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ==========================================================================
   BUTTONS & LINKS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-transform: uppercase;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-text-dark);
  border: 1px solid var(--color-primary);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  color: #000;
  box-shadow: 0 0 20px rgba(197, 168, 128, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: #fff;
  border: 1px solid var(--color-border);
}

.btn-secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.8rem;
}

/* ==========================================================================
   STICKY HEADER & NAV
   ========================================================================== */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(10, 11, 13, 0.95);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
}

header.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 5px 25px rgba(0,0,0,0.8);
}

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

.logo a {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 2px;
  line-height: 1;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: var(--color-primary);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 4px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.9rem;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-primary);
  transition: var(--transition-smooth);
}

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

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

.nav-ctas {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.header-phone svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-primary);
  fill: none;
}

.header-phone:hover {
  color: var(--color-primary);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  stroke-width: 2;
  fill: none;
}

/* ==========================================================================
   HERO SECTION & BACKGROUND
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at center, #1b1e24 0%, var(--color-bg-main) 100%);
  padding-top: 120px;
  padding-bottom: 4rem;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10,11,13,0.95) 0%, rgba(10,11,13,0.7) 100%);
  z-index: 1;
}

.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
  opacity: 0.3;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-checklist {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-checklist-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: var(--color-text-light);
}

.hero-checklist-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-primary);
  stroke-width: 3;
  fill: none;
  flex-shrink: 0;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

/* ==========================================================================
   UNIVERSAL BOOKING FORM
   ========================================================================== */

.booking-card {
  background-color: rgba(18, 20, 24, 0.85);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: var(--shadow-premium);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 10;
}

.booking-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-hover));
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.booking-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.booking-card p {
  font-size: 0.85rem;
  text-align: center;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.2rem;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  background-color: var(--color-bg-input);
  border: 1px solid var(--color-border);
  color: #fff;
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-glow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

textarea.form-control {
  resize: none;
  height: 80px;
}

.btn-book-submit {
  width: 100%;
  margin-top: 1rem;
}

/* Autocomplete suggestions dropdown */
.autocomplete-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  box-shadow: var(--shadow-premium);
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
}

.autocomplete-suggestion {
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  cursor: pointer;
  color: var(--color-text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.autocomplete-suggestion:hover {
  background-color: var(--color-bg-input);
  color: #fff;
}

.autocomplete-suggestion-flag {
  font-size: 0.75rem;
  background-color: rgba(197, 168, 128, 0.15);
  color: var(--color-primary);
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: 600;
}

.autocomplete-suggestion-text {
  white-space: normal;
  word-break: break-word;
}

/* Inline/Middle booking section */
.middle-booking-section {
  background: linear-gradient(180deg, var(--color-bg-main) 0%, var(--color-bg-card) 100%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

/* ==========================================================================
   SERVICES & CARDS
   ========================================================================== */

.service-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

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

.service-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

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

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

.service-card-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, var(--color-bg-card) 100%);
}

.service-card-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.service-card-content p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-card-link {
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-card-link svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-primary);
  stroke-width: 2;
  fill: none;
  transition: var(--transition-smooth);
}

.service-card-link:hover svg {
  transform: translateX(5px);
}

/* ==========================================================================
   TRUST / TESTIMONIALS / BADGES
   ========================================================================== */

.trust-section {
  background-color: var(--color-bg-card);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.badges-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--color-border);
}

.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.badge-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(197, 168, 128, 0.1);
  border: 1px solid var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.badge-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--color-primary);
  stroke-width: 2;
  fill: none;
}

.badge-item h4 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.badge-item p {
  font-size: 0.8rem;
}

.google-rating-badge {
  background-color: var(--color-bg-main);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.google-logo {
  font-weight: 700;
  font-size: 1.3rem;
}

.google-rating-info h4 {
  font-size: 0.95rem;
}

.stars {
  display: flex;
  gap: 2px;
  margin-top: 3px;
}

.stars svg {
  width: 14px;
  height: 14px;
  fill: #f1c40f;
  stroke: none;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.review-card {
  background-color: var(--color-bg-main);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 2rem;
  position: relative;
}

.review-author {
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  margin-top: 1rem;
}

.review-date {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  opacity: 0.05;
}

.quote-icon svg {
  width: 60px;
  height: 60px;
  fill: #fff;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-question {
  padding: 1.5rem 2rem;
  font-size: 1.1rem;
  font-family: var(--font-display);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-primary);
  stroke-width: 2;
  fill: none;
  transition: var(--transition-smooth);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-smooth);
  padding: 0 2rem;
}

.faq-answer p {
  padding-bottom: 1.5rem;
  font-size: 0.95rem;
}

.faq-item.active {
  border-color: var(--color-primary);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* ==========================================================================
   AREAS WE SERVE (LOCATIONS)
   ========================================================================== */

.area-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.area-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.area-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
}

.area-card p {
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.area-card-link {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 600;
}

/* ==========================================================================
   SILO LAYOUT (DETAIL PAGES)
   ========================================================================== */

.detail-hero {
  position: relative;
  padding: 8rem 0 4rem;
  background: linear-gradient(180deg, rgba(18, 20, 24, 0.92) 0%, rgba(10, 11, 13, 0.97) 100%), url('/images/hero-background.webp') no-repeat center/cover;
  border-bottom: 1px solid var(--color-border);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  flex-wrap: wrap; /* Prevent breadcrumb overflow on mobile */
}

/* About Story & Value Cards */
.about-stats-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 3rem;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Area Details Service Cards */
.area-service-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 1.5rem;
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}


.breadcrumbs svg {
  width: 12px;
  height: 12px;
  stroke: var(--color-text-muted);
  fill: none;
}

.breadcrumbs a {
  color: var(--color-text-muted);
}

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

.breadcrumbs span.current {
  color: var(--color-primary);
}

.detail-hero-title {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 4rem;
}

.detail-content {
  font-size: 1.05rem;
}

.detail-content p {
  margin-bottom: 1.5rem;
}

.detail-features {
  margin: 2.5rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.detail-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.95rem;
}

.detail-feature-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-primary);
  stroke-width: 3;
  fill: none;
  flex-shrink: 0;
  margin-top: 4px;
}

.detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-widget {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 2rem;
}

.sidebar-widget h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0.5rem;
}

.sidebar-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.sidebar-link-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0.8rem;
  border-radius: 4px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  border: 1px solid transparent;
  transition: var(--transition-smooth);
}

.sidebar-link-item:hover, .sidebar-link-item.active {
  border-color: var(--color-primary);
  background-color: var(--color-bg-main);
  color: var(--color-primary);
}

.sidebar-link-item svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
}

.cta-widget {
  background: linear-gradient(135deg, rgba(197, 168, 128, 0.15) 0%, rgba(10,11,13,0.95) 100%);
  border: 1px solid var(--color-primary);
  text-align: center;
}

.cta-widget h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.cta-widget p {
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.cta-widget .phone-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   CONTACT PAGE & MAP
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-info-item {
  display: flex;
  gap: 1.2rem;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background-color: rgba(197, 168, 128, 0.1);
  border: 1px solid var(--color-primary);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-primary);
  stroke-width: 2;
  fill: none;
}

.contact-info-text h4 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.contact-info-text p {
  font-size: 0.9rem;
}

.map-container {
  border: 1px solid var(--color-border);
  border-radius: 6px;
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow-premium);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.8) invert(0.9) contrast(1.2); /* Luxury Dark Map Filter */
}

/* ==========================================================================
   THANK YOU & LEGAL PAGES
   ========================================================================== */

.simple-card-page {
  padding: 10rem 0 6rem;
  text-align: center;
}

.simple-card-box {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 4rem 2rem;
  box-shadow: var(--shadow-premium);
}

.success-icon-box {
  width: 80px;
  height: 80px;
  background-color: rgba(46, 204, 113, 0.1);
  border: 2px solid var(--color-success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.success-icon-box svg {
  width: 40px;
  height: 40px;
  stroke: var(--color-success);
  stroke-width: 3;
  fill: none;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 3rem;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
}

/* ==========================================================================
   404 ERROR PAGE
   ========================================================================== */

.error-404-box {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.error-title-huge {
  font-size: 8rem;
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1;
  color: var(--color-primary);
  text-shadow: 0 0 20px rgba(197, 168, 128, 0.3);
}

/* ==========================================================================
   STICKY MOBILE BOTTOM CTA BAR
   ========================================================================== */

.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: rgba(10, 11, 13, 0.98);
  border-top: 1px solid var(--color-primary);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  padding: 0.75rem 1rem;
  gap: 0.75rem;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
}

.mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 0.5rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
}

.mobile-cta-btn-call {
  background-color: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.mobile-cta-btn-book {
  background-color: var(--color-primary);
  color: var(--color-text-dark);
  border: 1px solid var(--color-primary);
}

.mobile-cta-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
}

/* Hide on desktop */
@media (min-width: 769px) {
  .mobile-sticky-cta {
    display: none !important;
  }
}

/* ==========================================================================
   FOOTER & COOKIES
   ========================================================================== */

footer {
  background-color: #060708;
  border-top: 1px solid var(--color-border);
  padding: 5rem 0 2rem;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col h3 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 1.5px;
  background-color: var(--color-primary);
}

.footer-col p {
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links-list a {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links-list a:hover {
  color: var(--color-primary);
  transform: translateX(3px);
}

.social-row {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.social-icon {
  width: 38px;
  height: 38px;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: var(--transition-smooth);
}

.social-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.social-icon:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-text-dark);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 2rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

/* GDPR Consent Banner */
.gdpr-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 400px;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-primary);
  border-radius: 6px;
  padding: 1.5rem;
  box-shadow: var(--shadow-premium);
  z-index: 10000;
  display: none;
  animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.gdpr-banner p {
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.gdpr-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
}

/* ==========================================================================
   ADMIN PANEL DASHBOARD
   ========================================================================== */

.admin-body {
  background-color: #0b0c10;
  padding-top: 100px;
}

.admin-header {
  border-bottom: 1px solid var(--color-border);
  padding: 1.5rem 0;
  background-color: var(--color-bg-card);
  margin-bottom: 2rem;
}

.admin-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-nav-tabs {
  display: flex;
  gap: 0.5rem;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 2rem;
  overflow-x: auto;
}

.admin-tab-btn {
  background: none;
  border: none;
  color: var(--color-text-muted);
  padding: 0.8rem 1.5rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.admin-tab-btn:hover {
  color: #fff;
}

.admin-tab-btn.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.admin-tab-content {
  display: none;
}

.admin-tab-content.active {
  display: block;
}

.admin-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.admin-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0.5rem;
}

/* Tables in Admin */
.admin-table-container {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.85rem;
}

.admin-table th, .admin-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.admin-table th {
  background-color: var(--color-bg-main);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.admin-table tr:hover {
  background-color: rgba(255,255,255,0.02);
}

.badge-status {
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-status-pending {
  background-color: rgba(241, 196, 15, 0.15);
  color: #f1c40f;
}

.admin-btn-row {
  display: flex;
  gap: 0.5rem;
}

.alert-cms {
  padding: 1rem 1.5rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.alert-cms-success {
  background-color: rgba(46, 204, 113, 0.15);
  border: 1px solid var(--color-success);
  color: var(--color-success);
}

.alert-cms-danger {
  background-color: rgba(231, 76, 60, 0.15);
  border: 1px solid var(--color-danger);
  color: var(--color-danger);
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 60px; /* Space for mobile sticky CTA bar */
  }

  .section-padding {
    padding: 4rem 0;
  }

  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--color-bg-main);
    flex-direction: column;
    padding: 3rem 2rem;
    align-items: flex-start;
    gap: 1.5rem;
    transform: translateX(-100%);
    visibility: hidden;
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0.3s, opacity 0.3s;
    border-top: 1px solid var(--color-border);
  }

  .nav-menu.open {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem 1.2rem;
  }

  .google-rating-badge .stars {
    justify-content: center;
  }

  .faq-question {
    padding: 1.2rem 1rem;
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 1rem;
  }

  .nav-toggle {
    display: block;
  }

  .nav-ctas {
    display: none; /* Embedded in side menu or mobile bottom bar instead */
  }

  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 3rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-content {
    text-align: center;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-checklist {
    align-items: center;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.8rem;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .booking-card {
    padding: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .badges-row {
    flex-direction: column;
    gap: 2.5rem;
    padding-bottom: 3rem;
    margin-bottom: 3rem;
  }

  .google-rating-badge {
    flex-direction: column;
    text-align: center;
    width: 100%;
    max-width: 290px;
    margin: 0 auto;
  }

  .detail-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 0 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-bottom div {
    flex-wrap: wrap;
    justify-content: center;
  }

  .detail-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-stats-card {
    padding: 1.5rem;
  }

  .area-service-card {
    flex-direction: column;
    text-align: center;
    align-items: stretch;
  }

  .area-service-card .btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .gdpr-banner {
    left: 15px;
    right: 15px;
    width: auto;
    max-width: none;
    bottom: 75px; /* Clear mobile sticky bottom bar */
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .legal-content {
    padding: 1.5rem;
  }
  .review-author {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .booking-card {
    padding: 1rem;
  }
}

