/* ===================================
   Corporate Travel Management - CSS
   =================================== */

:root {
  --primary-color: #d32f2f;
  --secondary-color: #0097a7;
  --accent-color: #00a86b;
  --orange-color: #d32f2f;
  --dark-color: #1a1a2e;
  --light-color: #f8f9fa;
  --light-gray: #f5f5f5;
  --success-color: #00a86b;
  --warning-color: #ffc107;
  --danger-color: #d32f2f;
  --text-dark: #333;
  --text-light: #666;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 5px 20px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", "Segoe UI", sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  /* Mobile optimization */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: -0.5px;
}

html {
  scroll-behavior: smooth;
}

/* Navigation Bar */
.navbar {
  padding: 1rem 0;
  transition: all 0.3s ease;
  z-index: 1000;
  backdrop-filter: blur(5px);
}

/* Transparent Navbar (Initial State) */
.navbar-transparent {
  background: transparent !important;
  box-shadow: none;
  padding: 1.5rem 0;
}

.navbar-transparent .navbar-logo {
  height: 50px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.navbar-transparent .navbar-logo {
  filter: brightness(1.1);
}

.navbar-scrolled .navbar-logo {
  height: 45px;
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.navbar-transparent .brand-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.navbar-transparent .brand-company {
  color: #ff3333;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 1px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 51, 51, 0.4);
  font-family: "Playfair Display", serif;
}

.navbar-transparent .brand-service {
  color: #ff3333;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 1px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 51, 51, 0.4);
  font-family: "Playfair Display", serif;
}

.navbar-transparent .brand-tagline {
  color: rgba(211, 47, 47, 0.8);
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.navbar-transparent .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  transition: color 0.3s ease;
  margin: 0 0.5rem;
}

.navbar-transparent .navbar-nav .nav-link:hover {
  color: var(--orange-color) !important;
}

.navbar-transparent .navbar-nav .nav-link.active {
  color: var(--orange-color) !important;
}

.navbar-transparent .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
}

.navbar-transparent .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-transparent .dropdown-toggle {
  color: rgba(255, 255, 255, 0.9) !important;
}

.navbar-transparent .btn-orange {
  background-color: var(--orange-color) !important;
  color: white !important;
  border: 2px solid var(--orange-color) !important;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.navbar-transparent .btn-orange:hover {
  background-color: transparent !important;
  color: var(--orange-color) !important;
  border: 2px solid var(--orange-color) !important;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* Solid Navbar (On Scroll) */
.navbar-scrolled {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  padding: 0.75rem 0;
}

.navbar-scrolled .logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.navbar-scrolled .brand-name {
  color: var(--text-dark);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.navbar-scrolled .brand-tagline {
  color: var(--primary-color);
  font-size: 0.7rem;
  letter-spacing: 1px;
}

.navbar-scrolled .navbar-nav .nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  transition: color 0.3s ease;
  margin: 0 0.5rem;
}

.navbar-scrolled .navbar-nav .nav-link:hover {
  color: var(--orange-color) !important;
}

.navbar-scrolled .navbar-nav .nav-link.active {
  color: var(--orange-color) !important;
}

.navbar-scrolled .navbar-toggler {
  border-color: var(--text-dark);
}

.navbar-scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2851, 51, 51, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-scrolled .dropdown-toggle {
  color: var(--text-dark) !important;
}

.navbar-scrolled .btn-orange {
  background-color: var(--orange-color) !important;
  color: white !important;
  border: 2px solid var(--orange-color) !important;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.navbar-scrolled .btn-orange:hover {
  background-color: transparent !important;
  color: var(--orange-color) !important;
  border: 2px solid var(--orange-color) !important;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}
.navbar-scrolled .navbar-toggler {
  border-color: var(--text-dark);
}

.navbar-scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-scrolled .dropdown-toggle {
  color: var(--text-dark) !important;
}

.navbar-transparent .dropdown-menu {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar-scrolled .dropdown-menu {
  background: white;
  border: none;
  box-shadow: var(--shadow-lg);
}

/* Ensure navbar is visible on other pages */
.navbar:not(.navbar-transparent) {
  background: white !important;
}

.navbar:not(.navbar-transparent) .brand-name {
  color: var(--text-dark);
}

.navbar:not(.navbar-transparent) .brand-tagline {
  color: var(--primary-color);
}

.navbar:not(.navbar-transparent) .navbar-nav .nav-link {
  color: var(--text-dark) !important;
}

.navbar-brand {
  font-size: 1.5rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--accent-color) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  transition: var(--transition);
}

.brand-name {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  transition: var(--transition);
}

.brand-tagline {
  font-size: 0.7rem;
  line-height: 1.6;
  margin-top: 2px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  transition: var(--transition);
}

.navbar-nav .nav-link {
  font-weight: 500;
  margin: 0 0.5rem;
  transition: var(--transition);
  position: relative;
}

.btn-orange {
  background: var(--orange-color);
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-orange:hover {
  background: #e55a2b;
  color: white;
  transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: var(--transition);
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
  width: 80%;
}

.dropdown-menu {
  border: none;
  box-shadow: var(--shadow-lg);
  border-radius: 8px;
}

.dropdown-item:hover {
  background: var(--light-color);
  color: var(--primary-color);
}

/* Hero Section Airport */
.hero-section-airport {
  position: relative;
  background: url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80")
    center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

/* Video Background */
.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 60, 114, 0.75) 0%,
    rgba(138, 43, 226, 0.65) 100%
  );
  z-index: 1;
}

.hero-content-airport {
  position: relative;
  z-index: 2;
}

.hero-badge-airport {
  display: inline-block;
}

.badge-text-airport {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.hero-title-airport {
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-subtitle-airport {
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
  opacity: 0.95;
}

.btn-orange-hero {
  background: var(--orange-color);
  color: white;
  border: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-orange-hero:hover {
  background: #e55a2b;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.hero-background-text {
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 1;
  pointer-events: none;
}

.hero-background-text span {
  font-size: 8rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
  letter-spacing: 20px;
  text-transform: uppercase;
  line-height: 1;
}

/* Hero Section Modern */
.hero-section-modern {
  background: var(--light-gray);
  padding: 100px 0 80px;
  min-height: auto;
}

.hero-image-modern {
  width: 100%;
  max-width: 1200px;
  height: 400px;
  object-fit: cover;
}

.hero-text-modern {
  font-size: 1.5rem;
  color: var(--text-light);
  line-height: 1.8;
}

.hero-text-modern strong {
  color: var(--text-dark);
  font-weight: 700;
}

/* Hero Section */
.hero-section {
  position: relative;
  background: linear-gradient(
      135deg,
      rgba(30, 60, 114, 0.85) 0%,
      rgba(42, 82, 152, 0.85) 50%,
      rgba(0, 102, 204, 0.85) 100%
    ),
    url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80")
      center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

/* Page-specific hero backgrounds */
.page-hero-services {
  background: linear-gradient(
      135deg,
      rgba(30, 60, 114, 0.85) 0%,
      rgba(42, 82, 152, 0.85) 50%,
      rgba(0, 102, 204, 0.85) 100%
    ),
    url("https://images.unsplash.com/photo-1556761175-5973dc0f32e7?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80")
      center/cover no-repeat;
}

.page-hero-booking {
  background: linear-gradient(
      135deg,
      rgba(30, 60, 114, 0.85) 0%,
      rgba(42, 82, 152, 0.85) 50%,
      rgba(0, 102, 204, 0.85) 100%
    ),
    url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?ixlib=rb-4.0.3&auto=format&fit=crop&w=2074&q=80")
      center/cover no-repeat;
}

.page-hero-testimonials {
  background: linear-gradient(
      135deg,
      rgba(30, 60, 114, 0.85) 0%,
      rgba(42, 82, 152, 0.85) 50%,
      rgba(0, 102, 204, 0.85) 100%
    ),
    url("https://images.unsplash.com/photo-1521791136064-7986c2920216?ixlib=rb-4.0.3&auto=format&fit=crop&w=2069&q=80")
      center/cover no-repeat;
}

.page-hero-contact {
  background: linear-gradient(
      135deg,
      rgba(30, 60, 114, 0.85) 0%,
      rgba(42, 82, 152, 0.85) 50%,
      rgba(0, 102, 204, 0.85) 100%
    ),
    url("https://images.unsplash.com/photo-1556761175-4b46a572b786?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80")
      center/cover no-repeat;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 50%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.05) 100%);
  animation: patternMove 20s ease-in-out infinite;
}

@keyframes patternMove {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-20px, -20px) scale(1.1);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 1rem;
}

.badge-text {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.hero-title {
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease;
  font-size: 3.5rem;
  line-height: 1.2;
  font-family: "Playfair Display", serif;
  font-weight: 800;
  letter-spacing: -1px;
  word-spacing: 0.1em;
}

.hero-subtitle {
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1.2s ease;
  font-size: 1.25rem;
  opacity: 0.95;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.hero-stats {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-image-placeholder {
  position: relative;
  height: 500px;
}

.floating-card {
  position: absolute;
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  animation: float 6s ease-in-out infinite;
}

.floating-card i {
  font-size: 2rem;
  color: var(--primary-color);
}

.floating-card.card-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.floating-card.card-2 {
  top: 50%;
  right: 10%;
  animation-delay: 2s;
}

.floating-card.card-3 {
  bottom: 10%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-down {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  text-decoration: none;
  animation: bounce 2s infinite;
  transition: var(--transition);
}

.scroll-down:hover {
  background: rgba(255, 255, 255, 0.3);
  color: white;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Stats Section */
.stats-section {
  background: white;
  border-top: 1px solid var(--light-color);
  border-bottom: 1px solid var(--light-color);
}

.stat-box {
  padding: 2rem 1rem;
  transition: var(--transition);
}

.stat-box:hover {
  transform: translateY(-5px);
}

.stat-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.stat-desc {
  color: var(--text-light);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

/* Section Headers */
.section-padding {
  padding: 4rem 0;
}

.section-header {
  margin-bottom: 3rem;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--accent-color) 100%
  );
  color: white;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn {
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--accent-color) 0%,
    var(--primary-color) 100%
  );
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--accent-color) 100%
  );
}

/* Services Section */
.service-card {
  background: white;
  padding: 3rem 2.5rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  text-align: center;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 102, 204, 0.1),
    transparent
  );
  transition: left 0.5s;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 40px rgba(0, 102, 204, 0.2);
  border-color: var(--accent-color);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--accent-color) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: rotate(360deg) scale(1.1);
}

.service-icon i {
  font-size: 2.5rem;
  color: white;
}

.service-card h4 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-card p {
  color: var(--text-light);
  margin: 0;
}

/* Booking Section */
.booking-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.booking-card {
  background: white;
  padding: 3.5rem;
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 102, 204, 0.1);
}

.nav-tabs {
  border-bottom: 2px solid var(--light-color);
}

.nav-tabs .nav-link {
  border: none;
  color: var(--text-light);
  font-weight: 600;
  padding: 1rem 2rem;
  transition: var(--transition);
}

.nav-tabs .nav-link:hover {
  border-color: transparent;
  color: var(--primary-color);
}

.nav-tabs .nav-link.active {
  color: var(--primary-color);
  background: transparent;
  border-bottom: 3px solid var(--primary-color);
}

.booking-form .form-label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.booking-form .form-control,
.booking-form .form-select {
  border: 2px solid var(--light-color);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: var(--transition);
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
}

/* Testimonials Section */
.testimonial-card {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  border-left: 5px solid var(--primary-color);
  position: relative;
}

.testimonial-card::after {
  content: '"';
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 5rem;
  color: rgba(0, 102, 204, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 102, 204, 0.15);
  border-left-color: var(--accent-color);
}

.testimonial-rating {
  font-size: 1.2rem;
}

.testimonial-text {
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.testimonial-author strong {
  color: var(--text-dark);
  display: block;
  margin-bottom: 0.25rem;
}

.testimonial-author span {
  font-size: 0.9rem;
}

/* Contact Section */
.contact-card {
  background: white;
  padding: 3.5rem;
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 102, 204, 0.1);
}

.contact-info {
  border-top: 2px solid var(--light-color);
  padding-top: 2rem;
}

.contact-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact-info h5 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

/* Footer */
footer {
  background: linear-gradient(
    135deg,
    var(--dark-color) 0%,
    #16213e 100%
  ) !important;
}

footer h5 {
  color: var(--accent-color);
  margin-bottom: 1rem;
}

footer a {
  transition: var(--transition);
}

footer a:hover {
  color: var(--accent-color) !important;
}

.social-links a {
  display: inline-block;
  transition: var(--transition);
}

.social-links a:hover {
  transform: translateY(-5px);
  color: var(--accent-color) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title-airport {
    font-size: 2.5rem !important;
  }

  .hero-subtitle-airport {
    font-size: 1rem !important;
  }

  .hero-background-text span {
    font-size: 3rem;
    letter-spacing: 10px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .hero-stats .stat-number {
    font-size: 1.8rem;
  }

  .floating-card {
    display: none;
  }

  .service-card,
  .testimonial-card,
  .booking-card,
  .contact-card {
    padding: 2rem;
  }

  .display-4 {
    font-size: 2rem;
  }

  .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
  }

  .navbar-brand {
    font-size: 1.2rem;
  }

  .section-padding {
    padding: 4rem 0;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding-top: 100px;
    min-height: 80vh;
  }

  .booking-card,
  .contact-card {
    padding: 1.5rem;
  }

  .nav-tabs .nav-link {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
}

/* Smooth Scroll */
html {
  scroll-padding-top: 80px;
}

/* Loading Animation */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.loading {
  animation: pulse 1.5s ease-in-out infinite;
}

/* Success Message */
.alert-success {
  background: linear-gradient(135deg, var(--success-color) 0%, #20c997 100%);
  border: none;
  color: white;
  border-radius: 10px;
  padding: 1rem 1.5rem;
}

/* Utility Classes */
.text-primary {
  color: var(--primary-color) !important;
}

.bg-primary {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  ) !important;
}

/* Accessibility */
:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

/* Feature Cards */
.feature-card {
  background: white;
  padding: 0;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 20px 50px rgba(211, 47, 47, 0.3);
  border-color: #ff6b35;
}

.feature-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.6s ease;
}

.feature-card:hover .feature-image {
  transform: scale(1.1);
}

.feature-card h4 {
  color: var(--text-dark);
  padding: 0 1.5rem;
  transition: all 0.5s ease;
}

.feature-card:hover h4 {
  color: #ff6b35;
}

.feature-card p {
  padding: 0 1.5rem 1.5rem;
  transition: all 0.5s ease;
  color: var(--text-light);
}

.feature-card:hover p {
  color: var(--text-dark);
}

/* Destination Cards */
.destination-card {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.destination-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 20px 40px rgba(211, 47, 47, 0.3);
}

.destination-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  transition: all 0.5s ease;
}

