:root {
  --primary-color: #fec719;
  --accent-color: #ce0304;
  --secondary-color: #1a1a1a;
  --text-dark: #333;
  --text-light: #fff;
  --bg-light: #f8f9fa;
  --bg-dark: #2b2b2b;
  --border-radius: 8px;
  --transition: all 0.3s ease;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  overflow-x: hidden;
  font-size: 16px;
}

/* Container */
.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* ===============================================
   TAXI CHECKERED PATTERN
=============================================== */

/* Checkered pattern background */
.taxi-pattern {
  background-image:
    linear-gradient(45deg, var(--secondary-color) 25%, transparent 25%),
    linear-gradient(-45deg, var(--secondary-color) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--secondary-color) 75%),
    linear-gradient(-45deg, transparent 75%, var(--secondary-color) 75%);
  background-size: 20px 20px;
  background-position:
    0 0,
    0 10px,
    10px -10px,
    -10px 0px;
  background-color: var(--primary-color);
}

/* Horizontal taxi stripe */
.taxi-pattern-stripe {
  height: 16px;
  width: 100%;
  position: relative;
  background:
    repeating-linear-gradient(
        90deg,
        var(--primary-color) 0px,
        var(--primary-color) 30px,
        var(--secondary-color) 30px,
        var(--secondary-color) 60px
      )
      0 0 / 60px 6px repeat,
    repeating-linear-gradient(
        90deg,
        var(--secondary-color) 0px,
        var(--secondary-color) 30px,
        var(--primary-color) 30px,
        var(--primary-color) 60px
      )
      30px 10px / 60px 6px repeat;
  animation: taxiStripeMove 3s linear infinite;
}

/* Decorative taxi pattern overlay for sections */
.taxi-pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 16px;
  background:
    repeating-linear-gradient(
        90deg,
        var(--primary-color) 0px,
        var(--primary-color) 30px,
        var(--secondary-color) 30px,
        var(--secondary-color) 60px
      )
      0 0 / 60px 6px repeat,
    repeating-linear-gradient(
        90deg,
        var(--secondary-color) 0px,
        var(--secondary-color) 30px,
        var(--primary-color) 30px,
        var(--primary-color) 60px
      )
      30px 10px / 60px 6px repeat;
  z-index: 2;
  animation: taxiStripeMove 3s linear infinite;
}

/* Decorative bottom stripe */
.taxi-pattern-overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 16px;
  background:
    repeating-linear-gradient(
        90deg,
        var(--primary-color) 0px,
        var(--primary-color) 30px,
        var(--secondary-color) 30px,
        var(--secondary-color) 60px
      )
      0 0 / 60px 6px repeat,
    repeating-linear-gradient(
        90deg,
        var(--secondary-color) 0px,
        var(--secondary-color) 30px,
        var(--primary-color) 30px,
        var(--primary-color) 60px
      )
      30px 10px / 60px 6px repeat;
  z-index: 2;
  animation: taxiStripeMove 3s linear infinite;
}

/* Taxi stripe animation */
@keyframes taxiStripeMove {
  0% {
    background-position:
      0 0,
      30px 10px;
  }
  100% {
    background-position:
      60px 0,
      90px 10px;
  }
}

/* Vertical side accent */
.taxi-pattern-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: repeating-linear-gradient(
    180deg,
    var(--primary-color) 0px,
    var(--primary-color) 25px,
    var(--secondary-color) 25px,
    var(--secondary-color) 50px
  );
  z-index: 2;
}

/* Checkered corner decoration */
.taxi-pattern-corner {
  position: absolute;
  width: 80px;
  height: 80px;
  background-image:
    linear-gradient(45deg, var(--secondary-color) 25%, transparent 25%),
    linear-gradient(-45deg, var(--secondary-color) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--secondary-color) 75%),
    linear-gradient(-45deg, transparent 75%, var(--secondary-color) 75%);
  background-size: 20px 20px;
  background-position:
    0 0,
    0 10px,
    10px -10px,
    -10px 0px;
  background-color: var(--primary-color);
  opacity: 0.9;
}

