* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #2F6F6D;
  --primary-dark: #255B59;
  --accent-soft: #E8F3F2;

  --bg: #F9FBFB;
  --section: #F1F6F5;
  --card: #FFFFFF;

  --text: #1F2933;
  --text-soft: #5B6870;
  --border: #D9E4E3;

  --white: #FFFFFF;
  --shadow-soft: 0 10px 30px rgba(31, 41, 51, 0.08);
  --shadow-hover: 0 14px 34px rgba(47, 111, 109, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(249, 251, 251, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  padding: 18px 0;
  transition: all 0.3s ease;
}

.header.sticky {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 6px 24px rgba(31, 41, 51, 0.06);
  padding: 19px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
    height: 42px;
  filter: invert(1);
}

.logo img {
  height: 42px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  position: relative;
  transition: color 0.25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: all 0.25s ease;
  box-shadow: 0 8px 22px rgba(47, 111, 109, 0.18);
}

.btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  display: inline-block;
  border: 1px solid var(--primary);
  color: var(--primary);
  background: transparent;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.btn-outline:hover {
  background: var(--accent-soft);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 28px;
  cursor: pointer;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 70px 0 60px;
  background:
    radial-gradient(circle at top right, rgba(47, 111, 109, 0.10), transparent 28%),
    linear-gradient(135deg, #F9FBFB 0%, #EEF5F4 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;
}

.hero-text {
  max-width: 620px;
}

.eyebrow {
  display: inline-block;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--accent-soft);
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.hero-text h1 {
  font-size: 58px;
  line-height: 1.08;
  margin-bottom: 18px;
  color: var(--text);
}

.hero-text h1 span {
  color: var(--primary);
}

.hero-desc {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-soft);
  max-width: 560px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -40px;
}

.hero-image img {
  width: 100%;
  max-width: 520px;
  filter: drop-shadow(0 18px 30px rgba(31, 41, 51, 0.12));
}

/* SECTION HELPERS */
.section {
  padding: 90px 0;
}

.section-light {
  background: var(--white);
}

.section-soft {
  background: var(--section);
}

.section-title {
  font-size: 40px;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 700px;
  margin-bottom: 40px;
}

/* CARDS */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(31, 41, 51, 0.10);
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  transition-delay: 0.15s;
}

/* =========================
   FOOTER UPGRADE
========================= */
.footer {
  background: var(--bg);
  color: #cbd5f5;
  padding: 40px 0;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.footer-text {
  font-size: 14px;
  color: #94a3b8;
}

/* Socials same as before */
.footer-socials {
  display: flex;
  gap: 14px;
}

/* SOCIAL ICONS */
.footer-socials {
  display: flex;
  gap: 14px;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
  color: #fff;

  transition: all 0.3s ease;
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

/* Brand colors */
.social-icon.facebook {
  background: #1877f2;
}

.social-icon.tiktok {
  background: #000000;
}

.social-icon.whatsapp {
  background: #25d366;
}

/* Hover effect 🔥 */
.social-icon:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 22px rgba(0,0,0,0.25);
}

.social-icon.facebook:hover {
  box-shadow: 0 0 14px #1877f2;
}

.social-icon.tiktok:hover {
  box-shadow: 0 0 14px #000;
}

.social-icon.whatsapp:hover {
  box-shadow: 0 0 14px #25d366;
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
}

/* hidden by default */
.dropdown-menu {
  position: absolute;
  top: 130%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  min-width: 200px;
  padding: 10px 0;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 999;
}

/* dropdown items */
.dropdown-menu a {
  display: block;
  padding: 12px 16px;
  color: var(--text);
  font-size: 14px;
  transition: all 0.2s ease;
}

/* hover item */
.dropdown-menu a:hover {
  background: var(--accent-soft);
  color: var(--primary);
}

/* show dropdown on hover (desktop) */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* =========================
   MODEL TOP LINKS BAR
========================= */
.model-links-bar {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 14px;
}

.model-link-chip {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 14px 20px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-align: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, #4eb8db 0%, #64c7d8 50%, #4aa9cf 100%);
  box-shadow:
    0 10px 24px rgba(78, 184, 219, 0.24),
    inset 0 1px 0 rgba(255,255,255,0.28);
  transition: all 0.3s ease;
}

.model-link-chip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.22) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}

.model-link-chip:hover {
  transform: translateY(-4px);
  box-shadow:
    0 16px 34px rgba(78, 184, 219, 0.32),
    0 0 0 1px rgba(255,255,255,0.12);
}

.model-link-chip:hover::before {
  transform: translateX(120%);
}

.chip-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.18);
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}

.model-link-chip span:last-child {
  position: relative;
  z-index: 1;
}

