/* index.css - Premium Dark Theme for Otosat Cars Platform */

:root {
  /* Color System - Premium Orange & White Theme */
  --primary: #ff5f00;       /* Otocom Orange */
  --primary-hover: #e05300;
  --secondary: #0f172a;     /* Deep Slate */
  --accent: #ffa200;
  --success: #10b981;
  --danger: #ef4444;
  --warning: #f59e0b;
  
  /* Light Layout Colors */
  --dark-bg: #ffffff;       /* Pure White Background */
  --dark-card: #f8fafc;     /* Light Card Slate */
  --light-bg: #f1f5f9;      /* Light Section Gray */
  --white: #ffffff;
  
  /* Text Colors for Light Theme */
  --text-dark: #0f172a;     /* Dark text on white bg */
  --text-gray: #475569;     /* Gray description text */
  --text-light: #64748b;    /* Subdued label text */
  --text-white: #ffffff;    /* White text inside buttons/badges */
  
  /* Fonts */
  --font-sans: 'Inter', sans-serif;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  
  /* Radii & Shadows */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 2px 10px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 0 20px rgba(255, 95, 0, 0.1);
  
  /* Layout */
  --header-height: 100px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: var(--dark-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
}

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

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

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

/* Common Layout Components */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-sm {
  max-width: 720px;
}

.bg-light {
  background-color: var(--light-bg);
}

.hidden {
  display: none !important;
}

/* Typographical Helpers */
.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--text-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-block;
  margin-bottom: 8px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  gap: 20px;
}

.section-header h2 {
  font-size: 2.25rem;
}

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

.section-header-center h2 {
  font-size: 2.25rem;
  margin-bottom: 12px;
}

.section-subtitle-center {
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 24px;
}

.section-desc {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-gray);
}

/* Button UI System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: #ffffff; /* High contrast white text on orange button */
  box-shadow: 0 4px 15px rgba(255, 95, 0, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 95, 0, 0.35);
  background: linear-gradient(135deg, #ffa200 0%, var(--primary) 100%);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 95, 0, 0.3);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: rgba(255, 95, 0, 0.05);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25d366;
  color: var(--text-white);
}

.btn-whatsapp:hover {
  background-color: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
  border-radius: var(--radius-md);
}

.btn-md {
  padding: 14px 28px;
  font-size: 1rem;
}

.btn-text {
  background: transparent;
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
}

.btn-text:hover {
  text-decoration: underline;
}

.w-full {
  width: 100%;
}

/* Glassmorphic Header styling - Black Glass */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 95, 0, 0.1);
  z-index: 50;
  transition: var(--transition);
}

.header-container {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.logo-area {
  display: flex;
  align-items: center;
}

.header-logo {
  height: 70px; /* Highly visible premium logo */
  width: auto;
}

.desktop-nav {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-weight: 600;
  color: var(--text-gray);
  position: relative;
  padding: 8px 0;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

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

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

.mobile-menu-btn {
  display: none;
  background: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}

/* Drawer Menu (Mobile Navigation) - Dark theme */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background-color: var(--dark-card);
  border-left: 1px solid rgba(197, 168, 80, 0.15);
  box-shadow: var(--shadow-lg);
  z-index: 100;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease-in-out;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.drawer-logo {
  height: 48px;
  width: auto;
}

.close-drawer-btn {
  background: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}

.mobile-nav-link {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-gray);
}

.mobile-nav-link:hover {
  color: var(--primary);
  padding-left: 8px;
}

.drawer-footer {
  margin-top: auto;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  z-index: 99;
  display: none;
}

.drawer-overlay.open {
  display: block;
}

/* Main Content Routing Wrapper */
.main-content {
  padding-top: var(--header-height);
  min-height: calc(100vh - var(--header-height));
}

.page-view {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.page-view.active {
  display: block;
  opacity: 1;
}

/* 1. ANASAYFA (HOME) SPECIFIC UI */
.hero-section {
  background: radial-gradient(circle at 80% 20%, #fff0e6 0%, var(--dark-bg) 70%);
  padding: 80px 0 100px;
  position: relative;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.hero-text {
  max-width: 600px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(197, 168, 80, 0.12);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 24px;
  border: 1px solid rgba(197, 168, 80, 0.2);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary);
  animation: pulse 1.5s infinite;
}

.hero-title {
  font-size: 3.5rem;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--text-white);
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--text-gray);
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-gray);
}

