/* MCT ECOMOTION - Premium Mobility Design System (Day & Dark Mode Support) */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* DARK MODE DEFAULTS */
  --bg-dark: #0A1128;
  --bg-navy: #0B132B;
  --surface-card: #141E36;
  --surface-hover: #1E2B4D;
  --surface-glass: rgba(20, 30, 54, 0.85);
  
  --brand-blue: #005BC5;
  --electric-blue: #00A8E8;
  --electric-glow: rgba(0, 168, 232, 0.3);
  --blue-gradient: linear-gradient(135deg, #005BC5 0%, #00A8E8 100%);
  
  --gold-primary: #F59E0B;
  --gold-hover: #D97706;
  --gold-light: #FDE68A;
  --gold-glow: rgba(245, 158, 11, 0.25);
  --gold-gradient: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  
  --text-white: #FFFFFF;
  --text-primary: #F8FAFC;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(245, 158, 11, 0.3);
  --shadow-luxury: 0 20px 40px -15px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 10px 25px -5px rgba(245, 158, 11, 0.3);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

/* DAY MODE / LIGHT MODE OVERRIDES USING LOGO BLUE (#005BC5) */
[data-theme="light"] {
  --bg-dark: #F4F7FC;
  --bg-navy: #EAEFF7;
  --surface-card: #FFFFFF;
  --surface-hover: #F8FAFC;
  --surface-glass: rgba(255, 255, 255, 0.9);
  
  --brand-blue: #005BC5;
  --electric-blue: #005BC5;
  --electric-glow: rgba(0, 91, 197, 0.15);
  --blue-gradient: linear-gradient(135deg, #005BC5 0%, #0077B6 100%);
  
  --gold-primary: #D97706;
  --gold-hover: #B45309;
  --gold-light: #F59E0B;
  --gold-glow: rgba(217, 119, 6, 0.15);
  --gold-gradient: linear-gradient(135deg, #005BC5 0%, #004494 100%);
  
  --text-white: #0F172A;
  --text-primary: #1E293B;
  --text-secondary: #475569;
  --text-muted: #64748B;

  --border-subtle: rgba(0, 91, 197, 0.15);
  --border-gold: rgba(0, 91, 197, 0.3);
  --shadow-luxury: 0 15px 35px -10px rgba(0, 91, 197, 0.12);
  --shadow-gold: 0 10px 25px -5px rgba(0, 91, 197, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.4s ease, color 0.4s ease;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: 'Outfit', sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* THEME TOGGLE BUTTON */
.theme-toggle-btn {
  background: var(--surface-card);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.theme-toggle-btn:hover {
  transform: rotate(20deg) scale(1.08);
  border-color: var(--gold-primary);
}

/* TOP STRIP */
.top-strip {
  background: [data-theme="light"] #E2E8F0;
  background: #050B1A;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  padding: 8px 0;
  color: var(--text-secondary);
}

[data-theme="light"] .top-strip {
  background: #E2E8F0;
  color: #334155;
}

.top-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-strip-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-strip-info span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-strip-info i {
  color: var(--gold-primary);
}

.top-strip-social {
  display: flex;
  gap: 15px;
}

.top-strip-social a {
  color: var(--text-secondary);
}

.top-strip-social a:hover {
  color: var(--gold-primary);
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--surface-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
}

.navbar-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-brand img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--brand-blue);
}

[data-theme="dark"] .brand-name {
  color: var(--text-white);
  background: linear-gradient(135deg, #FFFFFF 0%, #F59E0B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-tagline {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--brand-blue);
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brand-blue);
}

[data-theme="dark"] .nav-links a:hover,
[data-theme="dark"] .nav-links a.active {
  color: var(--gold-primary);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--brand-blue);
  border-radius: 2px;
}

[data-theme="dark"] .nav-links a.active::after {
  background: var(--gold-gradient);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 26px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #FFF;
  box-shadow: var(--shadow-gold);
}

[data-theme="dark"] .btn-gold {
  color: #0A1128;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(0, 91, 197, 0.4);
}

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

[data-theme="dark"] .btn-outline-gold {
  color: var(--gold-primary);
  border-color: var(--gold-primary);
}

.btn-outline-gold:hover {
  background: var(--electric-glow);
  transform: translateY(-2px);
}

/* HERO BANNER */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 70% 30%, rgba(0, 91, 197, 0.12) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 60%),
              var(--bg-navy);
  padding: 60px 0 120px;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(0deg, var(--bg-dark) 0%, transparent 100%);
  pointer-events: none;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 30px;
  background: var(--electric-glow);
  border: 1px solid var(--border-gold);
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

[data-theme="dark"] .hero-badge {
  color: var(--gold-primary);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-white);
  margin-bottom: 20px;
}

.hero-title span.gold {
  color: var(--brand-blue);
}

[data-theme="dark"] .hero-title span.gold {
  color: var(--gold-primary);
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 35px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 25px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.highlight-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--surface-card);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue);
  font-size: 1.1rem;
}

