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

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

[data-theme="dark"] {
  --bg: #070a07;
  --surface: #0d110d;
  --surface2: #131813;
  --accent: #14451f;
  --accent-bright: #1a7a32;
  --accent-glow: rgba(20, 69, 31, 0.3);
  --text: #eef3ee;
  --text-soft: #5a7a5a;
  --text-muted: #2e452e;
  --border: rgba(26, 122, 50, 0.15);
  --border-soft: rgba(255, 255, 255, 0.05);
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.7);
  --navbar-bg: rgba(7, 10, 7, 0.97);
}

[data-theme="light"] {
  --bg: #f3f7f3;
  --surface: #ffffff;
  --surface2: #eaf2ea;
  --accent: #14451f;
  --accent-bright: #1a7a32;
  --accent-glow: rgba(20, 69, 31, 0.15);
  --text: #0a140a;
  --text-soft: #3a5a3a;
  --text-muted: #7a9a7a;
  --border: rgba(26, 122, 50, 0.18);
  --border-soft: rgba(0, 0, 0, 0.07);
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.09);
  --navbar-bg: rgba(243, 247, 243, 0.97);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  transition: background-color 0.4s ease, color 0.4s ease;
}

.accent { color: var(--accent-bright); }

/* ===== TICKER ===== */
#ticker {
  background: #050805;
  border-bottom: 1px solid rgba(26, 122, 50, 0.12);
  height: 34px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: ticker 32s linear infinite;
  color: var(--accent-bright);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.ticker-track .dot { opacity: 0.4; }

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== NAVBAR ===== */
#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navbar-bg);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo { flex-shrink: 0; }

.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 34px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-bright);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

#theme-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface2);
  color: var(--text-soft);
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

#theme-btn:hover {
  border-color: var(--accent-bright);
  color: var(--accent-bright);
  transform: rotate(20deg);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  background: var(--accent);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 0.2s ease;
}

.nav-cta:hover {
  background: var(--accent-bright);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--accent-glow);
}

#menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.3rem;
  cursor: pointer;
}

#mobile-menu {
  display: none;
  flex-direction: column;
  padding: 20px 32px;
  border-top: 1px solid var(--border);
  gap: 18px;
  background: var(--surface);
}

#mobile-menu a {
  text-decoration: none;
  color: var(--text-soft);
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s;
}

#mobile-menu a:hover { color: var(--accent-bright); }
#mobile-menu.open { display: flex; }

/* ===== HERO ===== */
#home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 90px 80px 80px;
  background:
    radial-gradient(ellipse at 80% 40%, rgba(20, 69, 31, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 15% 85%, rgba(20, 69, 31, 0.06) 0%, transparent 50%),
    var(--bg);
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: rgba(20, 69, 31, 0.15);
  border: 1px solid rgba(26, 122, 50, 0.3);
  border-radius: 24px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-bright);
  margin-bottom: 28px;
}

#home h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 22px;
  letter-spacing: -1px;
  color: var(--text);
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 38px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 54px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: var(--accent);
  color: #ffffff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
  background: var(--accent-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26, 122, 50, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: var(--surface2);
  color: var(--text);
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--accent-bright);
  color: var(--accent-bright);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat { text-align: left; }

.stat-num {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-bright);
  line-height: 1;
}

.stat-label {
  font-size: 0.74rem;
  color: var(--text-soft);
  display: block;
  margin-top: 3px;
}

.stat-divider {
  width: 1px;
  height: 44px;
  background: var(--border-soft);
}

/* ===== SHARED ===== */
section:not(#home) { padding: 100px 24px; }

.section-container {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  gap: 70px;
  align-items: center;
}

.section-container.centered {
  flex-direction: column;
  text-align: center;
}

.section-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  color: var(--accent-bright);
  margin-bottom: 12px;
}

section h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  line-height: 1.1;
  color: var(--text);
}

.section-sub {
  font-size: 0.96rem;
  color: var(--text-soft);
  max-width: 500px;
  line-height: 1.78;
  margin: 0 auto 50px;
}

/* ===== ABOUT ===== */
#about { background: var(--surface); }

.about-left { flex-shrink: 0; }

.about-img-wrap {
  position: relative;
  width: 340px;
}

.about-logo-box {
  width: 340px;
  height: 260px;
  background: #080c08;
  border-radius: 16px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-shadow: var(--shadow);
}

.about-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.about-badge-float {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--accent);
  color: #ffffff;
  padding: 11px 17px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.about-right { flex: 1; }
.about-right h2 { margin-bottom: 18px; }