.destination-card:hover .destination-image-wrapper {
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.3);
}

.destination-image {
  transition: transform 0.6s ease;
}

.destination-card:hover .destination-image {
  transform: scale(1.15);
}

.destination-overlay {
  transition: all 0.5s ease;
}

.destination-card:hover .destination-overlay {
  background: rgba(0, 0, 0, 0.7);
}

/* Multi-card carousel (destinations) - refined style */
#destCarousel {
  background: #0f0f12;
  padding: 40px 0 28px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}

#destCarousel .carousel-inner {
  display: flex;
  gap: 24px;
  align-items: center;
  overflow: hidden;
  padding-left: 92px; /* space for left control */
  padding-right: 92px; /* space for right control */
}

#destCarousel .carousel-item {
  flex: 0 0 calc((100% - 48px) / 3);
  transition: transform 0.6s ease;
  display: flex;
  justify-content: center;
}

#destCarousel .destination-card,
#destCarousel .card {
  position: relative;
  background: #121216;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.6);
  color: #fff;
  display: flex;
  flex-direction: column;
  width: 100%;
}

#destCarousel .destination-image,
#destCarousel .card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

/* Overlay title on image */
#destCarousel .card-body,
#destCarousel .destination-card .card-body {
  position: absolute;
  left: 20px;
  bottom: 22px;
  right: 18px;
  padding: 0;
  background: transparent;
}

