/*
Theme Name: Black Diamond Town Car
Theme URI: https://blackdiamondtowncar.com
Author: Black Diamond Town Car Service
Author URI: https://blackdiamondtowncar.com
Description: A luxury car service WordPress theme with gold and black styling, featuring hero section, services, fleet, testimonials, FAQ, and booking integration.
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: black-diamond
Tags: luxury, transportation, business, responsive
*/

/* Reset & Base */
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
section[id] { scroll-margin-top: 80px; }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bd-gold: #c8a951;
  --bd-gold-dark: #b5943e;
  --bd-black: #0D0D0D;
  --bd-dark: #0A0A0A;
  --bd-gray: #FAFAF8;
  --bd-text: #555;
  --bd-text-light: #666;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.6;
  color: var(--bd-text);
  background: #fff;
}

a { text-decoration: none; }
img { max-width: 100%; height: auto; }

/* ========== Utility Classes ========== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }

.text-center { text-align: center; }
.text-gold { color: var(--bd-gold); }
.text-white { color: #fff; }
.text-black { color: var(--bd-black); }
.text-white-55 { color: rgba(255,255,255,0.55); }
.text-white-65 { color: rgba(255,255,255,0.65); }
.text-white-75 { color: rgba(255,255,255,0.75); }

.bg-dark { background: var(--bd-black); }
.bg-light { background: var(--bd-gray); }
.bg-white { background: #fff; }

.mt-6 { margin-top: 24px; }
.mb-4 { margin-bottom: 16px; }
.mb-5 { margin-bottom: 20px; }
.mb-6 { margin-bottom: 24px; }

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: var(--bd-gold);
  color: #fff;
}
.btn-gold:hover { background: var(--bd-gold-dark); }

.btn-outline {
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

.btn-outline-gold {
  background: transparent;
  border: 1px solid rgba(200,169,81,0.4);
  color: var(--bd-gold);
}
.btn-outline-gold:hover { background: var(--bd-gold); color: #fff; }

.btn-dark {
  background: var(--bd-black);
  color: #fff;
}
.btn-dark:hover { background: #1a1a1a; }

.btn-lg {
  padding: 18px 40px;
  font-size: 16px;
}

/* ========== Typography ========== */
h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(36px, 5vw, 56px); }
h2 { font-size: clamp(32px, 4vw, 48px); }
h3 { font-size: clamp(20px, 2vw, 24px); }

.section-header { margin-bottom: 48px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 600px; margin: 0 auto; color: var(--bd-text); }

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}
.section-title span { color: var(--bd-gold); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.section-title::before, .section-title::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--bd-gold);
}

/* ========== Grid ========== */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

/* ========== Card ========== */
.card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}
.card:hover { border-color: rgba(200, 169, 81, 0.4); transform: translateY(-4px); }

/* ========== Flex ========== */
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }

/* ========== Responsive ========== */
@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
}
@media (min-width: 769px) {
  .hide-desktop { display: none !important; }
}

/* ========== Gold Line ========== */
.gold-line {
  height: 3px;
  background: linear-gradient(to right, transparent, var(--bd-gold), transparent);
}