[data-theme="dark"] .highlight-icon {
  color: var(--gold-primary);
}

.highlight-text h5 {
  font-size: 0.9rem;
  color: var(--text-white);
}

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

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-car-card {
  position: relative;
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--surface-card);
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-luxury);
  transition: transform 0.4s ease;
}

.hero-car-card:hover {
  transform: translateY(-8px);
}

.hero-car-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.hero-car-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 17, 40, 0.95) 100%);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

[data-theme="light"] .hero-car-overlay {
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.95) 100%);
}

.car-tag {
  background: var(--blue-gradient);
  color: #FFF;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: inline-block;
}

/* SEARCH BAR FLOATING SECTION */
.search-section {
  position: relative;
  margin-top: -60px;
  z-index: 10;
  padding: 0 24px;
}

.search-card {
  max-width: 1280px;
  margin: 0 auto;
  background: var(--surface-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  box-shadow: var(--shadow-luxury);
}

.search-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-title i {
  color: var(--brand-blue);
}

[data-theme="dark"] .search-title i {
  color: var(--gold-primary);
}

.search-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) 160px;
  gap: 18px;
  align-items: end;
}

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

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-dark);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-white);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px var(--electric-glow);
}

select.form-control option {
  background: var(--bg-navy);
  color: var(--text-white);
}

/* SECTION CONTAINERS */
.section {
  padding: 100px 0;
}

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

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-subtitle {
  color: var(--brand-blue);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}

[data-theme="dark"] .section-subtitle {
  color: var(--gold-primary);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.2;
}

/* SERVICES SECTION */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--blue-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 65px;
  height: 65px;
  border-radius: var(--radius-md);
  background: var(--electric-glow);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue);
  font-size: 1.8rem;
  margin-bottom: 24px;
}

[data-theme="dark"] .service-icon {
  color: var(--gold-primary);
}

.service-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.service-bullets {
  list-style: none;
  margin-bottom: 24px;
}

.service-bullets li {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-bullets li i {
  color: var(--brand-blue);
  font-size: 0.8rem;
}

[data-theme="dark"] .service-bullets li i {
  color: var(--gold-primary);
}

/* VEHICLE CARDS GRID */
.filters-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: 30px;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--blue-gradient);
  color: #FFF;
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.vehicle-card {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.vehicle-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-luxury);
}

.vehicle-thumb {
  position: relative;
  height: 230px;
  overflow: hidden;
}

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

.vehicle-card:hover .vehicle-thumb img {
  transform: scale(1.06);
}

.vehicle-badge-top {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--blue-gradient);
  color: #FFF;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}

.vehicle-electric-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold-gradient);
  color: #FFF;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 20px;
}

.vehicle-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.vehicle-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.vehicle-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-white);
}

.vehicle-brand {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.vehicle-price {
  text-align: right;
}

.price-amount {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--brand-blue);
}

[data-theme="dark"] .price-amount {
  color: var(--gold-primary);
}

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

.vehicle-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 16px 0;
  margin: 12px 0 20px;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.spec-item i {
  color: var(--brand-blue);
}

[data-theme="dark"] .spec-item i {
  color: var(--gold-primary);
}

.vehicle-actions {
  margin-top: auto;
  display: flex;
  gap: 12px;
}

.vehicle-actions .btn {
  flex: 1;
}