#destCarousel .card-title,
#destCarousel .destination-card .card-title {
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 6px 0;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
}

#destCarousel .card-text,
#destCarousel .destination-card .card-text {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  margin: 0;
}

/* Indicators: small centered dots near top */
#destCarousel .carousel-indicators {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 20;
}

#destCarousel .carousel-indicators button {
  width: 10px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  opacity: 1;
  transition: transform 0.18s ease, background-color 0.18s ease;
}

#destCarousel .carousel-indicators .active {
  background: #7dd3fc;
  transform: scale(1.3);
}

/* Controls: circular buttons overlapping the track */
#destCarousel .carousel-control-prev,
#destCarousel .carousel-control-next {
  width: 52px;
  height: 52px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0.98;
  z-index: 25;
  border: none;
}

#destCarousel .carousel-control-prev {
  left: 18px;
}
#destCarousel .carousel-control-next {
  right: 18px;
}

/* Responsive: 2 cards for medium, 1 for small screens */
@media (max-width: 992px) {
  #destCarousel .carousel-item {
    flex: 0 0 calc((100% - 24px) / 2);
  }
  #destCarousel .destination-image,
  #destCarousel .card img {
    height: 220px;
  }
  #destCarousel .carousel-inner {
    padding-left: 64px;
    padding-right: 64px;
  }
}

@media (max-width: 576px) {
  #destCarousel .carousel-item {
    flex: 0 0 100%;
  }
  #destCarousel .carousel-inner {
    padding: 0 14px;
    gap: 14px;
  }
  #destCarousel .destination-image,
  #destCarousel .card img {
    height: 180px;
  }
  #destCarousel .carousel-indicators {
    top: 12px;
    gap: 8px;
  }
}

/* Keep inner transform smooth when JS adjusts translateX */
#destCarousel .carousel-inner {
  will-change: transform;
}

.destination-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 2rem 1.5rem 1.5rem;
}

.text-orange {
  color: var(--orange-color) !important;
}

.destination-price {
  font-weight: 600;
  font-size: 1.1rem;
}

/* Testimonial Section */
.testimonial-image {
  width: 100%;
  max-width: 500px;
  height: 500px;
  object-fit: cover;
}

.testimonial-quote {
  position: relative;
}

