/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-red: #267bdc;
  --dark-red: #1b5699;
  --light-red: #e2f8fe;
  --black: #0a0a0a;
  --dark-gray: #1a1a1a;
  --medium-gray: #2a2a2a;
  --gray: #6b7280;
  --light-gray: #f3f4f6;
  --white: #ffffff;
}

body {
  font-family: "Roboto", sans-serif;
  color: var(--white);
  background: var(--black);
  overflow-x: hidden;
  line-height: 1.6;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Top Bar */
.top-bar {
  background: var(--primary-blue);
  color: white;
  padding: 0.5rem 0;
  font-size: 0.9rem;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  gap: 2rem;
}

.top-bar-left span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar-right {
  display: flex;
  gap: 1.5rem;
}

.top-link {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s;
}

.top-link:hover {
  opacity: 0.8;
}

/* Navigation */
.navbar {
  background: var(--dark-gray);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 50px;
  transition: transform 0.3s;
}

.logo img:hover {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-red);
  transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--primary-red);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%),
    url("images/banner.jpg?height=1080&width=1920") center / cover no-repeat;
  background-blend-mode: overlay;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(38, 111, 220, 0.4) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-subtitle-text {
  display: block;
  color: var(--primary-red);
  font-size: 4.5rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.hero-country {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: 3px;
  color: var(--white);
}

.hero-logo-large {
  margin-top: 3rem;
  animation: fadeIn 1.5s ease-out 0.5s backwards;
}

.hero-logo-large img {
  height: 100px;
  filter: drop-shadow(0 0 20px rgba(38, 117, 220, 0.5));
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Feature Boxes */
.feature-boxes {
  background: var(--primary-red);
  padding: 0;
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.feature-box {
  background: var(--primary-red);
  padding: 3rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  /* Improved smooth transitions and removed jarring pulse animation */
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.feature-box:last-child {
  border-right: none;
}

.feature-box:hover {
  background: var(--dark-red);
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  z-index: 10;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  /* Smoother icon transitions */
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-box:hover .feature-icon {
  background: white;
  transform: rotateY(360deg) scale(1.1);
}

.feature-icon i {
  font-size: 2.5rem;
  color: white;
  transition: color 0.4s;
}

.feature-box:hover .feature-icon i {
  color: var(--primary-red);
}

.feature-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.feature-box p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* About Section */
.about-section {
  background: white;
  padding: 6rem 0;
  color: var(--black);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--black);
  line-height: 1.2;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 2rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.about-feature-item i {
  color: var(--primary-red);
  font-size: 1.5rem;
  margin-top: 0.2rem;
  min-width: 24px;
}

.about-feature-item h4 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--black);
  line-height: 1.6;
}

/* Services Section */
.services-section {
  background: var(--light-gray);
  padding: 6rem 0;
  color: var(--black);
}

.section-title-center {
  font-size: 3.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--black);
}

.section-subtitle-center {
  text-align: center;
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 4rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  /* Improved smooth transitions */
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 1000px;
}

/* Better 3D hover animation for service cards */
.service-card:hover {
  transform: translateY(-15px) rotateX(5deg);
  box-shadow: 0 25px 60px rgba(38, 117, 220, 0.25);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-red);
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon-wrapper {
  width: 80px;
  height: 80px;
  background: var(--light-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  /* Smoother icon rotation */
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Improved icon animation - single smooth rotation */
.service-card:hover .service-icon-wrapper {
  background: var(--primary-red);
  transform: rotateY(360deg) scale(1.15);
}

.service-icon-wrapper i {
  font-size: 2.5rem;
  color: var(--primary-red);
  transition: color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon-wrapper i {
  color: white;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--black);
}

.service-card p {
  color: var(--gray);
  line-height: 1.6;
}

/* Fleet Section */
.fleet-section {
  background: white;
  padding: 6rem 0;
  color: var(--black);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.fleet-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  /* Improved smooth transitions for fleet cards */
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  transform-style: preserve-3d;
  perspective: 1000px;
}

/* Better 3D hover effect for fleet cards */
.fleet-card:hover {
  transform: translateY(-20px) rotateX(8deg) scale(1.02);
  box-shadow: 0 30px 70px rgba(38, 117, 220, 0.3);
}

.fleet-image-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  /* Smoother image wrapper transition */
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fleet-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Smoother image zoom */
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Improved image zoom effect - smooth and elegant */
.fleet-card:hover .fleet-image-wrapper img {
  transform: scale(1.15);
}

.fleet-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(38, 138, 220, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  /* Smoother overlay transition */
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.fleet-card:hover .fleet-overlay {
  opacity: 1;
}

.fleet-btn {
  background: white;
  color: var(--primary-red);
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transform: translateY(20px);
  /* Smoother button appearance */
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.fleet-card:hover .fleet-btn {
  transform: translateY(0);
}

.fleet-btn:hover {
  background: var(--light-red);
  transform: translateY(0) scale(1.05);
}

.fleet-info {
  padding: 2rem;
}

.fleet-info h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--black);
}

.fleet-specs {
  display: flex;
  gap: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-red);
  font-weight: 600;
}

.fleet-specs i {
  margin-right: 0.5rem;
}

.fleet-info p {
  color: var(--gray);
  line-height: 1.6;
}

/* Fleet Gallery Modal */
/* Added styles for fleet photo gallery modal */
.fleet-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  overflow-y: auto;
  animation: fadeIn 0.3s ease-out;
}

.fleet-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.fleet-modal-content {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  max-width: 1200px;
  width: 100%;
  position: relative;
  animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fleet-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--primary-red);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
}

.fleet-modal-close:hover {
  background: var(--dark-red);
  transform: rotate(90deg);
}

#fleetModalTitle {
  color: var(--black);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

.fleet-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.fleet-gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
}