/* Optional darker hover for more premium feel */
.model-link-chip:nth-child(2) {
  background: linear-gradient(135deg, #4aaed3 0%, #5dc0d5 50%, #4398c4 100%);
}

.model-link-chip:nth-child(3) {
  background: linear-gradient(135deg, #3fa4cf 0%, #5cbad5 50%, #4caecc 100%);
}

/* =========================
   e.MAS 7 PHEV PAGE
========================= */
.phev-hero {
  padding: 150px 0 70px;
  text-align: center;
  background:
    radial-gradient(circle at top center, rgba(47, 111, 109, 0.15), transparent 30%),
    linear-gradient(135deg, #f8fbfc 0%, #edf5f7 45%, #f6fbfb 100%);
  position: relative;
  overflow: hidden;
}

.phev-hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  top: -180px;
  left: -120px;
  background: radial-gradient(circle, rgba(47, 111, 109, 0.10), transparent 70%);
  filter: blur(30px);
}

.phev-hero::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  bottom: -180px;
  right: -120px;
  background: radial-gradient(circle, rgba(37, 91, 89, 0.10), transparent 70%);
  filter: blur(30px);
}

.phev-tag {
  display: inline-block;
  background: rgba(47, 111, 109, 0.10);
  color: var(--primary);
  border: 1px solid rgba(47, 111, 109, 0.15);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.phev-title {
  font-size: 54px;
  line-height: 1.1;
  font-weight: 800;
  color: #1c2454;
  margin-bottom: 16px;
}

.phev-title span {
  color: var(--primary);
}

.phev-subtitle {
  max-width: 760px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.7;
  color: var(--text-soft);
}

.phev-models {
  background: linear-gradient(180deg, #f6fafb 0%, #eef5f5 100%);
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.model-card {
  position: relative;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(217, 228, 227, 0.8);
  border-radius: 26px;
  padding: 28px 24px 24px;
  box-shadow: 0 12px 35px rgba(31, 41, 51, 0.08);
  overflow: hidden;
  transition: all 0.35s ease;
}

.model-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 45px rgba(47, 111, 109, 0.16);
}

.model-topline {
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2F6F6D, #7bd1c8, #1c2454);
  margin-bottom: 20px;
}

.model-header {
  text-align: center;
  margin-bottom: 20px;
}

.model-header h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text);
}

.price {
  font-size: 42px;
  font-weight: 800;
  color: #101828;
  margin-bottom: 10px;
}

.price-note {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.7;
}

.model-image {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 220px;
  margin: 26px 0 20px;
  position: relative;
}

.model-image::before {
  content: "";
  position: absolute;
  width: 70%;
  height: 26px;
  bottom: 8px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.26), transparent 70%);
  filter: blur(5px);
  z-index: 0;
}

.model-image img {
  max-width: 100%;
  position: relative;
  z-index: 1;
  transition: transform 0.35s ease;
}

.model-card:hover .model-image img {
  transform: scale(1.04);
}

.spec-box {
  background: rgba(248, 251, 252, 0.9);
  border: 1px solid rgba(47, 111, 109, 0.18);
  border-radius: 20px;
  padding: 20px 18px;
  min-height: 230px;
}

.spec-box ul {
  list-style: none;
  padding: 0;
}

.spec-box ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 14px;
  line-height: 1.65;
  color: var(--text);
  font-size: 16px;
}

.spec-box ul li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: bold;
}

.model-actions {
  margin-top: 22px;
  text-align: center;
}

/* =========================
   COLOUR CONFIGURATOR
========================= */
.colour-showcase {
  background:
    radial-gradient(circle at top left, rgba(47, 111, 109, 0.12), transparent 25%),
    radial-gradient(circle at bottom right, rgba(28, 36, 84, 0.10), transparent 28%),
    linear-gradient(135deg, #f7fbfb 0%, #edf4f4 100%);
  overflow: hidden;
}

.colour-showcase-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.25fr;
  align-items: center;
  gap: 46px;
}

.colour-panel {
  max-width: 500px;
}

.colour-eyebrow {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-soft);
  margin-bottom: 12px;
  font-style: italic;
}

.colour-title {
  font-size: 42px;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #1c2454;
}

.colour-title span {
  color: var(--primary);
}

.colour-desc {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-soft);
  margin-bottom: 28px;
}

.colour-label-wrap {
  margin-bottom: 20px;
}

.colour-label {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-soft);
  margin-bottom: 10px;
  font-weight: 700;
}

.selected-colour-name {
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
}

.colour-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 30px;
}

.colour-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: var(--swatch);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: inset 0 2px 6px rgba(255,255,255,0.35),
              0 6px 16px rgba(31, 41, 51, 0.12);
}

.colour-dot:hover {
  transform: translateY(-3px) scale(1.05);
}

.colour-dot.active {
  transform: scale(1.08);
  box-shadow:
    0 0 0 3px #ffffff,
    0 0 0 5px rgba(47, 111, 109, 0.45),
    0 10px 25px rgba(47, 111, 109, 0.22);
}

.colour-dot.active::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(47, 111, 109, 0.28);
}

.colour-mini-specs {
  display: none;
}

/* Right visual area */
.car-display {
  position: relative;
}

.car-display-frame {
  position: relative;
  min-height: 560px;
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #050608 0%, #0c0d10 45%, #11141a 100%);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow:
    0 18px 50px rgba(0,0,0,0.16),
    inset 0 1px 0 rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.frame-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(47, 111, 109, 0.22), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  filter: blur(25px);
  pointer-events: none;
}

.frame-overlay-text {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.88);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 3;
}

