/* Auto Today Stocks — StartupFlora-inspired theme
   Primary: Teal #07545D / #0EBDB1 / #0CABC8
   Accent : Orange #EF4023 / #FF3D00
   Yellow : #FDC700
*/

:root {
  --primary: #07545D;
  --primary-light: #0EBDB1;
  --primary-cyan: #0CABC8;
  --accent: #EF4023;
  --accent-light: #FF3D00;
  --yellow: #FDC700;
  --bg-soft: #DFF5F8;
  --bg-mint: #e6f7f4;
  --text-dark: #131313;
  --text-body: #434242;
  --text-muted: #626262;
  --border: #e5e7eb;
  --white: #ffffff;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(7, 84, 93, 0.08);
  --shadow-md: 0 6px 24px rgba(7, 84, 93, 0.12);
  --shadow-lg: 0 12px 40px rgba(7, 84, 93, 0.18);
  --transition: all 0.25s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text-body);
  line-height: 1.6;
  background: #fafafa;
  -webkit-font-smoothing: antialiased;
}

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

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 1rem; }
h3 { font-size: 1.35rem; margin-bottom: 0.75rem; }

p { margin-bottom: 1rem; }

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-light); }

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }

/* ---------- HEADER ---------- */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
}

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

.logo img {
  height: 110px;
  width: auto;
  display: block;
}

.footer-logo img {
  height: 120px;
  width: auto;
  background: white;
  padding: 10px 14px;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .logo img { height: 78px; }
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.nav-menu a {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.55rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: var(--transition);
}

.nav-menu a:hover, .nav-menu a.active {
  background: var(--bg-mint);
  color: var(--primary);
}

.nav-cta {
  background: var(--accent) !important;
  color: white !important;
  padding: 0.6rem 1.25rem !important;
  margin-left: 0.5rem;
}

.nav-cta:hover { background: var(--accent-light) !important; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--primary);
  cursor: pointer;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-accent {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: white;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, #07545D 0%, #0EBDB1 100%);
  color: white;
  padding: 5rem 0 6rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/ashok-leyland.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(253, 199, 0, 0.2);
  color: var(--yellow);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(253, 199, 0, 0.35);
}

.hero h1 {
  color: white;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.hero h1 span { color: var(--yellow); }

.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.92);
  margin-bottom: 2rem;
  max-width: 640px;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.stat-item .stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--yellow);
  display: block;
  line-height: 1;
}
.stat-item .stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  margin-top: 0.4rem;
  display: block;
}

/* Sub page header */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-cyan) 100%);
  color: white;
  padding: 4rem 0 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(253,199,0,0.15), transparent 50%);
}

.page-header h1 {
  color: white;
  position: relative;
  margin-bottom: 0.5rem;
}
.page-header p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  position: relative;
  margin: 0;
}

.breadcrumb {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  margin-top: 0.75rem;
  position: relative;
}
.breadcrumb a { color: var(--yellow); }

/* ---------- SECTIONS ---------- */
section { padding: 4.5rem 0; }
.section-mint { background: var(--bg-mint); }
.section-soft { background: var(--bg-soft); }
.section-white { background: white; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.section-head .eyebrow {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.75rem;
}
.section-head p { color: var(--text-muted); font-size: 1.05rem; }

/* ---------- CARDS / GRIDS ---------- */
.grid {
  display: grid;
  gap: 1.75rem;
}
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }

.card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: #eee;
}

.card-body { padding: 1.5rem; }
.card-body h3 { color: var(--primary); margin-bottom: 0.5rem; }
.card-body p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1rem; }