.taxi-pattern-corner.top-left {
  top: 0;
  left: 0;
}

.taxi-pattern-corner.top-right {
  top: 0;
  right: 0;
}

.taxi-pattern-corner.bottom-left {
  bottom: 0;
  left: 0;
}

.taxi-pattern-corner.bottom-right {
  bottom: 0;
  right: 0;
}

/* ===============================================
   HEADER STYLES
=============================================== */

/* Top Bar */
.top-bar {
  background: var(--secondary-color);
  color: var(--text-light);
  font-size: 0.9rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.top-bar-left {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar-item .icon {
  font-size: 1.1rem;
}

.top-bar-item a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
}

.top-bar-item a:hover {
  color: var(--primary-color);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Main Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.site-header.header-transparent {
  background: rgba(26, 26, 26, 0.95);
  box-shadow: none;
}

.site-header.header-transparent .top-bar {
  background: transparent;
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.site-header.header-transparent .main-nav {
  background: transparent;
}

.site-header.header-transparent .nav-menu a {
  color: var(--text-light);
}

.site-header.header-transparent .nav-menu a:hover,
.site-header.header-transparent .nav-menu a.active {
  color: var(--primary-color);
}

.main-nav {
  background: #fff;
  padding: 1rem 0;
  transition: var(--transition);
}

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

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

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

.logo img {
  height: 70px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

.logo-text {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: bold;
  transition: var(--transition);
}

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

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0;
  align-items: center;
  margin: 0;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  display: block;
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  padding: 0.8rem 1.2rem;
  transition: var(--transition);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-color);
}

.nav-menu a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1.2rem;
  right: 1.2rem;
  height: 3px;
  background: var(--primary-color);
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--secondary-color);
  padding: 0.8rem 1.8rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(254, 199, 25, 0.3);
}

.btn-primary:hover {
  background: var(--accent-color);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(206, 3, 4, 0.4);
}

/* Language Switcher in Top Bar */
.top-bar .lang-switcher {
  display: flex;
  gap: 0.3rem;
}

.lang-btn {
  background: transparent;
  border: 1px solid rgba(254, 199, 25, 0.4);
  color: var(--text-light);
  padding: 0.3rem 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
}

.lang-btn:hover {
  background: rgba(254, 199, 25, 0.1);
  border-color: var(--primary-color);
}

.lang-btn.active {
  background: var(--primary-color);
  color: var(--secondary-color);
  border-color: var(--primary-color);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--secondary-color);
  transition: var(--transition);
  border-radius: 2px;
}

.site-header.header-transparent .mobile-menu-toggle span {
  background: var(--text-light);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Hide mobile nav extras on desktop */
.mobile-nav-extras {
  display: none;
}

/* ===============================================
   BREADCRUMB
=============================================== */
.page-header {
  background: linear-gradient(135deg, var(--secondary-color), var(--bg-dark));
  color: var(--text-light);
  padding: 8rem 0 4rem;
  text-align: center;
  margin-top: 130px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="40" fill="rgba(254,199,25,0.05)"/></svg>');
  opacity: 0.3;
}

.page-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 16px;
  background:
    repeating-linear-gradient(
        90deg,
        var(--primary-color) 0px,
        var(--primary-color) 30px,
        var(--secondary-color) 30px,
        var(--secondary-color) 60px
      )
      0 0 / 60px 6px repeat,
    repeating-linear-gradient(
        90deg,
        var(--secondary-color) 0px,
        var(--secondary-color) 30px,
        var(--primary-color) 30px,
        var(--primary-color) 60px
      )
      30px 10px / 60px 6px repeat;
  z-index: 2;
  animation: taxiStripeMove 3s linear infinite;
}

.page-header .container-wide {
  position: relative;
  z-index: 1;
}

