/* ==============================
   CSS VARIABLES
   ============================== */
:root {
  /* Blues */
  --blue:        #2563EB;
  --blue-dark:   #1D4ED8;
  --blue-light:  #3B82F6;
  --blue-pale:   #EFF6FF;
  --blue-mid:    #DBEAFE;

  /* Grays */
  --navy:        #0F172A;
  --navy2:       #1E293B;
  --navy3:       #334155;
  --slate:       #475569;
  --muted:       #94A3B8;
  --light:       #E2E8F0;
  --lighter:     #F1F5F9;
  --white:       #FFFFFF;

  /* Accents */
  --steel:       #64748B;
  --accent-teal: #0EA5E9;

  /* Fonts */
  --f-display: 'Syne', sans-serif;
  --f-body:    'Outfit', sans-serif;

  /* Misc */
  --radius:  14px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 12px rgba(15,23,42,0.08);
  --shadow-md: 0 8px 30px rgba(15,23,42,0.12);
  --shadow-lg: 0 20px 60px rgba(15,23,42,0.18);
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ==============================
   RESET & BASE
   ============================== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  background: var(--white);
  color: var(--navy);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display:block; max-width:100%; }
a { text-decoration:none; color:inherit; }
button { cursor:pointer; border:none; background:none; font-family:var(--f-body); }
select, input, textarea { font-family:var(--f-body); outline:none; }
ul { list-style:none; }

::-webkit-scrollbar { width:5px; }
::-webkit-scrollbar-track { background:var(--lighter); }
::-webkit-scrollbar-thumb { background:var(--blue); border-radius:10px; }

/* ==============================
   UTILITIES / SHARED
   ============================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }

.btn-primary {
  background: var(--blue);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.2px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid var(--blue);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,99,235,0.35);
}

.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 7px;
}
.section-title {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: -0.5px;
}
.section-title span { color: var(--blue); }
.section-sub {
  color: var(--slate);
  margin-top: 0.9rem;
  font-size: 1rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.section-header { text-align:center; margin-bottom: 3rem; }
.section-header .section-eyebrow { justify-content:center; }

/* ==============================
   NAVBAR
   ============================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 5%;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(15,23,42,0.08);
  padding: 0.8rem 5%;
}
.nav-logo {
  font-family: var(--f-display);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 9px;
  letter-spacing: -0.5px;
}
.navbar.scrolled .nav-logo { color: var(--navy); }
.nav-logo span { color: var(--blue-light); }
.navbar.scrolled .nav-logo span { color: var(--blue); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 7px 14px;
  border-radius: 8px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a i { font-size: 0.78rem; opacity: 0.7; }
.nav-links a:hover { background: rgba(255,255,255,0.15); color: var(--white); }
.navbar.scrolled .nav-links a { color: var(--slate); }
.navbar.scrolled .nav-links a:hover { background: var(--blue-pale); color: var(--blue); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-phone {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color 0.2s;
}
.nav-phone i { color: var(--blue-light); }
.navbar.scrolled .nav-phone { color: var(--slate); }
.nav-cta {
  background: var(--blue);
  color: var(--white);
  padding: 9px 22px;
  border-radius: 9px;
  font-size: 0.86rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  border: 2px solid var(--blue);
}
.nav-cta:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(37,99,235,0.3); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 5px;
}
.hamburger span {
  width: 24px; height: 2.5px;
  background: var(--white);
  border-radius: 4px;
  transition: var(--transition);
  display: block;
}
.navbar.scrolled .hamburger span { background: var(--navy); }

/* ==============================
   HERO
   ============================== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, #1a2f5e 50%, var(--navy2) 100%);
  display: flex;
  align-items: center;
  padding: 8rem 5% 5rem;
  gap: 4rem;
  position: relative;
  overflow: hidden;
}
.hero-shapes { position:absolute; inset:0; pointer-events:none; }
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}
.shape-1 {
  width: 700px; height: 700px;
  background: var(--blue-light);
  top: -200px; right: -150px;
}
.shape-2 {
  width: 400px; height: 400px;
  background: var(--accent-teal);
  bottom: -100px; left: -100px;
}
.shape-3 {
  width: 200px; height: 200px;
  background: var(--blue);
  top: 40%; left: 40%;
}

.hero-content {
  flex: 1;
  max-width: 580px;
  position: relative;
  z-index: 2;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59,130,246,0.15);
  border: 1px solid rgba(59,130,246,0.3);
  color: #93C5FD;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.2s forwards;
}
.hero-title {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.35s forwards;
}
.title-accent {
  color: var(--blue-light);
  display: block;
}
.hero-sub {
  color: #94A3B8;
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2.2rem;
  max-width: 460px;
  opacity: 0;
  animation: fadeUp 0.7s 0.5s forwards;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.65s forwards;
}
.btn-outline-hero {
  background: transparent;
  color: var(--white);
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 2px solid rgba(255,255,255,0.25);
  transition: var(--transition);
}
.btn-outline-hero:hover {
  border-color: var(--blue-light);
  color: var(--blue-light);
  transform: translateY(-2px);
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s 0.8s forwards;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: #CBD5E1;
  font-weight: 500;
}
.trust-item i { color: var(--blue-light); }
.trust-sep { color: #475569; }

.hero-visual {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeRight 0.9s 0.4s forwards;
}
.hero-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.frame-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(37,99,235,0.3));
  z-index: 1;
}
.hero-car-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}
.hero-overlay-card {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(15,23,42,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.overlay-icon {
  width: 40px; height: 40px;
  background: var(--blue);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
}
.overlay-text strong { display:block; color:var(--white); font-size:0.9rem; }
.overlay-text span { color: #94A3B8; font-size:0.75rem; }

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1rem;
}
.hstat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
  backdrop-filter: blur(10px);
}
.hstat-num {
  font-family: var(--f-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
}
.hstat-plus {
  font-family: var(--f-display);
  font-size: 1.1rem;
  color: var(--blue-light);
  font-weight: 800;
}
.hstat p {
  font-size: 0.72rem;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 3px;
}

/* ==============================
   SEARCH SECTION
   ============================== */
