/* css/service.css */

/* Hero Section */
#srv-hero {
  position: relative;
  padding: 140px 0 80px;
  background: var(--navy);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.srv-hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(rgba(14, 24, 42, 0.85), rgba(14, 24, 42, 0.95)), url('../assets/img/hero-checkss.png');
  background-size: cover;
  background-position: center;
  pointer-events: none;
}
.srv-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.srv-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.1;
}
.srv-hero-title span {
  color: var(--gold);
}
.srv-hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}


/* Detailed Services Redesign (Alternating Split Layout) */
#detailed-services {
  padding: 100px 0 40px 0;
  background: #f9fafb;
}
.service-split-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 100px;
}
/* Alternate every even row to text-left, image-right */
.service-split-row:nth-child(even) {
  flex-direction: row-reverse;
}

.service-img-wrap {
  flex: 1;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.service-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.service-split-row:hover .service-img-wrap img {
  transform: scale(1.03);
}
.service-floating-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #fff;
  padding: 24px 32px;
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 2;
  transform: scale(0.9);
}
/* Move badge to bottom-left on even rows */
.service-split-row:nth-child(even) .service-floating-badge {
  right: auto;
  left: -20px;
}
.service-floating-badge .bi {
  width: 50px;
  height: 50px;
  background: rgba(245, 166, 35, 0.15);
  color: var(--gold-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.service-floating-badge .bt {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  font-family: 'Playfair Display', serif;
}
.service-floating-badge .bst {
  font-size: 0.85rem;
  color: var(--muted);
}

.service-text-content {
  flex: 1;
}
.service-text-content .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 166, 35, 0.1);
  color: var(--gold-dark);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.service-text-content .sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--navy);
  margin-bottom: 24px;
  line-height: 1.2;
}
.service-text-content .sec-title span {
  color: var(--gold);
}
.service-text-content .sec-desc {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 30px;
}
.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 35px 0;
  border-left: 2px solid var(--gold);
  padding-left: 20px;
}
.service-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #333;
  margin-bottom: 12px;
  font-weight: 500;
}
.service-features li i {
  color: #25d366;
}

@media(max-width: 992px) {
  .service-split-row,
  .service-split-row:nth-child(even) {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
  }
  .service-floating-badge,
  .service-split-row:nth-child(even) .service-floating-badge {
    bottom: -15px;
    right: 20px;
    left: auto;
    padding: 16px 24px;
    transform: scale(0.9);
  }
  .service-img-wrap img {
    height: 350px;
  }
}
/* Enquiry CTA Section */
#srv-cta {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  padding: 100px 0;
  color: #fff;
  text-align: center;
}
#srv-cta .sec-title {
  color: #fff;
}
#srv-cta .sec-desc {
  margin: 0 auto 40px;
  color: rgba(255,255,255,0.85);
}
.srv-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================
   FLEET SECTION
========================================= */
#fleet {
  padding: 100px 0;
  background: var(--gray-50);
}
.fleet-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}
.fleet-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.fleet-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.fleet-img-wrap {
  position: relative;
  height: 220px;
  background: #f4f5f7;
  overflow: hidden;
}
.fleet-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.fleet-card:hover .fleet-img-wrap img {
  transform: scale(1.05);
}
.fleet-badge {
  position: absolute;
  top: 15px; left: 15px;
  background: var(--navy);
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}
.fleet-badge.popular {
  background: var(--gold-dark);
}
.fleet-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.fleet-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}
.fleet-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--navy);
  font-weight: 800;
}
.fleet-price {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-dark);
}
.fleet-price span {
  font-size: 0.75rem;
  color: #888;
  font-weight: 500;
}
.fleet-models {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 20px;
  font-weight: 500;
}
.fleet-features {
  list-style: none;
  padding: 0; margin: 0 0 24px 0;
  flex: 1;
}
.fleet-features li {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.fleet-features li i {
  color: #27ae60;
  font-size: 0.8rem;
}
.fleet-btn {
  width: 100%;
  text-align: center;
  padding: 12px;
  background: rgba(37, 211, 102, 0.1);
  color: #25D366;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.fleet-btn:hover {
  background: #25D366;
  color: #fff;
}

/* =========================================
   ROUTES SECTION
========================================= */
#routes {
  padding: 100px 0;
  background: #fff;
}
.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}
.route-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 300px;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  group: true;
}
.route-card img {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.6s ease;
}
.route-card:hover img {
  transform: scale(1.08);
}
.route-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(14,24,42,0.95) 0%, rgba(14,24,42,0.4) 50%, rgba(0,0,0,0) 100%);
  z-index: 2;
}
.route-content {
  position: relative;
  z-index: 3;
  padding: 30px;
  width: 100%;
  color: #fff;
}
.route-badge {
  display: inline-block;
  background: rgba(245,166,35,0.9);
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.route-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.route-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 15px;
}
.route-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: gap 0.3s ease;
}
.route-card:hover .route-btn {
  gap: 10px;
}

/* =========================================
   TESTIMONIALS SECTION
========================================= */
#reviews {
  padding: 100px 0;
  background: var(--navy);
  color: #fff;
}
.rev-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.rev-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 30px;
  border-radius: 20px;
}
.rev-stars { color: var(--gold); margin-bottom: 15px; }
.rev-text { font-size: 1.05rem; line-height: 1.6; color: rgba(255,255,255,0.9); margin-bottom: 20px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 15px; margin-top: auto; }
.t-av { width: 45px; height: 45px; border-radius: 50%; overflow: hidden; border: 2px solid var(--gold); }
.t-av img { width: 100%; height: 100%; object-fit: cover; }
.t-nm { font-weight: 700; color: #fff; font-size: 1.05rem; margin-bottom: 2px; }
.t-rl { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

/* =========================================
   MOBILE RESPONSIVENESS
========================================= */
@media(max-width: 992px) {
  .fleet-grid, .routes-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}
@media(max-width: 768px) {
  body, html { overflow-x: hidden; }
  #srv-hero { padding: 120px 0 60px; }
  .srv-hero-title { font-size: 2.2rem; }
  .srv-hero-desc { font-size: 1rem; padding: 0 10px; word-wrap: break-word; }
  
  #services-list, #fleet, #routes, #reviews, #srv-cta { padding: 60px 0; }
  
  .srv-grid { grid-template-columns: 1fr; gap: 30px; }
  .fleet-grid { grid-template-columns: 1fr; gap: 30px; }
  .routes-grid { grid-template-columns: 1fr; gap: 20px; }
  .rev-grid { grid-template-columns: 1fr; gap: 20px; }
  
  .sec-title { font-size: 2rem; line-height: 1.3; }
  .sec-desc { font-size: 0.95rem; word-wrap: break-word; }
}

/* =========================================
   ENQUIRY CTA SECTION
========================================= */
#srv-cta {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  padding: 100px 0;
  color: #fff;
  text-align: center;
}
#srv-cta .sec-title {
  color: #fff;
}
#srv-cta .sec-desc {
  margin: 0 auto 40px;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
}
.srv-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
