/* ==========================================================================
   APEX AUTOMOTIVE - MASTER STYLESHEET
   Includes: Design Tokens, Layout, Navigation, Components, Dashboard & Responsive
   ========================================================================== */

@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;800&display=swap');

/* --- DESIGN TOKENS --- */
:root {
  /* Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --bg-dark: #0f172a;
  --bg-surface: #ffffff;
  --bg-card: #ffffff;
  
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;
  
  --accent-blue: #007979;
  --accent-blue-hover: #24B1B1;
  --accent-blue-light: #C1EBE9;
  
  --accent-red: #dc2626;
  --accent-red-hover: #b91c1c;
  --accent-red-light: #fef2f2;
  
  --accent-amber: #d97706;
  --accent-emerald: #059669;
  --accent-emerald-light: #ecfdf5;
  
  --border-color: #e2e8f0;
  --border-hover: #cbd5e1;
  --border-focus: #2563eb;
  
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-blue: 0 10px 25px -5px rgba(10, 111, 129, 0.712);

  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --header-height: 84px;
  --container-max: 1280px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.menu-open {
  overflow: hidden !important;
}

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

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

ul, ol {
  list-style: none;
}

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

button {
  cursor: pointer;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

.text-gradient {
  background: linear-gradient(135deg, var(--accent-blue) 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-blue);
  background: var(--accent-blue-light);
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-padding {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem auto;
}

.section-header.text-start {
  text-align: left;
  margin-left: 0;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-top: 0.75rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--accent-blue);
  color: var(--text-white);
  box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
  background-color: var(--accent-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -5px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
  background-color: var(--bg-dark);
  color: var(--text-white);
}

.btn-secondary:hover {
  background-color: #1e293b;
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--border-color);
  color: var(--text-primary);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
  background-color: var(--accent-blue-light);
}

.btn-white {
  background-color: #ffffff;
  color: var(--text-primary);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background-color: #f8fafc;
  transform: translateY(-2px);
}

.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-blue { background: var(--accent-blue-light); color: var(--accent-blue); }
.badge-green { background: var(--accent-emerald-light); color: var(--accent-emerald); }
.badge-amber { background: #fffbe6; color: var(--accent-amber); }
.badge-red { background: var(--accent-red-light); color: var(--accent-red); }

/* --- PAGE LOADER --- */
#page-loader {
  position: fixed;
  inset: 0;
  background-color: var(--bg-dark);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 2rem;
}

.loader-brand i {
  color: var(--accent-blue);
  font-size: 2.25rem;
}

.loader-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--accent-blue);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* --- HEADER & NAVIGATION --- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: background-color var(--transition-base), box-shadow var(--transition-base);
}

.site-header.scrolled {
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
  background-color: rgba(255, 255, 255, 0.98);
}

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

/* Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.brand-logo .logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--accent-blue) 0%, #1e40af 100%);
  color: var(--text-white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-blue);
}

.brand-logo span span {
  color: var(--accent-blue);
}

/* Navigation Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  position: relative;
  padding: 0.5rem 0;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--accent-blue);
  transition: width var(--transition-fast);
  border-radius: 2px;
}

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

/* --- NAVIGATION DROPDOWN --- */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}

.dropdown-arrow {
  font-size: 0.75rem;
  transition: transform var(--transition-fast);
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 180px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--transition-fast), visibility var(--transition-fast), transform var(--transition-fast);
  z-index: 1050;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1.25rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.dropdown-item i {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.dropdown-item:hover,
.dropdown-item.active {
  color: var(--accent-blue);
  background-color: var(--accent-blue-light);
}

.dropdown-item:hover i,
.dropdown-item.active i {
  color: var(--accent-blue);
}

/* Mobile Nav Dropdown */
.mobile-nav-dropdown {
  width: 100%;
  border-bottom: 1px dashed var(--border-color);
}

.mobile-dropdown-toggle {
  width: 100%;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  cursor: pointer;
}

.mobile-dropdown-toggle.active,
.mobile-dropdown-toggle:hover {
  color: var(--accent-blue);
}

.mobile-dropdown-arrow {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.mobile-nav-dropdown.open .mobile-dropdown-arrow {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-left: 1rem;
}

.mobile-nav-dropdown.open .mobile-dropdown-menu {
  max-height: 200px;
  padding-top: 0.25rem;
  padding-bottom: 0.75rem;
}

.mobile-submenu-link {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.mobile-submenu-link i {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.mobile-submenu-link:hover,
.mobile-submenu-link.active {
  color: var(--accent-blue);
  background-color: var(--accent-blue-light);
}

.mobile-submenu-link:hover i,
.mobile-submenu-link.active i {
  color: var(--accent-blue);
}

/* Header Action Controls */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.theme-toggle-btn, .rtl-toggle-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--bg-tertiary);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.theme-toggle-btn:hover, .rtl-toggle-btn:hover {
  background-color: var(--accent-blue-light);
  color: var(--accent-blue);
}

.hamburger-btn {
  display: none;
  width: 44px;
  height: 44px;
  background-color: var(--bg-tertiary);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 1.25rem;
  align-items: center;
  justify-content: center;
}

/* Mobile Off-canvas Navigation */
.mobile-nav-panel {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--bg-primary);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
  overflow-y: auto;
}

.mobile-nav-panel.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.mobile-nav-close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--bg-tertiary);
  font-size: 1.25rem;
  color: var(--text-primary);
}