.page-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: fadeInUp 0.6s ease;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  list-style: none;
  font-size: 0.95rem;
  animation: fadeInUp 0.8s ease;
}

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

.breadcrumb a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
}

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

.breadcrumb li:not(:last-child)::after {
  content: "›";
  color: var(--primary-color);
  font-size: 1.2rem;
}

/* ===============================================
   HERO SECTION  
=============================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
  margin-top: 130px;
  overflow: hidden;
}

.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
}

.hero-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.7),
    rgba(43, 43, 43, 0.6)
  );
}

.hero-slide.active {
  opacity: 1;
  animation: zoomIn 8s ease-in-out;
}

@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.hero-content {
  max-width: 900px;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  line-height: 1.2;
}

.hero p {
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.9s ease;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  background: var(--primary-color);
  color: var(--secondary-color);
  padding: 1.1rem 2.8rem;
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: bold;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  animation: fadeInUp 1s ease;
  box-shadow: 0 4px 20px rgba(254, 199, 25, 0.5);
}

.cta-button:hover {
  background: var(--accent-color);
  color: var(--text-light);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(206, 3, 4, 0.5);
}

/* ===============================================
   SECTIONS
=============================================== */
section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
  position: relative;
  padding-bottom: 1.5rem;
  font-weight: 700;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 3.5rem;
  font-size: 1.15rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ===============================================
   FEATURES / WHY CHOOSE US
=============================================== */
.features {
  background: var(--bg-light);
  position: relative;
  padding-top: 5rem;
}

.features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 16px;
  background:
    repeating-linear-gradient(
        90deg,
        var(--primary-color) 0px,
        var(--primary-color) 30px,
        var(--secondary-color) 30px,
        var(--secondary-color) 60px
      )
      0 0 / 60px 6px repeat,
    repeating-linear-gradient(
        90deg,
        var(--secondary-color) 0px,
        var(--secondary-color) 30px,
        var(--primary-color) 30px,
        var(--primary-color) 60px
      )
      30px 10px / 60px 6px repeat;
  z-index: 2;
  animation: taxiStripeMove 3s linear infinite;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}

.feature-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.feature-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
  display: inline-block;
}

.feature-card:hover .feature-icon {
  transform: scale(1.15) rotate(5deg);
}

.feature-card h3 {
  margin-bottom: 1rem;
  color: var(--secondary-color);
  font-size: 1.3rem;
  font-weight: 600;
}

.feature-card p {
  color: #666;
  line-height: 1.7;
}

/* ===============================================
   STATS / NUMBERS SECTION
=============================================== */
.stats-section {
  background: linear-gradient(135deg, var(--secondary-color), var(--bg-dark));
  color: var(--text-light);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(254,199,25,0.03)"/></svg>');
  opacity: 0.5;
}

.stats-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 16px;
  background:
    repeating-linear-gradient(
        90deg,
        var(--primary-color) 0px,
        var(--primary-color) 30px,
        var(--secondary-color) 30px,
        var(--secondary-color) 60px
      )
      0 0 / 60px 6px repeat,
    repeating-linear-gradient(
        90deg,
        var(--secondary-color) 0px,
        var(--secondary-color) 30px,
        var(--primary-color) 30px,
        var(--primary-color) 60px
      )
      30px 10px / 60px 6px repeat;
  z-index: 2;
  animation: taxiStripeMove 3s linear infinite;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 1;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.stat-card:hover {
  background: rgba(254, 199, 25, 0.1);
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===============================================
   FLEET
=============================================== */
.fleet {
  position: relative;
  padding-top: 5rem;
}

.fleet::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 16px;
  background:
    repeating-linear-gradient(
        90deg,
        var(--primary-color) 0px,
        var(--primary-color) 30px,
        var(--secondary-color) 30px,
        var(--secondary-color) 60px
      )
      0 0 / 60px 6px repeat,
    repeating-linear-gradient(
        90deg,
        var(--secondary-color) 0px,
        var(--secondary-color) 30px,
        var(--primary-color) 30px,
        var(--primary-color) 60px
      )
      30px 10px / 60px 6px repeat;
  z-index: 2;
  animation: taxiStripeMove 3s linear infinite;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}

