:root {
  --bg: #f5f7fa;
  --surface: #ffffff;
  --primary: #214a8f;
  --secondary: #000000;
  --text: #1f2937;
  --muted: #556074;
  --border: #e2e8f0;
  --radius: 18px;
  --shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus-visible {
  position: fixed;
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.85rem 1rem;
  background: var(--primary);
  color: #fff;
  z-index: 50;
  border-radius: 0.75rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.2);
}

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

.container {
  width: min(1170px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.site-logo {
  width: 220px;
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(15,23,42,0.1);
}

.brand h1 {
  margin: 0.2rem 0 0;
  font-size: clamp(1.9rem, 2.5vw, 2.6rem);
}

.brand-name {
  font-weight: 900;
  font-size: 1.6rem;
  letter-spacing: 0.14em;
  background: linear-gradient(135deg, #f5f5f5, #b8b8b8);
  color: #111111;
  padding: 0.7rem 1.2rem;
  border-radius: 1.5rem;
  display: inline-block;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  text-transform: uppercase;
}


.brand p,
.eyebrow {
  margin: 0.25rem 0 0;
  color: var(--secondary);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

a,
button,
input,
textarea {
  transition: all 0.2s ease;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid #2563eb;
  outline-offset: 3px;
}

a {
  color: inherit;
}

.hero {
  padding: 5rem 0 3rem;
}

section {
  scroll-margin-top: 110px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
  align-items: start;
}

.hero h2 {
  font-size: clamp(2.5rem, 4vw, 3.3rem);
  margin: 0.5rem 0 1rem;
  max-width: 640px;
  line-height: 1.05;
}

.hero-tagline {
  margin: 0.7rem 0 1rem;
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 700;
}

.hero p {
  max-width: 620px;
  color: var(--muted);
}

.hero-cards {
  display: grid;
  gap: 1rem;
}

.hero-card {
  background: var(--surface);
  padding: 1.35rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card h3 {
  margin: 0 0 0.6rem;
}

.logo-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.75rem 0 0;
}

.logo-badge {
  min-width: 160px;
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  color: var(--text);
}

.logo-badge strong {
  display: block;
  font-size: 1.1rem;
}

.logo-badge span {
  color: var(--muted);
  font-size: 0.9rem;
}

.logo-image,
.brand-logo {
  width: 56px;
  max-height: 56px;
  object-fit: contain;
  display: block;
  margin-bottom: 0.9rem;
}

.logo-badge.hyundai {
  border-left: 5px solid #0c4a96;
}

.logo-badge.maruti {
  border-left: 5px solid #f97316;
}

.logo-badge.tata {
  border-left: 5px solid #0f766e;
}

.section-light {
  background: #eef3fb;
}

section {
  padding: 3rem 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.cards,
.brand-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.8rem;
}

.cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.brand-tile {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.7rem;
  box-shadow: var(--shadow);
}

.card h3,
.brand-tile h3 {
  margin-top: 0;
}

.brand-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.brand-tile {
  min-height: 180px;
}

.brand-tile.hyundai {
  border-top: 4px solid #0c4a96;
}

.brand-tile.maruti {
  border-top: 4px solid #f97316;
}

.brand-tile.tata {
  border-top: 4px solid #0f766e;
}

.contact-section {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.contact-copy {
  display: grid;
  gap: 1rem;
}

.map-panel {
  grid-column: 2;
}

.contact-form {
  grid-column: 1 / -1;
}

@media (min-width: 860px) {
  .contact-form {
    grid-column: 1 / 3;
  }
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
}

.contact-list li {
  margin-bottom: 0.85rem;
}

.contact-list a {
  color: var(--primary);
  text-decoration: none;
}

.map-frame {
  margin-top: 1rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  min-height: 240px;
  border: 0;
}

.contact-note {
  margin: 1rem 0 0;
  color: var(--muted);
}

.contact-form {
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
}

.contact-form label {
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  padding: 0.95rem 1rem;
  font: inherit;
  resize: vertical;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  background: var(--primary);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  background: #163d74;
}

.btn:active {
  transform: translateY(0);
}

.success-msg {
  margin: 0;
  color: #047857;
  font-weight: 600;
}

.site-footer {
  background: #111827;
  color: #d1d5db;
  padding: 1.3rem 0;
}

.footer-inner {
  text-align: center;
}

@media (max-width: 900px) {
  .hero-content,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .cards,
  .brand-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
  }
}
