/* ============================================================
   JioTech Auto — Premium Mechanic Site Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ── Variables ── */
:root {
  --red: #e30613;
  --red-dark: #b5050f;
  --dark: #0d0d0d;
  --dark2: #141414;
  --dark3: #1a1a1a;
  --grey: #2a2a2a;
  --light: #f5f5f5;
  --white: #ffffff;
  --text-muted: #9a9a9a;
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: 0.3s ease;
  --radius: 8px;
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--dark); color: var(--light); font-family: var(--font-body); font-size: 16px; line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; background: none; font-family: var(--font-body); }

/* ── Password Gate ── */
#password-gate {
  position: fixed; inset: 0; z-index: 9999;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0000 100%);
  display: flex; align-items: center; justify-content: center;
}
.gate-inner { text-align: center; padding: 40px; max-width: 440px; width: 100%; }
.gate-logo { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 800; color: var(--white); margin-bottom: 8px; letter-spacing: 1px; }
.gate-logo span { color: var(--red); }
.gate-sub { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 32px; }
.gate-gear {
  width: 80px; height: 80px; margin: 0 auto 28px;
  animation: spin 4s linear infinite;
}
.gate-gear svg { width: 80px; height: 80px; fill: var(--red); opacity: 0.8; }
.gate-form { display: flex; flex-direction: column; gap: 12px; }
.gate-form input {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius); padding: 14px 18px; color: var(--white); font-size: 1rem;
  transition: border-color var(--transition);
}
.gate-form input:focus { border-color: var(--red); outline: none; }
.gate-form input::placeholder { color: var(--text-muted); }
.gate-submit {
  background: var(--red); color: var(--white); border-radius: var(--radius);
  padding: 14px; font-size: 1rem; font-weight: 600; letter-spacing: 0.5px;
  transition: background var(--transition), transform var(--transition);
}
.gate-submit:hover { background: var(--red-dark); transform: translateY(-1px); }
.gate-error { color: #ff6b6b; font-size: 0.85rem; display: none; }
.gate-badge { margin-top: 20px; color: var(--text-muted); font-size: 0.78rem; }

/* ── Navigation ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(13,13,13,0.97); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(227,6,19,0.2);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.6); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 70px; }
.nav-logo { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 800; color: var(--white); letter-spacing: 0.5px; }
.nav-logo span { color: var(--red); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 0.88rem; font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase; color: var(--light); transition: color var(--transition); position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px; background: var(--red); transform: scaleX(0); transition: transform var(--transition); }
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { background: var(--red); color: var(--white); padding: 10px 20px; border-radius: 6px; font-size: 0.88rem; font-weight: 600; transition: background var(--transition); white-space: nowrap; }
.nav-cta:hover { background: var(--red-dark); }
.nav-cta::after { display: none !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu { display: none; position: fixed; top: 70px; left: 0; right: 0; background: var(--dark2); border-bottom: 1px solid var(--grey); padding: 20px 24px; flex-direction: column; gap: 0; z-index: 999; }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 14px 0; border-bottom: 1px solid var(--grey); font-weight: 500; font-size: 0.95rem; color: var(--light); transition: color var(--transition); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--red); }
.mobile-menu .nav-cta { margin-top: 12px; text-align: center; border-radius: 6px; }

/* ── Hero ── */
.hero {
  min-height: 100vh; position: relative; display: flex; align-items: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 60% 50%, #1a0505 0%, var(--dark) 70%);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Ccircle cx='30' cy='30' r='1' fill='%23e30613' opacity='0.08'/%3E%3C/svg%3E") repeat;
}
.hero-canvas { position: absolute; inset: 0; pointer-events: none; }
.hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 120px 24px 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; width: 100%; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(227,6,19,0.12); border: 1px solid rgba(227,6,19,0.3); border-radius: 100px; padding: 6px 16px; font-size: 0.8rem; font-weight: 600; color: var(--red); letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 20px; }
.hero-title { font-family: var(--font-heading); font-size: clamp(3rem, 6vw, 5rem); font-weight: 800; line-height: 1.0; color: var(--white); margin-bottom: 20px; }
.hero-title span { color: var(--red); display: block; }
.hero-desc { font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.btn-primary { background: var(--red); color: var(--white); padding: 14px 28px; border-radius: 6px; font-weight: 600; font-size: 0.95rem; transition: all var(--transition); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(227,6,19,0.4); }
.btn-secondary { background: transparent; color: var(--white); padding: 14px 28px; border-radius: 6px; font-weight: 600; font-size: 0.95rem; border: 1px solid rgba(255,255,255,0.2); transition: all var(--transition); }
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }
.hero-stats { display: flex; gap: 32px; }
.stat-item { text-align: left; }
.stat-number { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 800; color: var(--white); line-height: 1; }
.stat-number span { color: var(--red); }
.stat-label { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 2px; }
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }

