* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", system-ui, sans-serif;
}

body {
  background-color: #000;
  color: #f8fafc;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000;
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.header.scrolled {
  padding: 1rem 5%;
  background-color: rgba(15, 23, 42, 0.98);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.8rem;
  font-weight: 800;
  color: #f8fafc;
  text-decoration: none;
}

.logo-icon {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  padding: 0.5rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  background: linear-gradient(to right, #f59e0b, #fbbf24);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:nth-last-child(1) {
  color: #000;
}
.nav-links a:nth-last-child(1):hover {
  color: #fff;
}

.nav-links a:hover {
  color: #fbbf24;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #f59e0b, #fbbf24);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.cta-button {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: #0f172a;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
}

/* Mobile Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #fbbf24;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  padding: 0 5%;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.9)),
    url("https://images.unsplash.com/photo-1568605117036-5fe5e7bab0b7?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80");
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.hero-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 20% 50%,
    rgba(245, 158, 11, 0.15) 0%,
    transparent 50%
  );
}

.hero-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative; /* ✅ IMPORTANT */
  padding-top: 70px;
  padding-bottom: 70px;
}

.hero-content {
  max-width: 650px;
  z-index: 1;
  animation: fadeUp 1s ease-out;
  padding-top: 80px;
}

.hero-subtitle {
  color: #fbbf24;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #f8fafc, #fbbf24);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-description {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.primary-btn {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: #0f172a;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
}

.secondary-btn {
  background: transparent;
  color: #f8fafc;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 2px solid #fbbf24;
  transition: all 0.3s ease;
}

.secondary-btn:hover {
  background: rgba(251, 191, 36, 0.1);
  transform: translateY(-3px);
}

/* Hero Image - Taxi Photo */
.hero-image {
  position: relative; /* ✅ CHANGE */
  width: 45%;
  max-width: 620px;
  z-index: 1;
}

.taxi-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  transform: none; /* ✅ no 3D tilt */
  transition: transform 0.3s ease;
}

.taxi-img:hover {
  transform: scale(1.02); /* ✅ subtle hover instead */
}

/* Stats Section */
.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fbbf24;
  line-height: 1;
}

.stat-label {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Styles */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .hero-image {
    width: 45%;
  }
}

