:root {
  --background: #0a1a2f;
  --foreground: #f2f2f2;
  --card: #0c223a;
  --card-foreground: #f2f2f2;
  --primary: #d4af37;
  --primary-foreground: #0a1a2f;
  --secondary: #1a3a5a;
  --secondary-foreground: #f2f2f2;
  --muted: #4a6a8a;
  --muted-foreground: #b0c4de;
  --border: #1a3a5a;
  --input: #1a3a5a;
  --ring: #d4af37;
  --radius: 0.25rem;
  --font-sans: 'DM Sans', sans-serif;
  --font-serif: 'Playfair Display', serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.text-primary {
  color: var(--primary);
}

.text-white {
  color: white;
  font-weight: 600;
}

.italic {
  font-style: italic;
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
  padding: 1.5rem 0;
}

#navbar.scrolled {
  background-color: rgba(10, 26, 47, 0.9);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(26, 58, 90, 0.5);
  padding: 1rem 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  letter-spacing: -0.02em;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-links a:not(.btn) {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: color 0.3s ease;
}

.nav-links a:not(.btn):hover {
  color: var(--primary);
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.3s ease;
}

.mobile-menu-btn:hover {
  color: var(--primary);
}

.mobile-menu-btn .icon {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background-color: var(--background);
  border-left: 1px solid var(--border);
  z-index: 1001;
  transition: right 0.3s ease;
  padding: 2rem;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: var(--primary);
}

.mobile-menu-close .icon {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}

.mobile-nav-link {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--foreground);
  transition: color 0.3s ease;
}

.mobile-nav-link:hover {
  color: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.75rem 1.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
  min-width: 200px;
}

.btn-full {
  width: 100%;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background-color: #c9a42f;
}

.btn-outline-primary {
  background-color: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.btn-outline-primary:hover {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-outline-white {
  background-color: transparent;
  border: 1px solid white;
  color: white;
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-dark {
  background-color: #0a1a2f;
  color: white;
  border: none;
}

.btn-dark:hover {
  background-color: rgba(10, 26, 47, 0.8);
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero-background.jpg');
  background-size: cover;
  background-position: center center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,26,47,0.7), rgba(10,26,47,0.5), var(--background));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 9999px;
  color: var(--primary);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
  background-color: rgba(0, 0, 0, 0.2);
}

.visually-hidden {
  position: absolute;
  left: -9999px;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 6rem);
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #d1d5db;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  width: 100%;
  max-width: 24rem;
  margin-left: auto;
  margin-right: auto;
}


.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: clamp(1.875rem, 5vw, 3rem);
  color: var(--foreground);
  margin-bottom: 1rem;
}

.section-divider {
  width: 6rem;
  height: 4px;
  background-color: var(--primary);
  margin: 0 auto 1.5rem;
}

.section-header p {
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
  font-size: 1.125rem;
}

.services {
  padding: 6rem 0;
  background-color: var(--background);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

.service-card {
  background-color: var(--card);
  border: 1px solid rgba(26, 58, 90, 0.5);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background-color: var(--primary);
}

.service-icon svg,
.service-icon i {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary);
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.service-card:hover .service-icon svg,
.service-card:hover .service-icon i {
  color: var(--primary-foreground);
}

.service-card h3 {
  font-size: 1.25rem;
  color: var(--foreground);
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: var(--primary);
}

.service-card p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.7;
}

.fleet {
  padding: 6rem 0;
  background-color: rgba(26, 58, 90, 0.1);
}

.fleet-list {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.fleet-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.fleet-image {
  width: 100%;
  position: relative;
}

.fleet-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(212, 175, 55, 0.2);
  filter: blur(100px);
  opacity: 0.2;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.fleet-item:hover .fleet-image::before {
  opacity: 0.3;
}

.fleet-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  background-color: rgba(12, 34, 58, 0.5);
}

.fleet-info {
  width: 100%;
}

.vehicle-type {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 9999px;
  color: var(--primary);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}

.fleet-info h3 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--foreground);
  margin-bottom: 1rem;
}

.vehicle-specs {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--muted-foreground);
}