.card-link {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.card-link:hover { gap: 0.7rem; color: var(--accent-light); }

/* Feature item */
.feature {
  background: white;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.feature:hover {
  border-color: var(--primary-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.5rem;
  margin-bottom: 1rem;
}
.feature h3 { color: var(--text-dark); font-size: 1.15rem; }
.feature p { font-size: 0.95rem; color: var(--text-muted); margin: 0; }

/* Brand chip grid */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}
.brand-chip {
  background: white;
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 0.75rem;
  text-align: center;
  font-weight: 700;
  color: var(--primary);
  transition: var(--transition);
  cursor: default;
}
.brand-chip:hover {
  border-color: var(--accent);
  background: var(--bg-mint);
  color: var(--accent);
  transform: scale(1.04);
}

.brand-category {
  margin-bottom: 2.5rem;
}
.brand-category h3 {
  color: var(--primary);
  border-left: 4px solid var(--accent);
  padding-left: 0.85rem;
  margin-bottom: 1.25rem;
}

/* Two-column about */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.two-col img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* MD profile card */
.md-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: center;
  border-top: 5px solid var(--accent);
}
.md-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 4px solid var(--bg-mint);
}
.md-info h3 {
  color: var(--primary);
  font-size: 1.6rem;
  margin-bottom: 0.25rem;
}
.md-info .md-title {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1rem;
  letter-spacing: 0.3px;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(7,84,93,0.92));
  color: white;
  padding: 2rem 1rem 1rem;
  font-weight: 600;
  font-size: 0.95rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
}

.contact-info-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-cyan) 100%);
  color: white;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.contact-info-card h3 { color: white; margin-bottom: 1.5rem; }

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.contact-icon {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--yellow);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact-item a, .contact-item span { color: white; word-break: break-word; }

.contact-form {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.contact-form h3 { color: var(--primary); margin-bottom: 1.5rem; }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.45rem;
  color: var(--text-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
  background: #fafafa;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-light);
  background: white;
  box-shadow: 0 0 0 3px rgba(14,189,177,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }

/* CTA strip */
.cta-strip {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: white;
  text-align: center;
  padding: 3.5rem 1rem;
}
.cta-strip h2 { color: white; margin-bottom: 0.75rem; }
.cta-strip p { color: rgba(255,255,255,0.9); margin-bottom: 1.5rem; font-size: 1.1rem; }
.cta-strip .btn-primary {
  background: white;
  color: var(--accent);
  border-color: white;
}
.cta-strip .btn-primary:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* Industries list */
.industry-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  list-style: none;
}
.industry-list li {
  background: white;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary-light);
  font-weight: 500;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
}

/* Vehicle models list */
.model-block {
  background: white;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.model-block h3 {
  color: var(--primary);
  border-bottom: 2px solid var(--bg-mint);
  padding-bottom: 0.6rem;
  margin-bottom: 1rem;
}
.model-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.5rem 1rem;
  list-style: none;
}
.model-list li {
  padding: 0.4rem 0;
  font-size: 0.92rem;
  color: var(--text-body);
  border-bottom: 1px dashed #eee;
}
.model-list li::before {
  content: '▸ ';
  color: var(--accent);
  font-weight: 700;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: #0a3a40;
  color: rgba(255,255,255,0.85);
  padding: 3.5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-grid h4 {
  color: white;
  font-size: 1.05rem;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}
.footer-grid h4::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 36px; height: 3px;
  background: var(--accent);
  border-radius: 2px;
}
.footer-grid p { color: rgba(255,255,255,0.75); font-size: 0.92rem; }
.footer-grid ul { list-style: none; }
.footer-grid ul li { margin-bottom: 0.55rem; }
.footer-grid a {
  color: rgba(255,255,255,0.78);
  font-size: 0.92rem;
}
.footer-grid a:hover { color: var(--yellow); }

.footer-logo {
  margin-bottom: 1rem;
  display: flex; align-items: center;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}

/* WhatsApp floating button */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px; height: 56px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center; justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  z-index: 99;
  transition: var(--transition);
}
.wa-float:hover { transform: scale(1.1); color: white; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .md-card { grid-template-columns: 1fr; text-align: center; padding: 1.75rem; }
  .md-photo { max-width: 240px; margin: 0 auto; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav-menu {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: white;
    flex-direction: column;
    padding: 1rem;
    box-shadow: var(--shadow-md);
    display: none;
    gap: 0.25rem;
    border-top: 1px solid var(--border);
  }
  .nav-menu.open { display: flex; }
  .nav-menu li { width: 100%; }
  .nav-menu a { display: block; }
  .hero { padding: 3.5rem 0 4rem; }
  section { padding: 3rem 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .hero-actions .btn { width: 100%; }
}