/* Dark Hero Card / Form Styling */
.hero-card {
  background-color: var(--dark-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(197, 168, 80, 0.15);
  box-shadow: var(--shadow-lg);
  padding: 36px;
}

.card-header {
  margin-bottom: 28px;
}

.card-header h3 {
  font-size: 1.5rem;
  margin-bottom: 6px;
  color: var(--text-white);
}

.card-header p {
  color: var(--text-gray);
  font-size: 0.9rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-gray);
}

select, input[type="text"], input[type="number"], input[type="email"], input[type="tel"], textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 23, 42, 0.15);
  background-color: #ffffff; /* Light input bg */
  font-family: var(--font-sans);
  color: var(--text-dark);
  transition: var(--transition);
}

select:focus, input:focus, textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 95, 0, 0.15);
}

select:disabled {
  background-color: #f1f5f9;
  border-color: rgba(15, 23, 42, 0.08);
  color: var(--text-light);
  cursor: not-allowed;
}

/* Brand Grid styling - Dark theme */
.brands-section {
  padding: 50px 0;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  background-color: var(--dark-card);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.brand-logo-card {
  background-color: var(--dark-card);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-dark);
}

.brand-logo-img {
  height: 24px;
  width: auto;
  object-fit: contain;
}

.brand-logo-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
  transform: translateY(-3px);
}

.brand-letter {
  display: inline-flex;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: #03060f;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

/* Featured / Catalog Vehicles Grid styles - Dark Card */
.featured-section {
  padding: 80px 0;
}

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

.vehicle-card {
  background-color: var(--dark-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.03);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.vehicle-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 95, 0, 0.25);
}

.vehicle-image-wrapper {
  position: relative;
  aspect-ratio: 16/10;
  background-color: #050811;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.vehicle-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.vehicle-card:hover .vehicle-image {
  transform: scale(1.05);
}

.vehicle-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 95, 0, 0.85);
  color: var(--text-white);
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(4px);
}

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

.vehicle-title {
  font-size: 1.25rem;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.vehicle-version {
  font-size: 0.875rem;
  color: var(--text-gray);
  margin-bottom: 16px;
}

.vehicle-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.spec-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.825rem;
  color: var(--text-gray);
  background-color: rgba(255, 255, 255, 0.02);
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
}

.vehicle-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.vehicle-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

/* How It Works steps styling - Dark Card */
.how-it-works {
  padding: 100px 0;
}

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

.step-card {
  position: relative;
  background-color: var(--dark-card);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: var(--transition);
}

.step-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.step-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(197, 168, 80, 0.05);
  line-height: 1;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

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

/* B2B / Corporate Area styles */
.b2b-section {
  padding: 80px 0;
}

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

.b2b-content h2 {
  font-size: 2.25rem;
  margin-bottom: 16px;
}

