/* ==========================================================================
   LAGOUN CARS LONDON - STYLESHEET
   Luxury Used Cars For Her in London, UK
   Violet & Pink Femme Color Palette with Day & Night Mode
   ========================================================================== */

/* 1. THEME VARIABLES (LIGHT & NIGHT MODES) */
:root {
  /* Common Palette */
  --primary-violet: #7C3AED;
  --primary-plum: #8B2671;
  --primary-pink: #EC4899;
  --primary-fuchsia: #C026D3;
  --accent-blush: #F472B6;
  --accent-rose: #FB7185;
  --accent-gold: #D4AF37;
  --accent-gold-light: #FDE047;
  --accent-emerald: #10B981;

  /* Day Mode (Default) */
  --bg-main: #FAF7FA;
  --bg-surface: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-card-hover: #FFF9FC;
  --bg-subtle: #F5EEF5;
  --border-light: rgba(139, 38, 113, 0.12);
  --border-medium: rgba(139, 38, 113, 0.22);
  
  --text-primary: #1F102A;
  --text-secondary: #5E4E68;
  --text-muted: #8E7C99;
  
  --shadow-sm: 0 2px 8px rgba(139, 38, 113, 0.06);
  --shadow-md: 0 8px 24px rgba(139, 38, 113, 0.09);
  --shadow-lg: 0 16px 40px rgba(139, 38, 113, 0.14);
  --shadow-glow: 0 0 25px rgba(236, 72, 153, 0.35);

  --header-glass: rgba(255, 255, 255, 0.92);
  --modal-overlay: rgba(24, 10, 32, 0.65);

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-luxury: 'Cinzel', serif;
}

/* Night Mode (Dark Mode) */
body.theme-night, html.theme-night {
  --bg-main: #0B0512;
  --bg-surface: #140A21;
  --bg-card: #1A0D2B;
  --bg-card-hover: #24123D;
  --bg-subtle: #221038;
  --border-light: rgba(236, 72, 153, 0.18);
  --border-medium: rgba(236, 72, 153, 0.32);

  --text-primary: #FAF5FC;
  --text-secondary: #C8B9D4;
  --text-muted: #8F7D9E;

  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 16px 50px rgba(0, 0, 0, 0.8);
  --shadow-glow: 0 0 35px rgba(217, 70, 239, 0.45);

  --header-glass: rgba(14, 7, 22, 0.94);
  --modal-overlay: rgba(3, 1, 6, 0.85);
}

/* 2. BASE RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.6;
  transition: background-color 0.35s ease, color 0.35s ease;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* Container */
.lagoun-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* 3. TOP ANNOUNCEMENT BAR */
.lagoun-topbar {
  background: linear-gradient(90deg, #6B1550 0%, #8B2671 50%, #7C3AED 100%);
  color: #FFFFFF;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.3px;
}

.lagoun-topbar .highlight {
  color: #FDE047;
  margin-right: 8px;
}

/* 4. MAIN HEADER */
.lagoun-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--header-glass);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

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

/* Logo */
.lagoun-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-icon-wrap {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary-plum), var(--primary-pink));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

.brand-crown {
  font-size: 20px;
}

.brand-title {
  font-family: var(--font-luxury);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--text-primary);
  line-height: 1.1;
}

.brand-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--primary-pink);
}

/* Navigation */
.lagoun-nav {
  display: flex;
  gap: 28px;
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.2s ease;
  position: relative;
  padding: 6px 0;
}

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

body.theme-night .nav-link:hover, body.theme-night .nav-link.active {
  color: var(--accent-blush);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-plum), var(--primary-pink));
  transition: width 0.25s ease;
}

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