.mobile-nav-body {
  padding: 2rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px dashed var(--border-color);
}

.mobile-nav-link.active, .mobile-nav-link:hover {
  color: var(--accent-blue);
}

.mobile-nav-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.5rem;
}

/* --- HERO SECTION (HOME) --- */
.hero-section {
  position: relative;
  background: radial-gradient(circle at 70% 30%, rgba(37, 99, 235, 0.08) 0%, transparent 60%), var(--bg-primary);
  padding: 4rem 0 6rem 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 4rem;
}

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

.hero-title {
  margin-bottom: 1.25rem;
}

.hero-description {
 
  color: var(--text-secondary);
  margin-bottom: 2.25rem;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-item i {
  font-size: 1.5rem;
  color: var(--accent-blue);
}

.trust-item-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-primary);
}

.trust-item-text span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Hero Media & Dynamic Badge */
.hero-media {
  position: relative;
}

.hero-img-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);

}
.hero-img-wrapper img {
  width: 100% !important;
  height: 480px !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position:  top center !important;
  display: block !important;
}
.hero-img-wrapper:hover img {
  transform: scale(1.03);
}

.hero-float-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 3;
}

.float-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-emerald-light);
  color: var(--accent-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

/* --- SECTION 2: SERVICE HIGHLIGHTS (HORIZONTAL STRIP) --- */
.highlights-strip {
  background-color: var(--bg-dark);
  color: var(--text-white);
  padding: 3rem 0;
  margin-top: -3rem;
  position: relative;
  z-index: 10;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}

.highlight-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-box:last-child {
  border-right: none;
}

.highlight-icon {
  font-size: 2rem;
  color: var(--accent-blue);
}

.highlight-info h4 {
  color: var(--text-white);
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.highlight-info p {
  color: var(--text-light);
  font-size: 0.8rem;
}

/* --- SECTION 3: ABOUT WORKSHOP (SPLIT EDITORIAL) --- */
.about-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-experience-badge {
  position: absolute;
  top: 30px;
  right: -20px;
  background: var(--accent-blue);
  color: white;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-blue);
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-card {
  background: var(--bg-secondary);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--accent-blue);
}

/* --- SECTION 4: FEATURED SERVICES ASYMMETRIC GRID --- */
.services-asym-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.5rem;
}

.service-featured-card {
  grid-row: span 2;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.95) 100%), url('https://images.unsplash.com/photo-1517524008697-84bbe3c3fd98?auto=format&fit=crop&w=800&q=80') center/cover;
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
  min-height: 480px;
  box-shadow: var(--shadow-lg);
}

.service-featured-card h3 {
  color: white;
  margin-bottom: 0.75rem;
}

.service-item-tile {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 2rem;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-item-tile:hover {
  transform: translateY(-5px);
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-lg);
}

.service-tile-icon {
  width: 54px;
  height: 54px;
  background: var(--accent-blue-light);
  color: var(--accent-blue);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

/* --- SECTION 5: WHY CHOOSE US TIMELINE/FEATURE LIST --- */
.why-choose-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.feature-timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-timeline-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast);
}

.feature-timeline-item:hover {
  border-color: var(--accent-blue);
}

.timeline-step {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

/* --- SECTION 6: TECHNICIANS SHOWCASE --- */
.technicians-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.tech-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.tech-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.tech-img-box {
  height: 300px;
  position: relative;
  overflow: hidden;
 

}

.tech-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
   object-position:top center;
}

.tech-info {
  padding: 1.5rem;
}

.tech-info h4 { margin-bottom: 0.25rem; }
.tech-spec { color: var(--accent-blue); font-weight: 600; font-size: 0.875rem; margin-bottom: 0.75rem; display: block;}

