/* ============================================
   CH SAMEER MOTORS — style.css
   ============================================ */

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

:root {
  --gold: #C9961A;
  --gold-light: #E8B84B;
  --gold-dark: #A07815;
  --dark: #0D0D0D;
  --dark2: #171717;
  --dark3: #1F1F1F;
  --white: #FFFFFF;
  --off-white: #F9F6EF;
  --text-muted: #888;
  --text-light: #BBB;
  --border: rgba(201,150,26,0.2);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 40px rgba(0,0,0,0.15);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--dark);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,150,26,0.35); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-sm { padding: 10px 20px; font-size: 13px; width: 100%; text-align: center; margin-top: 12px; }
.btn-full { width: 100%; text-align: center; }
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  padding: 13px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
  transition: var(--transition);
}
.btn-whatsapp:hover { background: #1ebe59; transform: translateY(-2px); }

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  color: var(--gold);
  font-size: 22px;
}
.logo-main {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1;
}
.logo-sub {
  display: block;
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 2px;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  color: var(--text-light);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.25s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

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

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0D0D0D 0%, #1a1500 60%, #0D0D0D 100%);
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,150,26,0.12) 0%, transparent 60%);
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(201,150,26,0.04) 0px, rgba(201,150,26,0.04) 1px, transparent 1px, transparent 60px),
    repeating-linear-gradient(-45deg, rgba(201,150,26,0.04) 0px, rgba(201,150,26,0.04) 1px, transparent 1px, transparent 60px);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 80px;
}
.hero-eyebrow {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 20px;
  animation: fadeUp 0.8s ease both;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero-title span { color: var(--gold); }
.hero-sub {
  color: var(--text-light);
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 44px;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.4s ease both;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label { font-size: 12px; color: var(--text-muted); letter-spacing: 1px; margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: rgba(201,150,26,0.3); }

.scroll-indicator {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-indicator span {
  display: block;
  width: 22px; height: 36px;
  border: 2px solid rgba(201,150,26,0.4);
  border-radius: 14px;
  position: relative;
}
.scroll-indicator span::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDown 2s infinite;
}

/* --- Ticker --- */
.ticker {
  background: var(--gold);
  overflow: hidden;
  padding: 12px 0;
}
.ticker-inner {
  display: flex;
  white-space: nowrap;
  animation: ticker 22s linear infinite;
}
.ticker-inner span {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.5px;
  padding-right: 20px;
}

/* --- Section Shared --- */
.section { padding: 100px 0; }
.section-eyebrow {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}
.section-eyebrow.light { color: var(--gold-light); }
.section-eyebrow.dark { color: var(--gold-dark); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--dark);
}
.section-title.light { color: var(--white); }
.section-title.dark { color: var(--dark); }
.section-sub { color: var(--text-muted); font-size: 16px; }
.section-sub.light { color: rgba(255,255,255,0.55); }
.section-header { text-align: center; margin-bottom: 60px; }

/* --- About --- */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-badge {
  position: absolute;
  top: -18px; right: -12px;
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 4px;
  z-index: 2;
}
.about-card-main {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  text-align: center;
  border: 1px solid var(--border);
}
.car-icon-large { font-size: 72px; margin-bottom: 20px; }
.about-card-main p {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.about-card-accent {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 20px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-dark);
  text-align: center;
}
.about-card-accent span { color: var(--gold); font-size: 16px; }
.about-desc {
  color: #444;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.owner-cards {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}
.owner-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--off-white);
  border: 1px solid rgba(201,150,26,0.15);
  border-radius: var(--radius);
  padding: 14px 18px;
  flex: 1;
}
.owner-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}
.owner-card strong { display: block; font-size: 14px; font-weight: 600; color: var(--dark); }
.owner-card span { font-size: 12px; color: var(--text-muted); }

/* --- Services --- */
.bg-dark { background: var(--dark2); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--dark3);
  border: 1px solid rgba(201,150,26,0.12);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover { border-color: rgba(201,150,26,0.35); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 36px; margin-bottom: 16px; }