.spec {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.spec svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.fleet-info > p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.vehicle-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.vehicle-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(242, 242, 242, 0.8);
}

.vehicle-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--primary);
  flex-shrink: 0;
}

.why-choose-us {
  padding: 6rem 0;
  background-color: var(--card);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem 3rem;
}

.feature-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.feature-item:hover .feature-icon {
  background-color: var(--primary);
}

.feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
  transition: color 0.3s ease;
}

.feature-item:hover .feature-icon svg {
  color: var(--primary-foreground);
}

.feature-content h3 {
  font-size: 1.25rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.feature-content p {
  color: var(--muted-foreground);
  line-height: 1.7;
}

.about {
  padding: 6rem 0;
  background-color: var(--background);
  position: relative;
  overflow: hidden;
}

.about-decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 33%;
  height: 100%;
  background: linear-gradient(to left, rgba(212, 175, 55, 0.05), transparent);
  pointer-events: none;
}

.about-content {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.about-content h2 {
  font-size: clamp(1.875rem, 5vw, 3rem);
  color: var(--foreground);
  margin-bottom: 2rem;
}

.about-lead {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about-content > p:not(.about-lead) {
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about-quote {
  display: inline-block;
  margin-top: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
  background-color: rgba(212, 175, 55, 0.05);
  border-radius: 0.5rem;
}

.about-quote p {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--primary);
}

.contact {
  padding: 6rem 0 6rem 0;  /* ensures the background extends well below the form */
  background-color: rgba(26, 58, 90, 0.05);
}

.contact-row {
  display: flex;
  gap: 2rem;
  align-items: stretch;
  margin-bottom: 4rem;  /* extra space below the contact content */
}

.contact-column {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-column-left h2 {
  font-size: clamp(1.875rem, 5vw, 3rem);
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.contact-intro {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 0;
  height: 100%;
}

.contact-cards .whatsapp-cta {
  margin-top: auto;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: var(--card);
  border-radius: 0.5rem;
  border: 1px solid var(--border);
}

.contact-card-icon {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.contact-card-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

.contact-card-value {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
}

.whatsapp-cta {
  padding: 2rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-radius: 0.5rem;
}

.whatsapp-cta h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.whatsapp-cta > p {
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.contact-form-wrapper {
  background-color: var(--card);
  padding: 2rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
}

.contact-form-wrapper h3 {
  font-size: 1.5rem;
  color: var(--foreground);
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  background-color: var(--background);
  border: 1px solid var(--input);
  border-radius: var(--radius);
  color: var(--foreground);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input,
.form-group select {
  height: 3rem;
}

.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  background-color: var(--background);
  border: 1px solid var(--input);
  border-radius: var(--radius);
  color: var(--foreground);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

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

.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.footer {
  background-color: #0a1a2f;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 0;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.footer-brand h3 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  padding: 1rem 1.5rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 2000;
  transform: translateY(150%);
  opacity: 0;
  transition: all 0.3s ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-title {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.toast-message {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Services and Why Choose Us - Mobile Toggle Sections */
.services-toggle-wrapper {
  display: none;
  margin-top: 2rem;
  text-align: center;
}

.why-toggle-wrapper {
  display: none;
  margin-top: 2rem;
  text-align: center;
}

.services-toggle-btn,
.why-toggle-btn {
  margin: 0 auto;
}

@media (max-width: 768px) {
  /* Hide secondary service cards on mobile by default */
  .service-card--secondary {
    display: none;
  }

  /* Show toggle button on mobile */
  .services-toggle-wrapper {
    display: block;
  }

  /* When expanded, show secondary cards */
  .services-grid.is-expanded .service-card--secondary {
    display: block;
  }

  /* Hide extra features on mobile by default */
  .why-extra {
    display: none;
  }

  /* Show why toggle button on mobile */
  .why-toggle-wrapper {
    display: block;
  }

  /* When expanded, show extra features */
  .features-grid.is-expanded .why-extra {
    display: flex;
  }

  /* Stack columns on mobile */
  .contact-row {
    display: block;
  }

  .contact-column {
    margin-bottom: 2rem;
  }

  .contact-cards {
    gap: 1.5rem;
  }
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
  
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: none;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
  
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .contact-form-wrapper {
    padding: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }


.fleet-item {
  flex-direction: row;
  gap: 3rem;
}

.fleet-item-reverse {
  flex-direction: row-reverse;
}

.fleet-image,
.fleet-info {
  width: 50%;
}

.features-grid {
  grid-template-columns: repeat(3, 1fr);
}
}


.form-error {
display: block;
font-size: 0.75rem;
color: #ef4444;
margin-top: 0.25rem;
}

.input-error {
border-color: #ef4444 !important;
}

.input-error:focus {
box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2) !important;
}

::selection {
background-color: rgba(212, 175, 55, 0.3);
color: var(--foreground);
}

.footer-socials {
display: flex;
justify-content: center;
align-items: center;
gap: 1.5rem;
}

.footer-socials a {
display: inline-flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
color: var(--primary);
font-size: 1.25rem;
transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-socials a:hover {
opacity: 0.8;
transform: scale(1.1);
}


/* FAQ Section Styles */
.faq {
padding: 6rem 0;
background-color: var(--background);
}

.faq-content {
display: flex;
flex-direction: column;
gap: 3rem;
}

.faq-category {
display: flex;
flex-direction: column;
gap: 1rem;
}

.faq-category h3 {
font-size: 1.25rem;
color: var(--foreground);
margin-bottom: 1rem;
}

.faq-item {
background-color: var(--card);
border: 1px solid rgba(26, 58, 90, 0.5);
border-radius: var(--radius);
transition: all 0.3s ease;
}

.faq-item:hover {
border-color: rgba(212, 175, 55, 0.5);
box-shadow: 0 0 20px rgba(212, 175, 55, 0.05);
}

.faq-item summary {
padding: 1.5rem;
cursor: pointer;
font-weight: 500;
color: var(--foreground);
display: flex;
align-items: center;
justify-content: space-between;
user-select: none;
transition: color 0.3s ease;
}

.faq-item summary:hover {
color: var(--primary);
}

.faq-item summary::after {
content: '+';
font-size: 1.5rem;
font-weight: 300;
color: var(--primary);
transition: transform 0.3s ease;
margin-left: 1rem;
flex-shrink: 0;
}

.faq-item[open] summary {
color: var(--primary);
border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.faq-item[open] summary::after {
transform: rotate(45deg);
}

.faq-item p {
padding: 0 1.5rem 1.5rem 1.5rem;
color: var(--muted-foreground);
line-height: 1.7;
font-size: 0.9375rem;
}

.faq-item a {
color: var(--primary);
font-weight: 500;
transition: opacity 0.3s ease;
}

.faq-item a:hover {
opacity: 0.8;
text-decoration: underline;
}

.faq-category-bonus {
background-color: rgba(212, 175, 55, 0.05);
border: 1px solid rgba(212, 175, 55, 0.2);
border-radius: 0.5rem;
padding: 2rem;
margin-top: 2rem;
}

.faq-category-bonus h3 {
margin-bottom: 0.75rem;
}

.faq-bonus-text {
color: var(--muted-foreground);
line-height: 1.7;
font-size: 0.9375rem;
margin: 0;
}

.faq-bonus-text a {
color: var(--primary);
font-weight: 500;
transition: opacity 0.3s ease;
}

.faq-bonus-text a:hover {
opacity: 0.8;
text-decoration: underline;
}

/* Mobile-specific FAQ styling */
@media (max-width: 767px) {
.faq {
  padding: 4rem 1.5rem;
}

.faq-content {
  gap: 2.5rem;
}

.faq-category h3 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.faq-category {
  gap: 1.25rem;
}

.faq-item summary {
  padding: 1.25rem;
  font-size: 1rem;
}

.faq-item p {
  padding: 0 1.25rem 1.25rem 1.25rem;
  font-size: 0.9375rem;
}

.faq-category-bonus {
  padding: 1.5rem;
  margin-top: 2rem;
}

.faq-category-bonus h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.faq-bonus-text {
  font-size: 0.9375rem;
  line-height: 1.6;
}
}

@media (min-width: 768px) {
.faq-content {
  gap: 4rem;
}
}