.quote-mark {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.testimonial-quote p {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin: 0;
}

/* Smaller testimonial section (index page) */
.testimonial-section {
  padding-top: 2rem;
  padding-bottom: 2rem;
  transition: all 0.5s ease;
}

.testimonial-section:hover {
  box-shadow: inset 0 0 30px rgba(211, 47, 47, 0.1);
}

.testimonial-section .col-lg-5 {
  transition: all 0.5s ease;
}

.testimonial-section:hover .col-lg-5 {
  transform: translateX(-10px);
}

.testimonial-section .col-lg-7 {
  transition: all 0.5s ease;
}

.testimonial-section:hover .col-lg-7 {
  transform: translateX(10px);
}

.testimonial-section .testimonial-image {
  max-width: 380px;
  height: 320px;
}

.testimonial-section .testimonial-quote {
  transition: all 0.5s ease;
}

.testimonial-section:hover .testimonial-quote {
  transform: scale(1.05);
}

.testimonial-section .testimonial-quote p {
  font-size: 1.05rem;
  transition: all 0.5s ease;
  color: #333;
}

.testimonial-section:hover .testimonial-quote p {
  color: #d32f2f;
}

.testimonial-section .testimonial-nav .btn {
  width: 36px;
  height: 36px;
  transition: all 0.3s ease;
}

.testimonial-section:hover .testimonial-nav .btn {
  transform: scale(1.1);
}

.testimonial-section:hover .testimonial-nav .btn:hover {
  transform: scale(1.2);
}

/* Our Story Section */
.team-member {
  border: 3px solid white;
  box-shadow: var(--shadow);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.team-member:hover {
  transform: scale(1.15) translateY(-10px);
  box-shadow: 0 15px 40px rgba(211, 47, 47, 0.4);
  border-color: #ff6b35;
}

/* Footer Modern */
.footer-modern {
  background: #1a1a2e;
  border-radius: 30px 30px 0 0;
  margin-top: 80px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-link:hover {
  color: white;
}

.footer-input {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 8px 0 0 8px;
}

.footer-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-input:focus {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: white;
  box-shadow: none;
}

.footer-submit-btn {
  border-radius: 0 8px 8px 0;
  padding: 0.75rem 1.5rem;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 0;
}

/* Service Cards Featured Styling */
.service-card-featured {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card-featured:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-card-image {
  position: relative;
  overflow: hidden;
  height: 200px;
  flex-shrink: 0;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card-featured:hover .service-card-image img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 1.5rem;
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-icon-circle {
  width: 50px;
  height: 50px;
  background: var(--orange-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  position: absolute;
  top: -25px;
  left: 1.5rem;
  box-shadow: 0 4px 10px rgba(255, 107, 53, 0.3);
  flex-shrink: 0;
}

.service-card-body h5 {
  color: var(--text-dark);
  font-size: 1rem;
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
}

.service-card-body p {
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 1rem;
  color: #666;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.service-features li {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
}

.service-features i {
  color: var(--orange-color);
  margin-right: 0.6rem;
  font-size: 0.8rem;
}

.read-more-link {
  color: var(--orange-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}

.read-more-link:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
}

/* Services Header Section */
.services-header-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
  padding: 3rem 0;
}

.services-header-section h2 {
  color: white;
}

.services-header-section p {
  color: rgba(255, 255, 255, 0.8);
}

/* Booking Page Styles */
.page-hero-booking {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.how-it-works-card {
  position: relative;
  padding: 2rem 1rem;
}

.step-number {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 35px;
  background: var(--orange-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1rem;
}

.step-icon {
  width: 60px;
  height: 60px;
  background: #f5f5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem auto;
  font-size: 1.8rem;
  color: var(--orange-color);
}

.how-it-works-card h5 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.booking-feature-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.booking-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.booking-feature-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.feature-icon-circle {
  position: absolute;
  top: 165px;
  left: 15px;
  width: 50px;
  height: 50px;
  background: var(--orange-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 4px 10px rgba(255, 107, 53, 0.3);
}

.booking-feature-card h5 {
  padding: 1.5rem 1.5rem 0;
  font-size: 1rem;
}

.booking-feature-card p {
  padding: 0 1.5rem 1.5rem;
}

.booking-form-section {
  background: white;
}

.booking-form-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-tabs {
  border-bottom: 2px solid #f0f0f0;
}

.nav-tabs .nav-link {
  color: #666;
  border: none;
  border-bottom: 3px solid transparent;
  font-weight: 500;
  margin-bottom: -2px;
  transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
  color: var(--orange-color);
  border-bottom-color: var(--orange-color);
}

.nav-tabs .nav-link.active {
  color: var(--orange-color);
  border-bottom-color: var(--orange-color);
  background: none;
}

.booking-form-card .form-label {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.booking-form-card .form-control,
.booking-form-card .form-select {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 0.65rem 0.75rem;
  font-size: 0.95rem;
}

.booking-form-card .form-control:focus,
.booking-form-card .form-select:focus {
  border-color: var(--orange-color);
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.15);
}

.btn-orange {
  background-color: var(--orange-color);
  color: white;
  border: none;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-orange:hover {
  background-color: #e55a2b;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.popular-destinations .btn-outline-secondary {
  font-size: 0.85rem;
  border-radius: 20px;
  border-color: #e0e0e0;
  color: #666;
}

.popular-destinations .btn-outline-secondary:hover {
  background-color: var(--orange-color);
  border-color: var(--orange-color);
  color: white;
}

.cta-icon-box {
  text-align: center;
  padding: 2rem;
}

.icon-circle {
  width: 70px;
  height: 70px;
  background: var(--orange-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}
.services-header-section p {
  color: rgba(255, 255, 255, 0.8);
}

/* Footer Section */
.footer-section {
  background: var(--orange-color) !important;
}

.footer-section h5 {
  color: white;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.footer-section a {
  transition: all 0.3s ease;
}

.footer-section a:hover {
  opacity: 0.8;
}

/* Contact Page Styles */
.page-hero-contact {
  background: linear-gradient(
    135deg,
    var(--orange-color) 0%,
    #ff8555 50%,
    #ff6b35 100%
  );
  position: relative;
  overflow: hidden;
}

.page-hero-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

.contact-info-card {
  background: white;
  padding: 2.5rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.contact-info-card h5 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--orange-color);
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.contact-info-card p {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

.contact-info-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.contact-icon-circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--orange-color), #ff8555);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.strategy-box {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
  padding: 3rem;
  border-radius: 12px;
  height: 100%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.strategy-box h3 {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: 0.5px;
  color: white;
  line-height: 1.3;
}

.strategy-box p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-detail-item {
  display: flex;
  gap: 1rem;
}

.detail-icon {
  width: 45px;
  height: 45px;
  background: var(--orange-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.detail-content p {
  margin-bottom: 0.25rem;
}

.detail-content a:hover {
  text-decoration: underline !important;
}

.contact-form-card {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.contact-form-card .form-label {
  font-weight: 600;
  color: #1a1a2e;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background-color: #f8f9fa;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
  background-color: white;
  border-color: var(--orange-color);
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.15);
}

.contact-form-card .form-control::placeholder {
  color: #999;
}

.contact-form-card .form-check-label {
  color: #555;
  line-height: 1.4;
}

.office-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.office-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.office-card img {
  height: 200px;
  object-fit: cover;
}

.office-card h5 {
  color: #1a1a2e;
  margin-top: 1rem;
}

.office-card p {
  margin-bottom: 0.5rem;
}

.find-us-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px dashed #ccc;
}

.find-us-placeholder i {
  font-size: 4rem;
  color: #999;
  margin-bottom: 1rem;
}

/* Responsive Contact Page */
@media (max-width: 768px) {
  .strategy-box {
    margin-bottom: 2rem;
  }

  .contact-form-card {
    padding: 2rem;
  }

  .contact-info-card {
    padding: 2rem 1.5rem;
  }

  .find-us-placeholder {
    height: 300px;
  }

  .find-us-placeholder i {
    font-size: 3rem;
  }

  .page-hero-contact h1 {
    font-size: 2.5rem !important;
  }
}

/* About Page Styles */
.page-hero-about {
  background: linear-gradient(
    135deg,
    var(--orange-color) 0%,
    #ff8555 50%,
    #ff6b35 100%
  );
  position: relative;
  overflow: hidden;
}

.page-hero-about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

.text-orange {
  color: var(--orange-color) !important;
}

.stat-box {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.stat-box:hover {
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.15);
  transform: translateY(-3px);
}

.stat-box h3 {
  margin-bottom: 0.5rem;
}

.core-value-card {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.core-value-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.value-icon-circle {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 53, 0.1),
    rgba(255, 107, 53, 0.05)
  );
  border: 2px solid rgba(255, 107, 53, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--orange-color);
  margin: 0 auto;
}

.team-member-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
}

.team-member-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.team-member-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.team-member-card:hover img {
  filter: brightness(0.95);
}

.team-member-card h5 {
  color: #1a1a2e;
  margin-top: 1rem;
}

.team-member-card p {
  margin: 0.5rem 0;
}

/* Journey Timeline Section */
.journey-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
  position: relative;
  overflow: hidden;
}

.journey-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.timeline-container {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.timeline-container::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    180deg,
    var(--orange-color),
    rgba(255, 107, 53, 0.3)
  );
  transform: translateX(-50%);
}

.timeline-item {
  margin-bottom: 3rem;
  position: relative;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-item:nth-child(even) .timeline-marker {
  right: auto;
  left: auto;
}

.timeline-marker {
  width: 100px;
  min-width: 100px;
  padding: 0.5rem;
  background: var(--orange-color);
  color: white;
  border-radius: 6px;
  font-weight: bold;
  text-align: center;
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.timeline-marker::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--orange-color);
  border-radius: 50%;
  border: 3px solid #2d2d44;
  right: -39px;
  top: 50%;
  transform: translateY(-50%);
}

.timeline-item:nth-child(even) .timeline-marker::after {
  right: auto;
  left: -39px;
}

.timeline-content {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 2px solid var(--orange-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.timeline-item:nth-child(even) .timeline-content {
  border-left: none;
  border-right: 2px solid var(--orange-color);
}

.timeline-content h5 {
  margin-bottom: 0.5rem;
  color: white;
}

.timeline-content p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

/* Responsive About Page */
@media (max-width: 768px) {
  .timeline-container::before {
    left: 20px;
  }

  .timeline-marker {
    width: 60px;
    font-size: 0.85rem;
    min-height: 45px;
  }

  .timeline-marker::after {
    right: auto;
    left: -24px;
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    flex-direction: row;
  }

  .timeline-item:nth-child(even) .timeline-marker::after {
    right: auto;
    left: -24px;
  }

  .timeline-content {
    border-left: 2px solid var(--orange-color);
    border-right: none;
  }

  .timeline-item:nth-child(even) .timeline-content {
    border-left: 2px solid var(--orange-color);
    border-right: none;
  }

  .page-hero-about h1 {
    font-size: 2.5rem !important;
  }

  .stat-box {
    margin-bottom: 1rem;
  }

  .core-value-card {
    margin-bottom: 1.5rem;
  }

  .team-member-card {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 576px) {
  .stat-box h3 {
    font-size: 2rem;
  }

  .timeline-marker {
    width: 50px;
    font-size: 0.8rem;
  }

  .value-icon-circle {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

/* Animation utility classes */
.animate-fade {
  animation: fadeIn 0.8s ease-out;
}

.animate-slide-up {
  animation: slideInUp 0.8s ease-out;
}

.animate-slide-down {
  animation: slideInDown 0.8s ease-out;
}

.animate-slide-left {
  animation: slideInLeft 0.8s ease-out;
}

.animate-slide-right {
  animation: slideInRight 0.8s ease-out;
}

.animate-scale {
  animation: scaleIn 0.8s ease-out;
}

.animate-bounce {
  animation: bounceIn 0.8s ease-out;
}

.animate-pulse {
  animation: pulse 2s infinite;
}

.animate-float {
  animation: float 3s infinite ease-in-out;
}

/* Stagger animation delays */
.animate-delay-1 {
  animation-delay: 0.1s;
}

.animate-delay-2 {
  animation-delay: 0.2s;
}

.animate-delay-3 {
  animation-delay: 0.3s;
}

.animate-delay-4 {
  animation-delay: 0.4s;
}

.animate-delay-5 {
  animation-delay: 0.5s;
}

/* Intersection Observer animations */
[data-animate] {
  opacity: 0;
}

[data-animate].animated {
  opacity: 1;
  animation: slideInUp 0.8s ease-out forwards;
}

[data-animate="slide-up"].animated {
  animation: slideInUp 0.8s ease-out forwards;
}

[data-animate="slide-down"].animated {
  animation: slideInDown 0.8s ease-out forwards;
}

[data-animate="slide-left"].animated {
  animation: slideInLeft 0.8s ease-out forwards;
}

[data-animate="slide-right"].animated {
  animation: slideInRight 0.8s ease-out forwards;
}

[data-animate="scale"].animated {
  animation: scaleIn 0.8s ease-out forwards;
}

[data-animate="fade"].animated {
  animation: fadeIn 0.8s ease-out forwards;
}

[data-animate="bounce"].animated {
  animation: bounceIn 0.8s ease-out forwards;
}

/* Card and Section animations on hover */
.service-card-featured,
.core-value-card,
.team-member-card,
.office-card,
.contact-info-card,
.stat-box {
  transition: all 0.3s ease;
}

.service-card-featured:hover,
.core-value-card:hover,
.team-member-card:hover,
.office-card:hover,
.contact-info-card:hover,
.stat-box:hover {
  animation: float 2s infinite ease-in-out;
}

/* Heading animations */
h1,
h2,
h3 {
  animation: slideInDown 0.8s ease-out;
}

/* ===== NEW SECTIONS CSS ===== */

/* Stats Section */
.stat-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem 1rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #ff6b35;
  transform: translateY(-15px) scale(1.08);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.4);
}

.stat-card:hover .stat-icon {
  transform: scale(1.2) rotate(5deg);
}

.stat-icon {
  display: inline-block;
  transition: all 0.5s ease;
}

.stat-card:hover h3 {
  color: #ff6b35;
}

/* Benefits Cards */
.benefit-card {
  background: white;
  padding: 1.5rem 1rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.benefit-card:hover {
  border-color: var(--orange-color);
  box-shadow: 0 20px 50px rgba(211, 47, 47, 0.3);
  transform: translateY(-15px) scale(1.08);
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 107, 53, 0.05) 100%);
}

.benefit-icon {
  display: inline-block;
  width: 65px;
  height: 65px;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 53, 0.1) 0%,
    rgba(255, 107, 53, 0.05) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}

.benefit-card:hover .benefit-icon {
  background: linear-gradient(
    135deg,
    rgba(255, 107, 53, 0.3) 0%,
    rgba(255, 107, 53, 0.15) 100%
  );
  transform: scale(1.2) rotate(-5deg);
}

.benefit-card:hover h4 {
  color: var(--orange-color);
}

/* Testimonial Cards */
.testimonial-card {
  background: white;
  padding: 1.5rem 1.25rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--orange-color);
  transition: all 0.3s ease;
  height: 100%;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-10px);
}

.testimonial-stars {
  font-size: 0.9rem;
}

.testimonial-card img {
  border: 3px solid var(--orange-color);
}

/* CTA Section */
.bg-gradient-to-right {
  position: relative;
  overflow: hidden;
}

.bg-gradient-to-right::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: float 6s infinite ease-in-out;
}

.bg-gradient-to-right > div {
  position: relative;
  z-index: 1;
}
/* ===== DESTINATIONS PAGE CSS ===== */

/* Hero Section for Destinations */
.page-hero-destinations {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  position: relative;
  min-height: 100vh;
}

/* Filter Buttons */
.destination-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  border: 2px solid #ddd;
  background: white;
  color: #333;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.filter-btn:hover {
  border-color: var(--orange-color);
  color: var(--orange-color);
}

.filter-btn-active {
  background: var(--orange-color);
  color: white;
  border-color: var(--orange-color);
}

/* Destination Detail Cards */
.destination-detail-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.destination-detail-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-10px);
}

.destination-card-image-wrapper,
.destination-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 180px;
}

.destination-card-image,
.destination-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.destination-detail-card:hover .destination-card-image,
.destination-detail-card:hover .destination-image {
  transform: scale(1.08);
}

.destination-overlay-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.destination-detail-card:hover .destination-overlay-dark {
  background: rgba(0, 0, 0, 0.1);
}

.destination-location-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 2;
}

.destination-location-badge h3 {
  animation: none;
  margin: 0;
}

.destination-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.destination-price {
  font-size: 1.05rem;
  margin: 0;
}

.key-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex-grow: 1;
}