.fleet-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
}

.fleet-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(254, 199, 25, 0.1),
    rgba(206, 3, 4, 0.1)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.fleet-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.fleet-card:hover::after {
  opacity: 1;
}

.fleet-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.fleet-card:hover .fleet-image {
  transform: scale(1.08);
}

.fleet-info {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.fleet-info h3 {
  margin-bottom: 0.8rem;
  color: var(--secondary-color);
  font-size: 1.4rem;
  font-weight: 600;
}

.fleet-info p {
  color: #666;
  margin-bottom: 1rem;
}

.fleet-features {
  list-style: none;
  margin-top: 1.2rem;
  margin-bottom: 1.5rem;
}

.fleet-features li {
  padding: 0.5rem 0;
  color: #666;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.fleet-features li::before {
  content: "✓";
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.fleet-card:hover .fleet-features li::before {
  transform: scale(1.3);
}

.fleet-info .btn-primary {
  margin-top: auto;
  align-self: center;
  text-align: center;
}

/* ===============================================
   PRICING
=============================================== */
.pricing {
  background: var(--bg-light);
  position: relative;
  padding-top: 5rem;
}

.pricing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 16px;
  background:
    repeating-linear-gradient(
        90deg,
        var(--primary-color) 0px,
        var(--primary-color) 30px,
        var(--secondary-color) 30px,
        var(--secondary-color) 60px
      )
      0 0 / 60px 6px repeat,
    repeating-linear-gradient(
        90deg,
        var(--secondary-color) 0px,
        var(--secondary-color) 30px,
        var(--primary-color) 30px,
        var(--primary-color) 60px
      )
      30px 10px / 60px 6px repeat;
  z-index: 2;
  animation: taxiStripeMove 3s linear infinite;
}

.pricing-info {
  background: white;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  margin-bottom: 3rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--shadow-sm);
}

.pricing-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto 2rem;
  padding: 0 15px;
}

.price-card {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.price-card h3 {
  color: var(--secondary-color);
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
  font-weight: 600;
}

.price-card > p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.price-amount {
  font-size: 2.5rem;
  color: var(--primary-color);
  font-weight: 700;
  margin: 1.5rem 0;
  transition: transform 0.3s ease;
  display: inline-block;
}

.price-card:hover .price-amount {
  transform: scale(1.1);
}

.price-note {
  background: #fff3cd;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--accent-color);
  margin: 2rem auto 0;
  max-width: 1400px;
  box-shadow: var(--shadow-sm);
}

.price-note strong {
  color: var(--accent-color);
}

/* ===============================================
   FAQ ACCORDION
=============================================== */
.faq-section {
  background: var(--bg-light);
  padding: 5rem 0;
  position: relative;
}

.faq-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 16px;
  background:
    repeating-linear-gradient(
        90deg,
        var(--primary-color) 0px,
        var(--primary-color) 30px,
        var(--secondary-color) 30px,
        var(--secondary-color) 60px
      )
      0 0 / 60px 6px repeat,
    repeating-linear-gradient(
        90deg,
        var(--secondary-color) 0px,
        var(--secondary-color) 30px,
        var(--primary-color) 30px,
        var(--primary-color) 60px
      )
      30px 10px / 60px 6px repeat;
  z-index: 2;
  animation: taxiStripeMove 3s linear infinite;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
}

.faq-item {
  background: white;
  margin-bottom: 1.5rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid transparent;
}

.faq-item:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

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

.faq-question::after {
  content: "+";
  font-size: 1.8rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
  font-weight: 300;
}

.faq-question.active::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
  padding: 0 1.5rem;
}

.faq-answer.active {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
  color: #666;
  line-height: 1.8;
}

