/* ============================================
   SERVICES PAGE - SPECIFIC STYLES
   ============================================ */

/* ============ SERVICES HERO ============ */
.services-hero {
  background:
    linear-gradient(90deg, rgba(220,235,255,0.92) 0%, rgba(220,235,255,0.55) 45%, rgba(220,235,255,0.1) 75%),
    url('image/flighttips.jpeg') center/cover no-repeat;
  padding: 70px 0 100px;
  position: relative;
}
.services-hero h1 {
  font-size: 45px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.1;
}
.services-hero .hero-text {
  color: #313131;
  font-size: 15px;
  max-width: 480px;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

/* ============ SECTION HEAD ============ */
.section-head {
  text-align: center;
  margin-bottom: 40px;
}
.section-head h2 {
  font-weight: 700;
  font-size: 30px;
  color: var(--text-dark);
  margin-bottom: 5px;
}
.section-head .head-divider {
  width: 60px;
  height: 3px;
  background: var(--primary-blue);
  border-radius: 2px;
  margin: 0 auto 13px;
}
.section-sub {
  color: #212121;
  font-size: 16px;
  margin: 0;
}

/* ============ WHAT WE OFFER ============ */
.what-we-offer {
  padding: 30px 0 30px;
}

.offer-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.offer-img-wrap {
  position: relative;
  height: 180px;
  /* overflow: hidden; */
}
.offer-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.offer-icon {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--primary-blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  border: 3px solid #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.offer-body {
  padding: 35px 22px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.offer-body h6 {
  font-weight: 700;
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.offer-body > p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 18px;
  flex: 1;
}

.offer-list {
  list-style: none;
  padding: 16px 0 0;
  margin: 0;
  border-top: 1px solid var(--border-light);
  text-align: left;
}
.offer-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.offer-list li:last-child { margin-bottom: 0; }
.offer-list li i {
  color: var(--primary-blue);
  font-size: 14px;
  flex-shrink: 0;
}

/* ============ WHY CHOOSE TRAVELERA ============ */
.why-choose {
  padding: 20px 0 40px;
}
.why-card {
  background: #EEF3FB;
  border-radius: 14px;
  padding: 35px 30px;
}
.why-card .section-head { margin-bottom: 30px; }
.why-card .section-head h2 { font-size: 26px;margin-bottom: 10px;}
.col-why {
  text-align: center;
  border-right: 1px solid #d2d2d2;
}
.col-why:last-child { border-right: none; }

.why-item {
  text-align: center;
  padding: 0 8px;
}
.why-icon {
  width: 56px;
  height: 56px;
  color: var(--primary-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin-bottom: 18px;
}
.why-item h6 {
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.why-item p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

/* ============ SERVICES CTA ============ */
.services-cta {
  padding: 0 0 30px;
}
.services-cta-card {
  background: #083b95;
  color: #fff;
  padding: 20px 35px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}
.services-cta-card::before {
  content: "\f072";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 10px;
  top: 28%;
  transform: translateY(-50%) rotate(-30deg);
  font-size: 50px;
  opacity: 0.08;
  pointer-events: none;
}
.cta-inner-svc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cta-left-svc {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  min-width: 250px;
}
.cta-icon-svc {
  width: 70px;
  height: 70px;
  background:rgb(53 85 229);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  flex-shrink: 0;
}
.cta-text-svc h5 {
  margin: 0 0 10px;
  font-weight: 600;
  font-size: 24px;
}
.cta-text-svc p {
  margin: 0;
  opacity: 0.9;
  font-size: 13px;
  line-height: 1.5;
}
.cta-right-svc {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.btn-svc-green {
  background: var(--whatsapp-green);
  color: #fff;
  padding: 11px 22px;
  border-radius: 6px;
  font-weight: 500;
  border: none;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.btn-svc-green:hover { background: var(--whatsapp-green-dark); color: #fff; }
.btn-svc-outline {
  background: transparent;
  color: #fff;
  padding: 11px 22px;
  border-radius: 6px;
  font-weight: 500;
  border: 1px solid #fff;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.cta-right-svc i.fab.fa-whatsapp {
    font-size: 22px;
}
.btn-svc-outline:hover { background: #fff; color: var(--primary-blue); }

.services-hero .divider-line{
    width: 70px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 2px;
    margin-bottom: 15px;
}
/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1199px) {
  /* Why Choose - 5 columns gets cramped, breaks to wraps */
  .col-why { flex: 0 0 33.333%; max-width: 33.333%; }
}

@media (max-width: 991px) {
  .services-hero h1 { font-size: 42px; }
  .section-head h2 { font-size: 26px; }
  .services-hero {
    padding: 50px 0 80px;
    background:
      linear-gradient(180deg, rgba(220,235,255,0.92) 0%, rgba(220,235,255,0.6) 60%, rgba(220,235,255,0.3) 100%),
      url('https://images.unsplash.com/photo-1542296332-2e4473faf563?w=1200&auto=format&fit=crop&q=80') center/cover no-repeat;
  }
  .col-why { flex: 0 0 50%; max-width: 50%; }
  .why-card { padding: 40px 20px; }
  .col-why { border-right: none; }
}

@media (max-width: 768px) {
  .services-hero h1 { font-size: 34px; }
  .services-hero .hero-text { font-size: 14px; }
  .section-head h2 { font-size: 22px; }
  .what-we-offer { padding: 50px 0 30px; }
  .why-card { padding: 30px 15px; }
  .services-cta-card { padding: 22px 20px; }
  .services-cta-card::before { display: none; }
  .cta-inner-svc {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .cta-left-svc {
    flex-direction: column;
    text-align: center;
    min-width: 0;
  }
  .cta-right-svc {
    justify-content: center;
    width: 100%;
    flex-direction: column;
  }
  .cta-right-svc a {
    flex: 1;
    justify-content: center;
    min-width: 140px;
  }
  .cta-text-svc h5 { font-size: 17px; }
}

@media (max-width: 576px) {
  .services-hero { padding: 40px 0 70px; }
  .services-hero h1 { font-size: 28px; }
  .col-why { flex: 0 0 100%; max-width: 100%; }
  .why-item { padding: 10px 0; }
  .offer-img-wrap { height: 160px; }
  .offer-body { padding: 30px 18px 18px; }
}