.area-tag {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background: #f0f0f0;
  color: #666;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.view-details-btn {
  padding: 0.75rem 1rem;
  font-weight: 600;
  margin-top: auto;
  background: #1a1a2e;
  border: none;
  transition: all 0.3s ease;
}

.view-details-btn:hover {
  background: var(--orange-color);
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .destination-filters {
    gap: 0.5rem;
  }

  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .destination-card-image-wrapper,
  .destination-image-wrapper {
    height: 160px;
  }
}

/* --- Simple Bootstrap Carousel Styling --- */
#destCarousel {
  background: #0f0f12;
  padding: 40px 20px;
  border-radius: 14px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

#destCarousel .carousel-indicators {
  bottom: 10px;
  gap: 8px;
  justify-content: center;
  position: static;
}

  #destCarousel .carousel-indicators button {
    width: 10px;
    height: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    border: none;
    opacity: 1;
    transition: transform 0.18s ease, background-color 0.18s ease;
  }

#destCarousel .carousel-indicators button.active {
  background: #7dd3fc;
  transform: scale(1.2);
  box-shadow: 0 0 12px rgba(125, 211, 252, 0.6);
}

#destCarousel .carousel-inner {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

#destCarousel .carousel-item {
  position: relative;
  display: none;
  width: 100%;
  min-height: 450px;
}

