:root {
  --bg-primary: #121212;
  --bg-secondary: #1A1A1A;
  --bg-card: #1F1F1F;
  --text-primary: #FFFFFF;
  --text-secondary: #E0E0E0;
  --text-muted: #888888;
  --accent-gold: #D4AF37;
  --accent-gold-rgb: 212, 175, 55;
  --whatsapp-green: #25D366;
  --whatsapp-green-hover: #128C7E;
  --transition-speed: 0.35s;
  --border-radius: 8px;
}

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

body {
  background-color: var(--bg-primary);
  color: var(--text-secondary);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  color: var(--text-primary);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-secondary);
  border: 2px solid var(--bg-primary);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* -------------------------------------------------------------
   2. TYPOGRAPHY & UTILITY CLASSES
   ------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 16px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--accent-gold);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(var(--accent-gold-rgb), 0.6);
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
}

/* Buttons & CTAs */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.btn-gold {
  background-color: var(--accent-gold);
  color: var(--bg-primary);
  box-shadow: 0 4px 15px rgba(var(--accent-gold-rgb), 0.2);
}

.btn-gold:hover {
  background-color: transparent;
  color: var(--accent-gold);
  border-color: var(--accent-gold);
  box-shadow: 0 0 20px rgba(var(--accent-gold-rgb), 0.5);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-secondary);
  border: 2px solid rgba(224, 224, 224, 0.2);
}

.btn-outline:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  box-shadow: 0 0 15px rgba(var(--accent-gold-rgb), 0.3);
  transform: translateY(-2px);
}

.badge {
  display: inline-flex;
  align-items: center;
  background: rgba(var(--accent-gold-rgb), 0.1);
  border: 1px solid rgba(var(--accent-gold-rgb), 0.3);
  color: var(--accent-gold);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

/* -------------------------------------------------------------
   3. NAVIGATION HEADER
   ------------------------------------------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(18, 18, 18, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

header.scrolled {
  background: rgba(18, 18, 18, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent-gold), #b38f2d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(var(--accent-gold-rgb), 0.4);
}

.logo-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--bg-primary);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
}

.logo-tag {
  font-size: 0.7rem;
  color: var(--accent-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--accent-gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-phone:hover {
  color: var(--accent-gold);
}

.nav-phone svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-gold);
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* -------------------------------------------------------------
   4. HERO SECTION
   ------------------------------------------------------------- */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(18, 18, 18, 0.75), var(--bg-primary)), 
                    url('https://images.unsplash.com/photo-1617788138017-80ad40651399?auto=format&fit=crop&q=80&w=1920');
  background-size: cover;
  background-position: center;
  z-index: -1;
}

/* Soft glowing radial background */
.hero-glow {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  z-index: -1;
  filter: blur(40px);
  pointer-events: none;
}

.hero-content {
  max-width: 700px;
}

.hero-title {
  font-size: 3.8rem;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-title span {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #FFF5D1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-tagline {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 600px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

/* Trust indicators directly in Hero */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
}

.trust-stat {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
}

.trust-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.google-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 10px 16px;
  border-radius: 4px;
}

.google-badge svg {
  width: 20px;
  height: 20px;
}

.rating-stars {
  color: var(--accent-gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.rating-score {
  font-weight: 700;
  color: var(--text-primary);
}

/* -------------------------------------------------------------
   5. ABOUT SECTION
   ------------------------------------------------------------- */
#about {
  padding: 120px 0;
  background-color: var(--bg-secondary);
  position: relative;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-info-panel {
  position: relative;
}

.about-text {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.about-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.about-item-icon {
  background: rgba(var(--accent-gold-rgb), 0.1);
  border-radius: 50%;
  min-width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(var(--accent-gold-rgb), 0.2);
}

.about-item-icon svg {
  width: 16px;
  height: 16px;
  fill: var(--accent-gold);
}

.about-item-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 1rem;
  margin-bottom: 4px;
}

.about-item-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.about-visual-panel {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  aspect-ratio: 4 / 3;
}

.about-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, var(--bg-secondary), transparent);
}

.about-visual-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-speed) ease;
}

.about-visual-panel:hover img {
  transform: scale(1.05);
}