/* Header Controls */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Day & Night Mode Toggle */
.theme-toggle-btn {
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.theme-toggle-btn:hover {
  transform: rotate(20deg) scale(1.06);
  border-color: var(--primary-pink);
  box-shadow: 0 0 15px rgba(236, 72, 153, 0.25);
}

/* Header CTA Button */
.btn-header-cta {
  background: linear-gradient(135deg, var(--primary-plum) 0%, var(--primary-pink) 100%);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(139, 38, 113, 0.25);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(236, 72, 153, 0.38);
}

.wishlist-badge-btn {
  background: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
}

.wishlist-counter {
  position: absolute;
  top: -4px;
  right: -6px;
  background: var(--primary-pink);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 800;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 5. HERO SLIDER SECTION */
.lagoun-hero {
  position: relative;
  height: 680px;
  overflow: hidden;
  background: #000000;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s ease;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* Hero Background Image with Ken Burns Effect */
.hero-image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transition: transform 7s ease-out;
}

.hero-slide.active .hero-bg-img {
  transform: scale(1.08);
}

/* Hero Gradient Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(14, 6, 22, 0.90) 0%,
    rgba(22, 9, 36, 0.70) 45%,
    rgba(22, 9, 36, 0.20) 100%
  );
}

/* Hero Slide Content */
.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
  color: #FFFFFF;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(236, 72, 153, 0.25);
  border: 1px solid rgba(236, 72, 153, 0.5);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #FDE047;
  text-transform: uppercase;
  margin-bottom: 18px;
  width: fit-content;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 46px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 14px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 17px;
  line-height: 1.6;
  color: #F3E8FF;
  margin-bottom: 24px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

/* Specs chips inside Hero */
.hero-specs-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.spec-chip {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Price & CTAs */
.hero-price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 26px;
}

.hero-price {
  font-size: 34px;
  font-weight: 800;
  color: #FFFFFF;
}

.hero-monthly {
  font-size: 15px;
  color: #F472B6;
  font-weight: 600;
  background: rgba(236, 72, 153, 0.2);
  padding: 4px 10px;
  border-radius: 6px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--primary-plum) 0%, var(--primary-pink) 100%);
  color: #FFFFFF;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(236, 72, 153, 0.55);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #FFFFFF;
  padding: 14px 24px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #FFFFFF;
}

/* Slider Controls */
.hero-slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 12px;
}

.slider-dot {
  width: 40px;
  height: 5px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: var(--primary-pink);
  width: 60px;
  box-shadow: 0 0 10px var(--primary-pink);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.hero-arrow:hover {
  background: var(--primary-plum);
  border-color: var(--primary-pink);
}

.hero-arrow.prev { left: 24px; }
.hero-arrow.next { right: 24px; }

/* 6. TRUST VALUE PILLARS */
.lagoun-trust-bar {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-light);
  padding: 30px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.trust-icon-box {
  width: 48px;
  height: 48px;
  background: var(--bg-subtle);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  border: 1px solid var(--border-light);
}

.trust-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.trust-item p {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}

/* 7. CAR FILTER SECTION */
.lagoun-shop-section {
  padding: 60px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-luxury);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary-plum);
  text-transform: uppercase;
  margin-bottom: 8px;
}

body.theme-night .section-tag {
  color: var(--accent-blush);
}

.section-title {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Filter Controls Box */
.filter-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 35px;
}

.filter-row-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}

.filter-search-input {
  width: 100%;
  padding: 12px 18px;
  border-radius: 10px;
  border: 1px solid var(--border-medium);
  background: var(--bg-subtle);
  color: var(--text-primary);
  font-size: 14px;
  outline: none;
}

.filter-search-input:focus {
  border-color: var(--primary-pink);
  box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.15);
}

.filter-select {
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid var(--border-medium);
  background: var(--bg-subtle);
  color: var(--text-primary);
  font-size: 14px;
  outline: none;
  cursor: pointer;
}

/* Quick Toggle Pills */
.filter-pills-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-pill-btn {
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-pill-btn:hover {
  border-color: var(--primary-pink);
  color: var(--primary-plum);
}

.filter-pill-btn.active {
  background: linear-gradient(135deg, var(--primary-plum), var(--primary-pink));
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

/* 8. CAR GRID & CAR CARDS */
.cars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 28px;
}

.car-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.car-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-pink);
}

/* Car Card Image Area */
.card-media-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: #1A0D2B;
}

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

.car-card:hover .card-car-img {
  transform: scale(1.05);
}

.card-top-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 5;
}

.badge-tag-chic {
  background: rgba(22, 9, 36, 0.85);
  backdrop-filter: blur(8px);
  color: #FDE047;
  border: 1px solid rgba(253, 224, 71, 0.4);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-ulez {
  background: #10B981;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.card-wishlist-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  transition: transform 0.2s ease, background 0.2s ease;
  z-index: 5;
}

.card-wishlist-btn:hover {
  transform: scale(1.15);
  background: #FFFFFF;
}

.card-wishlist-btn.active {
  background: #FDF2F8;
  color: #EC4899;
}

/* Card Body */
.card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-make-model {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-plum);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

body.theme-night .card-make-model {
  color: var(--accent-blush);
}

.card-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 12px;
  min-height: 50px;
}

/* Specs Strip */
.card-specs-strip {
  display: flex;
  justify-content: space-between;
  background: var(--bg-subtle);
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 16px;
  font-size: 12px;
  color: var(--text-secondary);
}

.card-spec-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.card-spec-item .spec-val {
  font-weight: 700;
  color: var(--text-primary);
}