/* ========== Header ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.4s ease;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.site-header.scrolled {
  background: rgba(0,0,0,0.95);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.header-inner {
  padding: 12px 32px;
}

.header-inner .container {
  max-width: 100%;
  padding: 0;
}

.site-branding { flex-shrink: 0; }
.site-branding .logo-link .logo-img { height: 38px; width: auto; }

.main-navigation { flex: 1; display: flex; justify-content: center; }

.main-navigation .nav-menu {
  display: flex;
  list-style: none;
  gap: 28px;
  flex-wrap: nowrap;
}

.main-navigation .nav-menu a {
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s;
  white-space: nowrap;
}
.main-navigation .nav-menu a:hover { color: var(--bd-gold); }

.header-ctas {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.header-ctas .btn-corporate {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid rgba(200,169,81,0.6);
  color: var(--bd-gold);
  white-space: nowrap;
  transition: all 0.2s;
}
.header-ctas .btn-corporate:hover { border-color: var(--bd-gold); background: rgba(200,169,81,0.1); }

.header-ctas .btn-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  white-space: nowrap;
  transition: all 0.2s;
}
.header-ctas .btn-phone:hover { border-color: var(--bd-gold); color: var(--bd-gold); }

.header-ctas .btn-book {
  background: var(--bd-gold);
  color: #fff;
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.2s;
}
.header-ctas .btn-book:hover { background: var(--bd-gold-dark); }

.menu-toggle {
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  background: var(--bd-black);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 24px;
}
.mobile-menu.open { display: block; }

.mobile-menu .nav-menu {
  list-style: none;
}
.mobile-menu .nav-menu li a {
  display: block;
  padding: 14px 0;
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu .nav-menu li a:hover { color: var(--bd-gold); }

.mobile-ctas { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.mobile-ctas .btn-phone,
.mobile-ctas .btn-book {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}
.mobile-ctas .btn-phone {
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
}
.mobile-ctas .btn-book {
  background: var(--bd-gold);
  color: #fff;
}

/* ========== Hero Section ========== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.60);
}
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.40) 50%,
    rgba(0,0,0,0.05) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  padding: 120px 24px 80px;
}

.hero-text {
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,169,81,0.15);
  border: 1px solid rgba(200,169,81,0.4);
  border-radius: 50px;
  padding: 6px 16px;
  margin-bottom: 24px;
}
.hero-badge i { color: var(--bd-gold); font-size: 14px; }
.hero-badge span { color: var(--bd-gold); font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }

.hero-section h1 {
  color: #ffffff;
  margin-bottom: 24px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
  letter-spacing: -0.5px;
  font-weight: 700;
}

.hero-subtitle {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 32px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.8);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-badge i { color: var(--bd-gold); font-size: 16px; }
.trust-badge span { color: #fff; font-size: 14px; font-weight: 700; text-shadow: 0 1px 6px rgba(0,0,0,0.8); }

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Hero Card */
.hero-card {
  width: 320px;
  flex-shrink: 0;
}

.rating-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: 24px;
}

