/* ============================================
   CROWN WASTE SOLUTIONS — OPTIMIZED STYLES
   Royal Blue + Metallic Gold + Maximum Conversion
   ============================================ */

/* --- CSS Variables --- */
:root {
  --royal-blue: #1a3a6b;
  --royal-blue-light: #2a5298;
  --royal-blue-dark: #0d1f3c;
  --pearl-blue: #3a6bd4;
  --gold: #d4a843;
  --gold-light: #e8c96a;
  --gold-dark: #b8922e;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --gray-100: #f1f3f7;
  --gray-200: #e2e6ed;
  --gray-300: #c8cdd8;
  --gray-600: #6b7280;
  --gray-800: #1f2937;
  --black: #0a0e17;
  --success: #22c55e;
  --error: #ef4444;
  --urgent-red: #dc2626;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
  --shadow-gold: 0 4px 20px rgba(212,168,67,0.3);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-full {
  width: 100%;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--royal-blue-dark);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(212,168,67,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gold);
}

.btn-outline-light:hover {
  background: var(--gold);
  color: var(--royal-blue-dark);
  transform: translateY(-2px);
}

.submit-pulse {
  animation: submitPulse 2s ease-in-out infinite;
}

@keyframes submitPulse {
  0%, 100% { box-shadow: var(--shadow-gold); }
  50% { box-shadow: 0 0 0 8px rgba(212,168,67,0.2), var(--shadow-gold); }
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(26,58,107,0.08), rgba(212,168,67,0.08));
  color: var(--royal-blue);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-badge i {
  color: var(--gold);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--royal-blue-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13,31,60,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,168,67,0.15);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10,14,23,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--gold);
}

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

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: var(--royal-blue-dark) !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   HERO SECTION — 2-Column with AI Booking
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--royal-blue-dark) 0%, var(--royal-blue) 40%, var(--pearl-blue) 100%);
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(212,168,67,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(58,107,212,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(26,58,107,0.2) 0%, transparent 50%);
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-3col {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  padding: 40px 24px 60px;
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 32px;
  align-items: start;
}

/* --- Property Managers Box --- */
.hero-pm-box {
  z-index: 2;
}

.pm-card {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 168, 67, 0.25);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.pm-header {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(212, 168, 67, 0.2);
}

.pm-header i {
  font-size: 2rem;
  color: #d4a843;
  margin-bottom: 8px;
  display: block;
}

.pm-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: #fff;
  line-height: 1.3;
  margin: 0;
}

