/* The above code is a CSS stylesheet that defines the styling for a website. Here are some key points
about what the code is doing: */
:root {
  --color-primary: #1e3a8a;
  --color-primary-light: #2d4ba8;
  --color-secondary: #ff6b35;
  --color-secondary-light: #ff8c5a;
  --color-accent: #00a6fb;
  --color-bg-light: #f8f9fa;
  --color-bg-white: #ffffff;
  --color-green: #2ecc71;
  --color-text-dark: #333333;
  --color-text-muted: #6c757d;
  --color-text-light: #ffffff;
  --color-yellow: #ffc312;
  --border-radius: 8px;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", Arial, sans-serif;
  background: var(--color-bg-white);
  color: var(--color-text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* =============================================
                Hero Section ~AMSR
  ============================================= */
.hero {
  background: linear-gradient(rgba(30, 58, 138, 0.8), rgba(30, 58, 138, 0.8)),
    url("https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80");
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 6rem 1rem;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn.large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.savings-section {
  background: linear-gradient(95deg, #ff6b35 60%, #ff8c5a 40%);
  padding: 60px 0;
  color: white;
}

.savings-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.savings-content {
  flex: 1;
}

.savings-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.highlight {
  display: block;
}

.savings-content p {
  font-size: 16px;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.5;
  max-width: 400px;
}

.app-badges {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.app-badge {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  padding: 12px 20px;
  border-radius: 8px;
  gap: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.app-badge:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.badge-icon {
  font-size: 24px;
}

.badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.badge-text span {
  font-size: 12px;
}

.badge-text strong {
  font-size: 16px;
  font-weight: 600;
}

.search-box {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  width: 380px;
  color: #333;
}

.search-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.search-header h3 {
  font-size: 22px;
  font-weight: 700;
  color: #333;
}

.search-icon {
  color: #ff6b35;
  font-size: 18px;
}

/* General Styles */
.hero-search-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 1000px;
  margin: 40px auto;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #333;
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Row containers */
.hero-form-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  align-items: center;
}

/* Labels row */
.hero-form-row.labels label {
  font-size: 14px;
  font-weight: 500;
  color: #555;
  text-align: left;
  padding-bottom: 8px;
}

/* Styling for Dropdown (select) */
.hero-form-row.inputs select {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  background-color: #f7f7f7;
  transition: all 0.3s ease;
  cursor: pointer;
}

.hero-form-row.inputs select:hover {
  background-color: #fff; /* Subtle background change on hover */
  border-color: #ff6b35;
}

.hero-form-row.inputs select:focus {
  outline: none;
  border-color: #ff6b35; /* Vibrant border color */
  background-color: #fff;
  box-shadow: 0 0 5px rgba(255, 107, 53, 0.3);
}

/* Styling for Date Picker Input */

.hero-form-row.inputs input[type="date"] {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  background-color: #f7f7f7;
  transition: all 0.3s ease;
}

.hero-form-row.inputs input[type="date"]:hover {
  background-color: #fff;
  border-color: #ff6b35;
}

.hero-form-row.inputs input[type="date"]:focus {
  outline: none;
  border-color: #ff6b35; /* Soft orange highlight */
  background-color: #fff;
  box-shadow: 0 0 5px rgba(255, 107, 53, 0.3); /* Soft shadow effect */
}

/* Button */
.search-btn {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  background-color: #ff6b35;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 6px 12px rgba(255, 107, 53, 0.2);
}

.search-btn:hover {
  background-color: #e55a28;
  transform: translateY(-2px);
  box-shadow: 0 8px 14px rgba(255, 107, 53, 0.3);
}

/* Layout wrapper for text + image */
.savings-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.savings-top .savings-content {
  flex: 1;
  min-width: 300px;
}

/* .image-container {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 20px;
}

.bus-image {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 12px;

  object-fit: cover;
} */
/* Replaces .image-container */
.bus-slider {
  position: relative;
  width: 100%; /* full width of its parent container */
  max-width: 500px; /* restrict size to right side image area */
  height: 400px;
  margin-left: auto; /* push it to the right */
  overflow: hidden; /* hide buses outside this container */
}

.slide-bus {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 450px; /* adjust size as needed */
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  opacity: 0;
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
  .hero-form-row {
    grid-template-columns: 1fr; /* stack vertically */
  }

  .hero-form-row.labels {
    display: none; /* hide top labels on mobile */
  }
}

@media (max-width: 968px) {
  .savings-container {
    flex-direction: column;
    text-align: center;
  }

  .savings-content p {
    max-width: 100%;
  }

  .app-badges {
    justify-content: center;
  }

  .search-box {
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 576px) {
  .savings-content h2 {
    font-size: 28px;
  }

  .app-badges {
    flex-direction: column;
    align-items: center;
  }

  .app-badge {
    width: 200px;
  }
}

.services-section {
  padding: 5rem 1rem;
  background: var(--color-bg-white);
}

.services-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.services-image img {
  max-width: 500px;
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.services-content {
  flex: 1;
}

.subtitle {
  color: var(--color-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 2rem;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.service-item .icon {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: var(--color-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--color-secondary);
}

.service-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--color-primary);
}

.service-item p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 992px) {
  .services-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .service-item {
    justify-content: center;
    text-align: left;
  }
}

/* ======================================================
             Advantages Section~AmsR
    =====================================================*/

.advantages-section {
  padding: 5rem 1rem;
  /* background: var(--color-bg-light); */
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-dark);
  margin-bottom: 3rem;
}

/* Flex container */
.advantages-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

/* Cards */
.adv-card {
  flex: 1 1 280px;
  max-width: 320px;
  background: var(--color-bg-white);
  border-radius: 16px;
  padding: 2rem 1rem 1.5rem;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
  cursor: pointer;
  overflow: hidden;
}

.adv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--color-secondary),
    var(--color-accent)
  );
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.adv-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.icon-bg {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--color-text-light);
  font-size: 1.8rem;
  transition: 0.3s;
}

.adv-card:hover .icon-bg {
  background: var(--color-secondary);
  transform: scale(1.1);
}

.adv-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
  font-weight: 600;
}

.adv-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
  .adv-card {
    flex: 1 1 45%;
  }
}