#destCarousel .carousel-item.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

#destCarousel .card {
  width: 100%;
  max-width: 100%;
  border: none;
  background: #121216;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.8);
  height: 450px;
  margin: 0 auto;
  max-width: 600px;
}

#destCarousel .card-img-top {
  height: 220px;
  object-fit: cover;
  display: block;
  width: 100%;
}

#destCarousel .card-body {
  padding: 20px;
  background: #0f0f12;
  color: white;
  flex: 1;
}

#destCarousel .card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #ffffff;
}

#destCarousel .card-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

#destCarousel .carousel-control-prev,
#destCarousel .carousel-control-next {
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.65);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  border: none;
  position: absolute;
  z-index: 10;
}

#destCarousel .carousel-control-prev {
  left: 10px;
}

#destCarousel .carousel-control-next {
  right: 10px;
}

#destCarousel .carousel-control-prev:hover,
#destCarousel .carousel-control-next:hover {
  background: rgba(0, 0, 0, 0.85);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

#destCarousel .carousel-control-prev-icon,
#destCarousel .carousel-control-next-icon {
  width: 24px;
  height: 24px;
  filter: brightness(1.2);
}

/* Responsive */
@media (max-width: 992px) {
  #destCarousel .carousel-item {
    min-height: 400px;
  }

  #destCarousel .card {
    height: 400px;
  }

  #destCarousel .card-img-top {
    height: 220px;
  }

  #destCarousel .card-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  #destCarousel {
    padding: 30px 15px;
  }

  #destCarousel .carousel-item {
    min-height: 350px;
  }

  #destCarousel .card {
    height: 350px;
  }

  #destCarousel .card-img-top {
    height: 160px;
  }

  #destCarousel .card-title {
    font-size: 1.2rem;
  }

  #destCarousel .carousel-control-prev,
  #destCarousel .carousel-control-next {
    width: 40px;
    height: 40px;
  }
}

  .destSwiper .card-img-top {
    height: 200px;
  }

  .destSwiper .card-title {
    font-size: 1.2rem;
  }

  .destSwiper .card-text {
    font-size: 0.85rem;
  }

  .destSwiper .swiper-button-prev,
  .destSwiper .swiper-button-next {
    width: 40px;
    height: 40px;
  }

  .destSwiper .swiper-button-prev {
    left: 10px;
  }

  .destSwiper .swiper-button-next {
    right: 10px;
  }
}

/* Clients Carousel Smooth Animation - One Logo at a Time */
.clients-carousel-wrapper {
  position: relative;
  overflow: visible;
  width: 100%;
  min-height: 180px;
}