.search-section {
  background: var(--white);
  padding: 0;
  position: relative;
  z-index: 10;
}
.search-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  background: var(--white);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.search-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.2rem;
}
.search-title i { color: var(--blue); font-size: 1rem; }
.search-fields {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  flex-wrap: wrap;
}
.sf { flex:1; min-width:150px; }
.sf label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: var(--steel);
  margin-bottom: 7px;
}
.sf label i { color: var(--blue); font-size: 0.7rem; }
.sf select {
  width: 100%;
  background: var(--lighter);
  border: 1.5px solid var(--light);
  color: var(--navy);
  padding: 11px 14px;
  border-radius: 9px;
  font-size: 0.88rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
  appearance: none;
}
.sf select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,0.12); }
.search-btn {
  background: var(--blue);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 9px;
  font-size: 0.92rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  white-space: nowrap;
  border: 2px solid var(--blue);
}
.search-btn:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,99,235,0.3); }

/* ==============================
   FEATURED CARS
   ============================== */
.featured {
  padding: 6rem 0;
  background: var(--lighter);
}
.filter-bar {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.tab {
  padding: 9px 20px;
  border-radius: 9px;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--white);
  color: var(--slate);
  border: 1.5px solid var(--light);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 7px;
}
.tab i { font-size: 0.78rem; }
.tab:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-pale); }
.tab.active { background: var(--blue); color: var(--white); border-color: var(--blue); }
.sort-wrap {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--slate);
  font-size: 0.85rem;
}
.sort-wrap select {
  background: var(--white);
  border: 1.5px solid var(--light);
  color: var(--navy);
  padding: 8px 14px;
  border-radius: 9px;
  font-size: 0.85rem;
  font-family: var(--f-body);
  cursor: pointer;
  transition: border-color 0.2s;
}
.sort-wrap select:focus { border-color: var(--blue); }

.cars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.car-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--light);
  transition: var(--transition);
  cursor: pointer;
  animation: fadeUp 0.5s forwards;
  opacity: 0;
}
.car-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-mid);
}
.car-img-wrap {
  position: relative;
  height: 205px;
  overflow: hidden;
  background: var(--lighter);
}
.car-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.car-card:hover .car-img-wrap img { transform: scale(1.06); }

.car-cond-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 6px;
}
.car-cond-tag.used { background: var(--navy2); }