/* Gear Animation */
.gear-rig { position: relative; width: 380px; height: 380px; }
.gear-bg-glow { position: absolute; inset: -40px; border-radius: 50%; background: radial-gradient(circle, rgba(227,6,19,0.15) 0%, transparent 70%); animation: pulse 3s ease-in-out infinite; }
.gear-large {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 200px; height: 200px;
  animation: spin 8s linear infinite;
}
.gear-medium {
  position: absolute; top: 10%; right: 8%;
  width: 120px; height: 120px;
  animation: spin-reverse 5s linear infinite;
}
.gear-small {
  position: absolute; bottom: 15%; left: 10%;
  width: 80px; height: 80px;
  animation: spin 3s linear infinite;
}
.speedometer-wrap {
  position: absolute; bottom: 0; right: 0;
  width: 140px; height: 80px;
}
.spark-particle {
  position: absolute; border-radius: 50%;
  animation: spark-float 2s ease-in-out infinite;
}

@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes spin-reverse { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }
@keyframes pulse { 0%, 100% { opacity: 0.6; transform: scale(1); } 50% { opacity: 1; transform: scale(1.05); } }
@keyframes spark-float {
  0% { transform: translateY(0) scale(1); opacity: 1; }
  100% { transform: translateY(-40px) scale(0); opacity: 0; }
}
@keyframes engine-rev {
  0% { stroke-dashoffset: 220; }
  60% { stroke-dashoffset: 60; }
  100% { stroke-dashoffset: 220; }
}