.clients-carousel-inner {
  display: flex;
  width: 100%;
  gap: 20px;
  padding: 30px 20px;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
  min-height: 180px;
  flex-wrap: nowrap;
}

/* Override Bootstrap's carousel-item display: none */
#clientsCarousel .carousel-item {
  display: flex !important;
  flex: 0 0 calc(25% - 15px);
  align-items: center;
  justify-content: center;
  padding: 20px;
  min-height: 140px;
  position: relative;
  background: #f9f9f9;
  border-radius: 8px;
  border: 1px solid #eee;
  width: auto !important;
  margin: 0 !important;
  float: none !important;
}

#clientsCarousel .carousel-item.active {
  display: flex !important;
  flex: 0 0 calc(25% - 15px);
}

/* Smooth slide transition */
.carousel-smooth .carousel-inner {
  transition: transform 0.4s ease-in-out !important;
}

/* Individual logo styling */
.client-logo-single {
  max-height: 100px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.8;
  display: block;
}

.carousel-item:hover .client-logo-single {
  transform: scale(1.1);
  opacity: 1;
}

/* Carousel Control Buttons Hover */
.carousel-control-prev,
.carousel-control-next {
  z-index: 10;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1 !important;
}

.carousel-control-prev:hover i,
.carousel-control-next:hover i {
  color: #333 !important;
  font-size: 1.75rem;
}

/* Carousel Indicator Active State */
.carousel-indicator-dot.active {
  background-color: #999 !important;
  opacity: 1;
}

.carousel-indicator-dot {
  transition: all 0.3s ease;
}

.carousel-indicator-dot:hover {
  background-color: #777 !important;
  transform: scale(1.15);
}

/* Mobile Responsive Carousel */
@media (max-width: 1200px) {
  #clientsCarousel .carousel-item {
    flex: 0 0 calc(33.333% - 13px);
  }
}

@media (max-width: 768px) {
  .clients-carousel-wrapper {
    min-height: 160px;
  }

  .clients-carousel-inner {
    padding: 20px 10px;
    gap: 15px;
    min-height: 160px;
  }

  #clientsCarousel .carousel-item {
    flex: 0 0 calc(50% - 7.5px);
    padding: 15px;
    min-height: 120px;
  }

  #clientsCarousel .carousel-item.active {
    flex: 0 0 calc(50% - 7.5px);
  }

  .client-logo-single {
    max-height: 80px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    top: auto;
    bottom: -50px;
  }

  .carousel-control-prev {
    left: 50%;
    transform: translateX(-45px);
  }

  .carousel-control-next {
    right: auto;
    left: 50%;
    transform: translateX(15px);
  }

  .carousel-control-prev i,
  .carousel-control-next i {
    font-size: 1.2rem !important;
  }
}

@media (max-width: 480px) {
  .clients-carousel-wrapper {
    min-height: 140px;
  }

  .clients-carousel-inner {
    padding: 15px 5px;
    gap: 10px;
    min-height: 140px;
  }

  #clientsCarousel .carousel-item {
    flex: 0 0 calc(100% - 10px);
    padding: 12px;
    min-height: 100px;
  }

  #clientsCarousel .carousel-item.active {
    flex: 0 0 calc(100% - 10px);
  }

  .client-logo-single {
    max-height: 70px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    opacity: 0.5 !important;
  }

  .carousel-control-prev i,
  .carousel-control-next i {
    font-size: 1rem !important;
  }

  /* Hide carousel indicators on very small screens */
  .d-flex.justify-content-center.gap-2.mt-4 {
    display: none !important;
  }
}


/* ===================================
   Enhanced Mobile Responsiveness
   =================================== */

/* Mobile Navigation Improvements */
@media (max-width: 991px) {
  .navbar {
    padding: 0.75rem 0;
  }

  .navbar-brand {
    font-size: 1.2rem;
  }

  .navbar-collapse {
    background: white;
    border-radius: 0 0 12px 12px;
    box-shadow: var(--shadow-lg);
    padding: 1rem;
    margin-top: 0.5rem;
  }

  .navbar-nav {
    gap: 0.5rem;
  }

  .nav-link {
    padding: 0.75rem 1rem !important;
    font-size: 0.95rem;
  }

  .navbar-nav .nav-item:last-child .nav-link {
    padding-right: 0 !important;
  }

  .btn-orange {
    width: 100%;
    margin-top: 0.5rem;
  }

  .navbar-toggler {
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
  }

  .navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(211, 47, 47, 0.25);
  }

  /* Dropdown menu mobile */
  .dropdown-menu {
    min-width: auto !important;
    width: 100% !important;
    margin-top: 0.5rem;
  }
}

