﻿/* ===== Parent Section ===== */
.destFlighOfr {
    padding: 30px 0 40px 0;
    background: #fff;
    position: relative;
    z-index: 0;
}
.destFlighOfr .topBar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.destFlighOfr .topBar h2 {
  font-size: 26px;
  font-weight: 700;
  color: #111;
  margin: 0;
}

.destFlighOfr .topBar p {
  font-size: 15px;
  color: #666;
  margin-top: 6px;
  flex-basis: 100%;
}

.destFlighOfr .navArrows {
  display: flex;
  gap: 10px;
}

.destFlighOfr .navArrows button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s ease;
}

.destFlighOfr .navArrows button:hover {
  background: #f5f5f5;
  border-color: #999;
}

/* ===== Carousel Card ===== */
.destFlighOfr .owl-carousel .item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 340px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
a.fulsls {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
}
.destFlighOfr .owl-carousel .item:hover a.fulsls {
    z-index: 2;
}

.destFlighOfr .owl-carousel .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.destFlighOfr .owl-carousel .item:hover img {
  transform: scale(1.05);
}

.destFlighOfr .owl-carousel .item:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Overlay Text */
.destFlighOfr .item .info {
    position: absolute;
    bottom: 15px;
    left: 20px;
    color: #fff;
    text-align: left;
    z-index: 1;
    transition: all 0.4s;
}

.destFlighOfr .item:hover .info {
    bottom: 82px;
}

.destFlighOfr .item .info h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 4px;
}

.destFlighOfr .item .info span {
  font-size: 14px;
  color: #e0e0e0;
}

/* Owl default nav hidden */
.owl-nav, .owl-dots {
  display: none;
}

.horCnts {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1;
    transition: all 0.4s;
}
.destFlighOfr .item:hover .horCnts {
    bottom: 17px;
}
.horCnts p {
    margin: 0;
    color: #fff;
    font-size: 14px;
}
.destFlighOfr .horCnts img {
    width: auto;
    height: auto;
    max-width: max-content;
}
.destFlighOfr .owl-carousel .item:hover:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 105%;
    height: 105%;
    background-image: url(../static/media/ovrimgDl.png);
    transition: all 0.4s;
}
.header {
    background-color: transparent;
    border-bottom: 0;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    padding-top: 14px;
}

.header .phone-text .hours,
.header .phone-text .num {
    color: #fff;
}
.header .logo img.hHoms {
    display: none;
}
.header .logo img.vHoms {
    display: inline-block;
}


/* ===== Responsive ===== */
@media (max-width: 768px) {
  .destFlighOfr {
    padding: 40px 4%;
  }
  .destFlighOfr .topBar h2 {
    font-size: 22px;
  }
  .destFlighOfr .navArrows {
    margin-top: 15px;
  }
}
/* ========== Top Flight Section ========== */
.topFlightOfr {
  padding: 20px 0 65px 0;
  background: #fff;
}

.topFlightOfr .topHead {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.topFlightOfr .topHead h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  color: #1a1a1a;
}

.topFlightOfr .topHead p {
  font-size: 15px;
  color: #666;
  margin-top: 8px;
}

/* Arrows */
.topFlightOfr .navArrows {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.topFlightOfr .navArrows button {
  width: 40px;
  height: 40px;
  border: 1px solid #d1d1d1;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  font-size: 18px;
  color: #444;
  transition: 0.3s;
}

.topFlightOfr .navArrows button:hover {
  border-color: #007bff;
  color: #007bff;
}

/* Tabs */
.topFlightOfr .tabs {
  display: flex;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 12px;
  margin-bottom: 35px;
}

.topFlightOfr .tabs a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.topFlightOfr .tabs a.active {
  background: #e7f0ff;
  color: #007bff;
  font-weight: 600;
}

/* Carousel Cards */
.topFlightOfr .owl-carousel .item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  padding: 14px 18px;
  transition: all 0.3s ease;
}

.topFlightOfr .owl-carousel .item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.topFlightOfr .item img {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  object-fit: cover;
}

.topFlightOfr .item h4 {
  font-size: 16px;
  color: #333;
  margin: 0;
  font-weight: 400;
}

.topFlightOfr .item h4 b {
  font-weight: 500;
}

.owl-nav, .owl-dots { display: none; }

/* Responsive */
@media (max-width: 768px) {
  .topFlightOfr {
    padding: 50px 4%;
  }
  .topFlightOfr .topHead {
    flex-direction: column;
    align-items: flex-start;
  }
  .topFlightOfr .tabs {
    flex-wrap: wrap;
    gap: 16px;
  }
}
/* ==========================
   DISCOVER SECTION (PARENT)
========================== */
.discoverSmtng {
    position: relative;
    background: url(/static/media/disbg.jpg) center center / 100% no-repeat;
    color: #fff;
    padding: 55px 0 45px 0;
    overflow: hidden;
}
.discoverSmtng:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: hsl(0deg 0% 0% / 50%);
}
.discoverSmtng .text-block {
    position: relative;
    display: flex;
    align-items: self-end;
    justify-content: space-between;
}

