/* 
 * Blue Label Limousine - Premium Redesign Styling System
 * Typography: Playfair Display & Outfit (via Google Fonts)
 * Colors: Deep Sapphire Slate, Champagne Gold, and Platinum
 */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* --- CSS Variables & Tokens --- */
:root {
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', sans-serif;

  /* Color Palette */
  --color-bg-deep: #060b13;       /* Dark slate blue background */
  --color-bg-card: #0d1520;       /* Slightly lighter card background */
  --color-bg-glass: rgba(13, 21, 32, 0.75);
  --color-bg-light: #f8f9fa;      /* Clean light background for light sub-sections */
  
  --color-gold: #c5a880;          /* Champagne gold main */
  --color-gold-bright: #dfb74f;   /* Bright gold for hover/accents */
  --color-gold-glow: rgba(197, 168, 128, 0.3);
  
  --color-text-white: #ffffff;
  --color-text-platinum: #f3f4f6;
  --color-text-gray: #9ca3af;
  --color-text-dark: #111827;
  --color-text-muted: #6b7280;

  --color-red: #ef4444;           /* Alert red */

  /* Borders & Shadows */
  --border-gold: 1px solid var(--color-gold);
  --border-glass: 1px solid rgba(255, 255, 255, 0.08);
  --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.5);
  --shadow-gold-glow: 0 0 15px var(--color-gold-glow);
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* --- Core Resets --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-deep);
  color: var(--color-text-platinum);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text-white);
  font-weight: 600;
  letter-spacing: 0.02em;
}

p {
  color: var(--color-text-gray);
  font-size: 1rem;
}

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

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

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-deep);
}
::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold-bright);
}

/* --- Typography Utilities --- */
.text-gold { color: var(--color-gold); }
.text-italic { font-style: italic; }
.text-center { text-align: center; }
.text-uppercase { text-transform: uppercase; letter-spacing: 0.1em; }
.text-sm { font-size: 0.875rem; }

/* --- Global Components --- */

/* Section Layouts */
.section {
  padding: 80px 0;
  position: relative;
}
.section-dark {
  background-color: var(--color-bg-deep);
}
.section-card-bg {
  background-color: var(--color-bg-card);
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}
.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: var(--color-gold);
}
.section-header p {
  max-width: 600px;
  margin: 0 auto;
}

/* Custom Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--color-gold);
  color: var(--color-bg-deep);
  border: 1px solid var(--color-gold);
  box-shadow: var(--shadow-gold-glow);
}
.btn-primary:hover {
  background-color: var(--color-gold-bright);
  border-color: var(--color-gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(223, 183, 79, 0.4);
}

.btn-secondary {
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
}
.btn-secondary:hover {
  background-color: var(--color-gold);
  color: var(--color-bg-deep);
  transform: translateY(-2px);
}

.btn-outline-white {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-text-white);
}
.btn-outline-white:hover {
  border-color: var(--color-text-white);
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

/* Glassmorphism Card Base */
.glass-card {
  background: var(--color-bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: var(--border-glass);
  border-radius: 4px;
  padding: 30px;
  box-shadow: var(--shadow-premium);
}

/* --- Header & Navigation --- */
.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-wrapper.scrolled {
  background-color: rgba(6, 11, 19, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: var(--shadow-gold-glow);
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-text-white);
  line-height: 1.1;
}
.logo-subtitle {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 25px;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-platinum);
  padding: 5px 0;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--color-gold);
  transition: var(--transition-fast);
}
.nav-links a:hover {
  color: var(--color-gold);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-links a.active {
  color: var(--color-gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.phone-cta {
  display: flex;
  align-items: center;
  gap: 8px;
}
.phone-cta i {
  color: var(--color-gold);
  font-size: 1.1rem;
}
.phone-cta span {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-text-white);
}

/* Burger Menu Toggle */
.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  cursor: pointer;
  z-index: 1001;
}
.burger-menu span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-text-white);
  transition: var(--transition-fast);
}

/* --- Hero Section & Lead Form --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(6, 11, 19, 0.9) 30%, rgba(6, 11, 19, 0.5) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-text h1 {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-text h1 span {
  display: block;
  font-size: 1.5rem;
  font-family: var(--font-body);
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-bottom: 10px;
}
.hero-text p {
  font-size: 1.15rem;
  margin-bottom: 30px;
  max-width: 550px;
}

.hero-badges {
  display: flex;
  gap: 20px;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 8px 15px;
  border-radius: 4px;
  border: var(--border-glass);
}
.hero-badge i {
  color: var(--color-gold);
}

/* Multi-Step Hero Form */
.booking-widget-header {
  margin-bottom: 20px;
  text-align: center;
}
.booking-widget-header h3 {
  font-size: 1.4rem;
  margin-bottom: 5px;
}
.booking-widget-header p {
  font-size: 0.8rem;
}