.pm-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.pm-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.pm-feature-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 8px;
  background: rgba(212, 168, 67, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pm-feature-icon i {
  color: #d4a843;
  font-size: 0.9rem;
}

.pm-feature-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pm-feature-text strong {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
}

.pm-feature-text span {
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem;
  line-height: 1.4;
}

.pm-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.pm-stat {
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: 10px;
  padding: 12px 8px;
  text-align: center;
}

.pm-stat strong {
  display: block;
  font-size: 1.4rem;
  color: #d4a843;
  font-weight: 800;
}

.pm-stat span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pm-cta {
  margin-bottom: 10px;
  font-size: 0.9rem;
  padding: 12px 16px;
}

.pm-note {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

.pm-note i {
  color: #22c55e;
  margin-right: 4px;
}

.hero-content {
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(212,168,67,0.15);
  border: 1px solid rgba(212,168,67,0.3);
  border-radius: 50px;
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-badge i {
  font-size: 0.8rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-title-line {
  display: block;
  color: var(--white);
}

.hero-title-accent {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.hero-call-btn {
  animation: callPulse 2.5s ease-in-out infinite;
}

@keyframes callPulse {
  0%, 100% { box-shadow: var(--shadow-gold); }
  50% { box-shadow: 0 0 0 6px rgba(212,168,67,0.25), var(--shadow-gold); }
}

.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
}

.trust-item i {
  color: var(--success);
  font-size: 0.85rem;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}

.proof-avatars {
  display: flex;
  gap: -4px;
}

.proof-avatars i {
  font-size: 1.4rem;
  color: rgba(255,255,255,0.4);
  margin-right: -6px;
}

.hero-social-proof strong {
  color: var(--gold-light);
}

/* --- Hero AI Booking Box --- */
.hero-ai-box {
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.urgency-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: linear-gradient(135deg, rgba(220,38,38,0.15), rgba(220,38,38,0.08));
  border: 1px solid rgba(220,38,38,0.3);
  border-radius: var(--radius-sm);
  color: #fca5a5;
  font-size: 0.88rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  overflow: visible;
  width: 100%;
  box-sizing: border-box;
}

.urgency-banner span {
  flex: 1;
  min-width: 0;
  overflow: visible;
  white-space: normal;
  line-height: 1.4;
}

.urgency-banner i {
  color: #fbbf24;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.urgency-banner strong {
  color: #fde68a;
}

.urgency-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  margin-left: auto;
  animation: dotPulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.booking-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  overflow: hidden;
  border: 1px solid rgba(212,168,67,0.2);
}

.response-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  backdrop-filter: blur(10px);
}

.response-badge i {
  color: var(--gold-light);
}

.response-badge strong {
  color: var(--success);
}

/* --- Chat Area --- */
.chat-area {
  padding: 20px;
  min-height: 140px;
  max-height: 280px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: linear-gradient(180deg, rgba(26,58,107,0.03) 0%, var(--white) 100%);
}

.chat-message {
  display: flex;
  gap: 10px;
  max-width: 90%;
  animation: fadeInUp 0.3s ease;
}

.bot-message {
  align-self: flex-start;
}

.user-message {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.chat-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--gray-100);
}

.chat-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.user-message .chat-avatar {
  background: var(--royal-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.75rem;
}

.chat-bubble {
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  line-height: 1.55;
}

.bot-message .chat-bubble {
  background: var(--gray-100);
  color: var(--gray-800);
  border-bottom-left-radius: 4px;
}

.user-message .chat-bubble {
  background: var(--royal-blue);
  color: var(--white);
  border-bottom-right-radius: 4px;
}

.chat-bubble p + p {
  margin-top: 6px;
}

.chat-hint {
  font-size: 0.82rem !important;
  color: var(--gray-600) !important;
  font-style: italic;
}

/* --- Quick Action Chips --- */
.quick-chips {
  display: flex;
  gap: 8px;
  padding: 0 20px 12px;
  flex-wrap: wrap;
}

.chip {
  padding: 7px 14px;
  border-radius: 50px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--royal-blue);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.chip:hover {
  background: var(--royal-blue);
  color: var(--white);
  border-color: var(--royal-blue);
}

/* --- Chat Input --- */
.chat-input-area {
  padding: 12px 20px 16px;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
}

.chat-input-row {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  padding: 5px 5px 5px 10px;
  border: 2px solid transparent;
  transition: var(--transition);
}

.chat-input-row:focus-within {
  border-color: var(--royal-blue-light);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(42,82,152,0.1);
}

.chat-action-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--gray-600);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.chat-action-btn:hover {
  background: rgba(26,58,107,0.1);
  color: var(--royal-blue);
}

.chat-action-btn.recording {
  background: var(--error);
  color: var(--white);
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,0.4); }
  50% { box-shadow: 0 0 0 10px rgba(239,68,68,0); }
}

.chat-input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--gray-800);
  outline: none;
  padding: 6px 0;
  min-width: 0;
}

.chat-input::placeholder {
  color: var(--gray-300);
}

.chat-send-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--royal-blue-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.chat-send-btn:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-gold);
}

/* Mic Helper Text */
.mic-helper {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0 0;
  font-size: 0.78rem;
  color: var(--gray-600);
  opacity: 0.8;
}

.mic-helper i {
  color: var(--royal-blue-light);
  font-size: 0.75rem;
}

/* Photo Preview */
.photo-preview {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.photo-preview:empty {
  display: none;
}

.photo-thumb {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 2px solid var(--gray-200);
}

.photo-thumb-wrap {
  position: relative;
  display: inline-block;
}

.photo-remove {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--error);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Booking Form */
.booking-form {
  padding: 20px;
  border-top: 1px solid var(--gray-200);
  background: var(--gray-100);
  animation: fadeInUp 0.4s ease;
}

.form-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--royal-blue-dark);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-title i {
  color: var(--gold);
}

.form-subtitle {
  font-size: 0.88rem;
  color: var(--gray-600);
  margin-bottom: 16px;
}

.form-subtitle strong {
  color: var(--success);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-group label i {
  color: var(--gold);
  font-size: 0.75rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 14px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--gray-800);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--royal-blue-light);
  box-shadow: 0 0 0 4px rgba(42,82,152,0.1);
}