.b2b-content p {
  color: var(--text-gray);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.b2b-features {
  list-style: none;
  margin-bottom: 40px;
}

.b2b-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.b2b-image-area {
  display: flex;
}

.gradient-bg-card {
  background: linear-gradient(135deg, #090e1c 0%, #03060f 100%);
  color: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 95, 0, 0.2);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.gradient-bg-card h1, .gradient-bg-card h2, .gradient-bg-card h3, .gradient-bg-card h4 {
  color: #ffffff !important;
}

.gradient-bg-card h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 16px;
}

.gradient-bg-card p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.gradient-bg-card i {
  color: var(--primary);
  width: 20px;
  margin-top: 4px;
}

.b2b-hours {
  margin-top: 32px;
  background-color: rgba(197, 168, 80, 0.05);
  border: 1px dashed rgba(197, 168, 80, 0.2);
  padding: 12px;
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 0.9rem;
  color: var(--primary);
}

/* Reviews Grid styles */
.reviews-section {
  padding: 100px 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.review-card {
  background-color: var(--dark-card);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.rating {
  color: var(--accent);
  margin-bottom: 20px;
}

.review-card p {
  font-style: italic;
  color: var(--text-gray);
  font-size: 1.05rem;
  margin-bottom: 28px;
  flex: 1;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
}

.initials {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(197, 168, 80, 0.15);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.reviewer h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.reviewer span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* 2. ARAÇLAR CATALOG SPECIFIC LAYOUT */
.catalog-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  padding: 60px 0;
}

.catalog-filters {
  background-color: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  padding: 24px;
  height: fit-content;
  position: sticky;
  top: 114px;
}

.filters-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.filter-group {
  margin-bottom: 20px;
}

.input-icon-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
}

.input-icon-wrapper input {
  padding-left: 36px;
}

.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  font-weight: 600;
}

.no-results {
  text-align: center;
  padding: 80px 0;
}

.no-results i {
  font-size: 4rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.no-results h3 {
  margin-bottom: 8px;
}

/* Mobile filter float toggle button */
.mobile-filter-bar {
  display: none;
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 40;
}

.mobile-filter-bar .btn {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  background: rgba(10, 15, 29, 0.9);
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 12px 24px;
  border-radius: var(--radius-full);
}

/* 3. ARACINI SAT WIZARD SYSTEM */
.wizard-card {
  background-color: var(--dark-card);
  border: 1px solid rgba(197, 168, 80, 0.15);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 48px;
  margin: 60px 0;
}

.wizard-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.step-indicator {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #050811;
  border: 2px solid rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: var(--transition);
}

.step-indicator.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #03060f;
  box-shadow: var(--shadow-glow);
}

.step-indicator.completed {
  background-color: var(--success);
  border-color: var(--success);
  color: var(--white);
}

.step-line {
  flex: 1;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.05);
  margin: 0 8px;
}

.wizard-step {
  display: none;
}

.wizard-step.active {
  display: block;
  animation: fadeIn 0.4s ease-in-out;
}

.brands-select-grid, .models-select-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 36px 0;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 8px;
}

/* Custom Scrollbar for dropdown grids */
.brands-select-grid::-webkit-scrollbar, .models-select-grid::-webkit-scrollbar {
  width: 6px;
}
.brands-select-grid::-webkit-scrollbar-thumb, .models-select-grid::-webkit-scrollbar-thumb {
  background-color: rgba(197, 168, 80, 0.3);
  border-radius: var(--radius-full);
}

.brand-select-btn, .model-select-btn {
  background-color: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.brand-select-btn:hover, .model-select-btn:hover {
  border-color: var(--primary);
  background-color: rgba(255, 95, 0, 0.05);
  transform: translateY(-2px);
  color: var(--primary);
}

.years-select-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 36px 0;
}

.year-btn {
  background-color: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--text-dark);
  border-radius: var(--radius-md);
  padding: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.year-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background-color: rgba(255, 95, 0, 0.05);
}

.wizard-form {
  margin: 36px 0;
}

.wizard-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
}

.damage-select-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 36px 0;
}

.damage-btn {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--text-dark);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.damage-btn:hover {
  border-color: var(--primary);
  background-color: rgba(255, 95, 0, 0.05);
}