.service-card h3 { font-size: 18px; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.service-card p { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.7; }


/* --- Why Us --- */
.bg-gold { background: linear-gradient(135deg, #f5e4a0, #E8B84B, #f5e4a0); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: var(--radius);
  padding: 18px 20px;
  backdrop-filter: blur(4px);
}
.why-item span { color: var(--gold-dark); font-size: 20px; font-weight: 700; flex-shrink: 0; }
.why-item p { font-size: 15px; font-weight: 600; color: var(--dark); }
.section-eyebrow.dark { color: var(--gold-dark); }
.section-title.dark { color: var(--dark); }

/* --- Contact --- */
.contact { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-items { display: flex; flex-direction: column; gap: 24px; margin: 36px 0; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.ci-icon {
  width: 44px; height: 44px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 4px; }
.contact-item a, .contact-item span {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
}
.contact-item a:hover { color: var(--gold); }
.contact-form-wrap {
  background: var(--off-white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 28px;
  color: var(--dark);
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: #555; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input,
.form-group textarea {
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
  color: var(--dark);
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }
/* --- Map --- */
.map-section {
  background: var(--off-white);
  padding: 100px 0 0;
}
.map-section .section-header {
  margin-bottom: 40px;
}
.map-wrapper {
  position: relative;
  width: 100%;
  border-top: 3px solid var(--gold);
  overflow: hidden;
  line-height: 0;
}
.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 480px;
  border: 0;
  filter: grayscale(15%) contrast(1.05);
}
.map-overlay-card {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 10;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: 300px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.map-card-icon { font-size: 26px; flex-shrink: 0; margin-top: 2px; }
.map-overlay-card strong {
  display: block;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}
.map-overlay-card span {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 12px;
}
.map-directions-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 6px;
  transition: var(--transition);
}
.map-directions-btn:hover { background: var(--gold-light); }
 
@media (max-width: 640px) {
  .map-overlay-card {
    position: static;
    width: 100%;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--border);
    box-shadow: none;
    line-height: 1.6;
  }
  .map-wrapper iframe { height: 300px; }
}

/* --- Footer --- */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 48px 0 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 40px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo-main {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1;
}
.footer-logo-sub {
  display: block;
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 2px;
  margin-top: 3px;
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
}
.footer-contact a { color: var(--gold-light); font-size: 14px; font-weight: 500; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 24px;
  text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 13px; }

/* --- Animations --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollDown {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.3; transform: translateX(-50%) translateY(8px); }
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Map --- */
.map-section { background: var(--off-white); padding: 100px 0 0; }
.map-wrapper {
  position: relative;
  margin-top: 40px;
  border-top: 3px solid var(--gold);
}
.map-wrapper iframe {
  display: block;
  filter: grayscale(15%) contrast(1.05);
}
.map-overlay-card {
  position: absolute;
  top: 24px; left: 40px;
  z-index: 10;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 320px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}
.map-card-icon { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
.map-overlay-card strong {
  display: block;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}
.map-overlay-card span {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 12px;
}
.map-directions-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 6px;
  transition: var(--transition);
}
.map-directions-btn:hover { background: var(--gold-light); }

@media (max-width: 600px) {
  .map-overlay-card {
    position: static;
    max-width: 100%;
    border-radius: 0;
    border-left: none; border-right: none;
    border-top: none;
  }
  .map-wrapper iframe { height: 320px; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { max-width: 420px; }
  .services-grid,
  .inventory-grid,
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(13,13,13,0.98);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.active { display: flex; }
  .hamburger { display: flex; }

  .hero-cta { flex-direction: column; }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }

  .services-grid,
  .inventory-grid,
  .why-grid { grid-template-columns: 1fr; }

  .section { padding: 72px 0; }
  .owner-cards { flex-direction: column; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-contact { text-align: left; }
}

@media (max-width: 480px) {
  .contact-form-wrap { padding: 24px; }
  .inv-cta { padding: 28px 20px; }
  .hero-title { font-size: 42px; }
}