/* -------------------------------------------------------------
   6. FLEET / VEHICLES SECTION
   ------------------------------------------------------------- */
#fleet {
  padding: 120px 0;
  background-color: var(--bg-primary);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.fleet-card {
  background-color: var(--bg-card);
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-speed) ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.fleet-card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--accent-gold-rgb), 0.3);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.fleet-img-container {
  position: relative;
  height: 220px;
  overflow: hidden;
  background-color: #161616;
}

.fleet-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.fleet-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
  transition: transform var(--transition-speed) ease;
}

.fleet-card:hover .fleet-img-placeholder img {
  transform: scale(1.05);
  filter: brightness(0.9);
}

.fleet-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(31, 31, 31, 1), rgba(31, 31, 31, 0));
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.fleet-category-badge {
  background: rgba(var(--accent-gold-rgb), 0.15);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
}

.fleet-card-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.fleet-title {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.fleet-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.fleet-specs {
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 16px 0;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.fleet-spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.fleet-spec-item svg {
  width: 14px;
  height: 14px;
  fill: var(--accent-gold);
}

.fleet-cta {
  width: 100%;
  text-align: center;
  padding: 12px 20px;
  font-size: 0.95rem;
  border-radius: 6px;
}

.fleet-note {
  text-align: center;
  background-color: var(--bg-card);
  border: 1px dashed rgba(var(--accent-gold-rgb), 0.25);
  padding: 20px;
  border-radius: var(--border-radius);
  margin-top: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.fleet-note p {
  font-size: 1rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.fleet-note svg {
  width: 20px;
  height: 20px;
  fill: var(--accent-gold);
}

.fleet-note a {
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 700;
  transition: text-shadow 0.3s ease;
}

.fleet-note a:hover {
  text-shadow: 0 0 10px rgba(var(--accent-gold-rgb), 0.4);
}

/* -------------------------------------------------------------
   7. WHY CHOOSE US SECTION
   ------------------------------------------------------------- */
#why-choose-us {
  padding: 120px 0;
  background-color: var(--bg-secondary);
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.why-card {
  background-color: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 36px 28px;
  border-radius: var(--border-radius);
  transition: all var(--transition-speed) ease;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background-color: var(--accent-gold);
  transition: height 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(var(--accent-gold-rgb), 0.15);
}

.why-card:hover::before {
  height: 100%;
}

.why-icon {
  width: 54px;
  height: 54px;
  background: rgba(var(--accent-gold-rgb), 0.08);
  border: 1px solid rgba(var(--accent-gold-rgb), 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.why-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--accent-gold);
}

.why-title {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.why-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* -------------------------------------------------------------
   8. TESTIMONIALS SECTION
   ------------------------------------------------------------- */
#testimonials {
  padding: 120px 0;
  background-color: var(--bg-primary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto 60px;
}

.testimonial-card {
  background-color: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 40px;
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.testimonial-quotes {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 5rem;
  line-height: 0;
  color: rgba(var(--accent-gold-rgb), 0.05);
  font-family: Georgia, serif;
}

.stars {
  color: var(--accent-gold);
  font-size: 1.15rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 30px;
  flex-grow: 1;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
}

.reviewer-avatar {
  width: 46px;
  height: 46px;
  background: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--accent-gold);
  font-family: 'Outfit', sans-serif;
}

.reviewer-details h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.reviewer-details p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Trust Ribbon ("As seen on") */
.trust-ribbon {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 60px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.trust-ribbon-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.badges-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.trust-badge-card {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text-muted);
  background-color: var(--bg-secondary);
  padding: 10px 24px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-speed) ease;
  cursor: default;
}

.trust-badge-card:hover {
  color: var(--text-primary);
  border-color: rgba(var(--accent-gold-rgb), 0.25);
  box-shadow: 0 0 15px rgba(var(--accent-gold-rgb), 0.1);
}

/* -------------------------------------------------------------
   9. CONTACT & HOURS SECTION
   ------------------------------------------------------------- */
#contact {
  padding: 120px 0;
  background-color: var(--bg-secondary);
  position: relative;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 50px;
}

/* Contact Info Panel (Left) */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.info-card {
  display: flex;
  gap: 20px;
}

.info-card-icon {
  width: 50px;
  height: 50px;
  background: rgba(var(--accent-gold-rgb), 0.06);
  border: 1px solid rgba(var(--accent-gold-rgb), 0.15);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-card-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--accent-gold);
}

.info-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  font-weight: 600;
}

.info-card-body p, .info-card-body a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  text-decoration: none;
  line-height: 1.6;
}