.about-text {
  color: var(--text-soft);
  line-height: 1.82;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 26px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

.feature i {
  color: var(--accent-bright);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ===== SERVICES ===== */
#services { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 30px 24px;
  transition: all 0.3s ease;
  text-align: left;
}

.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 10px 36px var(--accent-glow);
}

.service-icon {
  width: 62px;
  height: 62px;
  background: rgba(20, 69, 31, 0.1);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-bright);
  font-size: 1.75rem;
  margin-bottom: 18px;
  transition: all 0.3s ease;
  border: 1px solid rgba(20, 69, 31, 0.18);
}

.service-card:hover .service-icon {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.service-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.service-card p {
  font-size: 0.86rem;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ===== MODELS ===== */
#models { background: var(--surface); }

.brand-family {
  width: 100%;
  margin-bottom: 48px;
}

.brand-family:last-child { margin-bottom: 0; }

.brand-family-title {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-bright);
  background: rgba(20, 69, 31, 0.08);
  border: 1px solid rgba(26, 122, 50, 0.22);
  padding: 9px 24px;
  border-radius: 30px;
  margin-bottom: 22px;
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.model-card {
  background: var(--surface2);
  border: 1px solid var(--border-soft);
  border-radius: 13px;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  transition: all 0.3s ease;
  text-align: center;
}

.model-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px var(--accent-glow);
}

.model-icon {
  width: 54px;
  height: 54px;
  background: rgba(20, 69, 31, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-bright);
  font-size: 1.4rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(20, 69, 31, 0.18);
}

.model-card:hover .model-icon {
  background: var(--accent);
  color: #ffffff;
}

.model-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text);
}

.model-card p {
  font-size: 0.75rem;
  color: var(--text-soft);
  line-height: 1.5;
}

/* ===== REQUEST FORM ===== */
#request { background: var(--bg); }

#request-form {
  width: 100%;
  max-width: 640px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 40px 44px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-soft);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-group label span { color: var(--accent-bright); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 15px;
  background: var(--surface2);
  border: 1px solid var(--border-soft);
  border-radius: 9px;
  color: var(--text);
  font-size: 0.92rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group select option {
  background: var(--surface2);
  color: var(--text);
}

.form-group textarea {
  resize: vertical;
  line-height: 1.6;
}

.btn-submit {
  width: 100%;
  padding: 15px;
  background: var(--accent);
  color: #ffffff;
  border: none;
  border-radius: 11px;
  font-size: 0.97rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: var(--accent-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--accent-glow);
}

/* ===== TESTIMONIALS ===== */
#testimonials { background: var(--surface); }

/* Review write form */
.review-form-box {
  width: 100%;
  max-width: 700px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 36px;
  text-align: left;
  margin-bottom: 48px;
}

.review-form-box h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.review-form-box h3 i {
  color: var(--accent-bright);
  font-size: 1rem;
}

.review-form-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.review-form-inner .form-group.full {
  grid-column: span 2;
}

/* Star selector */
.star-selector {
  display: flex;
  gap: 6px;
  padding: 10px 0 4px;
}

.star-selector i {
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.15s ease;
}

.star-selector i:hover,
.star-selector i.active {
  color: #c8931a;
  transform: scale(1.15);
}

.btn-review-submit {
  grid-column: span 2;
  padding: 13px;
  background: var(--accent);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 0.93rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  margin-top: 4px;
}

.btn-review-submit:hover {
  background: var(--accent-bright);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--accent-glow);
}

/* Reviews grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

.reviews-empty {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
  padding: 20px 0;
  width: 100%;
}

.testimonial-card {
  background: var(--surface2);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.3s ease;
  text-align: left;
  position: relative;
}

.testimonial-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px var(--accent-glow);
}

.stars {
  display: flex;
  gap: 2px;
  font-size: 0.82rem;
}

.stars .fa-solid { color: #c8931a; }
.stars .fa-regular { color: var(--text-muted); }

.testimonial-card p {
  font-size: 0.87rem;
  color: var(--text-soft);
  line-height: 1.76;
  font-style: italic;
  flex: 1;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-top: 13px;
  border-top: 1px solid var(--border-soft);
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
}

.reviewer h4 {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1px;
}

.reviewer span {
  font-size: 0.72rem;
  color: var(--text-soft);
}

.review-delete-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.8rem;
  cursor: pointer;
  padding: 4px 7px;
  border-radius: 6px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Inter', sans-serif;
}

.review-delete-btn:hover {
  background: rgba(200, 50, 50, 0.1);
  color: #e05555;
}

/* ===== CONTACT ===== */
#contact { background: var(--bg); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  width: 100%;
  margin-bottom: 44px;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 28px 16px;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.contact-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px var(--accent-glow);
}

.contact-card.whatsapp:hover {
  border-color: #25d366;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.15);
}