@media (max-width: 576px) {
  .adv-card {
    flex: 1 1 100%;
  }
}



/* ======================================================
                Our Fleet Section~AmsR
    =====================================================*/


    
/* General Heading */
.our-fleet-h1 {
  text-align: center;
  font-size: 2.5rem;
   background: linear-gradient(to bottom, #f0f4f8 0%, #ffffff 100%);
  margin-bottom: 40px;
  font-weight: 700;
  color: var(--color-primary);
  padding: 20px 15px;
  position: relative;
}

.our-fleet-h1:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--color-secondary);
  border-radius: 2px;
}

/* Fleet Container */
.fleet-container {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 0 20px;
}

/* Promo Card */
.promo-card {
  flex: 0 0 340px;
  border-radius: 20px;
  overflow: hidden;
  height: 410px;
  position: relative;
  cursor: pointer;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.promo-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.promo-card:hover .promo-img {
  transform: scale(1.08);
}

.promo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3));
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding: 25px 20px;
  opacity: 1;
  transform: translateY(0);
}

.promo-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.promo-text {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 20px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}

.promo-btn {
  padding: 12px 28px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 50px;
  background: var(--color-secondary);
  color: #fff;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.promo-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  background: var(--color-secondary-light);
}
/* Scrollable Cards */
.scrollable-wrapper {
  flex: 1;
  overflow: hidden; /* important for infinite loop */
  padding: 20px 0;
  position: relative;
}

.scrollable-cards {
  display: flex;
  gap: 24px;
  padding: 0 10px;
  width: max-content; /* GSAP needs this */
}