/* Pricing Section */
.card-pricing-box {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.card-cash-price {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
}

.card-monthly-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-pink);
  background: rgba(236, 72, 153, 0.1);
  padding: 4px 10px;
  border-radius: 6px;
}

/* Action Buttons */
.card-actions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
}

.btn-card-reserve {
  background: linear-gradient(135deg, var(--primary-plum), var(--primary-pink));
  color: #FFFFFF;
  border: none;
  padding: 11px 0;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  box-shadow: 0 4px 12px rgba(139, 38, 113, 0.25);
}

.btn-card-reserve:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(236, 72, 153, 0.4);
}

.btn-card-buy {
  background: var(--bg-subtle);
  border: 1px solid var(--border-medium);
  color: var(--text-primary);
  padding: 11px 0;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.btn-card-buy:hover {
  background: var(--primary-plum);
  color: #FFFFFF;
  border-color: var(--primary-plum);
}

.btn-card-consult {
  grid-column: span 2;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  padding-top: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.btn-card-consult:hover {
  color: var(--primary-pink);
}

/* 9. MODALS (RESERVATION, CONSULTATION, DETAILS) */
.lagoun-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--modal-overlay);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.25s ease-out;
}

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

.lagoun-modal-container {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 35px;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: scaleUp 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleUp {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  background: #FEE2E2;
  color: #DC2626;
  border-color: #FCA5A5;
}

.modal-header-tag {
  font-family: var(--font-luxury);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--primary-pink);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.modal-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.5;
}

/* Modal Form Styles */
.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid var(--border-medium);
  background: var(--bg-subtle);
  color: var(--text-primary);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary-pink);
  box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.15);
}

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

.form-btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-plum), var(--primary-pink));
  color: #FFFFFF;
  border: none;
  padding: 14px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(236, 72, 153, 0.35);
  transition: all 0.25s ease;
  margin-top: 10px;
}

.form-btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(236, 72, 153, 0.45);
}

.modal-guarantee-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* 10. WHY LAGOUN & ADVISORY SPOTLIGHT */
.lagoun-why-section {
  background: var(--bg-surface);
  padding: 80px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

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

.why-card-box {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-md);
}

.why-feature-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.why-feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(236, 72, 153, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary-pink);
  flex-shrink: 0;
}

.why-feature-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.why-feature-content p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* 11. AGENCY SHOWROOM & MAP SECTION */
.lagoun-agency-section {
  padding: 80px 0;
}

.agency-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.agency-info-content {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.agency-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.agency-detail-icon {
  font-size: 20px;
  color: var(--primary-pink);
  margin-top: 2px;
}

.agency-detail-text strong {
  display: block;
  font-size: 14px;
  color: var(--text-primary);
}

.agency-detail-text span {
  font-size: 13px;
  color: var(--text-secondary);
}

.agency-map-wrap {
  min-height: 380px;
  position: relative;
}

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

/* 12. FOOTER */
.lagoun-footer {
  background: #08030D;
  color: #E2D9E8;
  padding: 60px 0 30px 0;
  border-top: 1px solid rgba(236, 72, 153, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-family: var(--font-luxury);
  font-size: 22px;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 13px;
  color: #A898B5;
  line-height: 1.6;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 13px;
  color: #A898B5;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent-blush);
}

.footer-bottom {
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #7D6C8A;
}

/* ==========================================================================
   MOBILE NAVIGATION DRAWER & RESPONSIVE HEADER
   ========================================================================== */

/* Mobile Hamburger Button */
.mobile-menu-toggle {
  display: none;
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-primary);
  font-size: 20px;
  transition: all 0.2s ease;
}

.mobile-menu-toggle:hover {
  background: var(--bg-card-hover);
  border-color: var(--primary-pink);
}

/* Mobile Drawer Overlay */
.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: rgba(14, 6, 22, 0.75);
  backdrop-filter: blur(8px);
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.mobile-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Mobile Drawer Panel */
.mobile-drawer-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 320px;
  max-width: 88vw;
  height: 100vh;
  height: 100dvh;
  background: #FFFFFF;
  border-left: 1px solid var(--border-light);
  z-index: 100000;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.6);
  pointer-events: auto;
  overflow: hidden;
}

body.theme-night .mobile-drawer-panel {
  background: #140A21;
  border-left: 1px solid var(--border-medium);
}

.mobile-drawer-overlay.open .mobile-drawer-panel {
  transform: translateX(0);
}

.drawer-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: inherit;
  flex-shrink: 0;
}

.drawer-close-btn {
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  color: var(--text-primary);
}

