html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  position: relative;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}
img, video, canvas, svg {
  max-width: 100%;
  height: auto;
}
.top-bar {
  background: #3398c4;
  color: white;
  padding: 8px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
.top-right span {
  margin-left: 25px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.top-right a,
.email-link {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s ease;
}
.top-right a:hover,
.email-link:hover {
  opacity: 0.85;
  text-decoration: underline;
}
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 40px;
  background: #e9f1f7;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}
.logo a {
  display: inline-block;
  line-height: 0;
}
.logo img {
  height: 70px;
  max-width: 100%;
  display: block;
  mix-blend-mode: multiply;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}
.nav-links a {
  color: #003366;
  font-weight: 500;
  text-decoration: none;
}
.nav-links a:hover {
  color: #1e88e5;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 26px;
  color: #003366;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 6px;
  line-height: 1;
  transition: 0.3s;
}
.nav-toggle:hover {
  background: rgba(0, 51, 102, 0.08);
}
.book-btn {
  border: 2px solid #003366;
  background: white;
  color: #003366;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 600;
  white-space: nowrap;
}

.book-btn:hover {
  background: #003366;
  color: white;
}
.hero {
  position: relative;
  height: 60vh;
  min-height: 420px;
  max-height: 560px;
  overflow: hidden;
  background: #000;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.7) 100%);
  pointer-events: none;
  z-index: 1;
}
.slider,
.slides {
  width: 100%;
  height: 100%;
  display: flex;
}
.slides img {
  width: 100%;
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
}
.hero-text {
  position: absolute;
  left: 60px;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  z-index: 2;
}
.hero-text h1,
.hero-text h2 {
  font-size: clamp(24px, 4.5vw, 38px);
  font-weight: 700;
  max-width: 600px;
  line-height: 1.3;
  text-shadow: 0 2px 10px rgba(0,0,0,0.85);
}
.dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.4);
  padding: 6px 14px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}
.dot {
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  margin: 0;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
}

.dot.active {
  background: #00bfff;
  width: 24px;
  border-radius: 12px;
}
.booking-container {
  background: #e9f1f7;
  width: 85%;
  margin: 20px auto 50px;
  padding: 22px 25px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.booking-form {
  display: flex;
  gap: 15px;
}
.booking-form input {
  flex: 1;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.booking-form button {
  background: #003366;
  color: white;
  padding: 12px 22px;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
}

.booking-form button:hover {
  background: #1e88e5;
}
.side-call,
.side-whatsapp {
  position: fixed;
  top: 55%;
  padding: 12px 18px;
  color: white;
  font-weight: bold;
  border-radius: 25px;
  text-decoration: none;
  z-index: 999;
  transition: 0.3s;
}

.side-call {
  left: 10px;
  background: #003366;
}

.side-whatsapp {
  right: 10px;
  background: #25d366;
}

.side-call:hover,
.side-whatsapp:hover {
  transform: scale(1.08);
}
.about-travels {
  padding: 80px 40px;
}
.about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}
.about-left h2 {
  font-size: 34px;
  margin-bottom: 20px;
}
.orange-text { color: #f5a030; }
.blue-text { color: #0a2a43; }

.about-left p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  text-align: justify;
  text-justify: inter-word;
  text-align-last: left;
}

.about-right {
  border-left: 1px solid #ddd;
  padding-left: 40px;
}
.about-right li {
  font-size: 16px;
  margin-bottom: 22px;
  line-height: 1.5;
}
.rating-img {
  width: 120px;
  margin-bottom: 20px;
}
.highlights {
  padding: 80px 40px;
  background: #e9f1f7;
}
.highlights-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 60px;
  color: #003366;
}
.highlights-title span {
  color: #f5a030;
}

.highlights-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px 40px;
}

.highlight-item {
  display: flex;
  gap: 18px;
}

.highlight-item .icon {
  width: 90px;
  height: 80px;
  border: 5px solid #003366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  color: #003366;
}