.form-privacy {
  text-align: center;
  font-size: 0.78rem;
  color: var(--gray-600);
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.form-privacy i {
  color: var(--success);
}

/* --- Booking Confirmation --- */
.booking-confirmation {
  padding: 36px 24px;
  text-align: center;
  animation: fadeInUp 0.5s ease;
}

.confirmation-checkmark {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
}

.checkmark-svg {
  width: 72px;
  height: 72px;
}

.checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: var(--success);
  fill: none;
  animation: checkStroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  stroke-width: 3;
  stroke: var(--success);
  stroke-linecap: round;
  animation: checkStroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
}

@keyframes checkStroke {
  100% { stroke-dashoffset: 0; }
}

.booking-confirmation h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--royal-blue-dark);
  margin-bottom: 12px;
}

.booking-confirmation > p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.6;
  max-width: 420px;
  margin: 0 auto;
}

.booking-confirmation > p strong {
  color: var(--success);
}

.confirmation-ref {
  margin-top: 16px;
  padding: 10px 18px;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  display: inline-block;
  font-size: 0.85rem;
  color: var(--gray-600);
}

.confirmation-ref span {
  font-weight: 700;
  color: var(--royal-blue);
}

.confirmation-next {
  margin-top: 24px;
  text-align: left;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  padding: 20px;
}

.confirmation-next h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--royal-blue-dark);
  margin-bottom: 14px;
}

.next-steps-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.next-step {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--gray-800);
}

.next-step-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--royal-blue-dark);
  border-top: 1px solid rgba(212,168,67,0.2);
  border-bottom: 1px solid rgba(212,168,67,0.2);
  padding: 16px 0;
}

.trust-bar-inner {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  font-weight: 500;
}

.trust-bar-item i {
  color: var(--gold);
  font-size: 0.9rem;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  padding: 100px 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.service-card {
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.service-valet::before {
  background: linear-gradient(90deg, var(--royal-blue), var(--pearl-blue));
}

.service-emergency::before {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-icon-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
}

.emergency-icon {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold)) !important;
  color: var(--royal-blue-dark) !important;
}

.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--royal-blue-dark);
  margin-bottom: 12px;
}

.service-desc {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--gray-800);
}

.service-features li i {
  color: var(--success);
  font-size: 0.85rem;
}

.service-cta {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--royal-blue-dark) 0%, var(--royal-blue) 100%);
  color: var(--white);
}

.how-section .section-badge {
  background: rgba(212,168,67,0.15);
  color: var(--gold-light);
}

.how-section .section-title {
  color: var(--white);
}

.how-section .section-subtitle {
  color: rgba(255,255,255,0.7);
}

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

.step-card {
  text-align: center;
  padding: 40px 28px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  flex: 1;
  max-width: 300px;
  transition: var(--transition);
}

.step-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--royal-blue-dark);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step-icon {
  font-size: 2.2rem;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.step-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--white);
}

.step-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.step-connector {
  color: var(--gold);
  font-size: 1.2rem;
  opacity: 0.5;
}

.how-cta {
  text-align: center;
  margin-top: 48px;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-section {
  padding: 100px 0;
  background: var(--off-white);
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13,31,60,0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-overlay span {
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
}

.gallery-cta {
  text-align: center;
  margin-top: 32px;
  font-size: 1.05rem;
  color: var(--gray-600);
}

.inline-cta {
  color: var(--royal-blue);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.inline-cta:hover {
  color: var(--gold-dark);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  padding: 100px 0;
  background: var(--white);
}

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

.testimonial-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars i {
  color: var(--gold);
  font-size: 1rem;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-800);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  font-size: 2.2rem;
  color: var(--royal-blue-light);
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--royal-blue-dark);
}

.testimonial-author span {
  font-size: 0.85rem;
  color: var(--gray-600);
}

.featured-testimonial {
  background: linear-gradient(135deg, rgba(26,58,107,0.03), rgba(212,168,67,0.03));
  border-color: rgba(212,168,67,0.2);
}

.testimonial-video-wrapper {
  position: relative;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 16px;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--royal-blue-dark), var(--royal-blue));
}

.testimonial-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(10, 25, 50, 0.65);
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius-md);
}

.video-overlay:hover {
  background: rgba(10, 25, 50, 0.45);
}

.video-overlay i {
  font-size: 3rem;
  color: var(--gold);
  transition: var(--transition);
}

.video-overlay:hover i {
  transform: scale(1.15);
}