.drawer-body {
  padding: 24px;
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.drawer-link {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  padding: 10px 14px;
  border-radius: 10px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-link:hover, .drawer-link.active {
  background: var(--bg-subtle);
  color: var(--primary-plum);
}

body.theme-night .drawer-link:hover, body.theme-night .drawer-link.active {
  color: var(--accent-blush);
}

.drawer-badge {
  background: linear-gradient(135deg, var(--primary-plum), var(--primary-pink));
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
}

.drawer-contact-box {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.drawer-btn-call {
  background: var(--bg-subtle);
  border: 1px solid var(--border-medium);
  color: var(--text-primary);
  padding: 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.drawer-btn-wa {
  background: #25D366;
  color: #FFFFFF;
  padding: 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Dedicated Shop Page Header & Banner */
.shop-page-hero {
  background: linear-gradient(135deg, #1C0A26 0%, #3B1238 50%, #150824 100%);
  color: #FFFFFF;
  padding: 50px 0 40px 0;
  text-align: center;
  border-bottom: 1px solid rgba(236, 72, 153, 0.2);
}

.shop-page-hero h1 {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
}

.shop-page-hero p {
  font-size: 15px;
  color: #F3E8FF;
  max-width: 600px;
  margin: 0 auto 20px auto;
}

.shop-page-count-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(236, 72, 153, 0.25);
  border: 1px solid rgba(236, 72, 153, 0.5);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  color: #FDE047;
}

.shop-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  border: none;
  transition: background 0.2s ease;
}

.shop-back-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Shop Section Banner in Home Page */
.home-shop-banner {
  background: linear-gradient(135deg, rgba(139, 38, 113, 0.12), rgba(124, 58, 237, 0.12));
  border: 1px dashed var(--primary-pink);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.home-shop-banner-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  text-align: left;
}

.home-shop-banner-content p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
  text-align: left;
}

.btn-view-all-shop {
  background: linear-gradient(135deg, var(--primary-plum), var(--primary-pink));
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.35);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-view-all-shop:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(236, 72, 153, 0.45);
}

/* ==========================================================================
   13. RESPONSIVE BREAKPOINTS & MOBILE FIXES
   ========================================================================== */
@media (max-width: 992px) {
  .lagoun-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .header-phone-link { display: none; }
  .hero-title { font-size: 34px; }
  .why-grid, .agency-grid, .footer-grid { grid-template-columns: 1fr; }
  .filter-row-top { grid-template-columns: 1fr 1fr; }
  .agency-info-content { padding: 30px; }
}

@media (max-width: 768px) {
  /* Header Mobile Layout */
  .header-inner {
    height: 68px;
  }

  .lagoun-brand .brand-icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 9px;
  }

  .lagoun-brand .brand-crown {
    font-size: 16px;
  }

  .lagoun-brand .brand-title {
    font-size: 16px;
    letter-spacing: 1px;
  }

  .lagoun-brand .brand-subtitle {
    font-size: 9px;
  }

  .header-actions {
    gap: 8px;
  }

  .theme-toggle-btn {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }

  .btn-header-cta {
    display: none; /* Accessible in mobile drawer for clean header */
  }

  /* Hero Section Mobile Overhaul */
  .lagoun-hero {
    height: auto;
    min-height: 560px;
  }

  .hero-content {
    padding: 70px 0 50px 0;
    max-width: 100%;
    justify-content: flex-end;
  }

  .hero-badge-pill {
    font-size: 10px;
    padding: 4px 10px;
    margin-bottom: 12px;
  }

  .hero-title {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 8px;
  }

  .hero-subtitle {
    font-size: 13px;
    line-height: 1.45;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .hero-specs-chips {
    gap: 6px;
    margin-bottom: 16px;
  }

  .spec-chip {
    font-size: 11px;
    padding: 4px 10px;
  }

  .hero-price-row {
    margin-bottom: 18px;
    gap: 10px;
  }

  .hero-price {
    font-size: 24px;
  }

  .hero-monthly {
    font-size: 12px;
    padding: 3px 8px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }

  .btn-hero-primary, .btn-hero-secondary {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
    font-size: 14px;
  }

  /* Hide large intrusive arrows on mobile */
  .hero-arrow {
    display: none;
  }

  .hero-slider-dots {
    bottom: 14px;
    gap: 8px;
  }

  .slider-dot {
    width: 24px;
    height: 4px;
  }

  .slider-dot.active {
    width: 40px;
  }

  /* Grid & Filters */
  .cars-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .filter-row-top {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .filter-card {
    padding: 16px;
  }

  .home-shop-banner {
    flex-direction: column;
    text-align: center;
  }

  .home-shop-banner-content h4, .home-shop-banner-content p {
    text-align: center;
  }

  .btn-view-all-shop {
    width: 100%;
  }

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