/* --- SECTION 7: SERVICE PROCESS + TESTIMONIAL --- */
.process-testimonial-wrapper {
  background: var(--bg-secondary);
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  border: 1px solid var(--border-color);
}

.process-steps-bar {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-bottom: 4rem;
  position: relative;
}

.process-step-node {
  text-align: center;
  position: relative;
}

.process-node-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--accent-blue);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin: 0 auto 0.75rem auto;
  box-shadow: var(--shadow-sm);
}

.process-step-node h5 { font-size: 0.9rem; }

/* Testimonial Spotlight */
.testimonial-spotlight {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: center;
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.stars-rate {
  color: var(--accent-amber);
  margin-bottom: 0.5rem;
}

/* --- SECTION 8: FULL-WIDTH CTA + WORKSHOP PREVIEW --- */
.final-cta-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
  border-radius: var(--radius-xl);
  padding: 4rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.final-cta-banner h2 { color: white; margin-bottom: 1rem; }

.cta-contact-details {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-detail-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-detail-line i {
  color: var(--accent-blue);
  font-size: 1.25rem;
}

/* --- GLOBAL FOOTER --- */
.site-footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding-top: 5rem;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  color: var(--text-white);
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-blue);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-light);
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-blue);
  padding-left: 0.25rem;
}