.damage-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: rgba(255, 95, 0, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.damage-btn h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.damage-btn p {
  color: var(--text-gray);
  font-size: 0.85rem;
}

/* Step Result screen styling */
.wizard-step-result {
  animation: scaleUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-header {
  margin-bottom: 36px;
}

.success-icon {
  width: 64px;
  height: 64px;
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--success);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.quote-box {
  background-color: rgba(197, 168, 80, 0.06);
  border: 1px solid rgba(197, 168, 80, 0.2);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin-bottom: 40px;
}

.quote-label {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin-bottom: 12px;
}

.quote-price {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.quote-info {
  font-size: 0.9rem;
  color: var(--text-gray);
  max-width: 480px;
  margin: 0 auto;
}

.final-appraisal-form {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 40px;
}

.final-appraisal-form h3 {
  margin-bottom: 12px;
}

.final-appraisal-form p {
  color: var(--text-gray);
  margin-bottom: 24px;
}

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

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

.alert-success {
  background-color: #064e3b;
  color: #a7f3d0;
  border: 1px solid #047857;
}

/* 4. HESAPLAMA VIEW (CALCULATORS) */
.tabs-container {
  background-color: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  margin: 40px 0 60px;
}

.tabs-header {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  background-color: rgba(0, 0, 0, 0.2);
}

.tab-btn {
  padding: 20px;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--text-gray);
  cursor: pointer;
  background: none;
  transition: var(--transition);
  text-align: center;
}

.tab-btn:hover {
  background-color: rgba(255, 255, 255, 0.02);
  color: var(--text-white);
}

.tab-btn.active {
  background-color: var(--dark-card);
  color: var(--primary);
  border-bottom: 3px solid var(--primary);
}

.tabs-content {
  padding: 40px;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
  animation: fadeIn 0.4s ease-in-out;
}

.calculator-form {
  margin: 28px 0;
}

.calc-result-box {
  background-color: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  margin-top: 24px;
  animation: fadeIn 0.3s ease;
}

.result-value {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  margin: 12px 0;
  color: var(--success);
}

.calc-result-breakdown {
  text-align: left;
  max-width: 480px;
  margin: 0 auto;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.total-row {
  border-bottom: none;
  font-size: 1.15rem;
  font-weight: 700;
  padding-top: 16px;
  color: var(--success);
}

/* 5. GÜVENLİ AL-SAT BLOG */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 60px 0;
}

.blog-card {
  background-color: var(--dark-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.03);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(197, 168, 80, 0.2);
}

.blog-image-wrapper {
  aspect-ratio: 16/10;
  background-color: #050811;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-image {
  transform: scale(1.05);
}

.blog-content {
  padding: 24px;
}

.blog-meta {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.blog-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  line-height: 1.4;
  color: var(--text-white);
}

.blog-card p {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.5;
}

/* Blog post full view styling */
.blog-reader-panel {
  padding: 40px 0 80px;
  animation: fadeIn 0.4s ease-in-out;
}

.full-blog-article {
  max-width: 800px;
  margin: 0 auto;
}

.article-meta {
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.full-blog-article h1 {
  font-size: 2.75rem;
  margin-bottom: 32px;
  color: var(--text-white);
}

.article-image-wrapper {
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.article-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-body {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #cbd5e1;
}

.article-body h3 {
  font-size: 1.5rem;
  margin: 36px 0 16px;
  color: var(--text-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 8px;
}

.article-body p {
  margin-bottom: 24px;
}

.article-body ul {
  margin: 0 0 24px 24px;
}

.article-body li {
  margin-bottom: 8px;
}

/* 6. İLETİŞİM VIEW */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  padding: 80px 0;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.info-card-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.info-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(255, 95, 0, 0.08);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  border: 1px solid rgba(255, 95, 0, 0.2);
}

.info-card-item h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.info-card-item p, .info-card-item a {
  color: var(--text-gray);
  font-size: 0.95rem;
}

.info-card-item a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.contact-form-panel {
  background-color: var(--dark-card);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact-form-panel h3 {
  margin-bottom: 24px;
  color: var(--text-dark);
}

/* Details Modal UI - Dark theme */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background-color: var(--dark-card);
  border: 1px solid rgba(197, 168, 80, 0.2);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 900px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal.open .modal-content {
  transform: scale(1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.close-modal-btn {
  background: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}

.modal-body {
  padding: 32px;
}

.modal-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
}

.modal-image-wrapper {
  aspect-ratio: 16/10;
  background-color: #050811;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.modal-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-info h2 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--primary);
  margin-bottom: 24px;
}

.modal-specs-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.95rem;
}

/* Premium WhatsApp Float Widget */
.whatsapp-chat-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
}

.whatsapp-btn {
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  position: relative;
  transition: var(--transition);
}

.whatsapp-btn:hover {
  transform: scale(1.08);
}

.online-indicator {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--success);
  border: 2px solid var(--white);
}

.whatsapp-chat-box {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 320px;
  background-color: var(--dark-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 95, 0, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-chat-box.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.chat-box-header {
  background-color: #128c7e;
  color: var(--white);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.header-avatar {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  position: relative;
}

.online-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background-color: #25d366;
  border-radius: 50%;
  border: 1.5px solid #128c7e;
}

.header-info h4 {
  font-size: 0.95rem;
}

.header-info span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
}

.close-chat-btn {
  background: none;
  color: var(--white);
  font-size: 1.15rem;
  cursor: pointer;
  position: absolute;
  top: 16px;
  right: 16px;
}

.chat-box-body {
  background-color: #03060f;
  padding: 24px 20px;
  flex: 1;
}

.support-msg {
  background-color: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: var(--text-dark);
  box-shadow: 0 1px 2px rgba(0,0,0,0.5);
  position: relative;
}

.support-msg::before {
  content: '';
  position: absolute;
  top: 10px;
  left: -8px;
  border-width: 6px;
  border-style: solid;
  border-color: transparent var(--dark-card) transparent transparent;
}

.chat-box-footer {
  padding: 16px;
  background-color: var(--dark-card);
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* Footer layout - Black styling */
.main-footer {
  background-color: #010205;
  color: var(--white);
  padding: 80px 0 0;
  margin-top: 80px;
  border-top: 4px solid var(--primary);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-logo {
  height: 56px;
  width: auto;
  margin-bottom: 24px;
}

.footer-col-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.footer-socials a:hover {
  background-color: var(--primary);
  color: #03060f;
  transform: translateY(-2px);
}

.footer-col h4, .footer-col-contact h4 {
  font-size: 1.15rem;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after, .footer-col-contact h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background-color: var(--primary);
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

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

.footer-col-contact p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.footer-col-contact i {
  color: var(--primary);
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 30px 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.agency-credit {
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.wix-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 95, 0, 0.08);
  color: var(--primary);
  border: 1px solid rgba(255, 95, 0, 0.25);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 0 10px rgba(255, 95, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  animation: wixGlow 3s infinite ease-in-out;
}

.wix-badge:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #ffffff !important;
  border-color: var(--primary);
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 95, 0, 0.5);
}

.wix-magic-icon {
  color: var(--primary);
  font-size: 0.95rem;
  animation: spinSparkle 4s infinite linear;
}

@keyframes wixGlow {
  0% { box-shadow: 0 0 10px rgba(255, 95, 0, 0.1); border-color: rgba(255, 95, 0, 0.25); }
  50% { box-shadow: 0 0 20px rgba(255, 95, 0, 0.4); border-color: rgba(255, 95, 0, 0.6); }
  100% { box-shadow: 0 0 10px rgba(255, 95, 0, 0.1); border-color: rgba(255, 95, 0, 0.25); }
}

@keyframes spinSparkle {
  0% { transform: scale(1) rotate(0deg); opacity: 0.8; }
  50% { transform: scale(1.2) rotate(180deg); opacity: 1; filter: drop-shadow(0 0 5px var(--primary)); }
  100% { transform: scale(1) rotate(360deg); opacity: 0.8; }
}

/* Animations */
@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

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

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

/* Responsive Media Queries - Mobile Layout Optimizations */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.75rem;
  }
  .hero-container {
    gap: 40px;
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .vehicles-grid, .steps-grid, .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .desktop-nav, .desktop-only {
    display: none !important;
  }
  .mobile-menu-btn {
    display: block;
    color: var(--primary);
  }
  .hero-section {
    padding: 40px 0 60px;
  }
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-title {
    font-size: 2.5rem;
    text-align: center;
  }
  .hero-desc {
    text-align: center;
    margin-bottom: 30px;
  }
  .hero-stats {
    justify-content: center;
    gap: 30px;
  }
  .b2b-grid, .contact-grid, .modal-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  /* Mobile Catalog Filter system */
  .catalog-layout {
    grid-template-columns: 1fr;
    padding: 30px 0;
  }
  
  .catalog-filters {
    display: none; /* Hide filter panel in mobile sidebar mode */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    border-radius: 0;
    overflow-y: auto;
    border: none;
    background-color: var(--dark-bg);
  }
  
  .catalog-filters.open {
    display: block;
    animation: fadeIn 0.3s ease;
  }
  
  .mobile-filter-bar {
    display: block; /* Show floating filter bar on mobile catalog */
  }

  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-bottom-container {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 2.15rem;
  }
  .vehicles-grid, .steps-grid, .blog-grid, .brands-grid, .brands-select-grid, .models-select-grid, .years-select-grid, .reviews-grid {
    grid-template-columns: 1fr;
  }
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }
  .wizard-card {
    padding: 20px;
  }
  .wizard-stepper {
    margin-bottom: 30px;
  }
  .brands-select-grid, .models-select-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tabs-header {
    grid-template-columns: 1fr;
  }
  .tabs-content {
    padding: 24px 16px;
  }
  .contact-form-panel {
    padding: 24px 16px;
  }
  .modal-body {
    padding: 20px;
  }
}

/* Valuation Form Specific Styles */
.valuation-layout-card {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.form-tabs-selector {
  display: flex;
  gap: 16px;
  margin-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 16px;
}

.form-select-tab {
  flex: 1;
  padding: 14px 20px;
  background-color: #050914;
  border: 1px solid rgba(197, 168, 80, 0.2);
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.form-select-tab:hover {
  background-color: rgba(197, 168, 80, 0.05);
}

.form-select-tab.active {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: #03060f;
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.valuation-tab-panel {
  display: none;
}

.valuation-tab-panel.active-panel {
  display: block;
  animation: fadeIn 0.4s ease-in-out;
}

.section-header-form {
  margin-bottom: 28px;
}

.section-header-form h2 {
  font-size: 1.75rem;
  margin-bottom: 6px;
  color: var(--text-white);
}

.section-header-form p {
  font-size: 0.9rem;
  color: var(--text-gray);
}

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

.form-section-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.05);
  margin: 32px 0;
  width: 100%;
}

.otocars-styled-form label {
  display: block;
  font-size: 0.825rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  margin-bottom: 8px;
}

.otocars-styled-form select, 
.otocars-styled-form input,
.otocars-styled-form textarea {
  background-color: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.15);
  font-size: 0.95rem;
  color: var(--text-dark);
}

.otocars-styled-form select:focus, 
.otocars-styled-form input:focus,
.otocars-styled-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(255, 95, 0, 0.15);
}

.otocars-styled-form select:disabled {
  background-color: #f1f5f9;
  border-color: rgba(15, 23, 42, 0.08);
  color: var(--text-light);
}

/* responsive media queries update */
@media (max-width: 768px) {
  .form-grid-2col {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .form-tabs-selector {
    flex-direction: column;
    gap: 10px;
  }
}

/* FAQ Accordion Styling */
.faq-section {
  padding: 80px 0;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.faq-item {
  background-color: var(--dark-card);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(255, 95, 0, 0.2);
  box-shadow: var(--shadow-sm);
}

.faq-trigger {
  width: 100%;
  padding: 20px 24px;
  background: none;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-trigger i {
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  padding: 0 24px;
  color: var(--text-gray);
  font-size: 0.95rem;
  border-top: 1px solid transparent;
}

.faq-answer p {
  line-height: 1.6;
}

.faq-item.active .faq-trigger i {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
  border-top-color: rgba(15, 23, 42, 0.05);
}