/* COMPANY OVERVIEW / WHY CHOOSE US */
.overview-section {
  background: var(--bg-navy);
}

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

.overview-content h2 {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 20px;
}

.overview-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.overview-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-box {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  gap: 16px;
}

.feature-box i {
  font-size: 1.6rem;
  color: var(--brand-blue);
  flex-shrink: 0;
}

[data-theme="dark"] .feature-box i {
  color: var(--gold-primary);
}

.feature-box h4 {
  font-size: 1rem;
  color: var(--text-white);
  margin-bottom: 4px;
}

.feature-box p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* OFFERS BANNER */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.offer-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 36px 30px;
  background: var(--surface-card);
  border: 1px solid var(--border-gold);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
}

.offer-tag {
  align-self: flex-start;
  background: var(--blue-gradient);
  color: #FFF;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.offer-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 8px;
}

.offer-desc {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin-bottom: 20px;
}

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
}

.rating-stars {
  color: var(--brand-blue);
  margin-bottom: 16px;
  font-size: 0.9rem;
}

[data-theme="dark"] .rating-stars {
  color: var(--gold-primary);
}

.testimonial-text {
  color: var(--text-secondary);
  font-style: italic;
  font-size: 0.98rem;
  margin-bottom: 24px;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.client-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--electric-glow);
  border: 2px solid var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue);
  font-weight: 700;
}

[data-theme="dark"] .client-avatar {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

.client-name {
  font-weight: 700;
  color: var(--text-white);
  font-size: 1rem;
}

.client-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* CONTACT SECTION */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  background: var(--surface-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 45px;
  box-shadow: var(--shadow-luxury);
}

.contact-info-block h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 16px;
}

.contact-info-block p {
  color: var(--text-secondary);
  margin-bottom: 30px;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--electric-glow);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue);
  font-size: 1.2rem;
  flex-shrink: 0;
}

[data-theme="dark"] .contact-icon {
  color: var(--gold-primary);
}

.contact-text h5 {
  font-size: 0.95rem;
  color: var(--text-white);
}

.contact-text p, .contact-text a {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* FOOTER & YB PRO CREDIT LINK */
.footer {
  background: #040814;
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 30px;
  color: var(--text-secondary);
}

[data-theme="light"] .footer {
  background: #0F172A;
  color: #94A3B8;
}

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

.footer-brand p {
  margin: 16px 0 24px;
  font-size: 0.92rem;
  max-width: 320px;
}

.footer-column h4 {
  color: #FFF;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.footer-column h4::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--brand-blue);
  margin-top: 8px;
}

[data-theme="dark"] .footer-column h4::after {
  background: var(--gold-primary);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: var(--brand-blue);
  padding-left: 6px;
}

[data-theme="dark"] .footer-links a:hover {
  color: var(--gold-primary);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.88rem;
}

.yb-pro-link {
  color: var(--brand-blue);
  font-weight: 800;
  text-decoration: underline;
  transition: color 0.3s ease;
}

[data-theme="dark"] .yb-pro-link {
  color: var(--gold-primary);
}

.yb-pro-link:hover {
  color: #00A8E8;
}

/* MODAL */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 8, 20, 0.85);
  backdrop-filter: blur(10px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: var(--surface-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 600px;
  padding: 36px;
  position: relative;
  box-shadow: var(--shadow-luxury);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-close:hover {
  color: var(--brand-blue);
}

/* MESSAGES / ALERTS */
.alert-container {
  max-width: 1280px;
  margin: 20px auto 0;
  padding: 0 24px;
}

.alert {
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
}

.alert-success {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid #10B981;
  color: #10B981;
}

.alert-error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid #EF4444;
  color: #EF4444;
}

.btn-text-mobile {
  display: none;
}

/* RESPONSIVE STYLES */
@media (max-width: 992px) {
  .btn-text-desktop {
    display: none !important;
  }

  .btn-text-mobile {
    display: inline !important;
  }

  .top-strip {
    display: none !important;
  }

  .hero-container,
  .overview-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2.6rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--surface-card);
    flex-direction: column;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-subtle);
  }

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

  .mobile-toggle {
    display: block;
  }

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