/* ===============================================
   FORMS
=============================================== */
.booking-form,
.contact-form {
  background: white;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  max-width: 900px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.form-group label {
  margin-bottom: 0.6rem;
  font-weight: 600;
  color: var(--secondary-color);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.9rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
  background: white;
}

/* Custom Select Dropdown Styling - Override Safari defaults */
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.2em;
  padding-right: 3rem;
  cursor: pointer;
}

.form-group select::-ms-expand {
  display: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(254, 199, 25, 0.15);
  transform: translateY(-2px);
}

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

/* Form Validation Error Styles */
.invalid-field {
  border-color: #dc3545 !important;
  background-color: #fff5f5 !important;
}

.invalid-field:focus {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.15) !important;
}

.field-error {
  color: #dc3545;
  font-size: 0.85rem;
  margin-top: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 500;
}

.field-error::before {
  content: "⚠";
  font-size: 1rem;
}

.form-success-message {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  padding: 1rem 1.2rem;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.form-success-message::before {
  content: "✓";
  font-size: 1.5rem;
  font-weight: bold;
}

.full-width {
  grid-column: 1 / -1;
}

.calculator-result {
  background: var(--bg-light);
  padding: 1.8rem;
  border-radius: var(--border-radius);
  margin-top: 1.5rem;
  display: none;
  border-left: 4px solid var(--primary-color);
}

.calculator-result.show {
  display: block;
  animation: slideInUp 0.4s ease;
}

.price-breakdown {
  margin-top: 1.2rem;
}

.price-breakdown p {
  padding: 0.6rem 0;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
}

.total-price {
  font-size: 2.2rem;
  color: var(--primary-color);
  font-weight: 700;
  margin-top: 1.5rem;
  text-align: center;
}

/* ===============================================
   CONTACT INFO
=============================================== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 3rem auto 0;
  padding: 0 15px;
}

.contact-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
  box-shadow: var(--shadow-sm);
}

.contact-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.contact-icon {
  font-size: 3rem;
  margin-bottom: 1.2rem;
  transition: var(--transition);
  display: inline-block;
}

.contact-card:hover .contact-icon {
  transform: scale(1.2) rotate(10deg);
}

.contact-card h3 {
  margin-bottom: 1rem;
  color: var(--secondary-color);
  font-size: 1.4rem;
  font-weight: 600;
}

.contact-card p {
  color: #666;
  line-height: 1.7;
}

.contact-card a {
  color: #666;
  text-decoration: none;
  transition: var(--transition);
}

.contact-card a:hover {
  color: var(--primary-color);
}

/* ===============================================
   ABOUT PAGE
=============================================== */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
}

.about-text h2 {
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
  font-weight: 700;
}

.about-text p {
  margin-bottom: 1.2rem;
  line-height: 1.8;
  color: #666;
}

.about-image {
  width: 100%;
  height: 450px;
  border-radius: var(--border-radius);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.values {
  background: var(--bg-light);
  padding: 5rem 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}

.value-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: white;
  border-radius: var(--border-radius);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
}

.value-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
  display: inline-block;
}

.value-card:hover .value-icon {
  transform: scale(1.15) rotate(-5deg);
}

.value-card h3 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.value-card p {
  color: #666;
  line-height: 1.7;
}

/* ===============================================
   CTA SECTIONS
=============================================== */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color), #ffd700);
  color: var(--secondary-color);
  text-align: center;
  padding: 5rem 0;
  margin: 4rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 10%,
    transparent 10%
  );
  background-size: 30px 30px;
  animation: movePattern 20s linear infinite;
}

@keyframes movePattern {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(30px, 30px);
  }
}

.cta-section .container-wide {
  position: relative;
  z-index: 1;
}

.cta-section .section-title {
  color: var(--secondary-color);
}

.cta-section .section-title::after {
  background: var(--secondary-color);
}

.cta-section .section-subtitle {
  color: var(--secondary-color);
}