@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    padding-top: 120px;
    padding-bottom: 40px;
  }

  .hero-content {
    padding-top: 0;
    margin-bottom: 3rem;
    max-width: 100%;
  }

  .hero-image {
    width: 80%;
    max-width: 600px;
    margin: 0 auto;
  }

  .hero-content {
    max-width: 100%;
    padding-top: 0;
    margin-bottom: 3rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-image {
    position: relative;
    right: 0;
    bottom: 0;
    width: 80%;
    max-width: 600px;
    margin: 0 auto;
  }

  .taxi-img {
    transform: perspective(1000px) rotateY(0deg);
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 1rem 5%;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #000;
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding-top: 80px;
    /* justify-content: center; */
    /* align-items: center; */
    gap: 1.5rem;
    transition: right 0.5s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
  }

  .nav-links.active {
    right: 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .hero-image {
    width: 90%;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .primary-btn,
  .secondary-btn {
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .stat-value {
    font-size: 2rem;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .logo {
    font-size: 1.5rem;
  }
}

@media (max-width: 400px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-buttons {
    gap: 1rem;
  }

  .stat-value {
    font-size: 1.8rem;
  }

  .hero-stats {
    gap: 1rem;
  }
}

/* Over Ons Sectie */
.about-section {
  padding: 100px 5%;
  background: #000;
  position: relative;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 80% 20%,
    rgba(251, 191, 36, 0.05) 0%,
    transparent 50%
  );
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  color: #fbbf24;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #f8fafc, #fbbf24);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.highlight {
  color: #fbbf24;
}

.section-description {
  color: #cbd5e1;
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-text h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #f8fafc;
}

.about-text > p {
  color: #cbd5e1;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.feature-icon {
  background: rgba(251, 191, 36, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  color: #fbbf24;
  font-size: 1.5rem;
}

.feature-content h4 {
  color: #f8fafc;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.feature-content p {
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.6;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  background: rgba(30, 41, 59, 0.5);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(251, 191, 36, 0.1);
}

.stat-box h4 {
  font-size: 2.5rem;
  color: #fbbf24;
  margin-bottom: 0.5rem;
}

.stat-box p {
  color: #cbd5e1;
  font-weight: 600;
}

/* Prijzen Sectie */
.pricing-section {
  padding: 100px 5%;
  background: #061e29;
  position: relative;
}

.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.tab-btn {
  background: rgba(30, 41, 59, 0.5);
  border: 2px solid #334155;
  color: #cbd5e1;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  background: rgba(251, 191, 36, 0.1);
  border-color: #fbbf24;
  color: #fbbf24;
}

.tab-btn.active {
  background: #fbbf24;
  border-color: #fbbf24;
  color: #0f172a;
  box-shadow: 0 5px 15px rgba(251, 191, 36, 0.3);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.pricing-card {
  background: #0f172a;
  border-radius: 20px;
  padding: 40px 30px;
  border: 2px solid #334155;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  border-color: #fbbf24;
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.popular {
  border-color: #fbbf24;
  box-shadow: 0 15px 30px rgba(251, 191, 36, 0.2);
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #fbbf24;
  color: #0f172a;
  padding: 6px 20px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
}

.card-header {
  text-align: center;
  margin-bottom: 30px;
}

.card-header h3 {
  font-size: 1.8rem;
  color: #f8fafc;
  margin-bottom: 15px;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
}

.currency {
  color: #fbbf24;
  font-size: 1.5rem;
  font-weight: 600;
}

.amount {
  font-size: 3.5rem;
  font-weight: 800;
  color: #f8fafc;
  line-height: 1;
}

.unit {
  color: #fff;
  font-size: 1.2rem;
}

.features-list {
  list-style: none;
  margin-bottom: 40px;
}

.features-list li {
  color: #cbd5e1;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.features-list i {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.features-list i.fa-check {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}

.features-list i.fa-times {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.card-footer {
  text-align: center;
}

.book-btn {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: #0f172a;
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.book-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(251, 191, 36, 0.3);
}

/* Call to Action Sectie */
.cta-section {
  padding: 100px 5%;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(251, 191, 36, 0.1) 0%,
    transparent 70%
  );
}

.cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.cta-text {
  flex: 1;
}

.cta-text h2 {
  font-size: 2.8rem;
  color: #f8fafc;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #f8fafc, #fbbf24);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-text p {
  color: #cbd5e1;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-text strong {
  color: #fbbf24;
}

.cta-features {
  display: flex;
  gap: 30px;
  margin-top: 2rem;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-feature i {
  color: #fbbf24;
  font-size: 1.2rem;
}

.cta-feature span {
  color: #cbd5e1;
  font-weight: 600;
}

.cta-buttons {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 400px;
}

.cta-primary-btn,
.cta-secondary-btn,
.cta-call-btn {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 25px;
  border-radius: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-primary-btn {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: #0f172a;
}

.cta-secondary-btn {
  background: rgba(251, 191, 36, 0.1);
  color: #fbbf24;
  border: 2px solid #fbbf24;
}

.cta-call-btn {
  background: rgba(30, 41, 59, 0.5);
  color: #f8fafc;
  border: 2px solid #334155;
}

.cta-primary-btn:hover,
.cta-secondary-btn:hover,
.cta-call-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.cta-primary-btn:hover {
  background: linear-gradient(135deg, #f59e0b, #f59e0b);
}

.cta-secondary-btn:hover {
  background: rgba(251, 191, 36, 0.2);
}

.cta-call-btn:hover {
  background: rgba(251, 191, 36, 0.1);
  border-color: #fbbf24;
}

.cta-primary-btn i,
.cta-secondary-btn i,
.cta-call-btn i {
  font-size: 2rem;
}

.btn-title {
  display: block;
  font-weight: 700;
  font-size: 1.2rem;
}

.btn-subtitle {
  display: block;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Footer */
.footer {
  background: #000;
  padding: 80px 5% 30px;
  border-top: 1px solid rgba(251, 191, 36, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-column h3 {
  color: #f8fafc;
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #fbbf24;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo .logo-icon {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  padding: 8px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo .logo-text {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(to right, #f59e0b, #fbbf24);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-description {
  color: #fff;
  margin-bottom: 25px;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: #1e293b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #fbbf24;
  color: #0f172a;
  transform: translateY(-3px);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links a:hover {
  color: #fbbf24;
  transform: translateX(5px);
}

.footer-links a::before {
  content: "→";
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-links a:hover::before {
  opacity: 1;
}

.contact-info {
  list-style: none;
}

.contact-info li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-info i {
  color: #fbbf24;
  font-size: 1.2rem;
  margin-top: 3px;
}

.contact-info span {
  color: #fff;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  background: #1e293b;
  border: 2px solid #334155;
  border-radius: 8px;
  color: #f8fafc;
  outline: none;
}

.newsletter-form input:focus {
  border-color: #fbbf24;
}

.newsletter-form button {
  background: #fbbf24;
  color: #0f172a;
  border: none;
  width: 50px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: #f59e0b;
}

.app-download {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.app-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #1e293b;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.app-btn:hover {
  background: #334155;
  transform: translateY(-3px);
}

.app-btn i {
  font-size: 1.8rem;
  color: #f8fafc;
}

.app-btn div {
  display: flex;
  flex-direction: column;
}

.app-btn span {
  font-size: 0.8rem;
  color: #fff;
}

.app-btn strong {
  color: #f8fafc;
  font-size: 1.1rem;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #334155;
	text-align: center;
}

.copyright p {
  color: #fff;
  font-size: 0.9rem;
}



/* Responsieve Stijlen */
@media (max-width: 1200px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pricing-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card:nth-child(3) {
    grid-column: span 2;
    max-width: 400px;
    margin: 0 auto;
  }

  .cta-content {
    flex-direction: column;
    text-align: center;
  }

  .cta-features {
    justify-content: center;
  }

  .cta-buttons {
    max-width: 100%;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .pricing-tabs {
    flex-direction: column;
    align-items: center;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .pricing-card:nth-child(3) {
    grid-column: 1;
    max-width: 100%;
  }

  .cta-text h2 {
    font-size: 2.2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 2rem;
  }

  .about-img {
    border-radius: 15px;
  }

  .price .amount {
    font-size: 2.5rem;
  }

  .cta-buttons {
    grid-template-columns: 1fr;
  }

  .cta-features {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}

/* ===== Responsive Modal Form ===== */
@media (max-width: 640px) {
  .modal-content {
    padding: 1.5rem;
    max-width: 95%;
  }

  .modal-content h3 {
    font-size: 1.3rem;
    text-align: center;
  }

  .form-group label {
    font-size: 0.9rem;
  }

  .form-group input,
  .form-group select {
    font-size: 0.95rem;
    padding: 0.7rem;
  }

  .modal-buttons {
    flex-direction: column;
  }

  .confirm-btn,
  .cancel-btn {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .modal-content {
    padding: 1.2rem;
  }

  .modal-content h3 {
    font-size: 1.2rem;
  }
}

/* Services Page Specific Styles */

/* Services Hero */
.services-hero {
  padding: 150px 5% 100px;
  background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.95));
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.services-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1549924231-f129b911e442?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: -1;
}

.services-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.services-hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #f8fafc, #fbbf24);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.services-hero-content p {
  color: #cbd5e1;
  font-size: 1.3rem;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.services-hero .hero-stats {
  justify-content: center;
  margin-top: 3rem;
}

/* Active Navigation Link */
.nav-links a.active {
  color: #fbbf24;
}

.nav-links a.active::after {
  width: 100%;
}

/* Main Services Grid */
.main-services {
  padding: 100px 5%;
  background: #000;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: #1e293b;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: #fbbf24;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card.featured {
  border-color: #fbbf24;
  box-shadow: 0 15px 30px rgba(251, 191, 36, 0.2);
}

.service-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #fbbf24;
  color: #0f172a;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.8rem;
  z-index: 2;
}

.service-card-inner {
  padding: 40px 30px;
}

.service-icon {
  width: 70px;
  height: 70px;
  background: rgba(251, 191, 36, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.service-icon i {
  color: #fbbf24;
  font-size: 2rem;
}

.service-card h3 {
  color: #f8fafc;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.service-card p {
  color: #94a3b8;
  margin-bottom: 25px;
  line-height: 1.6;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}

.feature-tag {
  background: rgba(30, 41, 59, 0.5);
  color: #fbbf24;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(251, 191, 36, 0.2);
}

.service-details {
  margin-bottom: 30px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #cbd5e1;
}

.detail-item i {
  color: #fbbf24;
  width: 20px;
}

.service-btn {
  display: block;
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: #0f172a;
  text-align: center;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.service-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(251, 191, 36, 0.3);
}

/* Service Details Section */
.service-details-section {
  padding: 100px 5%;
  background: #000;
}

.details-tabs {
  background: #0f172a;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 50px;
}

.details-nav {
  display: flex;
  background: rgba(30, 41, 59, 0.5);
  border-bottom: 1px solid #334155;
}

.details-tab {
  flex: 1;
  padding: 25px;
  background: none;
  border: none;
  color: #cbd5e1;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.details-tab:hover {
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.05);
}

.details-tab.active {
  color: #0f172a;
  background: #fbbf24;
}

.details-tab.active i {
  color: #0f172a;
}

.details-content {
  padding: 50px;
}

.details-pane {
  display: none;
}

.details-pane.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.details-info h3 {
  font-size: 2.2rem;
  color: #f8fafc;
  margin-bottom: 20px;
}

.details-info > p {
  color: #cbd5e1;
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.specs-list {
  margin-bottom: 40px;
}

.spec-item {
  margin-bottom: 25px;
}

.spec-item h4 {
  color: #f8fafc;
  font-size: 1.2rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.spec-item h4 i {
  color: #22c55e;
}

.spec-item p {
  color: #94a3b8;
  padding-left: 30px;
}

.price-table {
  background: rgba(30, 41, 59, 0.5);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #334155;
}

.price-row {
  display: flex;
  justify-content: space-between;
  padding: 15px 20px;
  border-bottom: 1px solid #334155;
  color: #cbd5e1;
}

.price-row:last-child {
  border-bottom: none;
}

.price-row span:last-child {
  color: #fbbf24;
  font-weight: 700;
}

.details-image {
  position: relative;
}

.details-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Safety Features Grid */
.safety-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.safety-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(30, 41, 59, 0.5);
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #334155;
}

.safety-item i {
  color: #fbbf24;
  font-size: 1.2rem;
}

.safety-item span {
  color: #cbd5e1;
  font-size: 0.9rem;
}

/* Business Features */
.business-features ul {
  list-style: none;
  margin-top: 20px;
}

.business-features li {
  color: #cbd5e1;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.business-features li::before {
  content: "✓";
  color: #22c55e;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Service Booking CTA */
.service-booking-cta {
  padding: 100px 5%;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.booking-cta-content {
  background: #1e293b;
  border-radius: 20px;
  padding: 60px;
  display: flex;
  gap: 60px;
  align-items: center;
  border: 2px solid #334155;
}

.cta-text {
  flex: 1;
}

.cta-text h2 {
  font-size: 2.5rem;
  color: #f8fafc;
  margin-bottom: 20px;
  background: linear-gradient(to right, #f8fafc, #fbbf24);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-text p {
  color: #cbd5e1;
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.cta-benefits {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 10px;
}

.benefit i {
  color: #22c55e;
}

.benefit span {
  color: #cbd5e1;
  font-weight: 600;
}

.cta-actions {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.cta-call,
.cta-email,
.cta-quote {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 25px;
  border-radius: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: left;
}

.cta-call {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: #0f172a;
}

.cta-email {
  background: rgba(251, 191, 36, 0.1);
  color: #fbbf24;
  border: 2px solid #fbbf24;
}

.cta-quote {
  background: rgba(30, 41, 59, 0.5);
  color: #f8fafc;
  border: 2px solid #334155;
}

.cta-call:hover,
.cta-email:hover,
.cta-quote:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.cta-call:hover {
  background: linear-gradient(135deg, #f59e0b, #f59e0b);
}

.cta-email:hover {
  background: rgba(251, 191, 36, 0.2);
}

.cta-quote:hover {
  background: rgba(251, 191, 36, 0.1);
  border-color: #fbbf24;
}

.cta-call i,
.cta-email i,
.cta-quote i {
  font-size: 1.8rem;
}

.cta-call div,
.cta-email div,
.cta-quote div {
  display: flex;
  flex-direction: column;
}

.cta-call span,
.cta-email span,
.cta-quote span {
  font-size: 0.9rem;
  opacity: 0.8;
}

.cta-call strong,
.cta-email strong,
.cta-quote strong {
  font-size: 1.2rem;
  font-weight: 700;
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: #0f172a;
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  border: 2px solid #334155;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #cbd5e1;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: #fbbf24;
}

.modal-content h3 {
  color: #f8fafc;
  font-size: 1.8rem;
  margin-bottom: 30px;
  text-align: center;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: #cbd5e1;
  font-weight: 600;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  background: #1e293b;
  border: 2px solid #334155;
  border-radius: 8px;
  color: #f8fafc;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #fbbf24;
}

.submit-quote {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: #0f172a;
  border: none;
  padding: 15px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.submit-quote:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(251, 191, 36, 0.3);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .details-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .details-image {
    order: -1;
  }
}

@media (max-width: 992px) {
  .services-hero-content h1 {
    font-size: 3rem;
  }

  .booking-cta-content {
    flex-direction: column;
  }

  .cta-actions {
    width: 100%;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-hero-content h1 {
    font-size: 2.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .details-nav {
    flex-wrap: wrap;
  }

  .details-tab {
    flex: 1 0 calc(50% - 10px);
    padding: 15px;
    font-size: 1rem;
  }

  .details-content {
    padding: 30px;
  }

  .safety-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .services-hero {
    padding: 120px 5% 80px;
  }

  .services-hero-content h1 {
    font-size: 2rem;
  }

  .service-card-inner {
    padding: 30px 20px;
  }

  .details-tab {
    flex: 1 0 100%;
  }

  .booking-cta-content {
    padding: 30px;
  }

  .cta-text h2 {
    font-size: 2rem;
  }

  .cta-benefits {
    flex-direction: column;
    gap: 15px;
  }

  .modal-content {
    padding: 30px 20px;
  }
}


/* ================= MAP SECTION ================= */
.map-section {
  padding: 10rem 5%;
  background: linear-gradient(
    to bottom,
    #000,
    rgba(15, 23, 42, 0.98)
  );
}

.map-container {
  max-width: 1400px;
  margin: 0 auto;
}

.map-header {
  text-align: center;
  margin-bottom: 3rem;
}

.map-subtitle {
  color: #fbbf24;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 1.1rem;
}

.map-title {
  font-size: 3rem;
  font-weight: 800;
  margin: 1rem 0;
  background: linear-gradient(to right, #f8fafc, #fbbf24);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.map-description {
  color: #fff;
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.1rem;
  opacity: 0.9;
}

.map-wrapper {
  margin-top: 3rem;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(251, 191, 36, 0.2);
}

.map-wrapper iframe {
  width: 100%;
  height: 450px;
  border: none;
  filter: grayscale(100%) contrast(1.1) brightness(0.9);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .map-section{
    padding: 7rem 5%;
  }
  .map-title {
    font-size: 2.5rem;
  }

  .map-wrapper iframe {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.2rem;
  }

  .map-description {
    font-size: 1rem;
  }

  .map-wrapper iframe {
    height: 350px;
  }
}

@media (max-width: 576px) {
  .map-title {
    font-size: 2rem;
  }

  .map-wrapper iframe {
    height: 300px;
  }
}
