/* ============================================================
   GREEN FUTURE - Main Stylesheet
   Design: Dark #090806 + Neon Green #07F668
   Font: Roboto
   ============================================================ */

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #ffffff;
  color: #090806;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: color .3s; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1416px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 768px) { .container { padding: 0 16px; } }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: #090806;
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.4); }

.header-inner {
  max-width: 1512px;
  margin: 0 auto;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 768px) { .header-inner { padding: 0 16px; } }

.logo-wrap { flex-shrink: 0; }
.logo-img { height: 40px; width: auto; }

/* Nav */
.main-nav { flex: 1; }
.nav-list { display: flex; gap: 32px; align-items: center; }
.nav-item { position: relative; }
.nav-link {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 0;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: #07F668; }
.nav-arrow { font-size: 12px; transition: transform .3s; }
.nav-item:hover .nav-arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute; top: calc(100% + 8px); left: -16px;
  background: #090806;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  min-width: 200px;
  padding: 8px 0;
  opacity: 0; pointer-events: none;
  transform: translateY(-8px);
  transition: all .25s;
  z-index: 100;
}
.nav-item:hover .dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown li a {
  display: block; padding: 10px 20px;
  color: #cececd; font-size: 14px;
}
.dropdown li a:hover { color: #07F668; background: rgba(7,246,104,.05); }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.btn-call {
  display: flex; align-items: center; gap: 6px;
  color: #ffffff; font-size: 14px; font-weight: 500;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  white-space: nowrap;
}
.btn-call:hover { border-color: #07F668; color: #07F668; }
.btn-call img { filter: invert(1); }

.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: #07F668; color: #090806;
  font-size: 15px; font-weight: 600;
  padding: 10px 24px;
  border-radius: 999px;
  transition: background .3s, transform .2s;
  white-space: nowrap;
}
.btn-primary:hover { background: #00d287; transform: translateY(-1px); }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: #ffffff;
  font-size: 15px; font-weight: 500;
  padding: 10px 24px;
  border: 1.5px solid #ffffff;
  border-radius: 999px;
  transition: all .3s;
}
.btn-outline:hover { background: #07F668; border-color: #07F668; color: #090806; }

.btn-dark {
  display: inline-flex; align-items: center; justify-content: center;
  background: #090806; color: #ffffff;
  font-size: 15px; font-weight: 500;
  padding: 10px 24px;
  border-radius: 999px;
  transition: all .3s;
}
.btn-dark:hover { background: #07F668; color: #090806; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s; }

@media (max-width: 1024px) {
  .main-nav { display: none; }
  .main-nav.open { display: flex; }
  .hamburger { display: flex; }
  .nav-list { flex-direction: column; gap: 0; background: #090806; position: fixed; top: 72px; left: 0; right: 0; bottom: 0; padding: 20px 16px; overflow-y: auto; align-items: flex-start; }
  .nav-link { padding: 14px 0; font-size: 16px; border-bottom: 1px solid rgba(255,255,255,.08); width: 100%; }
  .dropdown { position: static; opacity: 1; pointer-events: all; transform: none; border: none; padding: 0 0 0 16px; }
}
@media (max-width: 768px) {
  .btn-call { display: none; }
}

/* ---------- Hero Section ---------- */
.hero {
  min-height: 100vh;
  background: #090806;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/home/hero_banner.jpg');
  background-size: cover; background-position: center;
  opacity: .4;
}
.hero-content {
  position: relative; z-index: 1;
  text-align: center;
  color: #ffffff;
  padding: 80px 48px;
  max-width: 900px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-block;
  background: rgba(7,246,104,.15);
  color: #07F668;
  font-size: 13px; font-weight: 500;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(7,246,104,.3);
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-title span { color: #07F668; }
.hero-subtitle { font-size: 18px; color: #cececd; margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Section Commons ---------- */
.section { padding: 80px 0; }
.section-dark { background: #090806; color: #ffffff; }
.section-gray { background: #f8f9fa; }
.section-green { background: #00423E; color: #ffffff; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  display: inline-block;
  color: #07F668; font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 12px;
}
.section-title { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; line-height: 1.3; }
.section-title-dark { color: #090806; }
.section-title-light { color: #ffffff; }
.section-desc { font-size: 16px; color: #6c757d; margin-top: 12px; max-width: 600px; margin-left: auto; margin-right: auto; }
.section-desc-light { color: #cececd; }

/* ---------- Car Cards ---------- */
.cars-slider { position: relative; overflow: hidden; }
.cars-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media (max-width: 1200px) { .cars-track { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .cars-track { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
@media (max-width: 480px) { .cars-track { grid-template-columns: 1fr; } }

.car-card {
  background: #f8f9fa;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid #e9ecef;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  cursor: pointer;
}
.car-card:hover { border-color: #07F668; transform: translateY(-4px); box-shadow: 0 12px 32px rgba(7,246,104,.15); }
.car-card.dark { background: #111; border-color: rgba(255,255,255,.1); }
.car-card.dark:hover { border-color: #07F668; }

.car-card-img { position: relative; padding-top: 60%; overflow: hidden; background: #e9ecef; }
.car-card.dark .car-card-img { background: #1a1a1a; }
.car-card-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.car-card:hover .car-card-img img { transform: scale(1.05); }

.car-free-charge {
  position: absolute; top: 12px; left: 12px;
  background: #07F668; color: #090806;
  font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 999px;
}

.car-card-body { padding: 16px; }
.car-name { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.car-card.dark .car-name { color: #fff; }
.car-type { font-size: 12px; color: #6c757d; margin-bottom: 12px; }
.car-card.dark .car-type { color: #9ca3af; }

.car-specs { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
.car-spec {
  display: flex; align-items: center; gap: 4px;
  font-size: 12px; color: #6c757d;
}
.car-card.dark .car-spec { color: #9ca3af; }
.car-spec-icon { font-size: 14px; }

.car-price { font-size: 17px; font-weight: 700; color: #07F668; }
.car-price span { font-size: 12px; font-weight: 400; color: #6c757d; }

.car-card-footer { padding: 0 16px 16px; }
.car-card-footer .btn-primary { width: 100%; }

/* ---------- Services Grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.service-card-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .5s;
}
.service-card:hover .service-card-bg { transform: scale(1.05); }
.service-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.2) 60%, transparent 100%);
}
.service-card-content {
  position: relative; z-index: 1;
  padding: 32px 28px;
  color: #ffffff;
}
.service-card-title { font-size: 1.4rem; font-weight: 700; margin-bottom: 8px; }
.service-card-desc { font-size: 14px; color: rgba(255,255,255,.8); margin-bottom: 20px; }

/* ---------- Stats ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }

.stat-card {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255,255,255,.05);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.1);
}
.stat-value { font-size: 2.4rem; font-weight: 700; color: #07F668; line-height: 1; }
.stat-label { font-size: 14px; color: #cececd; margin-top: 8px; }

/* ---------- Booking Form ---------- */
.booking-section { background: #090806; padding: 80px 0; }
.booking-card {
  background: #111;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 48px;
}
@media (max-width: 768px) { .booking-card { padding: 24px; } }

.booking-tabs { display: flex; gap: 4px; margin-bottom: 32px; background: rgba(255,255,255,.05); border-radius: 999px; padding: 4px; width: fit-content; }
.booking-tab {
  padding: 10px 24px; border-radius: 999px;
  font-size: 14px; font-weight: 500; color: #cececd;
  cursor: pointer; transition: all .3s;
}
.booking-tab.active { background: #07F668; color: #090806; }

.booking-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 16px;
  align-items: end;
}
@media (max-width: 1024px) { .booking-form { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .booking-form { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label { font-size: 13px; font-weight: 500; color: #cececd; }
.form-control {
  height: 48px;
  padding: 0 16px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  color: #ffffff;
  font-size: 15px;
  font-family: inherit;
  transition: border-color .3s;
  width: 100%;
}
.form-control:focus { outline: none; border-color: #07F668; }
.form-control option { background: #111; color: #fff; }

select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23cececd' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }

.form-submit .btn-primary { height: 48px; width: 100%; }

/* ---------- Commitment Cards ---------- */
.commitment-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
@media (max-width: 1200px) { .commitment-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .commitment-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .commitment-grid { grid-template-columns: 1fr; } }

.commitment-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: 16px;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  transition: border-color .3s, transform .3s;
}
.commitment-card:hover { border-color: #07F668; transform: translateY(-4px); }
.commitment-icon { width: 60px; height: 60px; margin: 0 auto 16px; object-fit: contain; }
.commitment-title { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: #090806; }
.commitment-desc { font-size: 13px; color: #6c757d; line-height: 1.5; }

/* ---------- Used Car Cards ---------- */
.used-car-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}
@media (max-width: 900px) { .used-car-categories { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; } }

.category-card {
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color .3s, transform .3s;
  background: #f8f9fa;
}
.category-card:hover { border-color: #07F668; transform: translateY(-4px); }
.category-card-header {
  padding: 28px 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.category-badge { height: 36px; object-fit: contain; }
.category-car-img { padding: 0 24px; margin-top: -10px; }
.category-car-img img { width: 100%; object-fit: contain; max-height: 180px; }
.category-card-body { padding: 20px 24px 28px; }
.category-name { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.category-desc { font-size: 13px; color: #6c757d; margin-bottom: 16px; line-height: 1.5; }
.category-suitable { font-size: 12px; color: #6c757d; padding-top: 12px; border-top: 1px solid #e9ecef; }
.category-suitable strong { color: #090806; }

.used-cars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) { .used-cars-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .used-cars-grid { grid-template-columns: 1fr; } }

.used-car-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid #e9ecef;
  background: #fff;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.used-car-card:hover { border-color: #07F668; transform: translateY(-4px); box-shadow: 0 12px 32px rgba(7,246,104,.1); }
.used-car-img { position: relative; padding-top: 58%; background: #f0f0f0; overflow: hidden; }
.used-car-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.used-car-card:hover .used-car-img img { transform: scale(1.05); }
.used-car-badge {
  position: absolute; top: 12px; right: 12px;
  background: #07F668; color: #090806;
  font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 999px;
}
.used-car-body { padding: 20px; }
.used-car-meta { display: flex; gap: 8px; margin-bottom: 8px; flex-wrap: wrap; }
.used-car-tag {
  font-size: 11px; padding: 3px 10px;
  border-radius: 999px;
  background: #f0f0f0; color: #6c757d;
}
.used-car-name { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.used-car-specs { display: flex; gap: 16px; margin-bottom: 14px; }
.used-car-spec { font-size: 12px; color: #6c757d; }
.used-car-price { font-size: 1.3rem; font-weight: 700; color: #090806; margin-bottom: 14px; }
.used-car-features { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.used-car-feature { font-size: 11px; padding: 3px 10px; border-radius: 999px; background: rgba(7,246,104,.1); color: #00843d; border: 1px solid rgba(7,246,104,.2); }

/* ---------- News Cards ---------- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .news-grid { grid-template-columns: 1fr; } }

.news-card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e9ecef;
  transition: transform .3s, box-shadow .3s;
}
.news-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.08); }
.news-card-img { position: relative; padding-top: 56%; overflow: hidden; background: #f0f0f0; }
.news-card-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.news-card:hover .news-card-img img { transform: scale(1.05); }
.news-card-category {
  position: absolute; top: 12px; left: 12px;
  background: #07F668; color: #090806;
  font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 999px;
}
.news-card-body { padding: 20px; }
.news-meta { font-size: 12px; color: #9ca3af; margin-bottom: 8px; display: flex; gap: 10px; }
.news-card-title { font-size: 15px; font-weight: 700; line-height: 1.4; margin-bottom: 10px; color: #090806; }
.news-card-title:hover { color: #07F668; }
.news-card-summary { font-size: 13px; color: #6c757d; line-height: 1.5; margin-bottom: 16px; }
.news-read-more { font-size: 13px; font-weight: 600; color: #07F668; display: flex; align-items: center; gap: 4px; }

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

.contact-info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-info-icon { width: 48px; height: 48px; background: rgba(7,246,104,.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-icon img { width: 22px; filter: invert(62%) sepia(90%) saturate(500%) hue-rotate(100deg); }
.contact-info-text h4 { font-weight: 600; margin-bottom: 4px; }
.contact-info-text p, .contact-info-text a { color: #6c757d; font-size: 15px; }

.contact-form { background: #f8f9fa; border-radius: 20px; padding: 40px; }
@media (max-width: 640px) { .contact-form { padding: 24px; } }
.contact-form .form-control { background: #fff; border-color: #e9ecef; color: #090806; }
.contact-form .form-control:focus { border-color: #07F668; }
.contact-form .form-label { color: #090806; }
textarea.form-control { height: 140px; padding: 12px 16px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

/* ---------- Limo Green Page ---------- */
.limo-hero {
  min-height: 70vh;
  background: #090806;
  display: flex; align-items: center;
  padding-top: 72px;
  position: relative; overflow: hidden;
}
.limo-hero-img-wrap { position: absolute; right: 0; top: 0; bottom: 0; width: 55%; }
.limo-hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; opacity: .4; }
.limo-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, #090806 45%, transparent 100%); }
.limo-hero-content { position: relative; z-index: 1; color: #fff; max-width: 600px; padding: 80px 0; }
.limo-hero-content h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 16px; }
.limo-hero-content p { font-size: 17px; color: #cececd; margin-bottom: 32px; }

.limo-specs-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #07F668;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 640px) { .limo-specs-bar { grid-template-columns: repeat(2, 1fr); } }

.limo-spec-item { padding: 28px 24px; text-align: center; border-right: 1px solid rgba(0,0,0,.1); }
.limo-spec-item:last-child { border-right: none; }
.limo-spec-value { font-size: 2rem; font-weight: 700; color: #090806; }
.limo-spec-label { font-size: 12px; color: rgba(9,8,6,.7); margin-top: 4px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .features-grid { grid-template-columns: 1fr; } }

.feature-card {
  border-radius: 16px;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255,255,255,.1);
}
.feature-card-img { height: 200px; overflow: hidden; }
.feature-card-img img { width: 100%; height: 100%; object-fit: cover; }
.feature-card-body { padding: 20px; }
.feature-card-title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.feature-card-desc { font-size: 13px; color: #9ca3af; }

/* ---------- Car Detail / Booking ---------- */
.car-detail-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) { .car-detail-grid { grid-template-columns: 1fr; } }

.car-detail-img { border-radius: 20px; overflow: hidden; }
.car-detail-img img { width: 100%; object-fit: cover; }
.car-detail-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 20px 0; }
.car-detail-spec { padding: 16px; background: #f8f9fa; border-radius: 12px; }
.car-detail-spec-label { font-size: 12px; color: #6c757d; }
.car-detail-spec-value { font-size: 18px; font-weight: 700; margin-top: 4px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #e9ecef; }
.faq-question {
  width: 100%; text-align: left;
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 16px; font-weight: 600; color: #090806;
  cursor: pointer;
}
.faq-question:hover { color: #07F668; }
.faq-icon { font-size: 20px; flex-shrink: 0; color: #07F668; transition: transform .3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 0 20px; color: #6c757d; font-size: 15px; line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 24px; right: 24px;
  background: #090806; color: #07F668;
  padding: 16px 24px; border-radius: 12px;
  font-size: 14px; font-weight: 500;
  border: 1px solid rgba(7,246,104,.3);
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  z-index: 9999;
  transform: translateY(100px); opacity: 0;
  transition: all .4s cubic-bezier(.34,1.56,.64,1);
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: #090806; color: #fff;
  padding: 120px 0 60px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; margin-bottom: 12px; }
.page-hero p { font-size: 17px; color: #cececd; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13px; color: #9ca3af; margin-bottom: 16px; justify-content: center; }
.breadcrumb a { color: #07F668; }
.breadcrumb-sep { color: #6c757d; }

/* ---------- Pagination ---------- */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 48px; }
.page-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 999px;
  font-size: 14px; font-weight: 500;
  border: 1.5px solid #e9ecef; color: #090806;
  cursor: pointer; transition: all .3s;
}
.page-btn:hover, .page-btn.active { background: #07F668; border-color: #07F668; color: #090806; }

/* ---------- Article Content ---------- */
.article-content {
  max-width: 800px; margin: 0 auto;
  line-height: 1.8; color: #343a40;
}
.article-content h2, .article-content h3 { margin: 28px 0 12px; font-weight: 700; }
.article-content p { margin-bottom: 16px; }
.article-content strong { color: #090806; }

/* ---------- Footer ---------- */
.site-footer { background: #090806; color: #fff; padding: 64px 0 0; }
.footer-inner { max-width: 1416px; margin: 0 auto; padding: 0 48px; }
@media (max-width: 768px) { .footer-inner { padding: 0 16px; } }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }

.footer-logo { height: 36px; width: auto; margin-bottom: 16px; }
.footer-tagline { font-size: 14px; color: #9ca3af; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; margin-bottom: 24px; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.07); transition: background .3s; }
.footer-social a:hover { background: #07F668; }
.footer-social img { width: 18px; filter: invert(1); }
.footer-bct { height: 40px; width: auto; opacity: .7; }

.footer-heading { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: #9ca3af; }
.footer-links a:hover { color: #07F668; }

.footer-contact-item { display: flex; gap: 10px; align-items: center; margin-bottom: 12px; }
.footer-contact-item img { width: 16px; filter: invert(.5); flex-shrink: 0; }
.footer-contact-item span, .footer-contact-item a { font-size: 14px; color: #9ca3af; }
.footer-contact-item a:hover { color: #07F668; }

.footer-bottom {
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 24px; flex-wrap: wrap;
}
.footer-company p { font-size: 12px; color: #6c757d; line-height: 1.6; }
.footer-company p:first-child { color: #9ca3af; font-size: 13px; margin-bottom: 4px; }
.footer-legal { text-align: right; flex-shrink: 0; }
.footer-legal p { font-size: 12px; color: #6c757d; margin-bottom: 6px; }
.footer-legal a { font-size: 12px; color: #9ca3af; }
.footer-legal a:hover { color: #07F668; }

/* ---------- Utilities ---------- */
.text-green { color: #07F668; }
.text-muted { color: #6c757d; }
.mt-4 { margin-top: 16px; } .mt-8 { margin-top: 32px; } .mt-12 { margin-top: 48px; }
.mb-4 { margin-bottom: 16px; } .mb-8 { margin-bottom: 32px; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.flex { display: flex; } .flex-center { display: flex; align-items: center; justify-content: center; }
.gap-2 { gap: 8px; } .gap-4 { gap: 16px; }
.hidden { display: none; }
.d-flex { display: flex; } .align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.w-full { width: 100%; }
.rounded { border-radius: 12px; }
.shadow { box-shadow: 0 4px 16px rgba(0,0,0,.08); }