.card {
  flex: 0 0 280px; /* card width */
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--box-shadow);
  padding: 18px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
  min-height: 360px;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
  transition: var(--transition);
}

.card:hover .card-img {
  transform: scale(1.05);
}

.card .fav {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.2em;
  color: #ccc;
  cursor: pointer;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.9);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card .fav:hover {
  color: #ff6b6b;
  transform: scale(1.1);
}

.card .fav.active {
  color: #ff4d4d;
  transform: scale(1.1);
}

.card-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-primary);
  text-align: center;
}

.year {
  font-size: 0.85em;
  color: var(--color-text-muted);
  margin-bottom: 8px;
  text-align: center;
}

.price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 5px;
  text-align: center;
}

.month {
  font-size: 0.85em;
  color: var(--color-text-muted);
  margin-bottom: 12px;
  text-align: center;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 15px;
}

.features span {
  background: #f5f7fa;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.8em;
  color: #333;
  display: flex;
  align-items: center;
}

.features i {
  margin-right: 5px;
  color: var(--color-primary);
}

.card-btn {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: #fff;
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  margin-top: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.card-btn:hover {
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Navigation Arrows */
.carousel-nav {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
}

.nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-bg-white);
  border: none;
  box-shadow: var(--box-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.nav-btn:hover {
  background: var(--color-primary);
  color: var(--color-text-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .fleet-container {
    flex-direction: column;
    align-items: center;
  }
  
  .promo-card {
    width: 100%;
    max-width: 500px;
    margin-bottom: 30px;
  }
  
  .scrollable-wrapper {
    width: 100%;
  }
  
  .card {
    flex: 0 0 300px;
  }
}

@media (max-width: 768px) {
  .our-fleet-h1 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  
  .fleet-container {
    padding: 0 15px;
  }
  
  .promo-card {
    height: auto;
  }
  
 .promo-img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
}

  
  .promo-title {
    font-size: 1.4rem;
  }
  
  .promo-text {
    font-size: 0.9rem;
  }
  
  .scrollable-cards {
    gap: 15px;
  }
  
  .card {
    flex: 0 0 280px;
    min-height: 360px;
  }
  
  .carousel-nav {
    display: none;
  }
}

@media (max-width: 480px) {
  .our-fleet-h1 {
    font-size: 1.8rem;
  }
  
 .promo-img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Keeps aspect ratio, may leave empty space */
}

  
  .promo-overlay {
    padding: 20px 15px;
  }
  
  .promo-title {
    font-size: 1.3rem;
  }
  
  .promo-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .card {
    flex: 0 0 260px;
    min-height: 340px;
    padding: 15px;
  }
  
  .card-img {
    height: 140px;
  }
  
  .card-title {
    font-size: 1.1rem;
  }
  
  .price {
    font-size: 1.1rem;
  }
  
  .features {
    flex-direction: column;
    gap: 5px;
  }
}

/* Touch device improvements */
@media (hover: none) {
  .card:hover {
    transform: none;
  }
  
  .card-btn:hover {
    transform: none;
  }
  
  .promo-card:hover {
    transform: none;
  }
  
  .promo-card:hover .promo-img {
    transform: none;
  }
}
/* ======================================================
               Tour Packages Section~AmsR
    =====================================================*/

/* Tour Packages Section */
.tour-packages {
  padding:5px 0 80px 0;
  background: var(--color-bg-light);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.section-header {
  text-align: center;
  margin: 60px 15px 40px; /* spacing around the section */
  padding: 20px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color, #222); /* uses root color if defined */
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

/* Optional underline effect */
.section-header h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--accent-color, #ff5722);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Paragraph styling */
.section-header p {
  font-size: 1.1rem;
  color: var(--text-color, #555); /* secondary text color */
  margin-top: 10px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }

  .section-header p {
    font-size: 1rem;
    padding: 0 10px;
  }
}

.package-card {
  background: var(--color-bg-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.package-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.package-card:hover .package-image img {
  transform: scale(1.05);
}

.package-price {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--color-secondary);
  color: var(--color-text-light);
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

.package-content {
  padding: 25px;
}

.package-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 15px;
}

.package-highlights {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.package-highlights span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.package-highlights i {
  color: var(--color-secondary);
}

.package-itinerary {
  margin-bottom: 25px;
}

.package-itinerary li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.package-itinerary i {
  color: var(--color-green);
  font-size: 0.8rem;
}

.package-card .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .packages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .package-highlights {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .tour-packages {
    padding: 50px 0;
  }

  .package-content {
    padding: 20px;
  }

  .package-content h3 {
    font-size: 1.2rem;
  }
}

/* ======================================================
                Booking Section~AmsR
    =====================================================*/
/* Booking Section */
.booking-section {
  padding: 0 0 80px 0 !important;
  background: var(--color-bg-white);
}

.booking-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.booking-form {
  background: var(--color-bg-light);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* Form Actions Container */
.form-actions {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  justify-content: center; /* center buttons */
  flex-wrap: wrap; /* allow wrapping on small screens */
}

/* Primary Button: Get Quote & Book Now */
.form-actions .btn.primary {
  background: var(--color-primary);
  color: #fff;
  padding: 14px 25px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.form-actions .btn.primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* Secondary Button: Request Custom Quote */
.form-actions .btn.secondary {
  background: var(--color-bg-white);
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  padding: 14px 25px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.form-actions .btn.secondary:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
.form-row.full-width {
  display: flex;
  flex-direction: column;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-row:not(.full-width) {
  display: flex;
  gap: 20px;
}
/* Responsive Adjustments */
@media (max-width: 480px) {
  .form-actions {
    flex-direction: column;
    gap: 12px;
  }

  .form-actions .btn {
    width: 100%;
  }
}

.booking-summary {
  background: var(--color-primary);
  color: var(--color-text-light);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.booking-summary h3 {
  margin-bottom: 25px;
  text-align: center;
  font-size: 1.5rem;
}

.summary-details {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: var(--border-radius);
  margin-bottom: 30px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.summary-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.summary-item.highlight {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-secondary);
}

.submit-btn{
 text-align: center;
}
.custom-model-btn{
  margin-top: 10px;
    padding: 12px 28px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 50px;
  background: var(--color-secondary);
  color: #fff;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: var(--color-bg-white);
  padding: 30px;
  border-radius: var(--border-radius);
  width: 90%;
  max-width: 500px;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text-muted);
}

.close-modal:hover {
  color: var(--color-secondary);
}

/* Responsive Design */
@media (max-width: 968px) {
  .booking-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .booking-section {
    padding: 50px 0;
  }

  .booking-form,
  .booking-summary {
    padding: 20px;
  }

  .payment-gateways {
    flex-wrap: wrap;
  }
}



/* ======================================================
                Testimonial Section~AmsR
    =====================================================*/

.testimonials-section {
  /* background: linear-gradient(360deg, var(--color-bg-white), #fbfaf8); */
  padding: 56px 0;
  color: var(--color-text-dark);
}
.testimonials-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.testimonials-top .title {
  font-size: 1.7rem;
  color: var(--color-primary);
  font-weight: 700;
  margin: 0;
}
.testimonials-top .subtitle {
  color: #6b7280;
  font-size: 0.98rem;
  margin-top: 6px;
}

/* wrapper for scroller and controls */
.testimonials-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Previous/Next buttons */
.t-btn {
  background: var(--color-bg-white);
  border: 1px solid rgba(11, 18, 32, 0.06);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.t-btn:focus {
  outline: 3px solid rgba(0, 166, 251, 0.18);
}
.t-btn[aria-disabled="true"] {
  opacity: 0.45;
  cursor: not-allowed;
}

/* horizontal scroller */
.testimonials-viewport {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* firefox */
  -ms-overflow-style: none; /* ie */
  flex: 1 1 auto;
}
.testimonials-viewport::-webkit-scrollbar {
  display: none;
}

.testimonials-track {
  display: flex;
  gap: var(--gap);
  padding: 8px 4px;
  align-items: stretch;
}

/* card */
.testimonial-card {
  scroll-snap-align: center;
  flex: 0 0 320px; /* base width, auto for responsiveness */
  background: linear-gradient(180deg, var(--color-bg-white), #fff);
  border-radius: var(--card-radius);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 190px;
}
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--color-text-light);
  font-weight: 700;
  font-size: 1.15rem;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}
.user-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.user-name {
  font-weight: 700;
  color: var(--color-primary);
}
.user-meta {
  font-size: 0.85rem;
  color: #6b7280;
}

.rating {
  color: var(--color-yellow);
  font-size: 0.95rem;
}

.review-text {
  flex: 1 1 auto;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.45;
  margin-top: 6px;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 6px;
}
.badge {
  font-size: 0.82rem;
  color: var(--color-text-light);
  background: linear-gradient(
    90deg,
    var(--color-secondary),
    var(--color-accent)
  );
  padding: 6px 10px;
  border-radius: 10px;
  font-weight: 600;
}

/* dots */
.t-dots {
  display: flex;
  gap: 8px;
  margin-left: 12px;
  align-items: center;
}
.t-dot {
  width: 10px;
  height: 10px;
  border-radius: 20px;
  background: #e6e6e6;
  border: 0;
  cursor: pointer;
  padding: 0;
}
.t-dot[aria-pressed="true"] {
  background: var(--color-primary);
  box-shadow: 0 6px 18px rgba(30, 58, 138, 0.12);
}

/* responsive adjustments */
@media (max-width: 980px) {
  .testimonial-card {
    flex: 0 0 280px;
  }
}
@media (max-width: 680px) {
  .testimonials-top {
    text-align: center;
  }
  .testimonial-card {
    flex: 0 0 86%;
    max-width: 86%;
    margin-inline: auto;
  }
  .t-btn {
    display: none;
  } /* hide arrow buttons on small screens */
  .t-dots {
    justify-content: center;
    width: 100%;
    margin-top: 12px;
  }
}

/* CTA Section */
.cta-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-primary-light) 100%
  );
  color: var(--color-text-light);
  overflow: hidden;
  text-align: center;
}

.cta-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 50px;
  opacity: 0.9;
  line-height: 1.6;
}

.cta-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 50px;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-secondary);
  margin-bottom: 10px;
  line-height: 1;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
  font-weight: 500;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.btn-large {
  padding: 18px 35px;
  font-size: 1.1rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-large i {
  font-size: 1.2rem;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 20px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.feature:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.feature i {
  color: var(--color-secondary);
  font-size: 1.2rem;
}

/* Animated Background Shapes */
.cta-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

.cta-shape-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.cta-shape-2 {
  width: 120px;
  height: 120px;
  bottom: 15%;
  right: 15%;
  animation-delay: 2s;
}

.cta-shape-3 {
  width: 60px;
  height: 60px;
  top: 40%;
  right: 25%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .cta-section {
    padding: 70px 0;
  }

  .cta-section h2 {
    font-size: 2.2rem;
  }

  .cta-section p {
    font-size: 1.1rem;
  }

  .cta-stats {
    gap: 30px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-features {
    gap: 15px;
  }

  .feature {
    padding: 10px 15px;
  }
}

@media (max-width: 480px) {
  .cta-section h2 {
    font-size: 1.8rem;
  }

  .cta-stats {
    flex-direction: column;
    gap: 25px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .btn-large {
    padding: 15px 25px;
    font-size: 1rem;
  }

  .cta-features {
    flex-direction: column;
    align-items: center;
  }
}