.services-section {
  padding: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.service-card {
  padding: 20px;
  text-align: center;
  border-right: 1px solid #e5e5e5;
  transition: 0.35s;
}

.service-card:hover {
  transform: scale(1.06);
  box-shadow: 0 18px 35px rgba(0,0,0,0.18);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-top: 10px;
  margin-bottom: 15px;
  text-align: justify;
  text-justify: inter-word;
  text-align-last: left;
}

.service-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 26px;
  border-radius: 30px;
  background: white;
  color: #003366;
  border: 2px solid #003366;
  text-decoration: none;
}

.service-btn:hover {
  background: #003366;
  color: white;
}

.comfort-section {
  padding: 40px 40px;
}

.comfort-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.comfort-left,
.comfort-center,
.comfort-right {
  display: flex;
  flex-direction: column;
}

.comfort-left h2 {
  font-size: 46px;
  line-height: 1.2;
}

.blue { color: #003366; }
.orange { color: #f5a030; }

.comfort-center,
.comfort-right {
  padding-left: 30px;
  border-left: 1px solid #eee;
}

.comfort-center p,
.comfort-right p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  text-align: justify;
  text-justify: inter-word;
  text-align-last: left;
}

@media (max-width: 900px) {
  .about-container,
  .comfort-container {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .about-right {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid #ddd;
    padding-top: 25px;
  }

  .comfort-center,
  .comfort-right {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid #eee;
    padding-top: 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    border-right: none;
    border-bottom: 1px solid #e5e5e5;
  }
}
.sticky-booking {
  position: sticky;
  top: 80px;
  z-index: 900;
  transition: all 0.3s ease;
}

.sticky-booking.stuck {
  padding: 14px 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.18);
}
.experience-section {
  padding: 80px 40px;
  background: #ffffff;
}
.experience-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}
.experience-left h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.experience-left p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 18px;
  text-align: justify;
  text-justify: inter-word;
  text-align-last: left;
}

.experience-right img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}
.our-fleets {
  padding: 10px 40px;
  background: #ffffff;
  text-align: center;
}

.fleets-grid {
  max-width: 1200px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.fleet-card {
  border: 1px solid #e5e5e5;
  padding: 20px;
  background: #fff;
}
.fleet-card img {
  width: 100%;
  max-width: 220px;   
  height: auto;
  margin: 0 auto 15px;
  display: block;
}

.fleet-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #003366;
}

.fleet-icons {
  display: flex;
  justify-content: center;
  gap: 18px;
  font-size: 14px;
  color: #555;
}
.fleets-btn {
  margin-top: 40px;
}

.view-fleets-btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  border: 2px solid #003366;
  color: #003366;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.view-fleets-btn:hover {
  background: #003366;
  color: white;
}
/* ======================
   FOOTER (FIXED & CLEAN)
====================== */

/* Footer background */
.main-footer {
  width: 100%;
  margin: 0;
  padding: 0;
  background: #88b6e4;
}

/* Center wrapper */
.footer-top,
.footer-content,
.footer-bottom-inner {
  max-width: 1300px;
  margin: 0 auto;
}

/* ---------- TOP INFO ---------- */
.footer-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 30px 40px;
  border-bottom: 1px solid rgba(0,0,0,0.15);
}

.footer-info {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.footer-info i {
  font-size: 34px;
  color: #003366;
}

.footer-info h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

/* ---------- MAIN CONTENT ---------- */
.footer-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding: 50px 40px;
}

.footer-col h3 {
  margin-bottom: 18px;
  font-size: 20px;
}

.footer-col p {
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: justify;
  text-justify: inter-word;
  text-align-last: left;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #003366;
}

/* ---------- SOCIAL ---------- */
.footer-social i {
  font-size: 18px;
  margin-right: 15px;
  cursor: pointer;
}

/* ---------- SUBSCRIBE ---------- */
.subscribe-box {
  background: #05376f;
  padding: 30px;
  border-radius: 8px;
  color: white;
}

.subscribe-box input {
  width: 100%;
  padding: 12px;
  margin-bottom: 14px;
  border-radius: 6px;
  border: none;
}

