@import url('https://fonts.googleapis.com/css2?family=Antonio:wght@400;600;700&family=Inter:wght@300;400;500;600;700&family=Kanit:ital,wght@0,400;0,600;0,700;0,800;1,700&family=Montserrat:wght@400;600;700;800;900&display=swap');

:root {
  --bg-dark: #08090c;
  --bg-card: #0f1118;
  --bg-card-hover: #161a26;
  --accent-neon-red: #ff1e42;
  --accent-neon-red-hover: #e01233;
  --accent-cyan: #00f0ff;
  --text-white: #ffffff;
  --text-muted: #a0aec0;
  --border-neon: rgba(255, 30, 66, 0.4);
  --border-muted: rgba(255, 255, 255, 0.1);
  --font-headline: 'Kanit', 'Montserrat', sans-serif;
  --font-badge: 'Antonio', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

/* Container */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography Helpers */
.font-headline {
  font-family: var(--font-headline);
}

.font-badge {
  font-family: var(--font-badge);
}

.text-neon {
  color: var(--accent-neon-red);
}

.text-cyan {
  color: var(--accent-cyan);
}

/* Header & Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(8, 9, 12, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--accent-neon-red);
  box-shadow: 0 4px 20px rgba(255, 30, 66, 0.15);
  transition: all 0.3s ease;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 85px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--text-white);
}

.brand-logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent-neon-red), #99001a);
  clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headline);
  font-weight: 900;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 0 15px rgba(255, 30, 66, 0.6);
}

.brand-logo span {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-style: italic;
}

.brand-logo span .highlight {
  color: var(--accent-neon-red);
}

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

.nav-links a {
  color: var(--text-white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-neon-red);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--accent-neon-red);
  box-shadow: 0 0 8px var(--accent-neon-red);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 1.8rem;
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  padding: 120px 0 110px;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, rgba(8, 9, 12, 0.7) 0%, rgba(8, 9, 12, 0.95) 100%),
              url('assets/hero_rally_car.jpg') center/cover no-repeat;
  border-bottom: 2px solid var(--accent-neon-red);
  box-shadow: inset 0 -40px 60px rgba(8, 9, 12, 1);
}

.badge-tag {
  display: inline-block;
  font-family: var(--font-badge);
  background-color: rgba(255, 30, 66, 0.15);
  border: 1px solid var(--accent-neon-red);
  color: var(--accent-neon-red);
  padding: 6px 20px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 24px;
  text-transform: uppercase;
  border-radius: 2px;
  box-shadow: 0 0 15px rgba(255, 30, 66, 0.3);
}

.hero-title {
  font-family: var(--font-headline);
  font-size: 4rem;
  font-weight: 800;
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text-white);
  text-transform: uppercase;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-description {
  font-size: 1.25rem;
  color: #e2e8f0;
  max-width: 820px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 400;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  font-family: var(--font-headline);
  font-weight: 700;
  font-style: italic;
  background-color: var(--accent-neon-red);
  color: #ffffff;
  padding: 16px 38px;
  border: none;
  font-size: 1.15rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
  box-shadow: 0 0 25px rgba(255, 30, 66, 0.5);
}

.btn-primary:hover {
  background-color: var(--accent-neon-red-hover);
  box-shadow: 0 0 35px rgba(255, 30, 66, 0.8);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-block;
  font-family: var(--font-headline);
  font-weight: 700;
  font-style: italic;
  background-color: transparent;
  color: var(--text-white);
  padding: 14px 36px;
  border: 2px solid var(--accent-cyan);
  font-size: 1.15rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

.btn-secondary:hover {
  background-color: var(--accent-cyan);
  color: #000;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.7);
  transform: translateY(-2px);
}

/* Highlights Grid Cards */
.highlights-section {
  padding: 60px 0;
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.highlight-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-neon);
  padding: 36px 28px;
  text-align: center;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--accent-neon-red);
}

.highlight-card:hover {
  transform: translateY(-8px);
  background-color: var(--bg-card-hover);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 30, 66, 0.3);
}

.highlight-card .card-icon {
  font-size: 2.8rem;
  color: var(--accent-neon-red);
  margin-bottom: 16px;
}

.highlight-card h3 {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  font-style: italic;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 12px;
  font-weight: 700;
}

.highlight-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* Services Section */
.section-padding {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 60px;
}

.section-header .sub-title {
  font-family: var(--font-badge);
  color: var(--accent-neon-red);
  font-size: 1.25rem;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
  text-transform: uppercase;
}

.section-header h2 {
  font-family: var(--font-headline);
  font-size: 3rem;
  text-transform: uppercase;
  font-style: italic;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

.service-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-neon);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 30, 66, 0.3);
  border-color: var(--accent-neon-red);
}

.service-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.service-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-content h3 {
  font-family: var(--font-headline);
  font-size: 1.6rem;
  font-style: italic;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--text-white);
}