.info-card-body a:hover {
  color: var(--accent-gold);
}

/* Status Indicator for Hours */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  margin-top: 8px;
}

.status-open {
  background: rgba(37, 211, 102, 0.1);
  color: var(--whatsapp-green);
  border: 1px solid rgba(37, 211, 102, 0.2);
}

.status-closed {
  background: rgba(255, 59, 48, 0.1);
  color: #FF3B30;
  border: 1px solid rgba(255, 59, 48, 0.2);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: currentColor;
}

.map-container {
  width: 100%;
  height: 250px;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.8) invert(0.9) contrast(1.2);
}

/* Inquiry Form Panel (Right) */
.form-card {
  background-color: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.form-title {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

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

.form-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-control {
  background-color: rgba(18, 18, 18, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  padding: 12px 16px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-control:focus {
  border-color: var(--accent-gold);
  background-color: rgba(18, 18, 18, 0.8);
  box-shadow: 0 0 10px rgba(var(--accent-gold-rgb), 0.25);
}

textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

.form-submit-btn {
  grid-column: span 2;
  width: 100%;
  margin-top: 10px;
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
}

/* -------------------------------------------------------------
   10. FOOTER
   ------------------------------------------------------------- */
footer {
  background-color: #0c0c0c;
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  gap: 14px;
}

.social-icon {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background-color: var(--accent-gold);
  color: var(--bg-primary);
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

.social-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

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

.footer-link a:hover {
  color: var(--accent-gold);
}

.footer-contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--accent-gold);
  margin-top: 3px;
}

.footer-contact-item a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-item a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-whatsapp-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--whatsapp-green);
  text-decoration: none;
  font-weight: 600;
  transition: text-shadow 0.3s ease;
}

.footer-whatsapp-link:hover {
  text-shadow: 0 0 10px rgba(37, 211, 102, 0.3);
}

.footer-whatsapp-link svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* -------------------------------------------------------------
   11. FLOATING ELEMENTS
   ------------------------------------------------------------- */
.floating-wa-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background-color: var(--whatsapp-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.35);
  cursor: pointer;
  z-index: 999;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-wa-btn::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  border: 1px solid var(--whatsapp-green);
  opacity: 0;
  animation: pulse-ring 2s infinite;
  pointer-events: none;
}

.floating-wa-btn:hover {
  background-color: var(--whatsapp-green-hover);
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.floating-wa-btn svg {
  width: 32px;
  height: 32px;
  fill: var(--text-primary);
}

.wa-tooltip {
  position: absolute;
  right: 70px;
  background-color: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 4px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.floating-wa-btn:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* -------------------------------------------------------------
   12. RESPONSIVE MEDIA QUERIES
   ------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fleet-card.bus-card {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-visual-panel {
    order: -1;
    max-height: 400px;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .footer-grid {
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--bg-primary);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    transition: left 0.4s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-links.active {
    left: 0;
  }

  .nav-cta-wrapper {
    display: none;
  }

  .nav-links .btn {
    margin-top: 20px;
  }

  .hero-title {
    font-size: 2.5rem;
  }
  .hero-tagline {
    font-size: 1.1rem;
  }
  .fleet-grid {
    grid-template-columns: 1fr;
  }
  .fleet-card.bus-card {
    grid-column: span 1;
    max-width: 100%;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-brand {
    align-items: center;
    text-align: center;
  }
  .footer-nav {
    align-items: center;
    text-align: center;
  }
  .footer-contact-details {
    align-items: center;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .about-highlights {
    grid-template-columns: 1fr;
  }
  .contact-form {
    grid-template-columns: 1fr;
  }
  .form-submit-btn, .form-group-full {
    grid-column: span 1;
  }
  .floating-wa-btn {
    bottom: 20px;
    right: 20px;
  }
  .wa-tooltip {
    display: none;
  }
}