.car-display-frame img {
  position: relative;
  z-index: 2;
  width: 95%;
  max-width: 850px;
  object-fit: contain;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.car-display-frame img.image-changing {
  opacity: 0;
  transform: scale(0.98);
}

/* =========================
   INTERIOR CONFIGURATOR
========================= */
.interior-showcase {
  background:
    radial-gradient(circle at top right, rgba(47, 111, 109, 0.10), transparent 26%),
    radial-gradient(circle at bottom left, rgba(28, 36, 84, 0.08), transparent 28%),
    linear-gradient(135deg, #f7f9fb 0%, #eef3f6 100%);
  overflow: hidden;
}

.interior-showcase-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  align-items: center;
  gap: 42px;
}

.interior-display {
  position: relative;
}

.interior-display-frame {
  position: relative;
  background: linear-gradient(180deg, #0c1016 0%, #131923 100%);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow:
    0 20px 50px rgba(0,0,0,0.16),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.interior-display-frame img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.interior-display-frame img.image-changing {
  opacity: 0;
  transform: scale(1.02);
}

.interior-frame-glow {
  position: absolute;
  inset: auto;
  width: 360px;
  height: 360px;
  top: -60px;
  right: -60px;
  background: radial-gradient(circle, rgba(47, 111, 109, 0.16), transparent 70%);
  filter: blur(25px);
  z-index: 1;
  pointer-events: none;
}

.interior-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  background: rgba(255,255,255,0.92);
  color: #111827;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  box-shadow: 0 10px 25px rgba(17, 24, 39, 0.10);
}

.interior-panel {
  max-width: 460px;
}

.interior-eyebrow {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-soft);
  margin-bottom: 12px;
  font-style: italic;
}

.interior-title {
  font-size: 42px;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #1c2454;
}

.interior-title span {
  color: var(--primary);
}

.interior-desc {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-soft);
  margin-bottom: 26px;
}

.interior-label-wrap {
  margin-bottom: 20px;
}

.interior-label {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--text-soft);
  margin-bottom: 10px;
  font-weight: 700;
}

.selected-interior-name {
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
}

.interior-swatches {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.interior-dot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: var(--swatch);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow:
    inset 0 2px 6px rgba(255,255,255,0.35),
    0 8px 18px rgba(31, 41, 51, 0.10);
}

.interior-dot:hover {
  transform: translateY(-3px) scale(1.05);
}

.interior-dot.active {
  transform: scale(1.08);
  box-shadow:
    0 0 0 3px #ffffff,
    0 0 0 5px rgba(47, 111, 109, 0.40),
    0 12px 25px rgba(47, 111, 109, 0.18);
}

.interior-dot.active::after {
  content: "";
  position: absolute;
  inset: -9px;
  border-radius: 50%;
  border: 1px solid rgba(47, 111, 109, 0.24);
}

.interior-info-card {
 display: none;
}