.fleet-gallery-item:hover {
  transform: scale(1.05);
}

.fleet-gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

/* Added fullscreen image zoom modal styles */
.image-zoom-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.98);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: fadeIn 0.3s ease-out;
}

.image-zoom-modal.active {
  display: flex;
}

.image-zoom-close {
  position: fixed;
  top: 2rem;
  right: 2rem;
  background: var(--primary-red);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 3001;
  box-shadow: 0 4px 20px rgba(38, 153, 220, 0.5);
}

.image-zoom-close:hover {
  background: var(--dark-red);
  transform: rotate(90deg) scale(1.1);
}

.zoomed-image {
  max-width: 95%;
  max-height: 95%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  animation: zoomIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Stats Section */
.stats-section {
  position: relative;
  padding: 6rem 0;
  /* Removed background image, using solid dark background */
  background: var(--dark-gray);
  overflow: hidden;
}

/* Removed stats-section::before with background image */

.stats-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(38, 132, 220, 0.5) 100%);
}

.stats-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}

.stats-left {
  text-align: center;
}

.stats-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1rem;
}

.stats-number {
  font-size: 10rem;
  font-weight: 900;
  line-height: 1;
  color: white;
}

.stats-label {
  font-size: 3rem;
  font-weight: 700;
  color: white;
}

.stats-hashtag {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: 1rem;
}

.stats-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.4s;
  cursor: pointer;
}

.stat-item:hover {
  background: rgba(38, 147, 220, 0.2);
  transform: translateY(-10px) scale(1.05);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary-red);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  color: white;
  font-weight: 500;
  line-height: 1.4;
}

/* Reviews Section */
.reviews-section {
  background: var(--light-gray);
  padding: 6rem 0;
  color: var(--black);
}

.reviews-title {
  color: var(--primary-red);
  margin-bottom: 1rem;
}

.reviews-subtitle {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--black);
}

.reviews-description {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.8;
}

/* Added scrollable carousel styles for reviews */
.reviews-carousel-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4rem;
}

.reviews-carousel {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 1rem 0;
}

.reviews-carousel::-webkit-scrollbar {
  display: none;
}

.review-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  min-width: 400px;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-red);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.review-card:hover::before {
  transform: scaleX(1);
}

.review-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 50px rgba(38, 147, 220, 0.3);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-red);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(38, 117, 220, 0.3);
}