.discoverSmtng h2 {
  position: relative;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
  z-index: 2;
  margin-bottom: 25px;
}

.discoverSmtng h2 span {
  display: block;
  font-weight: 600;
}

.discoverSmtng p {
  color: #f3f3f3;
  font-size: 15px;
  line-height: 1.8;
  max-width: 640px;
}

.discoverSmtng .highlight {
  color: #f7ca3e;
  font-weight: 600;
}

/* === Buttons Section === */
.discoverSmtng .action-boxes {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 35px;
}

.discoverSmtng .action-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 1;
    height: 53px;
    border: 2px solid #fff;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    max-width: 239px;
}
.discoverSmtng .disLeft {
    width: 60%;
}
.discoverSmtng .action-boxes {
    width: 40%;
}

.discoverSmtng .action-box i {
  font-size: 22px;
}

/* Call box */
.discoverSmtng .call-box {
  background: rgba(247, 202, 62, 0.15);
  border-color: #f7ca3e;
  color: #f7ca3e;
}

.discoverSmtng .call-box:hover {
  background: rgba(247, 202, 62, 0.25);
}

/* Enquiry box */
.discoverSmtng .enquiry-box {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}

.discoverSmtng .enquiry-box:hover {
  background: rgba(255,255,255,0.2);
}

/* Bottom note */
.discoverSmtng .note {
    margin-top: 0;
    font-size: 16px;
    color: #eee;
    font-weight: 400;
    width: 100%;
}

/* ==========================
   RESPONSIVE
========================== */
@media (max-width: 992px) {
  .discoverSmtng h2 { font-size: 40px; }
}

@media (max-width: 768px) {
  .discoverSmtng {
    padding: 90px 0;
  }
  .discoverSmtng .sun-shape {
    width: 160px;
    height: 160px;
    top: -30px;
    left: -30px;
  }
  .discoverSmtng h2 { font-size: 32px; }
  .discoverSmtng .action-boxes { flex-direction: column; }
  .discoverSmtng .action-box { width: 100%; height: 60px; }
  .discoverSmtng .note { font-size: 15px; }
}

/* ======================
   FAQ Section (.fqNw)
====================== */
.fqNw {
  padding: 65px 0 80px 0;
  width: 100%;
}

.fqNw .headRow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.fqNw .headRow h2 {
  font-size: 28px;
  font-weight: 700;
  color: #111;
}

.fqNw .headRow a {
  color: #007bff;
  font-weight: 500;
  text-decoration: none;
  font-size: 16px;
}
.fqNw .headRow a:hover {
  text-decoration: underline;
}

/* === FAQ Grid === */
.fqNw .faqGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 50px;
}

.fqNw .faqItem {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 15px;
  cursor: pointer;
  position: relative;
}

.fqNw .faqItem h3 {
  font-size: 17px;
  font-weight: 500;
  margin: 0;
  padding-right: 25px;
  transition: color 0.3s ease;
}

.fqNw .faqItem h3:hover {
  color: #007bff;
}

/* Arrow Icon */
.fqNw .faqItem::after {
  content: '\f078';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 0;
  font-size: 14px;
  color: #555;
  transition: transform 0.3s ease;
}

.fqNw .faqItem.active::after {
  transform: rotate(180deg);
}

/* FAQ Answer (hidden by default) */
.fqNw .faqAnswer {
  display: none;
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

.fqNw .faqItem.active .faqAnswer {
  display: block;
}

/* === Responsive === */
@media (max-width: 768px) {
  .fqNw .faqGrid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
.upsSection .upsInr {
flex-wrap: wrap;
}

.upsSection {
padding: 0;
}

.upsSection .upsBox {
    padding: 15px 0;
}

.upsSection .upsBox {
    padding: 15px 10px;
    min-width: 50%;
    flex: 1 1 50%;
}
.upsSection .upsBox:last-child {
    border-bottom: 1px solid #eaeaea;
}
.discoverSmtng {
    padding: 22px 0 20px 0;
}
.discoverSmtng .text-block {
    flex-wrap: wrap;
}
.discoverSmtng .disLeft {
    width: 100%;
}
.discoverSmtng .action-boxes {
    width: 100%;
    margin-top: 3px;
}
.discoverSmtng h2 {
    margin-bottom: 6px;
}



}