/* EMAS7 */
.emas7-hero {
  padding: 150px 0 70px;
  text-align: center;
  background:
    radial-gradient(circle at top center, rgba(100, 200, 255, 0.18), transparent 30%),
    radial-gradient(circle at bottom left, rgba(150, 230, 255, 0.12), transparent 30%),
    linear-gradient(135deg, #f9fcff 0%, #eef6fb 100%);
}

.emas7-tag {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(91, 196, 255, 0.12);
  color: #1976a5;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.emas7-title {
  font-size: 54px;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 16px;
  color: #16325c;
}

.emas7-title span {
  color: #2f6f6d;
}

.emas7-subtitle {
  max-width: 760px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.7;
  color: var(--text-soft);
}

.emas7-models {
  background: linear-gradient(180deg, #f8fcff 0%, #eef5fa 100%);
}

/* lighter EV cards */
.emas7-models .model-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(120, 190, 230, 0.25);
  box-shadow: 0 10px 28px rgba(40, 120, 170, 0.08);
}

/* EV accent instead of green */
.emas7-models .model-topline {
  background: linear-gradient(90deg, #5cc6ff, #9ee6ff, #3aa7d8);
}

.emas7-models .featured {
  border: 1px solid rgba(92, 198, 255, 0.4);
  box-shadow: 0 16px 32px rgba(92, 198, 255, 0.15);
}

.emas7-models .btn {
  background: linear-gradient(135deg, #5cc6ff, #3aa7d8);
  color: white;
  box-shadow: 0 10px 25px rgba(60, 160, 220, 0.2);
}

.emas7-models .btn:hover {
  background: linear-gradient(135deg, #3aa7d8, #2f8fc0);
}

.emas7-highlight {
  display: block;
  margin-top: 18px;
  padding: 10px 18px;
  border-radius: 999px;
  width: fit-content;
  margin: 18px auto 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;

  color: #1c4f6b;

  background: rgba(92, 198, 255, 0.12);
  border: 1px solid rgba(92, 198, 255, 0.25);

  backdrop-filter: blur(6px);

  box-shadow:
    0 6px 18px rgba(92, 198, 255, 0.15),
    inset 0 1px 0 rgba(255,255,255,0.4);

  transition: all 0.3s ease;
}

.emas7-highlight:hover {
  transform: translateY(-2px);
  box-shadow:
    0 10px 24px rgba(92, 198, 255, 0.25),
    0 0 0 1px rgba(92, 198, 255, 0.2);
}

.emas7-highlight::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #5cc6ff, #9ee6ff, #5cc6ff);
  opacity: 0.2;
  filter: blur(6px);
  z-index: -1;
}

/* =========================
   EMAS7 MODEL SLIDER
========================= */
.emas7-models .models-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

.model-slider-wrapper {
  grid-column: 1 / -1;
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 74px 56px;
}

.model-slider-viewport {
  overflow: hidden;
  border-radius: 28px;
}

.model-slider {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.model-slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
}

.emas7-models .model-slide .model-card {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(135deg, #5cc6ff, #3aa7d8);
  box-shadow: 0 14px 30px rgba(58, 167, 216, 0.28);
  transition: all 0.25s ease;
}

.slider-btn:hover {
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 18px 36px rgba(58, 167, 216, 0.36);
}

.slider-btn.prev {
  left: 0;
}

.slider-btn.next {
  right: 0;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(58, 167, 216, 0.22);
  transition: all 0.25s ease;
}

.slider-dot.active {
  width: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #5cc6ff, #3aa7d8);
  box-shadow: 0 8px 18px rgba(58, 167, 216, 0.24);
}

.emas7-models .slider-btn.prev {
  left: 50%;
  transform: translate(-360px, -50%);
}

.emas7-models .slider-btn.next {
  left: 50%;
  transform: translate(308px, -50%);
}

.emas7-models .slider-btn.prev:hover {
  transform: translate(-360px, -50%) scale(1.08);
}

.emas7-models .slider-btn.next:hover {
  transform: translate(308px, -50%) scale(1.08);
}

/* =========================
   EMAS5 EXTERIOR AURA
========================= */
.emas5-exterior {
  background:
    linear-gradient(180deg, #f8fbfc 0%, #eef3f5 100%);
}

.emas5-exterior-head {
  text-align: center;
  margin-bottom: 34px;
}

.emas5-exterior-tag {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #56737f;
  margin-bottom: 10px;
}

.emas5-exterior-title {
  font-size: 50px;
  line-height: 1.1;
  color: #2e3940;
  margin-bottom: 14px;
  font-weight: 800;
}

.emas5-exterior-title span {
  color: #2f6f6d;
}

.emas5-exterior-subtitle {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #204660;
  margin-bottom: 18px;
}

.emas5-swatches {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.emas5-swatch {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: var(--swatch);
  position: relative;
  box-shadow:
    inset 0 2px 6px rgba(255,255,255,0.35),
    0 6px 14px rgba(31, 41, 51, 0.10);
  transition: all 0.25s ease;
}

.emas5-swatch:hover {
  transform: translateY(-3px) scale(1.06);
}

.emas5-swatch.active {
  transform: scale(1.08);
  box-shadow:
    0 0 0 4px #fff,
    0 0 0 6px rgba(223, 196, 147, 0.55),
    0 8px 20px rgba(31, 41, 51, 0.14);
}

.emas5-swatch.active::after {
  content: "";
  position: absolute;
  inset: -9px;
  border-radius: 50%;
  border: 1px solid rgba(223, 196, 147, 0.45);
}

.emas5-exterior-stage {
  position: relative;
  min-height: 700px;
  border-radius: 34px;
  overflow: hidden;
  background: #ddd;
  box-shadow: 0 20px 45px rgba(31, 41, 51, 0.10);
}

.emas5-exterior-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

/* =========================
   EMAS5 EXTERIOR AURA
========================= */
.emas5-hero {
  padding: 150px 0 80px;
  text-align: center;
  background:
    radial-gradient(circle at top center, rgba(252, 218, 219, 0.18), transparent 30%),
    radial-gradient(circle at bottom left, rgba(253, 236, 210, 0.20), transparent 28%),
    linear-gradient(135deg, #fffaf8 0%, #f7f3f1 100%);
}

.emas5-tag {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(253, 218, 219, 0.35);
  color: #8b5c63;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.emas5-title {
  font-size: 54px;
  line-height: 1.1;
  color: #34343a;
  margin-bottom: 14px;
}

.emas5-title span {
  color: #7b6d62;
}

.emas5-subtitle {
  max-width: 760px;
  margin: 0 auto 18px;
  font-size: 20px;
  line-height: 1.7;
  color: #6b7280;
}

.emas5-highlight {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(210, 190, 180, 0.35);
  box-shadow: 0 10px 22px rgba(120, 95, 85, 0.08);
  color: #6f5a53;
  font-size: 14px;
  font-weight: 600;
}

.emas5-models .model-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(225, 210, 205, 0.8);
  border-radius: 32px;
  box-shadow: 0 14px 35px rgba(80, 60, 50, 0.08);
}

.emas5-models .model-topline {
  background: linear-gradient(90deg, #f6d7c8, #f0b8bb, #b6c3d2);
}

.emas5-models .price {
  color: #2e3242;
}

.emas5-exterior {
  background:
    linear-gradient(180deg, #f8fbfc 0%, #eef3f5 100%);
}

.emas5-exterior-head {
  text-align: center;
  margin-bottom: 34px;
}

.emas5-exterior-tag {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #56737f;
  margin-bottom: 10px;
}

.emas5-exterior-title {
  font-size: 50px;
  line-height: 1.1;
  color: #2e3940;
  margin-bottom: 14px;
  font-weight: 800;
}

.emas5-exterior-title span {
  color: #2f6f6d;
}

.emas5-exterior-subtitle {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #204660;
  margin-bottom: 18px;
}

.emas5-swatches {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.emas5-swatch {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: var(--swatch);
  position: relative;
  box-shadow:
    inset 0 2px 6px rgba(255,255,255,0.35),
    0 6px 14px rgba(31, 41, 51, 0.10);
  transition: all 0.25s ease;
}

.emas5-swatch:hover {
  transform: translateY(-3px) scale(1.06);
}

.emas5-swatch.active {
  transform: scale(1.08);
  box-shadow:
    0 0 0 4px #fff,
    0 0 0 6px rgba(223, 196, 147, 0.55),
    0 8px 20px rgba(31, 41, 51, 0.14);
}

.emas5-swatch.active::after {
  content: "";
  position: absolute;
  inset: -9px;
  border-radius: 50%;
  border: 1px solid rgba(223, 196, 147, 0.45);
}

.emas5-exterior-stage {
  position: relative;
  min-height: 700px;
  border-radius: 34px;
  overflow: hidden;
  background: #ddd;
  box-shadow: 0 20px 45px rgba(31, 41, 51, 0.10);
}

.emas5-exterior-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.emas5-car-image {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(86%, 1080px);
  z-index: 2;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.emas5-colour-card {
  position: absolute;
  left: 60px;
  top: 58%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(244, 233, 212, 0.92);
  padding: 28px 32px;
  min-width: 260px;
  box-shadow: 0 14px 28px rgba(80, 60, 20, 0.10);
}

.emas5-colour-card span {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #8a7553;
  margin-bottom: 10px;
}

.emas5-colour-card strong {
  display: block;
  font-size: 26px;
  line-height: 1.1;
  color: #5c4b2d;
  text-transform: uppercase;
}

.emas5-bg-changing,
.emas5-car-changing {
  opacity: 0;
  transform: scale(1.02);
}

/* =========================
   PRICE MODAL
========================= */
.price-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}

.price-modal.show {
  display: flex;
}

.price-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(6px);
}

.price-modal-box {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 560px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
  border: 1px solid rgba(217, 228, 227, 0.9);
  animation: modalPop 0.25s ease;
}

@keyframes modalPop {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.price-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: #f1f5f9;
  cursor: pointer;
  font-size: 18px;
}

.price-modal-tag {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--primary);
  margin-bottom: 10px;
}

.price-modal-title {
  font-size: 30px;
  margin-bottom: 20px;
  color: var(--text);
}

.price-modal-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 16px 18px;
  background: #fbfdfe;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(217, 228, 227, 0.7);
}

.price-row:last-child {
  border-bottom: none;
}

.price-row span {
  color: var(--text-soft);
}

.price-row strong {
  color: var(--text);
  text-align: right;
}

.price-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 20px;
}

/* =========================
   COMPARE PAGE
========================= */
.compare-hero {
  padding: 150px 0 70px;
  text-align: center;
  background:
    radial-gradient(circle at top center, rgba(92, 198, 255, 0.10), transparent 28%),
    radial-gradient(circle at bottom left, rgba(252, 218, 219, 0.10), transparent 26%),
    linear-gradient(135deg, #f9fbfc 0%, #eff4f6 100%);
}

.compare-tag {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(47, 111, 109, 0.10);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.compare-title {
  font-size: 58px;
  line-height: 1.08;
  color: #1a2238;
  margin-bottom: 16px;
}

.compare-title span {
  color: var(--primary);
}

.compare-subtitle {
  max-width: 800px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.75;
  color: var(--text-soft);
}

.compare-selector {
  padding-top: 30px;
  padding-bottom: 30px;
}

.compare-selector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.compare-select-card {
  background: silver;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 10px 26px rgba(31, 41, 51, 0.05);
}

.compare-select-card label {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-soft);
}

.compare-select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  outline: none;
}

.compare-cards-section {
  padding-bottom: 30px;
}

.compare-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.compare-product-card {
  position: relative;
  overflow: hidden;
}

.compare-product-badge {
  display: inline-block;
  margin: 0 auto 12px;
}

.compare-product-name {
  font-size: 28px;
  line-height: 1.2;
  color: #192235;
  margin-bottom: 12px;
}

.compare-product-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 18px;
}

.compare-product-image {
  width: 100%;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 18px auto 14px;
}

.compare-product-image img {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.14));
  transition: transform 0.3s ease;
}

.compare-product-card:hover .compare-product-image img {
  transform: scale(1.04);
}

.compare-colours {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 16px 0 18px;
  flex-wrap: wrap;
}

.compare-colour-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.08);
}