.service-content p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.service-link {
  font-family: var(--font-headline);
  font-weight: 700;
  font-style: italic;
  color: var(--accent-neon-red);
  text-decoration: none;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.service-link:hover {
  gap: 14px;
  color: #fff;
}

/* Stats Counter Section */
.stats-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #12141f 100%);
  border-top: 2px solid var(--accent-neon-red);
  border-bottom: 2px solid var(--accent-neon-red);
  padding: 85px 0;
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  text-align: center;
}

.stat-box {
  padding: 28px 20px;
  border: 1px solid var(--border-neon);
  border-radius: 4px;
  background-color: rgba(15, 17, 24, 0.8);
  box-shadow: inset 0 0 20px rgba(255, 30, 66, 0.05);
}

.stat-number {
  font-family: var(--font-headline);
  font-size: 3.8rem;
  font-weight: 800;
  font-style: italic;
  color: var(--accent-neon-red);
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 0 0 15px rgba(255, 30, 66, 0.4);
}

.stat-label {
  font-family: var(--font-headline);
  font-size: 1.05rem;
  color: var(--text-white);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Testimonials */
.testimonials-section {
  background-color: var(--bg-dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-neon);
  padding: 32px;
  border-radius: 4px;
  position: relative;
}

.quote-icon {
  font-size: 3rem;
  color: var(--accent-neon-red);
  opacity: 0.8;
  line-height: 1;
  margin-bottom: 14px;
}

.testimonial-text {
  color: #e2e8f0;
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 24px;
}

.testimonial-author {
  font-family: var(--font-headline);
  font-weight: 700;
  font-style: italic;
  color: var(--accent-cyan);
  font-size: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 14px;
}

/* FAQ Accordion Section */
.faq-section {
  background-color: #0b0d14;
}

.faq-container {
  max-width: 880px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border-neon);
  border-radius: 4px;
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-question {
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: var(--bg-card-hover);
}

.faq-question h4 {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-weight: 700;
  font-style: italic;
  color: var(--text-white);
  padding-right: 20px;
}

.faq-toggle-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--accent-neon-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.3rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
  background-color: var(--accent-cyan);
  color: #000;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 28px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 28px 24px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  align-items: center;
}

.pricing-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-neon);
  border-radius: 6px;
  padding: 44px 32px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card.featured {
  background-color: #141724;
  border: 2px solid var(--accent-neon-red);
  transform: scale(1.05);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 30, 66, 0.4);
}

.pricing-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-neon-red);
  color: #fff;
  font-family: var(--font-badge);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 5px 22px;
  border-radius: 20px;
  letter-spacing: 1.5px;
  box-shadow: 0 0 15px rgba(255, 30, 66, 0.5);
}

.pricing-card h3 {
  font-family: var(--font-headline);
  font-size: 1.6rem;
  font-style: italic;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.price-box {
  margin: 20px 0 28px;
}

.price-amount {
  font-family: var(--font-headline);
  font-size: 3.6rem;
  font-weight: 800;
  font-style: italic;
  color: var(--accent-neon-red);
  text-shadow: 0 0 15px rgba(255, 30, 66, 0.3);
}

.pricing-features {
  list-style: none;
  margin-bottom: 34px;
  text-align: left;
}

.pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
}

.pricing-features li::before {
  content: '✓';
  color: var(--accent-neon-red);
  font-weight: bold;
}

.price-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 14px;
}

/* Contact / Location Banner */
.contact-banner {
  background: linear-gradient(135deg, #10131d 0%, #1a1e2c 100%);
  border: 1px solid var(--border-neon);
  border-radius: 6px;
  padding: 40px;
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.contact-info-icon {
  width: 52px;
  height: 52px;
  background-color: rgba(255, 30, 66, 0.15);
  border: 1px solid var(--accent-neon-red);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-neon-red);
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-family: var(--font-headline);
  font-size: 1.2rem;
  font-style: italic;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 6px;
}

.contact-info-text p, .contact-info-text a {
  color: var(--text-muted);
  font-size: 1.05rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-text a:hover {
  color: var(--accent-neon-red);
}

/* Footer */
.site-footer {
  background-color: #040508;
  border-top: 2px solid var(--accent-neon-red);
  padding: 85px 0 35px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h4 {
  font-family: var(--font-headline);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-white);
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45px;
  height: 3px;
  background-color: var(--accent-neon-red);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.98rem;
  transition: color 0.3s ease;
}

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

.social-icons {
  display: flex;
  gap: 16px;
  margin-top: 22px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-neon);
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--accent-neon-red);
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(255, 30, 66, 0.5);
}

.social-icons img {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  text-align: center;
  padding-top: 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-title {
    font-size: 3.2rem;
  }
  .pricing-card.featured {
    transform: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 85px;
    left: 0;
    width: 100%;
    background-color: var(--bg-dark);
    border-bottom: 2px solid var(--accent-neon-red);
    padding: 24px;
    gap: 18px;
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

  .hero-title {
    font-size: 2.3rem;
  }

  .hero-section {
    padding: 85px 0 70px;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .stat-number {
    font-size: 3rem;
  }
}