.cta-section .cta-button {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.cta-section .cta-button:hover {
  background: var(--accent-color);
  color: var(--text-light);
}

/* ===============================================
   FOOTER
=============================================== */
.site-footer {
  background: var(--secondary-color);
  color: var(--text-light);
  margin-top: 0;
  position: relative;
}

.footer-main {
  padding: 4rem 0 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}

.footer-col h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--text-light);
  text-decoration: none;
  font-size: 1.2rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
  transform: translateY(-3px);
}

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

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact .icon {
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

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

.footer-newsletter {
  margin-top: 2rem;
}

.footer-newsletter h4 {
  color: var(--text-light);
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.footer-newsletter p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  font-size: 0.95rem;
  transition: var(--transition);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary-color);
}

.newsletter-form button {
  padding: 0.8rem 1.5rem;
  background: var(--primary-color);
  color: var(--secondary-color);
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background: var(--accent-color);
  color: var(--text-light);
  transform: translateY(-2px);
}

.footer-bottom {
  padding: 2rem 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
  font-size: 0.9rem;
}

.footer-company p,
.footer-credit p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.separator {
  margin: 0 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-credit a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.footer-credit a:hover {
  color: var(--text-light);
  text-decoration: underline;
}

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

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ===============================================
   RESPONSIVE
=============================================== */
@media (max-width: 992px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 0;
    height: 100vh;
    width: 280px;
    flex-direction: column;
    background: var(--secondary-color);
    padding: 6rem 0 2rem;
    transition: left 0.3s ease;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
    overflow-y: auto;
  }

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

  .nav-menu li {
    width: 100%;
  }

  .nav-menu a {
    color: var(--text-light);
    padding: 1rem 2rem;
    width: 100%;
  }

  .nav-menu a.active::after {
    left: 2rem;
    right: 2rem;
  }

  .mobile-nav-extras {
    display: block;
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1rem;
  }

  .mobile-nav-extras .mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 0;
    color: var(--text-light);
  }

  .mobile-nav-extras .mobile-contact-item svg {
    width: 18px;
    height: 18px;
    fill: var(--primary-color);
    flex-shrink: 0;
  }

  .mobile-nav-extras .mobile-contact-item a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0;
    width: auto;
  }

  .mobile-nav-extras .mobile-contact-item a:hover {
    color: var(--primary-color);
  }

  .mobile-nav-extras .mobile-lang-switcher {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-nav-extras .mobile-lang-switcher .lang-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
    display: block;
  }

  .mobile-nav-extras .lang-switcher {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-start;
  }

  .mobile-nav-extras .lang-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .mobile-menu-toggle {
    display: flex;
    z-index: 1001;
  }

  .nav-actions .btn-primary {
    display: none;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .page-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .container-wide {
    padding: 0 15px;
  }

  section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 1.8rem;
    padding-bottom: 1rem;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero {
    margin-top: 130px;
  }

  .hero h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-content {
    padding: 1.5rem;
  }

  .cta-button {
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
  }

  .features-grid,
  .fleet-grid,
  .pricing-table,
  .values-grid,
  .contact-grid,
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-card,
  .fleet-card,
  .price-card,
  .value-card,
  .contact-card,
  .stat-card {
    padding: 1.5rem;
  }

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

  .booking-form,
  .contact-form {
    padding: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-col h3 {
    text-align: center;
  }

  .footer-col p {
    text-align: center;
  }

  .footer-links {
    text-align: center;
  }

  .footer-links a:hover {
    transform: none;
  }

  .footer-contact {
    align-items: center;
  }

  .footer-contact li {
    justify-content: center;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .page-header {
    padding: 5rem 0 2.5rem;
    margin-top: 130px;
  }

  .page-title {
    font-size: 1.8rem;
  }

  .breadcrumb {
    font-size: 0.85rem;
    flex-wrap: wrap;
  }

  .about-content {
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .about-image {
    height: 300px;
  }

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

  .faq-question {
    font-size: 1rem;
    padding: 1.2rem;
  }

  .faq-answer {
    padding: 0 1.2rem;
  }

  .faq-answer.active {
    padding: 0 1.2rem 1.2rem;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  .container-wide {
    padding: 0 12px;
  }

  .hero {
    min-height: 70vh;
    margin-top: 70px;
  }

  .hero h1 {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .hero-content {
    padding: 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }

  .cta-button,
  .btn-primary {
    padding: 0.8rem 1.5rem;
    font-size: 0.85rem;
  }

  .booking-form,
  .contact-form {
    padding: 1.2rem;
  }

  .feature-card,
  .value-card,
  .contact-card {
    padding: 1.2rem;
  }

  .feature-icon,
  .value-icon,
  .contact-icon {
    font-size: 2.5rem;
  }

  .page-header {
    padding: 4rem 0 2rem;
    margin-top: 70px;
  }

  .page-title {
    font-size: 1.5rem;
  }

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

  .stat-label {
    font-size: 0.9rem;
  }

  .price-amount {
    font-size: 2rem;
  }

  .total-price {
    font-size: 1.8rem;
  }

  .form-group label {
    font-size: 0.9rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.7rem 0.8rem;
    font-size: 0.9rem;
  }

  .nav-menu a {
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
  }

  .nav-menu a.active::after {
    left: 1.5rem;
    right: 1.5rem;
  }

  .logo-text {
    font-size: 1.2rem;
  }

  .logo img {
    height: 55px;
  }

  .footer-main {
    padding: 3rem 0 1.5rem;
  }

  .footer-col h3 {
    font-size: 1.1rem;
  }

  .footer-bottom {
    padding: 1.5rem 0;
    font-size: 0.85rem;
  }
}

/* Modern Icon Styles */
.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--primary-color);
  color: var(--secondary-color);
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-right: 0.5rem;
  flex-shrink: 0;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--text-light);
  transition: fill 0.3s ease;
}

.social-icon:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

.social-icon:hover svg {
  fill: var(--secondary-color);
}

.footer-contact .icon-svg {
  width: 20px;
  height: 20px;
  fill: var(--primary-color);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* Feature, Value, and Contact Icon Styling */
.feature-icon svg,
.value-icon svg,
.contact-icon svg {
  width: 50px;
  height: 50px;
}

.feature-icon,
.value-icon,
.contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #f5b800 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(254, 199, 25, 0.3);
}

.feature-card:hover .feature-icon,
.value-card:hover .value-icon,
.contact-card:hover .contact-icon {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(254, 199, 25, 0.5);
}

.feature-icon svg,
.value-icon svg,
.contact-icon svg {
  fill: var(--secondary-color);
}

/* ===============================================
   MODERN BOOKING SECTION
=============================================== */
.booking-section-modern {
  background: var(--secondary-color);
  position: relative;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.booking-section-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../assets/slide_show/slide4.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.booking-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 5rem 20px;
  position: relative;
  z-index: 1;
}

.booking-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.booking-text {
  color: var(--text-light);
  padding-top: 2rem;
}

.booking-label {
  display: inline-block;
  color: var(--primary-color);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.booking-text h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
  line-height: 1.2;
}

.booking-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  max-width: 500px;
}

.booking-form-wrapper {
  background: rgba(123, 123, 123, 0.7);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

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

.booking-form-modern .form-group {
  display: flex;
  flex-direction: column;
}

.booking-form-modern .form-group.full-width {
  grid-column: 1 / -1;
}

.booking-form-modern label,
.booking-form-modern .form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: white !important;
  margin-bottom: 0.5rem;
}

.booking-form-modern input,
.booking-form-modern select,
.booking-form-modern textarea {
  padding: 0.875rem 1rem;
  border: 2px solid #8e8989;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #8e8989;
  color: white !important;
}

/* Custom Select Dropdown Styling - Override Safari defaults */
.booking-form-modern select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.2em;
  padding-right: 3rem;
  cursor: pointer;
}