/* Enhanced Mobile Typography */
@media (max-width: 768px) {
  /* Headings */
  h1,
  .h1,
  .display-1 {
    font-size: 1.75rem !important;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  h2,
  .h2 {
    font-size: 1.5rem !important;
    line-height: 1.4;
    margin-bottom: 0.75rem;
  }

  h3,
  .h3 {
    font-size: 1.25rem !important;
  }

  h4,
  .h4 {
    font-size: 1.1rem !important;
  }

  /* Paragraphs and text */
  p,
  .lead {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .lead {
    font-size: 1rem !important;
  }

  /* Improve readability */
  body {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  h1,
  .h1,
  .display-1 {
    font-size: 1.5rem !important;
  }

  h2,
  .h2 {
    font-size: 1.25rem !important;
  }

  h3,
  .h3 {
    font-size: 1.1rem !important;
  }

  p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

/* Mobile Container & Spacing */
@media (max-width: 768px) {
  .container,
  .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section-padding {
    padding: 2.5rem 0 !important;
  }

  .section-padding-lg {
    padding: 3rem 0 !important;
  }

  /* Better margin/padding on mobile */
  .row {
    row-gap: 1.5rem;
  }

  .mb-3,
  .my-3 {
    margin-bottom: 0.75rem !important;
  }

  .mb-4,
  .my-4 {
    margin-bottom: 1rem !important;
  }

  .mb-5,
  .my-5 {
    margin-bottom: 1.5rem !important;
  }

  .mt-3,
  .my-3 {
    margin-top: 0.75rem !important;
  }

  .mt-4,
  .my-4 {
    margin-top: 1rem !important;
  }

  .mt-5,
  .my-5 {
    margin-top: 1.5rem !important;
  }

  .px-4,
  .px-lg-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .py-4,
  .py-lg-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-5,
  .py-lg-5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
}

@media (max-width: 576px) {
  .container,
  .container-fluid {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .section-padding {
    padding: 1.5rem 0 !important;
  }

  .mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* Mobile Buttons */
@media (max-width: 768px) {
  .btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
    min-height: 44px;
    min-width: 44px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    min-height: 48px;
  }

  .btn-sm {
    padding: 0.4rem 0.75rem;
    font-size: 0.8rem;
    min-height: 36px;
  }

  .btn-block,
  .btn-full {
    width: 100%;
  }

  /* Ensure buttons are touch-friendly */
  button,
  .btn,
  a.btn {
    cursor: pointer;
  }
}

/* Mobile Hero Section */
@media (max-width: 768px) {
  .hero-section,
  .page-hero-index,
  .page-hero-about,
  .page-hero-services,
  .page-hero-booking,
  .page-hero-contact {
    min-height: 70vh;
    padding-top: 60px;
  }

  .hero-content-airport {
    padding: 1rem;
  }

  .hero-content-airport .row {
    padding-top: 2rem !important;
  }

  .hero-video-bg {
    object-fit: cover;
  }

  .hero-badge-airport {
    font-size: 0.85rem;
  }

  .hero-background-text {
    display: none;
  }

  .min-vh-100 {
    min-height: 70vh !important;
  }

  /* Adjust hero text sizes */
  .hero-title-airport {
    font-size: 1.5rem !important;
  }

  .hero-subtitle-airport {
    font-size: 0.9rem !important;
    max-width: 100% !important;
  }
}

@media (max-width: 576px) {
  .hero-section,
  .page-hero-index,
  .page-hero-about,
  .page-hero-services,
  .page-hero-booking,
  .page-hero-contact {
    min-height: 60vh;
    padding-top: 50px;
  }

  .hero-title-airport {
    font-size: 1.25rem !important;
  }

  .hero-subtitle-airport {
    font-size: 0.8rem !important;
  }

  .hero-content-airport {
    text-align: center;
  }
}

/* Mobile Forms */
@media (max-width: 768px) {
  .form-control,
  .form-select,
  textarea {
    padding: 0.75rem;
    font-size: 16px;
    border-radius: 6px;
    min-height: 44px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }

  .form-control:focus,
  .form-select:focus,
  textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
  }

  .form-group {
    margin-bottom: 1.5rem;
  }

  .form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
  }

  .input-group {
    gap: 0.5rem;
  }

  .input-group .form-control,
  .input-group .btn {
    flex: 1;
    min-height: 44px;
  }

  /* Mobile-friendly form layout */
  .form-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .form-row > [class*="col-"] {
    width: 100%;
  }
}

/* Mobile Cards & Grid */
@media (max-width: 768px) {
  .card {
    border-radius: 12px;
    border: none;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
  }

  .card-body {
    padding: 1.5rem;
  }

  .card-title {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }

  .card-text {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .service-card,
  .testimonial-card,
  .booking-card,
  .contact-card {
    padding: 1.25rem;
    margin-bottom: 1rem;
  }

  /* Grid columns adjust */
  .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .col-lg-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .col-lg-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .col-lg-8 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Mobile Images & Media */
@media (max-width: 768px) {
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  .img-fluid {
    max-width: 100%;
    height: auto;
  }

  /* Better image aspect ratio handling */
  .img-thumbnail {
    border-radius: 8px;
    border: 1px solid #dee2e6;
  }

  /* Carousel improvements */
  .carousel-item {
    min-height: auto;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 10%;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    top: 50%;
    transform: translateY(-50%);
  }

  .carousel-control-prev:hover,
  .carousel-control-next:hover {
    background: rgba(0, 0, 0, 0.5);
  }
}

@media (max-width: 576px) {
  .carousel-control-prev,
  .carousel-control-next {
    width: 12%;
  }

  .carousel {
    margin-bottom: 1rem;
  }
}

/* Mobile Tables */
@media (max-width: 768px) {
  .table {
    font-size: 0.85rem;
  }

  .table th {
    padding: 0.75rem 0.5rem;
    font-size: 0.8rem;
  }

  .table td {
    padding: 0.75rem 0.5rem;
  }

  /* Stack table on mobile */
  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* Mobile Lists */
@media (max-width: 768px) {
  ul,
  ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
  }

  li {
    margin-bottom: 0.5rem;
  }

  .list-unstyled {
    margin-bottom: 1rem;
  }

  .list-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
  }
}

/* Mobile Modals & Offcanvas */
@media (max-width: 768px) {
  .modal-content {
    border-radius: 12px 12px 0 0;
    max-height: 90vh;
    overflow-y: auto;
  }

  .modal-body {
    padding: 1.25rem;
  }

  .modal-header {
    border-bottom: 1px solid #dee2e6;
    padding: 1.25rem;
  }

  .offcanvas {
    max-width: 85vw;
  }
}

/* Mobile Touch-Friendly Interactive Elements */
@media (max-width: 768px) {
  /* Ensure clickable elements are at least 44x44px */
  a,
  button,
  input[type="button"],
  input[type="submit"],
  input[type="checkbox"],
  input[type="radio"],
  select {
    min-height: 44px;
    min-width: 44px;
  }

  /* Better click targets */
  .nav-link,
  .dropdown-item,
  .list-group-item {
    padding: 0.75rem 1rem !important;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  /* Prevent zoom on input focus (iOS) */
  input,
  select,
  textarea {
    font-size: 16px;
  }
}

/* Mobile Utilities */
@media (max-width: 768px) {
  .d-none-mobile {
    display: none !important;
  }

  .d-block-mobile {
    display: block !important;
  }

  .text-center-mobile {
    text-align: center !important;
  }

  .mx-auto-mobile {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Hide large decorative elements */
  .decoration,
  .background-pattern,
  .floating-elements {
    display: none !important;
  }
}

/* Mobile Accessibility */
@media (max-width: 768px) {
  /* Better focus states for keyboard navigation */
  *:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
  }

  /* Increase touch target sizes */
  input[type="checkbox"],
  input[type="radio"] {
    width: 20px;
    height: 20px;
    min-width: 44px;
    min-height: 44px;
    cursor: pointer;
  }

  label {
    cursor: pointer;
    padding: 0.5rem 0;
  }

  /* Better spacing around form elements */
  .form-check {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0.25rem 0;
  }

  .form-check-input {
    margin-right: 0.75rem;
  }
}

/* Mobile Performance */
@media (max-width: 768px) {
  /* Reduce animation on smaller screens for better performance */
  * {
    animation-duration: 0.2s !important;
    transition-duration: 0.2s !important;
  }

  /* Simplify shadows for mobile */
  .shadow,
  .shadow-sm {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
  }

  .shadow-lg {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
  }
}