.form-group {
  margin-bottom: 15px;
  position: relative;
}
.form-group label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-gold);
  margin-bottom: 6px;
}
.form-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.form-input-wrapper i {
  position: absolute;
  left: 12px;
  color: var(--color-gold);
  font-size: 0.95rem;
}
.form-control {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  padding: 10px 12px 10px 38px;
  font-size: 0.9rem;
  color: var(--color-text-white);
  transition: var(--transition-fast);
}
.form-control:focus {
  border-color: var(--color-gold);
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 10px rgba(197, 168, 128, 0.15);
}
select.form-control {
  appearance: none;
  cursor: pointer;
}
select.form-control option {
  background-color: var(--color-bg-deep);
  color: var(--color-text-white);
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--color-text-gray);
  margin-top: 15px;
  cursor: pointer;
}
.form-checkbox input {
  margin-top: 3px;
  accent-color: var(--color-gold);
}

/* --- Trust Bar / Badges Section --- */
.trust-bar {
  background-color: var(--color-bg-card);
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.trust-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-icon {
  font-size: 2rem;
  color: var(--color-gold);
}
.trust-text h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.trust-text p {
  font-size: 0.75rem;
  color: var(--color-text-gray);
}

/* --- About Section --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: center;
}
.about-image {
  position: relative;
}
.about-image::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-gold);
  z-index: 0;
  border-radius: 4px;
}
.about-image img {
  position: relative;
  z-index: 1;
  border-radius: 4px;
  box-shadow: var(--shadow-premium);
  object-fit: cover;
  height: 400px;
  width: 100%;
}
.about-badge {
  position: absolute;
  bottom: 20px;
  right: -20px;
  background-color: var(--color-gold);
  color: var(--color-bg-deep);
  padding: 15px 25px;
  z-index: 2;
  border-radius: 2px;
  box-shadow: var(--shadow-premium);
  text-align: center;
}
.about-badge span {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
.about-badge label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.about-text h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.about-text p {
  margin-bottom: 15px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 25px 0;
}
.about-feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}
.about-feat-item i {
  color: var(--color-gold);
}

/* --- Fleet Page & Grid --- */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.fleet-card {
  background-color: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-premium);
}
.fleet-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}
.fleet-img-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.fleet-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}
.fleet-card:hover .fleet-img-wrapper img {
  transform: scale(1.08);
}
.fleet-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--color-gold);
  color: var(--color-bg-deep);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 2px;
  text-transform: uppercase;
}
.fleet-info {
  padding: 25px;
}
.fleet-info h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}
.fleet-specs {
  display: flex;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.fleet-spec-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--color-text-gray);
}
.fleet-spec-item i {
  color: var(--color-gold);
}
.fleet-pricing {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fleet-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-text-white);
  font-weight: 600;
}
.fleet-price span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--color-text-gray);
}

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.service-card {
  background-color: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  padding: 35px;
  transition: var(--transition-smooth);
  position: relative;
  z-index: 1;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(197, 168, 128, 0.08) 0%, rgba(197, 168, 128, 0) 100%);
  z-index: -1;
  opacity: 0;
  transition: var(--transition-smooth);
}
.service-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-5px);
}
.service-card:hover::before {
  opacity: 1;
}
.service-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(197, 168, 128, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-gold);
  margin-bottom: 25px;
  transition: var(--transition-smooth);
}
.service-card:hover .service-icon {
  background-color: var(--color-gold);
  color: var(--color-bg-deep);
  box-shadow: var(--shadow-gold-glow);
}
.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.service-card p {
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-gold);
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.service-link i {
  transition: var(--transition-fast);
}
.service-card:hover .service-link i {
  transform: translateX(4px);
}

/* --- Steps Section --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.step-card {
  text-align: center;
  position: relative;
}
.step-num {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(197, 168, 128, 0.12);
  margin-bottom: -15px;
  transition: var(--transition-smooth);
}
.step-card:hover .step-num {
  color: var(--color-gold);
  transform: translateY(-5px);
}
.step-title {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.step-desc {
  font-size: 0.85rem;
  max-width: 200px;
  margin: 0 auto;
}

/* --- Testimonials Section --- */
.testimonial-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.testimonial-slider {
  overflow: hidden;
  position: relative;
}
.testimonial-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.testimonial-slide {
  min-width: 100%;
  padding: 20px;
  text-align: center;
}
.quote-icon {
  font-size: 2.5rem;
  color: var(--color-gold-glow);
  margin-bottom: 20px;
}
.testimonial-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-text-white);
  line-height: 1.6;
  margin-bottom: 25px;
  font-style: italic;
}
.testimonial-author {
  font-family: var(--font-body);
}
.author-name {
  display: block;
  font-weight: 600;
  color: var(--color-gold);
}
.author-location {
  font-size: 0.8rem;
  color: var(--color-text-gray);
}
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}
.dot {
  width: 8px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-fast);
}
.dot.active {
  background-color: var(--color-gold);
  width: 24px;
  border-radius: 4px;
}