.subscribe-box button {
  width: 100%;
  padding: 14px;
  border-radius: 30px;
  border: none;
  background: white;
  color: #003366;
  font-weight: bold;
  cursor: pointer;
}

/* ---------- BRAND LOGOS IN FOOTER ---------- */
.footer-col.logo-box {
  display: flex;
  align-items: center;
}

.footer-logos {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  width: 100%;
}

.footer-logo {
  height: 85px;
  width: auto;
  max-width: calc(50% - 10px);
  object-fit: contain;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: block;
}

.footer-logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ---------- BOTTOM BAR ---------- */
.footer-bottom {
  width: 100%;
  background: #4ea6c6;
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

.footer-bottom p {
  margin: 0;
  color: #003366;
}

.footer-bottom a {
  color: #003366;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .footer-top,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-bottom,
  .footer-bottom-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 15px 20px;
  }

  .footer-logos {
    justify-content: flex-start;
    gap: 16px;
  }
  .footer-logo {
    height: 75px;
  }
}

@media (max-width: 480px) {
  .footer-logos {
    justify-content: center;
    gap: 12px;
  }
  .footer-logo {
    height: 68px;
    max-width: calc(50% - 8px);
  }
}

@media (max-width: 320px) {
  .footer-logos {
    flex-direction: column;
    align-items: center;
  }
  .footer-logo {
    max-width: 80%;
  }
}
.main-footer {
  width: 100%;
  margin: 0;
  padding: 0;
  background: #88b6e4;   /* 🔵 Royal Blue */
}

.about-hero {
  height: 220px;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url("highway.avif") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero h1 {
  color: white;
  font-size: 42px;
  font-weight: 600;
}

.about-page {
  padding: 80px 40px;
  background: #ffffff;
}

.about-page-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-page-left h2 {
  font-size: 28px;
  line-height: 1.4;
  color: #003366;
  margin-bottom: 0px;
}

.about-page-left p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 12px;
  text-align: justify;
  text-justify: inter-word;
  text-align-last: left;
}

.about-page-left h3 {
  margin: 20px 0 12px;
  color: #003366;
}

.about-list {
  list-style: none;
  margin-top: 10px;
}

.about-list li {
  font-size: 16px;
  margin-bottom: 12px;
}

.about-list i {
  color: #003366;
  margin-right: 8px;
}

.about-page-right img {
  width: 100%;
  border-radius: 6px;
}

.nav-links a.active {
  color: #f36c21;
  font-weight: bold;
}