.compare-quick-note {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-soft);
  min-height: 48px;
  margin-bottom: 18px;
}

.compare-product-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  width: 100%;
  margin-top: auto;
}

.compare-product-actions .btn,
.compare-product-actions .btn-outline {
  min-width: 140px;
}

.compare-table-wrap {
  background: silver;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 14px 34px rgba(31, 41, 51, 0.05);
}

.compare-table-header h2 {
  font-size: 42px;
  margin-bottom: 18px;
  color: #1a2238;
  text-align: center;
}

.compare-table {
  overflow-x: auto;
}

.compare-table-grid {
  min-width: 900px;
  display: grid;
  grid-template-columns: 220px repeat(3, 1fr);
  border-top: 1px solid var(--border);
}

.compare-row-label,
.compare-row-value {
  padding: 18px 16px;
  border-bottom: 1px solid var(--border);
}

.compare-row-label {
  font-weight: 700;
  color: #1f2933;
  background: silver;
}

.compare-row-value {
  color: var(--text);
  line-height: 1.7;
}

.compare-row-value strong {
  font-size: 16px;
}

.compare-product-card {
  position: relative;
  overflow: hidden;
  background: silver;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  padding: 28px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* =========================
   VIDEO SHOWCASE
========================= */
.video-showcase {
  background:
    radial-gradient(circle at top right, rgba(92, 198, 255, 0.10), transparent 24%),
    radial-gradient(circle at bottom left, rgba(47, 111, 109, 0.10), transparent 24%),
    linear-gradient(135deg, #f9fbfc 0%, #eef5f5 100%);
}

.video-tag {
  display: table;
  margin: 0 auto 18px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(47, 111, 109, 0.10);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.video-title {
  font-size: 48px;
  line-height: 1.1;
  color: #1a2238;
  margin-bottom: 16px;
  text-align: center;
}

.video-title span {
  color: var(--primary);
}

.video-subtitle {
  max-width: 780px;
  margin: 0 auto 46px;
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-soft);
  text-align: center;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.video-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(31, 41, 51, 0.07);
  transition: all 0.3s ease;
  text-align: center;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(31, 41, 51, 0.12);
}

.video-card-phev {
  border-top: 4px solid #2f6f6d;
}

.video-card-ev {
  border-top: 4px solid #5cc6ff;
}

.video-card-compact {
  border-top: 4px solid #d9b8ac;
}

.video-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2f6f6d, #1c2454);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.video-badge.ev {
  background: linear-gradient(135deg, #5cc6ff, #3aa7d8);
}

.video-badge.compact {
  background: linear-gradient(135deg, #e7cfc7, #cbaea5);
  color: #4a3b36;
}

.video-card h3 {
  font-size: 30px;
  line-height: 1.2;
  color: #192235;
  margin-bottom: 12px;
}

.video-card p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-soft);
  margin-bottom: 20px;
  min-height: 84px;
}

.video-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 20px;
  background: #000;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card .btn-outline {
  min-width: 180px;
}