.video-overlay span {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  font-weight: 600;
}

/* ============================================
   PRICING
   ============================================ */
.pricing-section {
  padding: 100px 0;
  background: var(--off-white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--royal-blue-dark);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-header {
  margin-bottom: 24px;
}

.pricing-header i {
  font-size: 2.5rem;
  color: var(--royal-blue);
  margin-bottom: 12px;
}

.pricing-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--royal-blue-dark);
}

.pricing-amount {
  margin-bottom: 28px;
}

.price-from {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-bottom: 4px;
}

.price {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--royal-blue-dark);
}

.price-sub {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-top: 4px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--gray-800);
}

.pricing-features li i {
  color: var(--success);
}

/* ============================================
   SERVICE AREA
   ============================================ */
.area-section {
  padding: 100px 0;
  background: var(--white);
}

.area-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.area-text .section-badge {
  margin-bottom: 16px;
}

.area-text .section-title {
  text-align: left;
  margin-bottom: 16px;
}

.area-text p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 24px;
}

.area-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-tag {
  padding: 6px 16px;
  background: var(--gray-100);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--royal-blue);
  border: 1px solid var(--gray-200);
}

.area-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.area-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-section {
  padding: 100px 0;
  background: var(--off-white);
}

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

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

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.call-card {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(212,168,67,0.05), rgba(212,168,67,0.02));
}

.ai-reminder-card {
  border-color: var(--royal-blue-light);
  background: linear-gradient(135deg, rgba(42,82,152,0.05), rgba(42,82,152,0.02));
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.call-card .contact-card-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--royal-blue-dark);
}

.ai-icon {
  background: linear-gradient(135deg, var(--pearl-blue), var(--royal-blue-light)) !important;
}

.contact-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--royal-blue-dark);
}

.contact-card p {
  font-size: 0.95rem;
  color: var(--gray-800);
}

.contact-card-sub {
  font-size: 0.8rem;
  color: var(--gray-600);
}

.contact-form-wrap {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

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

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 14px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--royal-blue-light);
  box-shadow: 0 0 0 4px rgba(42,82,152,0.1);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--royal-blue-dark), var(--royal-blue));
  text-align: center;
}

.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 12px;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
}

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  padding: 60px 0 0;
  color: rgba(255,255,255,0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-bottom: 12px;
}

.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--royal-blue-dark);
}

.footer-links-col h4,
.footer-contact-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-links-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
}

.footer-links-col a:hover {
  color: var(--gold);
}

.footer-contact-col p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.footer-contact-col i {
  color: var(--gold);
  width: 16px;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

/* ============================================
   STICKY CALL + AI BUTTON
   ============================================ */
.sticky-call {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  display: flex;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  transition: var(--transition);
}

.sticky-call.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sticky-call-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--royal-blue-dark);
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.sticky-call-btn:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.sticky-ai-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 20px;
  background: var(--royal-blue);
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.sticky-ai-btn:hover {
  background: var(--royal-blue-light);
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 80px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--royal-blue-dark);
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-2px);
}

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

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-3col {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .hero-pm-box {
    max-width: 560px;
    margin: 0 auto;
  }

  .hero-subtitle {
    max-width: 100%;
    margin: 0 auto 28px;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-social-proof {
    justify-content: center;
  }

  .hero-ai-box {
    max-width: 560px;
    margin: 0 auto;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .steps-grid {
    flex-direction: column;
  }

  .step-connector {
    transform: rotate(90deg);
  }

  .step-card {
    max-width: 100%;
  }

  .area-content {
    grid-template-columns: 1fr;
  }

  .area-text .section-title {
    text-align: center;
  }

  .area-text {
    text-align: center;
  }

  .area-cities {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10,14,23,0.98);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

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

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

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

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

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

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

  .trust-bar-inner {
    gap: 16px;
  }

  .trust-bar-item {
    font-size: 0.8rem;
  }

  .back-to-top {
    bottom: 72px;
  }

  .quick-chips {
    gap: 6px;
  }

  .chip {
    font-size: 0.75rem;
    padding: 6px 12px;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

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

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

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

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

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

  .urgency-banner {
    font-size: 0.82rem;
    padding: 8px 14px;
  }

  .trust-bar-inner {
    gap: 12px;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    padding: 0 8px;
  }

  .trust-bar-item {
    white-space: nowrap;
    flex-shrink: 0;
  }
}