.float-call {
  position: fixed;
  left: 15px;
  top: 45%;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #003366;
  color: #fff;
  padding: 12px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  z-index: 9999;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.float-call i {
  font-size: 18px;
}
.float-whatsapp {
  position: fixed;
  right: 15px;
  top: 45%;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 12px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  z-index: 9999;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.float-whatsapp i {
  font-size: 20px;
}

.float-call:hover,
.float-whatsapp:hover {
  transform: scale(1.05);
}

.about-features {
  background: #8ad5f6;  
  padding: 0px 40px;
}

.features-container {
  max-width: 1300px;
  margin:  0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.feature-box h3 {
  margin-top: 18px;
  font-size: 20px;
  color: #003366;
}

.feature-box p {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: #000;
}

.feature-icon {
  width: 90px;
  height: 90px;
  margin: auto;
  border: 4px solid #003366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon i {
  font-size: 34px;
  color: #003366;
}
@media (max-width: 900px) {
  .features-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .features-container {
    grid-template-columns: 1fr;
  }
}
.mission-vision {
  padding: 0px 40px;
  background: #ffffff;
}

.mv-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

.mv-box img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  margin-bottom: 25px;
}

.mv-box h3 {
  color: #003366;
  font-size: 24px;
  margin-bottom: 20px;
}

.mv-box ul {
  padding-left: 20px;
}

.mv-box ul li {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 12px;
}
@media (max-width: 900px) {
  .mv-container {
    grid-template-columns: 1fr;
  }
}
.our-team {
  background: #ffffff;
}
.team-top {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-content {
  padding: 60px;
}

.team-content h2 {
  font-size: 32px;
  color: #003366;
  margin-bottom: 20px;
}

.team-content h2 span {
  font-weight: bold;
}

.team-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  text-align: justify;
  text-justify: inter-word;
  text-align-last: left;
}
.team-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.team-box {
  padding: 50px 30px;
}
.team-box i {
  font-size: 38px;
  margin-bottom: 18px;
  display: block;
}

.team-box p {
  font-size: 15px;
  line-height: 1.6;
}
.team-box.light {
  background: #8ad5f6;
}

.team-box.dark {
  background: #4ea6c6;
  color: #000;
}
@media (max-width: 992px) {
  .team-top {
    grid-template-columns: 1fr;
  }

  .team-content {
    padding: 40px;
  }

  .team-highlights {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .team-highlights {
    grid-template-columns: 1fr;
  }
}
.fa-gauge-simple,
.fa-gauge {
  font-size: 48px;
  color: #003366;
}
.why-choose {
  width: 100%;
  padding: 0;              
  margin: 0;              
  background: #ffffff;
}

.why-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  width: 100%;
}
.why-left {
  padding: 60px;
}
.why-left h2 {
  font-size: 32px;
  color: #003366;
  margin-bottom: 20px;
}
.why-left ol {
  margin-left: 20px;
  margin-bottom: 20px;
}
.why-left ol li {
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.6;
}
.why-left p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  text-align: justify;
  text-justify: inter-word;
  text-align-last: left;
}
.why-right {
  width: 100%;
  height: 100%;
}
.why-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;  
  display: block;
}
@media (max-width: 900px) {
  .why-container {
    grid-template-columns: 1fr;
  }
  .why-left {
    padding: 40px 25px;
  }
  .why-right img {
    height: 320px;
  }
}
.nav-links a.active {
  color: #f36c21;
  font-weight: 600;
}
/* ======================
   FEEDBACK PAGE
====================== */

.feedback-section {
  padding: 80px 40px;
  background: #f4f9fc;
}

.feedback-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.feedback-left h2 {
  font-size: 32px;
  color: #003366;
  margin-bottom: 16px;
}

.feedback-left p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
  text-justify: inter-word;
  text-align-last: left;
}

.feedback-contact p {
  font-size: 15px;
  margin-bottom: 12px;
}

.feedback-contact i {
  color: #003366;
  margin-right: 8px;
}

/* RIGHT FORM */
.feedback-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.feedback-form input,
.feedback-form select,
.feedback-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 15px;
}

.feedback-form textarea {
  resize: none;
}

.feedback-form button {
  width: 100%;
  padding: 14px;
  border-radius: 30px;
  background: #003366;
  color: white;
  border: none;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

.feedback-form button:hover {
  background: #1e88e5;
}

/* ========================================================
   RECENT CUSTOMER REVIEWS (LATEST 5 FEEDBACKS DISPLAY)
   ======================================================== */
.recent-feedbacks-section {
  max-width: 1200px;
  margin: 60px auto 0;
  padding-top: 45px;
  border-top: 2px solid #e2edf3;
}

.recent-feedbacks-header {
  text-align: center;
  margin-bottom: 35px;
}

.recent-feedbacks-header h2 {
  font-size: 28px;
  color: #003366;
  margin-bottom: 10px;
  font-weight: 700;
}

.recent-feedbacks-header p {
  font-size: 15px;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

.feedbacks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.feedback-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 6px 20px rgba(0, 51, 102, 0.07);
  border: 1px solid #e5edf2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.feedback-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 51, 102, 0.12);
}

.feedback-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
  gap: 10px;
}

.feedback-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feedback-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #003366, #1e88e5);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 17px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 51, 102, 0.2);
}

.feedback-meta h4 {
  font-size: 16px;
  color: #003366;
  margin: 0 0 3px 0;
  font-weight: 600;
}

.feedback-date {
  font-size: 12px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 4px;
}