.footer-newsletter form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.footer-newsletter input {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  color: white;
  width: 100%;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.social-icon:hover {
  background: var(--accent-blue);
}

/* --- INNER PAGE HERO --- */
.page-hero {
background:
  linear-gradient(135deg, var(--bg-dark) 0%, #1e293b4f 100%),
  url('../images/car3.jpg') center/cover no-repeat;
  color: white;
  padding: 5rem 0;
  text-align: center;
  position: relative;
  height: 70vh;
  align-items: center;  
  justify-content: center;
  display: flex;
}

.page-hero h1 { color: white; margin-bottom: 1rem; }

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

.breadcrumb a { color: var(--accent-blue); }

/* --- FORMS & VALIDATION STYLING --- */
.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.15rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.form-control.is-invalid {
  border-color: var(--accent-red) !important;
  background-color: var(--accent-red-light);
}

/* MANDATORY RED VALIDATION ERROR TEXT */
.error-message {
  color: var(--accent-red) !important;
  font-size: 0.825rem;
  font-weight: 600;
  margin-top: 0.4rem;
  display: block;
}

.form-success-banner {
  background: var(--accent-emerald-light);
  color: var(--accent-emerald);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid #a7f3d0;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
}

/* --- FAQ ACCORDION --- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-header {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 700;
  color: var(--text-primary);
}

.faq-content {
  padding: 0 1.5rem 1.25rem 1.5rem;
  color: var(--text-secondary);
  display: none;
  border-top: 1px solid var(--border-color);
  margin-top: 0.5rem;
  padding-top: 1rem;
}

.faq-item.active .faq-content {
  display: block;
}

.faq-item.active .faq-header i {
  transform: rotate(180deg);
  color: var(--accent-blue);
}

/* ==========================================================================
   CUSTOMER DASHBOARD STYLES
   ========================================================================== */
.dashboard-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
  background-color: var(--bg-secondary);
}

/* Sidebar */
.dash-sidebar {
  background-color: var(--bg-dark);
  color: white;
  padding: 2rem 1.25rem;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  z-index: 90;
}

.dash-brand {
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1.5rem;
}

.dash-nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  color: var(--text-light);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.dash-nav-item:hover, .dash-nav-item.active {
  background: var(--accent-blue);
  color: white;
}

.dash-nav-item i {
  font-size: 1.1rem;
  width: 24px;
}

.dash-sidebar-footer {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Main Dashboard Area */
.dash-main {
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.dash-header {
  height: 74px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-color);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 80;
}

.dash-user-profile {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.dash-content {
  padding: 2rem;
  flex: 1;
}

/* Overview Stat Cards */
.dash-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.dash-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.stat-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

/* SERVICE STATUS TRACKER (8 STAGES) */
.tracker-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2rem;
}

.tracker-timeline-bar {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0.5rem;
  margin: 2.5rem 0 1.5rem 0;
  position: relative;
}

.tracker-stage {
  text-align: center;
  position: relative;
}

.tracker-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  border: 2px solid var(--border-color);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  margin: 0 auto 0.5rem auto;
}

.tracker-stage.completed .tracker-dot {
  background: var(--accent-emerald);
  border-color: var(--accent-emerald);
  color: white;
}

.tracker-stage.current .tracker-dot {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  color: white;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.25);
  animation: pulse-ring 1.5s infinite;
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(37, 99, 235, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

.tracker-stage h6 {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* Dashboard Tables */
.table-responsive {
  width: 100%;
  overflow-x: auto;
}

.custom-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.custom-table th, .custom-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.9rem;
}

.custom-table th {
  background: var(--bg-tertiary);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
  .hero-grid, .about-split-grid, .why-choose-layout, .final-cta-banner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .services-asym-grid {
    grid-template-columns: 1fr;
  }
  
  .service-featured-card {
    grid-row: auto;
    min-height: 360px;
  }

  .process-steps-bar {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .dashboard-layout {
    grid-template-columns: 1fr;
  }

  .dash-sidebar {
    position: fixed;
    left: -280px;
    top: 0;
    bottom: 0;
    width: 260px;
    transition: left var(--transition-base);
  }

  .dash-sidebar.active {
    left: 0;
  }

  .tracker-timeline-bar {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .hamburger-btn { display: flex; }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

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

  .highlight-box {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .process-steps-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .tracker-timeline-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================================================
   HOME 2 - REAL ESTATE UNIQUE DESIGN SYSTEM STYLES
   ========================================================================== */

/* Hero Section */
.h2-hero-section {
  position: relative;
  padding: 6rem 0 7rem 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.78) 0%, rgba(15, 23, 42, 0.88) 100%),
            url('../images/car5.jpg') center/cover no-repeat;
  color: #ffffff;
  overflow: hidden;
}

.h2-gold-badge {
  background: rgba(217, 119, 6, 0.15) !important;
  color: #fbbf24 !important;
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.h2-hero-title {
  color: #ffffff;
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.h2-gradient-text {
  background: linear-gradient(135deg, #38bdf8 0%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.h2-hero-desc {
  font-size: 1.15rem;
  color: #cbd5e1;
  max-width: 640px;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

.h2-hero-filter {
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  margin-top: 3rem;
}

.h2-filter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)) auto;
  gap: 1.25rem;
  align-items: flex-end;
}

.h2-filter-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.h2-filter-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.h2-filter-label i {
  color: var(--accent-blue);
}

.h2-filter-select {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  color: #ffffff;
  font-size: 0.95rem;
  font-family: var(--font-body);
  outline: none;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.h2-filter-select option {
  background: #0f172a;
  color: #ffffff;
}

.h2-filter-select:focus {
  border-color: var(--accent-blue);
  background: rgba(255, 255, 255, 0.15);
}

.h2-filter-btn {
  height: 48px;
  padding: 0 1.75rem;
  font-size: 0.95rem;
  white-space: nowrap;
}

/* Company Introduction */
.h2-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.h2-intro-media {
  position: relative;
}

.h2-intro-img-box {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.h2-intro-img-box img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.h2-intro-img-box:hover img {
  transform: scale(1.03);
}

.h2-intro-experience-card {
  position: absolute;
  bottom: -25px;
  right: -25px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.h2-intro-exp-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent-blue-light);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.h2-intro-exp-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text-primary);
}

.h2-intro-exp-text span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.h2-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.25rem;
}

.h2-intro-stat-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.h2-intro-stat-card:hover {
  border-color: var(--accent-blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.h2-stat-num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent-blue);
  line-height: 1.2;
}

.h2-stat-lbl {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Featured Properties Section */
.h2-property-hero-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  margin-bottom: 2.5rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
}

.h2-prop-hero-img {
  position: relative;
  min-height: 380px;
  
}

.h2-prop-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.h2-prop-hero-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 2;
}

.h2-prop-hero-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.h2-prop-price {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--accent-blue);
  margin: 0.75rem 0 0.5rem 0;
}

.h2-prop-title {
  font-size: 1.65rem;
  margin-bottom: 0.5rem;
}

.h2-prop-location {
  color: var(--text-muted);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.h2-prop-features-strip {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 1.75rem;
}

.h2-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.h2-feature-item i {
  color: var(--accent-blue);
}

.h2-properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.h2-property-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.h2-property-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--border-hover);
}

.h2-card-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.h2-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.h2-property-card:hover .h2-card-img-wrap img {
  transform: scale(1.08);
}

.h2-card-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
}

.h2-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.h2-card-price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-blue);
}

.h2-card-title {
  font-size: 1.25rem;
  margin: 0.35rem 0;
}

.h2-card-loc {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
}

.h2-card-specs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
  margin-top: auto;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Why Choose Us - Editorial Layout */
.h2-why-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.h2-why-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.h2-why-item:hover {
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-lg);
  transform: translateX(6px);
}