/* ── Trust Bar ── */
.trust-bar {
  background: var(--dark2); border-top: 1px solid var(--grey); border-bottom: 1px solid var(--grey);
  padding: 20px 24px;
}
.trust-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-icon { width: 36px; height: 36px; background: rgba(227,6,19,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.trust-text strong { display: block; font-size: 0.88rem; font-weight: 600; color: var(--white); }
.trust-text span { font-size: 0.78rem; color: var(--text-muted); }
.trust-divider { width: 1px; height: 36px; background: var(--grey); flex-shrink: 0; }

/* ── Section Base ── */
.section { padding: 80px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-tag { display: inline-flex; align-items: center; gap: 8px; color: var(--red); font-size: 0.8rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px; }
.section-tag::before { content: ''; width: 24px; height: 2px; background: var(--red); }
.section-title { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--white); line-height: 1.1; margin-bottom: 16px; }
.section-sub { color: var(--text-muted); font-size: 1rem; max-width: 540px; line-height: 1.7; }

/* ── Services Section ── */
.services-section { background: var(--dark); }
.services-header { margin-bottom: 48px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--dark3); border: 1px solid var(--grey); border-radius: 12px;
  padding: 32px 28px; transition: all var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--red); transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { border-color: rgba(227,6,19,0.3); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.4); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 52px; height: 52px; background: rgba(227,6,19,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 20px; transition: background var(--transition); }
.service-card:hover .service-icon { background: rgba(227,6,19,0.2); }
.service-card h3 { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.service-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }
.service-link { display: inline-flex; align-items: center; gap: 6px; color: var(--red); font-size: 0.85rem; font-weight: 600; margin-top: 16px; transition: gap var(--transition); }
.service-link:hover { gap: 10px; }

/* ── About Section ── */
.about-section { background: var(--dark2); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-visual { position: relative; }
.about-img-wrap {
  background: linear-gradient(135deg, var(--dark3), var(--grey));
  border-radius: 16px; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
  overflow: hidden; border: 1px solid var(--grey);
}
.about-img-inner { text-align: center; padding: 40px; }
.about-img-icon { font-size: 4rem; margin-bottom: 16px; display: block; }
.about-img-text { font-family: var(--font-heading); font-size: 1.4rem; color: var(--white); opacity: 0.6; }
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--red); color: var(--white); border-radius: 12px; padding: 16px 20px; text-align: center;
  box-shadow: 0 8px 24px rgba(227,6,19,0.4);
}
.about-badge strong { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 800; display: block; line-height: 1; }
.about-badge span { font-size: 0.78rem; opacity: 0.85; }
.about-text .section-tag { margin-top: 0; }
.about-features { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.about-feature { display: flex; align-items: flex-start; gap: 14px; }
.about-feature-icon { width: 36px; height: 36px; background: rgba(227,6,19,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.about-feature-text strong { display: block; font-size: 0.92rem; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.about-feature-text span { font-size: 0.85rem; color: var(--text-muted); }
.about-cta { margin-top: 32px; }

/* ── Reviews Section ── */
.reviews-section { background: var(--dark); }
.reviews-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; flex-wrap: wrap; gap: 20px; }
.rating-summary { display: flex; align-items: center; gap: 20px; }
.rating-score { font-family: var(--font-heading); font-size: 4rem; font-weight: 800; color: var(--white); line-height: 1; }
.rating-details .stars { color: #fbbf24; font-size: 1.3rem; letter-spacing: 2px; }
.rating-details p { color: var(--text-muted); font-size: 0.85rem; margin-top: 4px; }
.google-badge { display: flex; align-items: center; gap: 8px; background: var(--dark3); border: 1px solid var(--grey); border-radius: 100px; padding: 8px 16px; font-size: 0.82rem; color: var(--text-muted); }
.google-badge .g { color: #4285f4; font-weight: 700; font-size: 1rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { background: var(--dark3); border: 1px solid var(--grey); border-radius: 12px; padding: 24px; transition: transform var(--transition); }
.review-card:hover { transform: translateY(-3px); }
.review-stars { color: #fbbf24; font-size: 0.9rem; letter-spacing: 1px; margin-bottom: 12px; }
.review-text { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; margin-bottom: 16px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 10px; }
.reviewer-avatar { width: 36px; height: 36px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; color: var(--white); flex-shrink: 0; }
.reviewer strong { display: block; font-size: 0.85rem; color: var(--white); }
.reviewer span { font-size: 0.75rem; color: var(--text-muted); }

/* ── CTA Section ── */
.cta-section {
  background: linear-gradient(135deg, #1a0000 0%, var(--dark2) 100%);
  border-top: 1px solid rgba(227,6,19,0.15); border-bottom: 1px solid rgba(227,6,19,0.15);
  padding: 80px 24px; text-align: center;
}
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-title { font-family: var(--font-heading); font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 800; color: var(--white); margin-bottom: 16px; line-height: 1.1; }
.cta-title span { color: var(--red); }
.cta-sub { color: var(--text-muted); font-size: 1rem; margin-bottom: 32px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-large { padding: 16px 36px; font-size: 1rem; border-radius: 8px; }
.btn-phone { background: transparent; color: var(--white); padding: 16px 36px; border-radius: 8px; font-weight: 600; font-size: 1rem; border: 1px solid rgba(255,255,255,0.2); transition: all var(--transition); }
.btn-phone:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }

/* ── Footer ── */
.footer { background: #0a0a0a; border-top: 1px solid var(--grey); padding: 60px 24px 0; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand .nav-logo { font-size: 1.4rem; margin-bottom: 12px; }
.footer-brand p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; max-width: 280px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; background: var(--dark3); border: 1px solid var(--grey); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; transition: all var(--transition); color: var(--text-muted); }
.social-btn:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.footer-col h4 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--white); letter-spacing: 0.5px; margin-bottom: 16px; text-transform: uppercase; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: var(--text-muted); font-size: 0.88rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--red); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact-item .icon { color: var(--red); font-size: 1rem; margin-top: 1px; flex-shrink: 0; }
.footer-contact-item span { color: var(--text-muted); font-size: 0.88rem; line-height: 1.5; }
.footer-bottom { margin-top: 48px; border-top: 1px solid var(--grey); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; max-width: 1200px; margin-left: auto; margin-right: auto; }
.footer-bottom p { color: var(--text-muted); font-size: 0.8rem; }
.footer-bottom a { color: var(--text-muted); font-size: 0.8rem; transition: color var(--transition); }
.footer-bottom a:hover { color: var(--white); }

/* ── Page Header (inner pages) ── */
.page-header { padding: 120px 24px 60px; background: linear-gradient(135deg, var(--dark) 0%, #1a0505 100%); text-align: center; border-bottom: 1px solid var(--grey); }
.page-header .section-tag { justify-content: center; }
.page-header h1 { font-family: var(--font-heading); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; color: var(--white); }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 16px; font-size: 0.85rem; color: var(--text-muted); }
.breadcrumb a { color: var(--red); }
.breadcrumb span { color: var(--grey); }

/* ── Services Page ── */
.services-list { display: flex; flex-direction: column; gap: 32px; margin-top: 48px; }
.service-item { background: var(--dark3); border: 1px solid var(--grey); border-radius: 12px; padding: 40px; display: grid; grid-template-columns: auto 1fr; gap: 32px; align-items: start; transition: border-color var(--transition); }
.service-item:hover { border-color: rgba(227,6,19,0.3); }
.service-item-icon { width: 64px; height: 64px; background: rgba(227,6,19,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; flex-shrink: 0; }
.service-item h3 { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.service-item p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; margin-bottom: 16px; }
.service-item-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { background: rgba(227,6,19,0.08); border: 1px solid rgba(227,6,19,0.2); border-radius: 100px; padding: 4px 12px; font-size: 0.78rem; color: var(--red); font-weight: 500; }

/* ── About Page ── */
.about-story { background: var(--dark); }
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-values { background: var(--dark2); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.value-card { background: var(--dark3); border: 1px solid var(--grey); border-radius: 12px; padding: 28px; text-align: center; }
.value-icon { font-size: 2rem; margin-bottom: 16px; }
.value-card h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.value-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }
.team-section { background: var(--dark); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.team-card { background: var(--dark3); border: 1px solid var(--grey); border-radius: 12px; padding: 32px; text-align: center; }
.team-avatar { width: 80px; height: 80px; background: var(--grey); border-radius: 50%; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-size: 2rem; }
.team-card h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.team-card span { font-size: 0.82rem; color: var(--red); font-weight: 500; }
.team-card p { color: var(--text-muted); font-size: 0.85rem; margin-top: 10px; }

/* ── Contact Page ── */
.contact-section { background: var(--dark); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; margin-top: 48px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-card { background: var(--dark3); border: 1px solid var(--grey); border-radius: 12px; padding: 28px; display: flex; gap: 16px; align-items: flex-start; }
.contact-card-icon { width: 48px; height: 48px; background: rgba(227,6,19,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-card h4 { font-size: 0.88rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.contact-card p, .contact-card a { font-size: 0.95rem; color: var(--white); line-height: 1.5; }
.contact-card a:hover { color: var(--red); }
.contact-form-wrap { background: var(--dark3); border: 1px solid var(--grey); border-radius: 16px; padding: 40px; }
.contact-form-wrap h3 { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700; color: var(--white); margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: rgba(255,255,255,0.05); border: 1px solid var(--grey);
  border-radius: 8px; padding: 12px 16px; color: var(--white); font-size: 0.92rem;
  font-family: var(--font-body); transition: border-color var(--transition); resize: vertical;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--red); outline: none; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-submit { width: 100%; padding: 14px; font-size: 1rem; font-weight: 600; background: var(--red); color: var(--white); border-radius: 8px; transition: all var(--transition); }
.form-submit:hover { background: var(--red-dark); transform: translateY(-2px); }
.map-section { background: var(--dark2); padding: 0; }
.map-wrap { height: 400px; background: var(--dark3); border-top: 1px solid var(--grey); display: flex; align-items: center; justify-content: center; }
.map-placeholder { text-align: center; color: var(--text-muted); }
.map-placeholder .map-icon { font-size: 3rem; margin-bottom: 12px; }
.map-placeholder p { font-size: 0.9rem; }
.map-placeholder a { color: var(--red); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; padding-top: 100px; text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-badge { bottom: -10px; right: 0; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-header { flex-direction: column; align-items: flex-start; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .trust-inner { flex-direction: column; align-items: flex-start; }
  .trust-divider { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-story-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .service-item { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