.feedback-stars {
  color: #f39c12;
  font-size: 13px;
  letter-spacing: 2px;
  white-space: nowrap;
}

.feedback-body {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin: 0 0 16px 0;
  flex-grow: 1;
  font-style: italic;
  text-align: justify;
  text-justify: inter-word;
  text-align-last: left;
}

.feedback-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #155724;
  background: #e8f5e9;
  padding: 4px 10px;
  border-radius: 20px;
  align-self: flex-start;
  font-weight: 500;
  border: 1px solid #c8e6c9;
}

.feedback-loading,
.feedback-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 45px 20px;
  background: #ffffff;
  border-radius: 12px;
  color: #666;
  font-size: 15px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  border: 1px dashed #c9dbe7;
}


/* Modal CSS */
.modal-overlay {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  padding: 15px;
  overflow-y: auto;
}

.modal-content {
  background-color: #f1f0e6;
  padding: 30px 40px;
  border-radius: 12px;
  width: min(480px, 92%);
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  font-family: Arial, sans-serif;
}

.close-modal {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 26px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 1;
}

.close-modal:hover {
  background: rgba(0, 0, 0, 0.08);
}

.modal-content h3 {
  text-align: center;
  color: #2c3e50;
  font-size: 24px;
  margin-bottom: 25px;
  font-weight: 600;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
  color: #2c3e50;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d1d1cf;
  border-radius: 6px;
  background-color: #f9f9f9;
  font-size: 14px;
  color: #333;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2980b9;
}

.request-booking-btn {
  width: 100%;
  background-color: #2980b9;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 15px;
  transition: background 0.3s;
}

.request-booking-btn:hover {
  background-color: #1f6391;
}

.assistance-section {
  text-align: center;
  margin-top: 25px;
}

.assistance-section p {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.contact-us-btn {
  display: inline-block;
  background-color: #48a688;
  color: #fff;
  text-decoration: none;
  padding: 8px 25px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  transition: background 0.3s;
}

.contact-us-btn:hover {
  background-color: #3a8a70;
}

/* ========================================================
   RESPONSIVE DESIGN SYSTEM (MOBILE, TABLET & DESKTOP)
   ======================================================== */

/* --- TABLETS & SMALL DESKTOPS (<= 1024px) --- */
@media (max-width: 1024px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .fleets-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .experience-container {
    gap: 40px;
  }

  .experience-left h2 {
    font-size: 32px;
  }
}

/* --- TABLETS & SMALL SCREENS (<= 992px) --- */
@media (max-width: 992px) {
  .top-bar {
    padding: 8px 20px;
  }

  .navbar {
    padding: 10px 20px;
    flex-wrap: wrap;
    position: sticky;
  }

  .logo img {
    height: 55px;
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    order: 3;
    display: none;
    flex-direction: column;
    width: 100%;
    background: #e9f1f7;
    margin-top: 10px;
    padding: 15px 0 10px;
    border-top: 1px solid #c9dbe7;
    gap: 6px;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

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

  .nav-links a {
    display: block;
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 6px;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(0, 51, 102, 0.08);
  }

  .book-btn {
    padding: 8px 16px;
    font-size: 13px;
  }

  .experience-container {
    grid-template-columns: 1fr;
  }

  .about-page-container {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .feedback-container {
    grid-template-columns: 1fr !important;
    gap: 35px !important;
    width: 100% !important;
  }

  .feedback-form {
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 22px 16px !important;
  }

  .side-call,
  .float-call {
    position: fixed !important;
    left: 12px !important;
    top: auto !important;
    bottom: 18px !important;
    transform: none !important;
    padding: 10px 16px !important;
    font-size: 13px !important;
    border-radius: 25px !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.35) !important;
    z-index: 9999 !important;
  }

  .side-whatsapp,
  .float-whatsapp {
    position: fixed !important;
    right: 12px !important;
    top: auto !important;
    bottom: 18px !important;
    transform: none !important;
    padding: 10px 16px !important;
    font-size: 13px !important;
    border-radius: 25px !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.35) !important;
    z-index: 9999 !important;
  }
}

/* --- MOBILE & TABLET PORTRAIT (<= 768px) --- */
@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    text-align: center;
    gap: 6px;
    padding: 8px 15px;
    font-size: 12px;
  }

  .top-right {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .top-right span {
    margin-left: 0;
  }

  .hero {
    height: 48vh;
    min-height: 280px;
    max-height: 380px;
  }

  .slides img {
    object-position: center 60%;
  }

  .hero-text {
    left: 15px;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
  }

  .hero-text h1,
  .hero-text h2 {
    font-size: clamp(20px, 5.5vw, 30px);
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0,0,0,0.9);
  }

  .dots {
    bottom: 15px;
    padding: 5px 12px;
    gap: 6px;
  }

  .booking-container {
    width: 92%;
    margin: 15px auto 35px;
    padding: 16px;
  }

  .booking-form {
    flex-direction: column;
    gap: 12px;
  }

  .booking-form input,
  .booking-form button {
    width: 100%;
    min-height: 44px;
    font-size: 15px;
  }

  .about-travels,
  .highlights,
  .comfort-section,
  .experience-section,
  .our-fleets,
  .about-page,
  .feedback-section {
    padding: 40px 20px;
  }

  .side-call,
  .float-call {
    position: fixed !important;
    left: 12px !important;
    top: auto !important;
    bottom: 18px !important;
    transform: none !important;
    padding: 10px 16px !important;
    font-size: 14px !important;
    border-radius: 25px !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.35) !important;
    z-index: 9999 !important;
  }

  .side-whatsapp,
  .float-whatsapp {
    position: fixed !important;
    right: 12px !important;
    top: auto !important;
    bottom: 18px !important;
    transform: none !important;
    padding: 10px 16px !important;
    font-size: 14px !important;
    border-radius: 25px !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.35) !important;
    z-index: 9999 !important;
  }

  .about-hero {
    height: 180px;
  }

  .about-hero h1 {
    font-size: 30px;
  }

  .feedback-form {
    padding: 25px 20px;
  }
}