.rating-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.rating-icon {
  width: 40px;
  height: 40px;
  background: var(--bd-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rating-icon i { color: #fff; font-size: 18px; }
.rating-score { color: #fff; font-size: 20px; font-weight: 700; }
.rating-label { color: rgba(255,255,255,0.6); font-size: 12px; }

.rating-stars { margin-bottom: 16px; }
.rating-stars i { color: var(--bd-gold); margin-right: 2px; }

.rating-quote {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 16px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 16px;
}
.reviewer-avatar {
  width: 32px;
  height: 32px;
  background: var(--bd-gold);
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reviewer-name { color: #fff; font-size: 14px; font-weight: 600; }
.reviewer-source { color: rgba(255,255,255,0.5); font-size: 12px; }

.availability-card {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: 16px;
}
.availability-icon {
  width: 36px;
  height: 36px;
  background: rgba(34,197,94,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.availability-icon i { color: #22c55e; font-size: 20px; }
.availability-title { color: #fff; font-size: 14px; font-weight: 600; }
.availability-subtitle { color: rgba(255,255,255,0.80); font-size: 12px; }

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: bounce 2s infinite;
}
.scroll-indicator span { color: rgba(255,255,255,0.4); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; }
.scroll-indicator i { color: rgba(255,255,255,0.4); font-size: 20px; }

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ========== Trust Bar ========== */
.trust-bar {
  background: var(--bd-black);
  border-bottom: 1px solid rgba(200,169,81,0.25);
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 40px 0;
}

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

.stat-icon {
  width: 40px;
  height: 40px;
  background: rgba(200,169,81,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.stat-icon i { color: var(--bd-gold); font-size: 20px; }

.stat-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
}

.stat-label { color: #fff; font-size: 14px; font-weight: 700; }
.stat-sub { color: rgba(255,255,255,0.65); font-size: 12px; }

@media (max-width: 768px) {
  .trust-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ========== Services ========== */
.services-section { background: var(--bd-gray); }

.services-grid { margin-bottom: 48px; }

.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}
.service-card:hover {
  border-color: rgba(200,169,81,0.4);
  transform: translateY(-4px);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(200,169,81,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s;
}
.service-icon i { color: var(--bd-gold); font-size: 22px; }
.service-card:hover .service-icon { background: var(--bd-gold); }
.service-card:hover .service-icon i { color: #fff; }

.service-card h3 { margin-bottom: 12px; color: var(--bd-black); }
.service-card p { color: #444; font-size: 14px; line-height: 1.7; margin-bottom: 20px; }

.service-highlight {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(200,169,81,0.08);
  border-radius: 50px;
  padding: 6px 12px;
}
.service-highlight i { color: var(--bd-gold); font-size: 14px; }
.service-highlight span { color: var(--bd-gold); font-size: 12px; font-weight: 600; }

/* ========== How It Works ========== */
.how-it-works { background: #fff; }

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  position: relative;
}

.step {
  flex: 1;
  max-width: 320px;
  text-align: center;
  position: relative;
}

.step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 32px;
  height: 32px;
  background: var(--bd-gold);
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon {
  width: 112px;
  height: 112px;
  background: var(--bd-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.step-icon i { color: var(--bd-gold); font-size: 40px; }

.step h3 { margin-bottom: 12px; color: var(--bd-black); }
.step p { color: #444; font-size: 14px; line-height: 1.6; }

.step-connector {
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, rgba(200,169,81,0.4), var(--bd-gold), rgba(200,169,81,0.4));
  margin-top: 56px;
}

@media (max-width: 768px) {
  .steps { flex-direction: column; align-items: center; }
  .step-connector { display: none; }
}

/* CTA Box */
.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bd-black);
  border-radius: 16px;
  padding: 40px;
  margin-top: 48px;
  gap: 24px;
}

.cta-content .cta-label {
  color: var(--bd-gold);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.cta-content h3 { color: #fff; margin-bottom: 4px; }
.cta-content p { color: rgba(255,255,255,0.85); font-size: 14px; }

@media (max-width: 768px) {
  .cta-box { flex-direction: column; text-align: center; }
}

/* ========== Why Choose Us ========== */
.why-us-section { background: var(--bd-gray); overflow: hidden; }

.why-us-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 56px;
  align-items: center;
}

.why-us-image { position: relative; }

.why-us-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 16px;
}

.floating-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--bd-gold);
  color: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.floating-badge .badge-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-weight: 700;
}
.floating-badge .badge-text {
  font-size: 12px;
  font-weight: 600;
}

.why-us-content h2 { margin-bottom: 20px; }
.why-us-content > p { color: #333; margin-bottom: 40px; max-width: 500px; font-size: 15px; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.benefit {
  display: flex;
  gap: 16px;
}

.benefit-icon {
  width: 40px;
  height: 40px;
  background: var(--bd-black);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.benefit-icon i { color: var(--bd-gold); font-size: 18px; }

.benefit h4 { font-size: 14px; margin-bottom: 4px; color: var(--bd-black); font-family: inherit; }
.benefit p { font-size: 13px; color: #444; line-height: 1.5; }

@media (max-width: 900px) {
  .why-us-grid { grid-template-columns: 1fr; }
  .why-us-image { max-width: 400px; margin: 0 auto; }
}

/* ========== Fleet ========== */
.fleet-section { background: var(--bd-black); }
.fleet-section .section-header h2 { color: #fff; }
.fleet-section .section-header p { color: rgba(255,255,255,0.80); }

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.vehicle-card {
  background: #1A1A1A;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s;
}
.vehicle-card:hover { border-color: rgba(200,169,81,0.3); }

.vehicle-image {
  position: relative;
  height: 208px;
  overflow: hidden;
}
.vehicle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-top;
  transition: transform 0.5s;
}
.vehicle-card:hover .vehicle-image img { transform: scale(1.05); }
.vehicle-image.contain img { object-fit: contain; object-position: center; background: #111; }

.vehicle-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--bd-gold);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}

.vehicle-content { padding: 24px; }
.vehicle-content h3 { color: #fff; font-size: 20px; margin-bottom: 4px; }
.vehicle-subtitle { color: var(--bd-gold); font-size: 12px; font-weight: 600; margin-bottom: 4px; }
.vehicle-ideal { color: rgba(255,255,255,0.65); font-size: 12px; margin-bottom: 16px; }

.vehicle-specs {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}
.vehicle-specs span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.9);
  font-size: 12px;
}
.vehicle-specs i { color: var(--bd-gold); font-size: 14px; }

.vehicle-features {
  list-style: none;
  margin-bottom: 20px;
}
.vehicle-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  margin-bottom: 8px;
}
.vehicle-features i { color: var(--bd-gold); font-size: 14px; }

.vehicle-content .btn {
  width: 100%;
}

@media (max-width: 900px) {
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .fleet-grid { grid-template-columns: 1fr; }
}

/* ========== Testimonials ========== */
.testimonials-section { background: var(--bd-gray); }

.google-rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 50px;
  padding: 10px 20px;
}
.google-rating .ri-google-fill { color: #EA4335; font-size: 18px; }
.google-rating .stars i { color: #FBBC04; font-size: 14px; }
.google-rating .rating-num { color: var(--bd-black); font-weight: 700; font-size: 14px; }
.google-rating .rating-text { color: #999; font-size: 12px; }

.review-card { background: #fff; }

.review-stars { margin-bottom: 16px; }
.review-stars i { color: var(--bd-gold); font-size: 14px; margin-right: 2px; }

.review-text {
  color: #222;
  font-size: 15px;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.reviewer-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f0f0f0;
  padding-top: 16px;
}
.reviewer-info .reviewer-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reviewer-info .reviewer-details { flex: 1; margin-left: 12px; }
.reviewer-info .reviewer-name { color: var(--bd-black); font-size: 14px; font-weight: 700; }
.reviewer-info .review-date { color: #999; font-size: 12px; }
.reviewer-info .review-service {
  background: rgba(200,169,81,0.1);
  color: var(--bd-gold);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}

/* ========== FAQ ========== */
.faq-section { background: #F7F5F0; }

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

.faq-item {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #f0f0f0;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s;
}
.faq-item.active { border-color: rgba(200,169,81,0.5); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--bd-black);
  text-align: left;
  transition: color 0.3s;
}
.faq-question:hover { color: var(--bd-gold); }
.faq-item.active .faq-question { color: var(--bd-gold); }

.faq-question i {
  width: 24px;
  height: 24px;
  background: rgba(200,169,81,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bd-gold);
  transition: all 0.3s;
}
.faq-item.active .faq-question i {
  background: var(--bd-gold);
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 28px 24px;
}
.faq-item.active .faq-answer { display: block; }

.faq-answer .h-px {
  height: 1px;
  background: rgba(200,169,81,0.15);
  margin-bottom: 20px;
}
.faq-answer p { color: var(--bd-text); font-size: 14px; line-height: 1.7; }

.faq-cta {
  max-width: 600px;
  margin: 48px auto 0;
  background: var(--bd-black);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
}
.faq-cta p { color: rgba(255,255,255,0.90); margin-bottom: 24px; }
.faq-cta .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ========== Final CTA ========== */
.final-cta {
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.8);
  background: linear-gradient(to right, rgba(13,13,13,0.9), rgba(13,13,13,0.75), rgba(13,13,13,0.9));
}

.cta-content {
  position: relative;
  z-index: 10;
  padding: 96px 24px;
}
.cta-content h2 { color: #fff; margin-bottom: 16px; }
.cta-content p { color: rgba(255,255,255,0.90); font-size: 18px; max-width: 500px; margin: 0 auto 32px; }

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.cta-reassurances {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-reassurances span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.90);
  font-size: 14px;
}
.cta-reassurances i { color: var(--bd-gold); }

/* ========== Booking ========== */
.booking-section { background: #f5f5f5; }

.booking-logo .logo-box {
  display: inline-block;
  background: #000;
  padding: 16px 24px;
  border-radius: 4px;
  margin-bottom: 24px;
}
.booking-logo .logo-box img { height: 56px; width: auto; }

.booking-iframe {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}
.booking-iframe iframe {
  width: 100%;
  min-height: 1400px;
  border: none;
}

.booking-privacy { margin-top: 16px; }
.booking-privacy a { color: var(--bd-gold); font-size: 14px; }
.booking-privacy a:hover { text-decoration: underline; }

/* ========== Contact ========== */
.contact-section { background: #fff; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
}

.contact-info { display: flex; flex-direction: column; gap: 20px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bd-gray);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #f0f0f0;
}
.contact-item .contact-icon {
  width: 40px;
  height: 40px;
  background: var(--bd-black);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-item .contact-icon i { color: var(--bd-gold); font-size: 18px; }
.contact-item .contact-label {
  color: #999;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.contact-item a, .contact-item span { color: var(--bd-black); font-size: 14px; font-weight: 600; }
.contact-item a:hover { color: var(--bd-gold); }

.contact-social { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.contact-social .social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}
.contact-social .fb { background: #1877f2; }
.contact-social .ig {
  background: linear-gradient(45deg, #fd5949, #d6249f, #285aeb);
}
.contact-social .tt { background: var(--bd-black); border: 1px solid #e0e0e0; }
.contact-social .li { background: #0A66C2; }

.contact-form-wrapper {
  background: var(--bd-gray);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid #f0f0f0;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

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

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.form-group label .required { color: var(--bd-gold); }

.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: #333;
  background: #fff;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--bd-gold);
}

.form-group textarea { resize: none; }
.char-count { font-size: 12px; color: #999; }

.contact-form .btn { width: 100%; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ========== Footer ========== */
.site-footer {
  background: var(--bd-dark);
  color: #ccc;
}

.footer-main { padding: 64px 0; }

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

.footer-logo { height: 40px; margin-bottom: 20px; }
.footer-desc { color: #666; font-size: 14px; line-height: 1.7; margin-bottom: 24px; max-width: 280px; }

.footer-contact-info { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.footer-contact-info .contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  padding: 0;
  border: none;
}
.footer-contact-info .contact-item i { color: var(--bd-gold); font-size: 14px; }
.footer-contact-info .contact-item span { color: #666; font-size: 12px; }

.social-links { display: flex; gap: 12px; }
.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  transition: all 0.2s;
}
.social-link:hover { transform: translateY(-2px); opacity: 0.9; }

/* Brand colors */
.social-link--facebook { background: #1877F2; border-color: #1877F2; color: #fff; }
.social-link--facebook:hover { background: #166fe5; color: #fff; }
.social-link--instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); border-color: #d6249f; color: #fff; }
.social-link--instagram:hover { opacity: 0.85; color: #fff; }
.social-link--tiktok { background: #010101; border-color: #010101; color: #fff; }
.social-link--tiktok:hover { background: #333; color: #fff; }
.social-link--yelp { background: #FF1A1A; border-color: #FF1A1A; color: #fff; }
.social-link--yelp:hover { background: #e51717; color: #fff; }
.social-link--linkedin { background: #0A66C2; border-color: #0A66C2; color: #fff; }
.social-link--linkedin:hover { background: #0958a8; color: #fff; }

.footer-title {
  color: var(--bd-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--bd-gold); }
.footer-links a i { color: var(--bd-gold); font-size: 16px; }

.footer-contact-list { list-style: none; }
.footer-contact-list li { margin-bottom: 16px; }

.contact-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.contact-link .contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(200,169,81,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-link .contact-icon i { color: var(--bd-gold); font-size: 14px; }
.contact-link .contact-label {
  display: block;
  color: #666;
  font-size: 12px;
  margin-bottom: 2px;
}
.contact-link .contact-value {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.btn-book-full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--bd-gold);
  color: #fff;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  margin-top: 20px;
  transition: background 0.2s;
}
.btn-book-full:hover { background: var(--bd-gold-dark); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 0;
}
.footer-bottom .copyright { color: #666; font-size: 12px; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: #666; font-size: 12px; }
.footer-bottom-links a:hover { color: var(--bd-gold); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ========== Animations ========== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate { animation: fadeInUp 0.6s ease forwards; }
/* Contact form response messages */
.form-response {
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    font-weight: 500;
}
.form-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}
.form-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}