.car-fav {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  color: var(--muted);
  width: 36px; height: 36px;
  border-radius: 9px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: 1px solid var(--light);
  cursor: pointer;
}
.car-fav:hover { color: #EF4444; border-color: #FCA5A5; background: #FFF5F5; transform: scale(1.1); }
.car-fav.active { color: #EF4444; border-color: #FCA5A5; background: #FFF5F5; }

.car-body { padding: 1.25rem 1.4rem; }
.car-header { display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:4px; }
.car-name { font-family:var(--f-display); font-size:1.05rem; font-weight:700; color:var(--navy); letter-spacing:-0.3px; }
.car-year {
  font-size: 0.75rem;
  color: var(--slate);
  background: var(--lighter);
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
  border: 1px solid var(--light);
}
.car-type-badge {
  font-size: 0.73rem;
  color: var(--blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 5px;
}
.car-specs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}
.car-spec {
  font-size: 0.78rem;
  color: var(--slate);
  background: var(--lighter);
  padding: 5px 10px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid var(--light);
}
.car-spec i { color: var(--blue); font-size: 0.7rem; }
.car-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1.5px solid var(--lighter);
}
.car-price {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.5px;
}
.car-price small {
  font-family: var(--f-body);
  font-size: 0.7rem;
  color: var(--muted);
  display: block;
  font-weight: 500;
  letter-spacing: 0;
}
.car-btn {
  background: var(--blue-pale);
  color: var(--blue);
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1.5px solid var(--blue-mid);
}
.car-btn:hover { background: var(--blue); color: var(--white); border-color: var(--blue); transform: translateX(2px); }

.load-more-wrap { text-align:center; }
.btn-load {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  padding: 13px 36px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.92rem;
  border: 2px solid var(--blue);
  transition: var(--transition);
  background: var(--white);
}
.btn-load:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,99,235,0.25); }

/* ==============================
   BRANDS STRIP
   ============================== */
.brands-strip {
  overflow: hidden;
  background: var(--navy);
  padding: 1rem 0;
  white-space: nowrap;
}
.brands-track {
  display: inline-flex;
  gap: 2.5rem;
  animation: marquee 22s linear infinite;
}
.brands-track span {
  font-family: var(--f-display);
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  gap: 8px;
}
.brands-track span i { color: var(--blue-light); font-size: 0.85rem; }
.brands-track .dot { color: var(--blue); opacity: 0.6; font-size: 0.7rem; }

/* ==============================
   WHY US
   ============================== */
.why { padding: 6rem 0; background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}
.why-desc {
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.8;
  margin-top: 1rem;
}
.why-highlights { margin-top: 1.8rem; display: flex; flex-direction:column; gap: 0.75rem; }
.wh-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy2);
}
.wh-item i { color: var(--blue); font-size: 0.9rem; }

.why-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.why-card {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: var(--lighter);
  border: 1.5px solid var(--light);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  transition: var(--transition);
}
.why-card:hover {
  border-color: var(--blue-mid);
  background: var(--blue-pale);
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
}
.why-icon-wrap {
  width: 48px; height: 48px;
  flex-shrink: 0;
  background: var(--blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--white);
}
.why-card:hover .why-icon-wrap { background: var(--blue-dark); }
.why-card-text h3 { font-size: 0.98rem; font-weight: 700; color: var(--navy); margin-bottom: 0.35rem; }
.why-card-text p { font-size: 0.86rem; color: var(--slate); line-height: 1.6; }

/* ==============================
   PROCESS
   ============================== */