/* --- STANDARD MOBILE SCREENS (<= 576px) --- */
@media (max-width: 576px) {
  .navbar {
    padding: 8px 15px;
  }

  .logo img {
    height: 46px;
  }

  .book-btn {
    padding: 7px 13px;
    font-size: 12px;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .highlight-item {
    align-items: center;
  }

  .highlight-item .icon {
    width: 70px;
    height: 65px;
    font-size: 28px;
    flex-shrink: 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .fleets-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .fleet-card {
    padding: 15px;
  }

  .fleet-card img {
    max-width: 180px;
  }

  .features-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .mv-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .team-highlights {
    grid-template-columns: 1fr;
  }

  .why-container {
    grid-template-columns: 1fr;
  }

  .why-left {
    padding: 30px 15px;
  }

  .why-right img {
    height: 240px;
  }

  .modal-content {
    padding: 22px 16px;
    width: 94%;
    max-height: 88vh;
    overflow-y: auto;
  }

  .modal-content h3 {
    font-size: 20px;
    margin-bottom: 18px;
  }

  .request-booking-btn {
    padding: 11px;
    font-size: 15px;
  }
}

/* --- SMALL MOBILE PHONES (<= 375px & 320px) --- */
@media (max-width: 375px) {
  .navbar {
    padding: 8px 10px;
  }

  .logo img {
    height: 40px;
  }

  .book-btn {
    padding: 6px 10px;
    font-size: 11px;
  }

  .side-call,
  .float-call {
    left: 8px;
    bottom: 15px;
    padding: 8px 12px;
    font-size: 12px;
  }

  .side-whatsapp,
  .float-whatsapp {
    right: 8px;
    bottom: 15px;
    padding: 8px 12px;
    font-size: 12px;
  }

  .comfort-left h2,
  .about-left h2,
  .highlights-title,
  .experience-left h2 {
    font-size: 22px;
  }

  .feedback-form {
    padding: 18px 12px;
  }
}