.h2-why-icon-box {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: var(--radius-md);
  background: var(--accent-blue-light);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.h2-why-content h4 {
  margin-bottom: 0.4rem;
}

.h2-why-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Property Showcase Section */
.h2-showcase-wrapper {
  position: relative;
  background: var(--bg-dark);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  color: #ffffff;
}

.h2-showcase-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.h2-showcase-inner {
  position: relative;
  z-index: 2;
  padding: 5rem 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.h2-showcase-card {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 2.75rem;
  border-radius: var(--radius-xl);
}

.h2-showcase-card h2 {
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.h2-showcase-card p {
  color: #cbd5e1;
  margin-bottom: 1.5rem;
}

.h2-showcase-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.h2-showcase-check-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #e2e8f0;
}

.h2-showcase-check-item i {
  color: #38bdf8;
  font-size: 1.1rem;
}

/* Our Services Asymmetric Section */
.h2-services-asym-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.h2-service-tile {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.h2-service-tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0%;
  background: var(--accent-blue);
  transition: height var(--transition-base);
}

.h2-service-tile:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-hover);
}

.h2-service-tile:hover::before {
  height: 100%;
}

.h2-service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--accent-blue-light);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.h2-service-tile h4 {
  margin-bottom: 0.6rem;
}

.h2-service-tile p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Numbers / Achievements Section */
.h2-numbers-section {
  background: var(--bg-dark);
  color: #ffffff;
  padding: 4.5rem 0;
}

.h2-numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.h2-number-card {
  padding: 1.5rem;
}

.h2-number-val {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #38bdf8;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.h2-number-label {
  font-size: 0.95rem;
  color: #94a3b8;
  font-weight: 600;
}

/* Testimonials Editorial Layout */
.h2-testimonial-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 3.5rem 3rem;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.h2-quote-icon {
  font-size: 3rem;
  color: var(--accent-blue-light);
  margin-bottom: 1rem;
}

.h2-testimonial-card {
  display: none;
}

.h2-testimonial-card.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.h2-testi-text {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: 2rem;
}

.h2-testi-user {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.h2-testi-user-info {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.h2-testi-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-blue);
}

.h2-testi-name {
  font-weight: 700;
  font-size: 1.1rem;
}

.h2-testi-role {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.h2-testi-nav {
  display: flex;
  gap: 0.75rem;
}

.h2-testi-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.h2-testi-btn:hover {
  background: var(--accent-blue);
  color: #ffffff;
  border-color: var(--accent-blue);
}

/* Call To Action Banner */
.h2-cta-banner {
  position: relative;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.75) 100%), 
              url('../images/car6.jpg') center/cover no-repeat;
  border-radius: var(--radius-xl);
  padding: 5rem 3.5rem;
  color: #ffffff;
  box-shadow: var(--shadow-xl);
}

.h2-cta-content {
  max-width: 680px;
}

.h2-cta-content h2 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.h2-cta-content p {
  color: #cbd5e1;
  font-size: 1.15rem;
  margin-bottom: 2rem;
}

/* Responsive Media Queries for Home 2 */
@media (max-width: 1024px) {
  .h2-intro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .h2-property-hero-card {
    grid-template-columns: 1fr;
  }

  .h2-properties-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .h2-services-asym-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .h2-showcase-inner {
    grid-template-columns: 1fr;
    padding: 3.5rem 2rem;
  }

  .h2-numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .h2-hero-section {
    padding: 4rem 0 5rem 0;
  }

  .h2-filter-grid {
    grid-template-columns: 1fr;
  }

  .h2-properties-grid {
    grid-template-columns: 1fr;
  }

  .h2-services-asym-grid {
    grid-template-columns: 1fr;
  }

  .h2-numbers-grid {
    grid-template-columns: 1fr;
  }

  .h2-intro-experience-card {
    right: 0;
    bottom: -15px;
    padding: 1rem;
  }

  .h2-testimonial-box {
    padding: 2.25rem 1.5rem;
  }

  .h2-cta-banner {
    padding: 3rem 1.5rem;
  }

  .h2-prop-hero-content {
    padding: 1.5rem;
  }
}

/* ==========================================================================
   AUTH PAGES (Login & Register) — Toggle Controls Bar
   Uses existing .theme-toggle-btn and .rtl-toggle-btn classes from main.js
   ========================================================================== */
.auth-page-controls {
  position: fixed;
  top: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 9999;
}

/* RTL label inside the rtl-toggle-btn on auth pages */
.auth-page-controls .rtl-label {
  font-size: 0.7rem;
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
}