/* =========================
   LOCATION SECTION
========================= */
.location-section {
  background:
    radial-gradient(circle at top left, rgba(47, 111, 109, 0.10), transparent 24%),
    radial-gradient(circle at bottom right, rgba(92, 198, 255, 0.10), transparent 24%),
    linear-gradient(135deg, #f9fbfb 0%, #eef5f4 100%);
}

.location-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
}

.location-tag {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(47, 111, 109, 0.10);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.location-title {
  font-size: 48px;
  line-height: 1.1;
  color: #1a2238;
  margin-bottom: 16px;
}

.location-title span {
  color: var(--primary);
}

.location-desc {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-soft);
  margin-bottom: 24px;
  max-width: 560px;
}

.location-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 22px 24px;
  box-shadow: 0 12px 28px rgba(31, 41, 51, 0.06);
  margin-bottom: 22px;
}

.location-card h3 {
  font-size: 24px;
  color: #192235;
  margin-bottom: 10px;
}

.location-card p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-soft);
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.location-map .map-frame {
  overflow: hidden;
  border-radius: 28px;
  min-height: 460px;
  box-shadow: 0 18px 40px rgba(31, 41, 51, 0.12);
  border: 1px solid var(--border);
  background: #fff;
}

.location-map iframe {
  width: 100%;
  height: 460px;
  display: block;
}