.process { padding: 6rem 0; background: var(--navy); }
.process .section-eyebrow { color: var(--blue-light); justify-content:center; }
.process .section-title { color: var(--white); }
.process .section-title span { color: var(--blue-light); }
.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.step {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  position: relative;
  transition: var(--transition);
}
.step:hover {
  background: rgba(37,99,235,0.15);
  border-color: rgba(59,130,246,0.4);
  transform: translateY(-6px);
}
.step-num {
  font-family: var(--f-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(59,130,246,0.2);
  line-height: 1;
  margin-bottom: 1rem;
}
.step-icon {
  width: 56px; height: 56px;
  background: var(--blue);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  margin: 0 auto 1.2rem;
}
.step h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.6rem; }
.step p { font-size: 0.85rem; color: #94A3B8; line-height: 1.6; }
.step-arrow { color: rgba(255,255,255,0.2); font-size: 1.4rem; padding: 0 0.5rem; }

/* ==============================
   TESTIMONIALS
   ============================== */
.testimonials { padding: 6rem 0; background: var(--lighter); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.tcard {
  background: var(--white);
  border: 1.5px solid var(--light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}
.tcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--blue-mid); }
.tcard-accent {
  background: var(--blue);
  border-color: var(--blue);
  transform: scale(1.02);
}
.tcard-accent:hover { transform: scale(1.02) translateY(-6px); }
.tcard-top { display:flex; justify-content:space-between; align-items:center; margin-bottom:1.2rem; }
.tcard-stars { display:flex; gap:3px; color:#F59E0B; font-size:0.9rem; }
.tcard-accent .tcard-stars { color: rgba(255,255,255,0.9); }
.tcard-quote-icon { font-size: 1.5rem; color: var(--light); }
.tcard-accent .tcard-quote-icon { color: rgba(255,255,255,0.25); }
.tcard > p {
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.tcard-accent > p { color: rgba(255,255,255,0.9); }
.tcard-author { display:flex; align-items:center; gap: 12px; }
.tcard-av {
  width: 44px; height: 44px;
  background: var(--blue-pale);
  border: 2px solid var(--blue-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--blue);
  flex-shrink: 0;
}
.tcard-accent .tcard-av { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.3); color: var(--white); }
.tcard-author strong { display:block; font-size:0.9rem; color: var(--navy); font-weight:700; }
.tcard-accent .tcard-author strong { color: var(--white); }
.tcard-author span { font-size:0.78rem; color:var(--muted); display:flex; align-items:center; gap:4px; }
.tcard-accent .tcard-author span { color: rgba(255,255,255,0.65); }
.tcard-author span i { font-size:0.68rem; }

.testi-rating-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: var(--white);
  border: 1.5px solid var(--light);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  flex-wrap: wrap;
  text-align: center;
}
.rating-big {
  font-family: var(--f-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.rating-big span { font-size: 1.2rem; color: var(--muted); }
.rating-stars { color: #F59E0B; font-size: 1.3rem; display:flex; gap:3px; }
.testi-rating-bar p { font-size:0.88rem; color:var(--slate); }

/* ==============================
   CONTACT
   ============================== */
.contact { padding: 6rem 0; background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: flex-start;
}
.contact-intro { color:var(--slate); font-size:0.98rem; line-height:1.75; margin-top:1rem; }
.contact-details { margin-top: 2rem; display:flex; flex-direction:column; gap:0.85rem; }
.cdetail {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--lighter);
  border: 1.5px solid var(--light);
  border-radius: var(--radius);
  transition: var(--transition);
  color: inherit;
}
.cdetail:hover { border-color: var(--blue-mid); background: var(--blue-pale); transform: translateX(4px); }
.cd-icon {
  width: 42px; height: 42px;
  background: var(--blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.cdetail strong { display:block; font-size:0.82rem; font-weight:700; color:var(--navy); }
.cdetail span { font-size:0.85rem; color:var(--slate); }
.social-links { display:flex; gap:0.75rem; margin-top:1.8rem; }
.social-links a {
  width: 40px; height: 40px;
  background: var(--lighter);
  border: 1.5px solid var(--light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-links a:hover { background: var(--blue); color: var(--white); border-color: var(--blue); transform: translateY(-3px); box-shadow: 0 6px 16px rgba(37,99,235,0.3); }

.contact-form {
  background: var(--lighter);
  border: 1.5px solid var(--light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.form-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.8rem;
}
.form-heading i { font-size: 1.3rem; color: var(--blue); }
.form-heading h3 { font-family:var(--f-display); font-size:1.3rem; font-weight:700; color:var(--navy); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.fg { display:flex; flex-direction:column; gap:7px; margin-bottom:1rem; }
.fg label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: var(--steel);
  display: flex;
  align-items: center;
  gap: 6px;
}
.fg label i { color: var(--blue); font-size: 0.68rem; }
.fg input, .fg select, .fg textarea {
  background: var(--white);
  border: 1.5px solid var(--light);
  color: var(--navy);
  padding: 12px 15px;
  border-radius: 9px;
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.fg input::placeholder, .fg textarea::placeholder { color: #B0BEC5; }
.form-submit { width:100%; font-size:0.95rem; padding:15px; border-radius:10px; justify-content:center; margin-top:0.5rem; }
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: #ECFDF5;
  border: 1.5px solid #6EE7B7;
  color: #047857;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-top: 1rem;
}
.form-success i { font-size: 1rem; }
.form-privacy {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.form-privacy i { color: var(--blue); }

/* ==============================
   FOOTER
   ============================== */
.footer { background: var(--navy); }
.footer-main { padding: 4rem 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr repeat(3,1fr);
  gap: 3rem;
}
.footer-brand p { color: #64748B; font-size: 0.88rem; line-height:1.7; margin-top: 1rem; max-width:260px; }
.footer .nav-logo { color: var(--white); }
.footer .nav-logo span { color: var(--blue-light); }
.f-social { display:flex; gap:0.6rem; margin-top:1.5rem; }
.f-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748B;
  font-size: 0.85rem;
  transition: var(--transition);
}
.f-social a:hover { background: var(--blue); color: var(--white); border-color: var(--blue); transform: translateY(-3px); }
.footer-col h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1.3rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col h4 i { color: var(--blue-light); font-size: 0.7rem; }
.footer-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #64748B;
  font-size: 0.87rem;
  margin-bottom: 0.65rem;
  transition: color 0.2s, gap 0.2s;
}
.footer-col a i { font-size: 0.7rem; color: var(--blue-light); opacity: 0.6; }
.footer-col a:hover { color: var(--blue-light); gap: 12px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.82rem; color: #475569; }
.footer-legal { display:flex; gap:1.5rem; }
.footer-legal a { font-size:0.82rem; color:#475569; transition:color 0.2s; }
.footer-legal a:hover { color: var(--blue-light); }

/* ==============================
   BACK TO TOP
   ============================== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px; height: 46px;
  background: var(--blue);
  color: var(--white);
  border-radius: 12px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37,99,235,0.4);
  z-index: 500;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-to-top:hover { background: var(--blue-dark); transform: translateY(-3px); }

/* ==============================
   MODAL
   ============================== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(15,23,42,0.8);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.modal-overlay.open { display:flex; }
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalIn 0.3s ease;
}
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  background: var(--lighter);
  color: var(--slate);
  border-radius: 9px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: var(--transition);
  border: 1.5px solid var(--light);
  cursor: pointer;
}
.modal-close:hover { background: #FEE2E2; color: #EF4444; border-color: #FCA5A5; }
.modal-img { width:100%; height:250px; object-fit:cover; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.modal-body { padding: 1.8rem 2rem 2rem; }
.modal-brand { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 2px; font-weight: 700; color: var(--blue); margin-bottom:4px; }
.modal-title { font-family:var(--f-display); font-size:1.8rem; font-weight:800; color:var(--navy); letter-spacing:-0.5px; margin-bottom:1.4rem; }
.modal-specs-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0.75rem;
  margin-bottom: 1.4rem;
}
.mspec {
  background: var(--lighter);
  border: 1.5px solid var(--light);
  border-radius: var(--radius);
  padding: 0.9rem;
  text-align: center;
}
.mspec-icon { color: var(--blue); font-size: 1rem; margin-bottom: 6px; }
.mspec-val { font-weight: 700; font-size: 0.95rem; color: var(--navy); display:block; }
.mspec-key { font-size: 0.7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.modal-desc { font-size: 0.9rem; color: var(--slate); line-height: 1.75; margin-bottom: 1.5rem; }
.modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 2px solid var(--lighter);
}
.modal-price-val {
  font-family: var(--f-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -1px;
}
.modal-price-label { font-size: 0.72rem; color: var(--muted); font-weight: 500; }
.modal-actions { display:flex; gap:0.75rem; }

/* ==============================
   ANIMATIONS
   ============================== */
@keyframes fadeUp {
  from { opacity:0; transform: translateY(28px); }
  to   { opacity:1; transform: translateY(0); }
}
@keyframes fadeRight {
  from { opacity:0; transform: translateX(40px); }
  to   { opacity:1; transform: translateX(0); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes modalIn {
  from { opacity:0; transform: scale(0.95) translateY(16px); }
  to   { opacity:1; transform: scale(1) translateY(0); }
}

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1100px) {
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .testi-grid { grid-template-columns: 1fr; }
  .tcard-accent { transform: none; }
}
@media (max-width: 900px) {
  .hero { flex-direction: column; text-align: center; }
  .hero-content { max-width:100%; }
  .hero-sub { margin: 0 auto 2rem; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-stats-grid { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .steps-grid { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); }
}
@media (max-width: 768px) {
  .nav-links { display:none; flex-direction:column; gap:0; }
  .nav-links.open {
    display: flex;
    position: fixed; top:0; left:0; right:0; bottom:0;
    background: rgba(15,23,42,0.98);
    align-items: center; justify-content: center;
    z-index: 999; font-size: 1.1rem; gap: 0.5rem;
  }
  .nav-links.open a { color:rgba(255,255,255,0.8); padding:14px 28px; font-size:1.05rem; }
  .nav-right { display:none; }
  .hamburger { display:flex; }
  .form-row { grid-template-columns: 1fr; }
  .modal-specs-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction:column; text-align:center; }
  .search-fields { flex-direction:column; }
  .search-btn { width:100%; justify-content:center; }
}
@media (max-width: 480px) {
  .section-title { font-size:2.2rem; }
  .hero-stats-grid { grid-template-columns: repeat(2,1fr); }
  .filter-bar { gap: 0.4rem; }
  .sort-wrap { margin-left: 0; width: 100%; justify-content: flex-end; }
}