.contact-card.whatsapp .contact-icon {
  background: rgba(37, 211, 102, 0.08);
  color: #25d366;
  border-color: rgba(37, 211, 102, 0.18);
}

.contact-card.whatsapp:hover .contact-icon {
  background: #25d366;
  color: #ffffff;
}

.contact-icon {
  width: 56px;
  height: 56px;
  background: rgba(20, 69, 31, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-bright);
  font-size: 1.3rem;
  margin-bottom: 8px;
  transition: all 0.3s ease;
  border: 1px solid rgba(20, 69, 31, 0.18);
}

.contact-card:hover .contact-icon {
  background: var(--accent);
  color: #ffffff;
}

.contact-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}

.contact-card p {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}

.contact-card span {
  font-size: 0.76rem;
  color: var(--text-soft);
}

.social-section { width: 100%; text-align: center; }

.social-section > p {
  font-size: 0.84rem;
  color: var(--text-soft);
  margin-bottom: 14px;
}

.social-links {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  border-radius: 9px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.86rem;
  transition: all 0.3s ease;
  border: 1px solid var(--border-soft);
  color: var(--text-soft);
  background: var(--surface);
}

.social-btn:hover { transform: translateY(-2px); }
.social-btn.instagram:hover { border-color: #e1306c; color: #e1306c; }
.social-btn.facebook:hover { border-color: #1877f2; color: #1877f2; }
.social-btn.tiktok:hover { border-color: #ff0050; color: #ff0050; }

/* ===== FOOTER ===== */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 48px 24px;
}

.footer-container {
  max-width: 1160px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-logo-img {
  height: 54px;
  width: auto;
  object-fit: contain;
  border-radius: 7px;
  background: #080c08;
  padding: 6px 12px;
}

.footer-sub {
  font-size: 0.83rem;
  color: var(--text-soft);
}

.footer-links {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-soft);
  font-size: 0.83rem;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--accent-bright); }

.footer-copy {
  font-size: 0.72rem;
  color: var(--text-muted);
  padding-top: 10px;
  border-top: 1px solid var(--border-soft);
  width: 100%;
}

/* ===== WHATSAPP FLOAT ===== */
#whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.55rem;
  text-decoration: none;
  z-index: 999;
  transition: all 0.3s ease;
  animation: pulse-wa 2.5s ease-in-out infinite;
}

#whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 32px rgba(37, 211, 102, 0.65), 0 0 0 7px rgba(37, 211, 102, 0.07); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  #home { padding: 80px 40px; }
  #home h1 { font-size: 3.2rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .models-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .section-container { flex-direction: column; }
  .about-img-wrap { width: 100%; }
  .about-logo-box { width: 100%; }
  #request-form { padding: 30px 26px; }
  .review-form-box { padding: 26px 22px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  #menu-btn { display: block; }
  #home { padding: 70px 24px 60px; }
  #home h1 { font-size: 2.6rem; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  #request-form { padding: 24px 18px; }
  .review-form-inner { grid-template-columns: 1fr; }
  .review-form-inner .form-group.full { grid-column: span 1; }
  .btn-review-submit { grid-column: span 1; }
}

@media (max-width: 480px) {
  #home h1 { font-size: 2rem; }
  .models-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; }
  .stat-num { font-size: 1.6rem; }
}

/* ===== ABOUT HIGHLIGHT BOX (batteries & lubricants) ===== */
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 26px;
}

.highlight-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  transition: all 0.3s ease;
}

.highlight-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px var(--accent-glow);
}

.highlight-card .hc-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background: rgba(20, 69, 31, 0.1);
  border: 1px solid rgba(20, 69, 31, 0.18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-bright);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.highlight-card:hover .hc-icon {
  background: var(--accent);
  color: #ffffff;
}

.highlight-card h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.highlight-card span {
  font-size: 0.74rem;
  color: var(--text-soft);
}

@media (max-width: 600px) {
  .about-highlights { grid-template-columns: 1fr; }
}

/* ===== ABOUT HIGHLIGHT BOX (batteries & lubricants) ===== */
.highlights-label {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-top: 26px;
  margin-bottom: 12px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.highlight-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  transition: all 0.3s ease;
}

.highlight-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px var(--accent-glow);
}

.highlight-card .hc-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background: rgba(20, 69, 31, 0.1);
  border: 1px solid rgba(20, 69, 31, 0.18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-bright);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.highlight-card:hover .hc-icon {
  background: var(--accent);
  color: #ffffff;
}

.highlight-card h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.highlight-card span {
  font-size: 0.74rem;
  color: var(--text-soft);
}

@media (max-width: 600px) {
  .about-highlights { grid-template-columns: 1fr; }
}