/* =========================
   ACHIEVEMENT SECTION
========================= */
.achievement {
  background:
    radial-gradient(circle at top left, rgba(47, 111, 109, 0.10), transparent 30%),
    linear-gradient(135deg, #f9fbfb 0%, #eef5f4 100%);
}

.achievement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.achievement-tag {
  display: inline-block;
  background: rgba(47, 111, 109, 0.12);
  color: var(--primary);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
}

.achievement-title {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.achievement-title span {
  color: var(--primary);
}

.achievement-desc {
  font-size: 16px;
  color: var(--text-soft);
  margin-bottom: 28px;
}

.achievement-stats {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.achievement-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px 20px;
  min-width: 200px;
  box-shadow: var(--shadow-soft);
}

.achievement-card h4 {
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 8px;
}

.achievement-card .rank {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
}

.achievement-card span {
  font-size: 13px;
  color: var(--text-soft);
}

/* IMAGE SIDE */
.achievement-images {
  display: flex;
  justify-content: center;
  align-items: center;
}

.achievement-img-card {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

.achievement-img-card.small {
  max-width: 320px;
  margin-left: auto;
}

/* =========================
   TESTIMONY PAGE
========================= */
.testimony-hero {
  padding: 150px 0 70px;
  text-align: center;
  background:
    radial-gradient(circle at top center, rgba(92, 198, 255, 0.10), transparent 28%),
    radial-gradient(circle at bottom left, rgba(47, 111, 109, 0.10), transparent 26%),
    linear-gradient(135deg, #f9fbfc 0%, #eef5f5 100%);
}

.testimony-tag,
.gallery-tag {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(47, 111, 109, 0.10);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.testimony-title {
  font-size: 56px;
  line-height: 1.08;
  color: #1a2238;
  margin-bottom: 16px;
}

.testimony-title span,
.testimony-cta-box h2 span {
  color: var(--primary);
}

.testimony-subtitle {
  max-width: 820px;
  margin: 0 auto;
  font-size: 19px;
  line-height: 1.8;
  color: var(--text-soft);
}

.testimony-feature {
  background: #f8fbfb;
}

.testimony-feature-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 24px;
  align-items: stretch;
}

.feature-main,
.feature-small {
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(31, 41, 51, 0.08);
}

.feature-main img,
.feature-small img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.feature-main {
  min-height: 640px;
}

.feature-small {
  min-height: 308px;
}

.feature-side {
  display: grid;
  gap: 24px;
}

.feature-main:hover img,
.feature-small:hover img {
  transform: scale(1.04);
}

.testimony-trust {
  padding: 10px 0 30px;
  background: #f8fbfb;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.trust-item {
  background: rgba(255, 255, 255, 0.90);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(31, 41, 51, 0.05);
}

.trust-item strong {
  display: block;
  font-size: 18px;
  color: #192235;
  margin-bottom: 6px;
}

.trust-item span {
  color: var(--text-soft);
  font-size: 14px;
}

.testimony-gallery {
  background:
    radial-gradient(circle at top right, rgba(92, 198, 255, 0.08), transparent 20%),
    linear-gradient(180deg, #f9fbfb 0%, #eff5f4 100%);
}

.gallery-heading {
  text-align: center;
  margin-bottom: 34px;
}

.gallery-heading h2 {
  font-size: 42px;
  color: #1a2238;
}

.testimony-masonry {
  column-count: 3;
  column-gap: 22px;
}

.gallery-card {
  break-inside: avoid;
  margin-bottom: 22px;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(31, 41, 51, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card img {
  width: 100%;
  display: block;
  height: auto;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(31, 41, 51, 0.12);
}

.testimony-cta {
  background: #f7fbfb;
}

.testimony-cta-box {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 42px 28px;
  box-shadow: 0 18px 42px rgba(31, 41, 51, 0.08);
}

.cta-mini {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  font-size: 13px;
}

.testimony-cta-box h2 {
  font-size: 42px;
  margin-bottom: 14px;
  color: #1a2238;
}

.testimony-cta-box p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-soft);
  max-width: 680px;
  margin: 0 auto 24px;
}










































/* Responsive */
@media (max-width: 1100px) {
  .models-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .phev-title {
    font-size: 42px;
  }

  .model-card,
  .featured {
    transform: none;
  }

  .featured:hover {
    transform: translateY(-10px);
  }

  .colour-showcase-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .colour-panel {
    max-width: 100%;
    text-align: center;
  }

  .colour-swatches {
    justify-content: center;
  }

  .colour-mini-specs {
    max-width: 500px;
    margin: 0 auto;
  }

  .car-display-frame {
    min-height: 460px;
  }

  .interior-showcase-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .interior-panel {
    max-width: 100%;
    text-align: center;
  }

  .interior-swatches {
    justify-content: center;
  }

  .interior-info-card {
    margin: 0 auto;
  }

  .interior-showcase-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .interior-panel {
    max-width: 100%;
    text-align: center;
  }

  .interior-swatches {
    justify-content: center;
  }

  .interior-info-card {
    margin: 0 auto;
  }

  .model-links-bar {
    grid-template-columns: 1fr;
  }

  .emas5-exterior-title {
    font-size: 40px;
  }

  .emas5-exterior-stage {
    min-height: 560px;
  }

  .emas5-colour-card {
    left: 30px;
    top: 56%;
    padding: 22px 24px;
    min-width: 220px;
  }

  .emas5-colour-card strong {
    font-size: 22px;
  }

  .compare-selector-grid,
  .compare-cards {
    grid-template-columns: 1fr;
  }

  .compare-title {
    font-size: 44px;
  }

  .compare-subtitle {
    font-size: 17px;
  }

    .testimony-feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-main {
    min-height: 520px;
  }

  .feature-small {
    min-height: 260px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .testimony-masonry {
    column-count: 2;
  }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .video-grid {
    grid-template-columns: 1fr;
  }

  .video-title {
    font-size: 40px;
  }

  .video-card p {
    min-height: auto;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-title {
    font-size: 40px;
  }

  .hero-text h1 {
    font-size: 48px;
  }

  .hero-content {
    gap: 36px;
  }
}

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-text {
    max-width: 100%;
    text-align: center;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    max-width: 440px;
  }
}

@media (max-width: 768px) {
  .header {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 18px;
    padding: 22px 20px;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 130px 0 60px;
  }

  .hero-text h1 {
    font-size: 38px;
  }

  .hero-desc {
    font-size: 16px;
  }

  .btn,
  .btn-outline {
    padding: 11px 18px;
  }

  .logo img {
    height: 36px;
  }

  .section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 30px;
  }

  .section-subtitle {
    font-size: 16px;
  }

    .interior-title {
    font-size: 32px;
  }

  .selected-interior-name {
    font-size: 21px;
  }

  .interior-display-frame {
    min-height: 300px;
    border-radius: 22px;
  }

  .interior-badge {
    top: 12px;
    left: 12px;
    font-size: 11px;
    padding: 8px 12px;
  }

  .interior-dot {
    width: 38px;
    height: 38px;
  }

  .phev-hero {
    padding: 130px 0 50px;
  }

  .phev-title {
    font-size: 34px;
  }

  .phev-subtitle {
    font-size: 16px;
  }

  .price {
    font-size: 34px;
  }

  .spec-box {
    min-height: auto;
  }

  .model-image {
    min-height: 180px;
  }

  .colour-title {
    font-size: 32px;
  }

  .selected-colour-name {
    font-size: 22px;
  }

  .colour-mini-specs {
    grid-template-columns: 1fr;
  }

  .car-display-frame {
    min-height: 340px;
    padding: 30px 10px;
    border-radius: 22px;
  }

  .frame-overlay-text {
    top: 22px;
    font-size: 15px;
  }

  .colour-dot {
    width: 38px;
    height: 38px;
  }

  .interior-title {
    font-size: 32px;
  }

  .selected-interior-name {
    font-size: 21px;
  }

  .interior-display-frame {
    min-height: 300px;
    border-radius: 22px;
  }

  .interior-badge {
    top: 12px;
    left: 12px;
    font-size: 11px;
    padding: 8px 12px;
  }

  .interior-dot {
    width: 38px;
    height: 38px;
  }

  .model-link-chip {
    min-height: 52px;
    font-size: 13px;
    padding: 12px 16px;
  }

  .chip-icon {
    width: 22px;
    height: 22px;
    font-size: 12px;
  }

  .model-slider-wrapper {
    padding: 0 16px 50px;
  }

  .slider-btn {
    top: auto;
    bottom: -2px;
    transform: none;
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .slider-btn:hover {
    transform: scale(1.05);
  }

  .slider-btn.prev {
    left: calc(50% - 70px);
  }

  .slider-btn.next {
    right: calc(50% - 70px);
  }

  .slider-dots {
    bottom: 12px;
  }

  .emas5-exterior-title {
    font-size: 30px;
  }

  .emas5-exterior-stage {
    min-height: 360px;
    border-radius: 24px;
  }

  .emas5-colour-card {
    left: 16px;
    top: 20px;
    transform: none;
    min-width: auto;
    padding: 16px 18px;
  }

  .emas5-colour-card strong {
    font-size: 18px;
  }

  .emas5-swatch {
    width: 36px;
    height: 36px;
  }

  .emas5-car-image {
    width: 100%;
  }
  .compare-hero {
    padding: 130px 0 50px;
  }

  .compare-title {
    font-size: 34px;
  }

  .compare-table-wrap {
    padding: 18px;
    border-radius: 22px;
  }

  .compare-table-header h2 {
    font-size: 30px;
  }

  .compare-product-name {
    font-size: 24px;
  }
  
  .video-title {
    font-size: 34px;
  }

  .video-subtitle {
    font-size: 16px;
  }

  .video-card {
    padding: 20px;
  }

  .video-card h3 {
    font-size: 26px;
  }

  .location-title {
    font-size: 34px;
  }

  .location-desc {
    font-size: 16px;
  }

  .location-map .map-frame,
  .location-map iframe {
    height: 360px;
    min-height: 360px;
  }

    .testimony-title {
    font-size: 40px;
  }

  .testimony-subtitle {
    font-size: 16px;
  }

  .gallery-heading h2,
  .testimony-cta-box h2 {
    font-size: 32px;
  }

  .testimony-masonry {
    column-count: 1;
  }

  .feature-main {
    min-height: 380px;
  }

  .feature-small {
    min-height: 220px;
  }

    .achievement-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }

  .achievement-text {
    order: 1;
  }

  .achievement-images {
    order: 2;
    display: block;
    width: 100%;
  }

  .achievement-img-card {
    max-width: 280px;
    margin: 0 auto;
    border-radius: 22px;
  }

  .achievement-img-card img {
    width: 100%;
    display: block;
    height: auto;
  }

  .achievement-stats {
    flex-direction: column;
    gap: 16px;
  }

  .achievement-card {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 32px;
  }

  .eyebrow {
    font-size: 12px;
    padding: 7px 12px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .hero-actions .btn-outline {
    text-align: center;
    width: 100%;
  }

  .nav-right .btn {
    display: none;
  }
}