/* --- FAQs Layout --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 10px 0;
}
.faq-question h3 {
  font-size: 1.15rem;
  font-family: var(--font-body);
  font-weight: 500;
  transition: var(--transition-fast);
}
.faq-question i {
  color: var(--color-gold);
  transition: var(--transition-fast);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
}
.faq-answer p {
  padding: 15px 0 10px 0;
  font-size: 0.95rem;
  line-height: 1.6;
}
.faq-item.active .faq-question h3 {
  color: var(--color-gold);
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}
.faq-item.active .faq-answer {
  max-height: 1000px;
  transition: max-height 0.35s cubic-bezier(1, 0, 1, 0);
}

/* --- Contact Us Grid --- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
}
.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contact-item {
  display: flex;
  gap: 15px;
}
.contact-item i {
  font-size: 1.3rem;
  color: var(--color-gold);
  margin-top: 5px;
}
.contact-item h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
}
.contact-item p {
  font-size: 0.9rem;
}
.licensing-box {
  background-color: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  padding: 25px;
  margin-top: 20px;
}
.licensing-box h4 {
  margin-bottom: 12px;
  color: var(--color-gold);
}
.licensing-box ul li {
  font-size: 0.85rem;
  color: var(--color-text-gray);
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}

.map-placeholder {
  height: 250px;
  background-color: #0e1622;
  border-radius: 4px;
  border: var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* --- Sub-pages Hero Banner --- */
.sub-hero {
  height: 300px;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding-top: 80px;
}
.sub-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 11, 19, 0.85);
  z-index: 1;
}
.sub-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.sub-hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}
.breadcrumbs {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
}
.breadcrumbs a {
  color: var(--color-text-gray);
}
.breadcrumbs a:hover {
  color: var(--color-gold);
}

/* --- CTA Bottom Banner --- */
.cta-banner {
  background: linear-gradient(135deg, #0d1520 0%, #060b13 100%);
  border-top: 1px solid var(--color-gold);
  border-bottom: 1px solid var(--color-gold);
  text-align: center;
  padding: 60px 0;
}
.cta-banner h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}
.cta-banner p {
  max-width: 600px;
  margin: 0 auto 30px auto;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* --- Footer --- */
.footer {
  background-color: #03060a;
  padding: 80px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-logo {
  margin-bottom: 20px;
}
.footer-about p {
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.social-links {
  display: flex;
  gap: 15px;
}
.social-links a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--color-text-gray);
}
.social-links a:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold-glow);
}
.footer-column h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}
.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2.5px;
  background-color: var(--color-gold);
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  font-size: 0.9rem;
  color: var(--color-text-gray);
}
.footer-links a:hover {
  color: var(--color-gold);
  padding-left: 5px;
}
.footer-contact li {
  display: flex;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--color-text-gray);
  margin-bottom: 15px;
}
.footer-contact i {
  color: var(--color-gold);
  margin-top: 3px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--color-text-gray);
}
.footer-puc {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

/* --- Mobile Bottom Action Bar (High Conversion) --- */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: var(--color-bg-card);
  border-top: 2px solid var(--color-gold);
  z-index: 999;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.5);
  grid-template-columns: 1fr 1fr;
}
.mobile-sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-white);
  height: 100%;
  transition: var(--transition-fast);
}
.mobile-sticky-btn.call-btn {
  background-color: var(--color-bg-deep);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.mobile-sticky-btn.call-btn i {
  color: var(--color-gold);
}
.mobile-sticky-btn.book-btn {
  background-color: var(--color-gold);
  color: var(--color-bg-deep);
}
.mobile-sticky-btn.book-btn:active {
  background-color: var(--color-gold-bright);
}

/* --- Responsive Breakpoints --- */

@media (max-width: 1200px) {
  .hero-text h1 {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 50px;
    padding-top: 50px;
    text-align: center;
  }
  .hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-text p {
    margin: 0 auto 30px auto;
  }
  .hero-badges {
    justify-content: center;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image {
    max-width: 500px;
    margin: 0 auto;
  }
  .about-image::before {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .section {
    padding: 60px 0;
  }
  .nav-links, .nav-actions {
    display: none; /* Hidden on mobile, handled by overlay */
  }
  .burger-menu {
    display: flex;
  }
  
  /* Mobile Navigation Overlay */
  .nav-links.mobile-active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-bg-deep);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    gap: 30px;
    animation: fadeIn 0.3s ease;
  }
  .nav-links.mobile-active a {
    font-size: 1.5rem;
  }
  .burger-menu.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .burger-menu.active span:nth-child(2) {
    opacity: 0;
  }
  .burger-menu.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  /* Mobile Sticky Bar Active */
  body {
    padding-bottom: 60px; /* Space for the sticky bar */
  }
  .mobile-sticky-bar {
    display: grid;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 2.2rem;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