.booking-form-modern select::-ms-expand {
  display: none;
}

.booking-form-modern input::placeholder,
.booking-form-modern textarea::placeholder {
  color: white;
  opacity: 0.7;
}

.booking-form-modern select option {
  background: #8e8989;
  color: white;
}

.booking-form-modern input[type="date"]::-webkit-datetime-edit,
.booking-form-modern input[type="time"]::-webkit-datetime-edit {
  background: #8e8989;
  color: white;
}

.booking-form-modern input[type="date"]::-webkit-calendar-picker-indicator,
.booking-form-modern input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(1) brightness(100);
  cursor: pointer;
}

.booking-form-modern input:focus,
.booking-form-modern select:focus,
.booking-form-modern textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(254, 199, 25, 0.1);
}

.booking-form-modern input[readonly] {
  cursor: not-allowed;
}

.booking-form-modern textarea {
  resize: vertical;
  min-height: 80px;
}

.booking-form-modern .form-actions {
  margin-top: 2rem;
}

.booking-form-modern .btn-submit {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--primary-color), #ffd700);
  color: var(--secondary-color);
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 4px 15px rgba(254, 199, 25, 0.3);
}

.booking-form-modern .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(254, 199, 25, 0.5);
}

.booking-form-modern .btn-submit:active {
  transform: translateY(0);
}