.carousel-btn:hover {
  background: var(--dark-red);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
  left: 0;
}

.carousel-btn.next {
  right: 0;
}

.review-header {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: center;
}

.review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--light-red);
  transition: transform 0.3s;
}

.review-card:hover .review-avatar {
  transform: scale(1.1) rotate(5deg);
}

.review-author h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--black);
}

.review-stars {
  color: #fbbf24;
}

.review-text {
  color: var(--gray);
  line-height: 1.8;
  font-style: italic;
  position: relative;
  padding-left: 1.5rem;
}

/* Fixed quote character in content property */
.review-text::before {
  content: "\201C";
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 3rem;
  color: var(--light-red);
  font-family: Georgia, serif;
}

/* Location Section */
.location-section {
  background: white;
  padding: 6rem 0;
  color: var(--black);
}

.section-title-center {
  font-size: 3.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--black);
}

.section-subtitle-center {
  text-align: center;
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 4rem;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  margin-top: 3rem;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-item {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--light-gray);
  border-radius: 16px;
  transition: all 0.3s;
  animation: fadeInLeft 0.6s ease-out backwards;
}

.info-item:nth-child(1) {
  animation-delay: 0.1s;
}
.info-item:nth-child(2) {
  animation-delay: 0.2s;
}
.info-item:nth-child(3) {
  animation-delay: 0.3s;
}

/* Completing the info-item styles and adding missing sections */
.info-item:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 30px rgba(38, 111, 220, 0.2);
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.info-item i {
  font-size: 2rem;
  color: var(--primary-red);
  min-width: 40px;
}

.info-item div h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--black);
}

.info-item div p {
  color: var(--gray);
  line-height: 1.6;
}

.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  height: 500px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
}

/* Floating Contact Button */
.floating-contact-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-red);
  color: white;
  border: none;
  padding: 1.5rem 0.75rem;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 2px;
  cursor: pointer;
  z-index: 999;
  box-shadow: -4px 0 20px rgba(38, 147, 220, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 8px 0 0 8px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.floating-contact-btn:hover {
  background: var(--dark-red);
  padding-right: 1rem;
  box-shadow: -8px 0 30px rgba(38, 147, 220, 0.6);
}

.floating-contact-btn i {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

/* Contact Form Sidebar */
.contact-sidebar {
  position: fixed;
  right: -500px;
  top: 0;
  width: 500px;
  height: 100vh;
  background: white;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
  z-index: 1500;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.contact-sidebar.active {
  right: 0;
}

.contact-sidebar-header {
  background: var(--primary-red);
  color: white;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-sidebar-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

.close-sidebar {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform 0.3s;
}

.close-sidebar:hover {
  transform: rotate(90deg);
}

.contact-form {
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--black);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem;
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s;
  font-family: "Roboto", sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-red);
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: var(--primary-red);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.submit-btn:hover {
  background: var(--dark-red);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

/* Footer */
.footer {
  background: var(--dark-gray);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-logo {
  height: 60px;
  margin-bottom: 1.5rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.footer-contact i {
  color: var(--primary-red);
  width: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links li {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s;
  cursor: pointer;
  padding-left: 0;
}

.footer-links li:hover {
  color: var(--primary-red);
  padding-left: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-content {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-section:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle-text {
    font-size: 2.5rem;
  }

  .hero-country {
    font-size: 1.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .section-title-center {
    font-size: 2.5rem;
  }

  .stats-number {
    font-size: 6rem;
  }

  .stats-label {
    font-size: 2rem;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark-gray);
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
  }

  .mobile-toggle {
    display: block;
  }

  .floating-contact-btn {
    font-size: 0.9rem;
    padding: 1.25rem 0.6rem;
  }

  .contact-sidebar {
    width: 100%;
    right: -100%;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-section:first-child {
    grid-column: 1;
  }

  .reviews-carousel-wrapper {
    padding: 0 3rem;
  }

  .review-card {
    min-width: 300px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle-text {
    font-size: 2rem;
  }

  .top-bar-content {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .top-bar-left {
    flex-direction: column;
    gap: 0.5rem;
  }
}