.booking-form-modern .btn-submit svg {
  width: 20px;
  height: 20px;
}

/* Responsive */
@media (max-width: 968px) {
  .booking-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .booking-text h2 {
    font-size: 2.5rem;
  }

  .booking-form-wrapper {
    padding: 2rem;
  }
}

/* Location Error Message Styles */
.location-error-message {
  display: none;
  background: #fff3cd;
  border: 2px solid #ffc107;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin: -0.5rem 0 1.5rem 0;
  align-items: flex-start;
  gap: 0.75rem;
  animation: slideDown 0.3s ease-out;
}

.location-error-message.show {
  display: flex;
}

.location-error-message svg {
  flex-shrink: 0;
  color: #ff9800;
  margin-top: 2px;
}

.location-error-message .error-content {
  flex: 1;
}

.location-error-message strong {
  display: block;
  color: #856404;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.location-error-message p {
  color: #856404;
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.4;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Price Estimate Box Styles */
.price-estimate-box {
  background: linear-gradient(135deg, #fec719 0%, #ffdb4d 100%);
  border-radius: 12px;
  padding: 1.75rem;
  margin: 1.5rem 0;
  box-shadow: 0 4px 12px rgba(254, 199, 25, 0.25);
  animation: slideDown 0.4s ease-out;
}

.price-estimate-box.show {
  display: block;
}

.price-estimate-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.price-estimate-header svg {
  color: var(--secondary-color);
  flex-shrink: 0;
}

.price-estimate-header h3 {
  color: var(--secondary-color);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
}

.price-estimate-amount {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding: 1rem 0;
  border-top: 2px solid rgba(26, 26, 26, 0.1);
  border-bottom: 2px solid rgba(26, 26, 26, 0.1);
}

.price-estimate-amount .price-label {
  color: var(--secondary-color);
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.8;
}

.price-estimate-amount .price-value {
  color: var(--secondary-color);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.price-estimate-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.5);
  padding: 0.875rem 1rem;
  border-radius: 8px;
}

.price-estimate-disclaimer svg {
  color: var(--secondary-color);
  flex-shrink: 0;
  margin-top: 2px;
}

.price-estimate-disclaimer p {
  color: var(--secondary-color);
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
}

@media (max-width: 768px) {
  .booking-form-modern .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .booking-container {
    padding: 3rem 15px;
  }

  .booking-text h2 {
    font-size: 2rem;
  }
}

/* ===============================================
   SCROLL TO TOP BUTTON
=============================================== */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--secondary-color);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.scroll-to-top:active {
  transform: translateY(-1px);
}

.scroll-to-top svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .scroll-to-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
  }

  .scroll-to-top svg {
    width: 20px;
    height: 20px;
  }
}
