*{box-sizing:border-box}

:root{
    --dfd-navy:#07172f;
    --dfd-navy-2:#0b2346;
    --dfd-blue:#145da0;
    --dfd-sky:#38bdf8;
    --dfd-yellow:#fbbf24;
    --dfd-yellow-2:#f59e0b;
    --dfd-text:#101b31;
    --dfd-muted:#64748b;
    --dfd-bg:#f4f7fb;
    --dfd-white:#ffffff;
    --dfd-border:#dfe7f2;
    --dfd-shadow:0 22px 55px rgba(7,23,47,.10);
}

.deals-wrap{
  background:#fff;
  color:var(--text);
  overflow:hidden;
}

.deals-wrap .container{
  max-width:1250px;
  margin:0 auto;
  padding:0 22px;
}

.section-kicker{
  display:block;
  font-size:11px;
  font-weight:800;
  color:var(--dfd-blue);
  text-transform:uppercase;
  letter-spacing:.14em;
  margin-bottom:10px;
}

.section-title{
  font-size:32px;
  line-height:1.15;
  font-weight:800;
  color:var(--navy);
  margin:0;
 letter-spacing:-.4px;
 margin-bottom:30px;
}
.section-title:after {
    content: "";
    display: block;
    width: 84px;
    height: 4px;
    border-radius: 10px;
    margin-top: 17px;
    background: var(--dfd-yellow);
}
.section-sub{
  max-width:760px;
  margin:10px 0 0;
  color:var(--muted);
  font-size:15px;
  line-height:1.7;
}

/* HERO */
.deals-hero{
  padding:46px 0 52px;
  background: #0E172A;
}
    


.hero-box{
  position:relative;
  min-height:500px;
  border-radius:30px;
  padding:54px 48px;
  overflow:hidden;
  display:grid;
  grid-template-columns:1fr 350px;
  gap:42px;
  align-items:center;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 18px 46px rgba(15,23,42,.08);
}

.hero-content{position:relative;z-index:2}

.hero-content h1{
  max-width:720px;
  margin:0 0 28px;
  font-size:46px;
  line-height:1.08;
  letter-spacing:-1.3px;
  font-weight:850;
  color:#10204a;
}

/* SEARCH */
.dfd-search-panel{width:100%}

.dfd-trip-tabs{
  display:flex;
  gap:10px;
  margin-bottom:24px;
  flex-wrap:wrap;
}

.dfd-trip-type{
  border:1px solid #d9e6f7;
  min-width:118px;
  background:#f4f8ff;
  color:#17315f;
  padding:11px 16px;
  border-radius:999px;
  font-size:14px;
  font-weight:800;
  cursor:pointer;
  transition:.22s ease;
}

.dfd-trip-type.active,
.dfd-trip-type:hover{
  background:var(--dfd-blue);
  color:#fff;
  border-color:var(--dfd-blue);
}

.dfd-flight-search{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  align-items:stretch;
  position:relative;
}

.dfd-field{
  min-height:50px;
  border:1px solid var(--line);
  border-radius:16px;
  padding:12px 13px;
  background:#16243a;
  display:flex;
  align-items:center;
  color:#fff;
  gap:11px;
  min-width:0;
  overflow:hidden;
  transition:.22s ease;
}

.dfd-field:hover,
.dfd-field:focus-within{
  border-color:#b8cbe4;
  box-shadow:0 10px 24px rgba(15,23,42,.06);
}

.dfd-icon{
  width:38px;
  height:38px;
  min-width:38px;
  border-radius:12px;
  background:#f2f7fd;
  color:var(--navy);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:15px;
}

.dfd-field > div{
  width:100%;
  min-width:0;
  overflow:hidden;
}

.dfd-field label{
  display:block;
  font-size:11px;
  color:var(--muted);
  font-weight:700;
  margin-bottom:6px;
  line-height:1;
  white-space:nowrap;
}

.dfd-field input,
.dfd-field select {
  width: 100%;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.15;
  color: #ffffff !important;
  background-color: #16243A !important;
  border: 0;
  outline: none;
  box-shadow: none;
}

/* Autofill background fix */
.dfd-field input:-webkit-autofill,
.dfd-field input:-webkit-autofill:hover,
.dfd-field input:-webkit-autofill:focus,
.dfd-field input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px #16243A inset !important;
  box-shadow: 0 0 0 1000px #16243A inset !important;
  -webkit-text-fill-color: #ffffff !important;
  caret-color: #ffffff !important;
  transition: background-color 9999s ease-in-out 0s;
}

/* Placeholder color */
.dfd-field input::placeholder {
  color: #aab3c5 !important;
  opacity: 1;
}

/* Date input icon fix */
.dfd-field input[type="date"] {
  color-scheme: dark;
}

.dfd-field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: .75;
}
.dfd-field select{
  appearance:none;
  -webkit-appearance:none;
}

.dfd-search-btn{
  min-height:50px;
  border:0;
  border-radius:16px;
  background:#EEB10F;
  color:#fff;
  font-size:20px;
  font-weight:700;
  cursor:pointer;
  transition:.22s ease;
  grid-column:3/4;
}

.dfd-search-btn:hover{
  background:#EEB10F;
}

.dfd-swap-btn{
  position:absolute;
  left:calc(33.333% - 7px);
  top:35px;
  transform:translate(-50%,-50%);
  width:42px;
  height:42px;
  border-radius:50%;
  border:1px solid var(--line);
  background:#fff;
  color:var(--navy);
  font-size:16px;
  z-index:8;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 8px 20px rgba(15,23,42,.10);
}

.dfd-multi-box{display:none;margin-top:26px}
.dfd-search-panel.is-multi .dfd-flight-search{display:none}
.dfd-search-panel.is-multi .dfd-multi-box{display:block}

.dfd-multi-traveller{
  max-width:390px;
  margin-bottom:30px;
}

.dfd-multi-box h3{
  font-size:21px;
  font-weight:750;
  color:#071426;
  margin:24px 0 16px;
}

.dfd-multi-row{
  display:grid;
  grid-template-columns:1.1fr 1.1fr 1fr;
  gap:16px;
  position:relative;
  margin-bottom:26px;
}

.dfd-multi-swap{
  position:absolute;
  left:33.9%;
  top:50%;
  transform:translate(-50%,-50%);
  width:44px;
  height:44px;
  border-radius:50%;
  border:1px solid var(--line);
  background:#fff;
  color:var(--navy);
  z-index:5;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:17px;
  box-shadow:0 8px 20px rgba(15,23,42,.09);
}

.dfd-multi-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  margin-top:12px;
}

.dfd-add-flight{
  border:1px solid #d9e6f7;
  background:#f4f8ff;
  color:var(--navy);
  border-radius:999px;
  padding:14px 22px;
  font-size:16px;
  font-weight:800;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap:10px;
}

.dfd-multi-search{width:170px}

/* HERO IMAGES */
.hero-collage{
  height:380px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  position:relative;
  z-index:2;
}

.hero-collage img{
  width:100%;
  object-fit:cover;
  border-radius:22px;
  box-shadow:0 12px 28px rgba(15,23,42,.10);
}

.hero-collage img:nth-child(1){height:185px}
.hero-collage img:nth-child(2){height:145px}
.hero-collage img:nth-child(3){height:178px;margin-top:-20px}
.hero-collage img:nth-child(4){height:205px;margin-top:-62px}

/* DEALS */
.travel-deals-section{
  padding:58px 0 70px;
  background:#fff;
}

.deals-head,
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:28px;
}

.explore-link{
  color:#111827;
  text-decoration:none;
  font-size:14px;
  font-weight:600;
}

.travel-deals-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.travel-deal-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:10px;
  min-height:325px;
  box-shadow:var(--shadow);
  transition:.25s ease;
  overflow:hidden;
}

.travel-deal-card:hover{
  transform:translateY(-5px);
  box-shadow:var(--shadow-hover);
}

.travel-deal-card img{
  width:100%;
  height:158px;
  object-fit:cover;
  border-radius:16px;
  display:block;
}

.deal-info{
  padding:16px 9px 10px;
}

.deal-info h3{
  color:#111827;
  font-size:20px;
  font-weight:850;
}

.deal-info p{
  margin:0 0 3px;
  color:#1f2937;
  font-size:16px;
  font-weight:650;
}

.deal-info p span{
  color:#94a3b8;
  padding:0 5px;
}

.price-row{
  margin-top:38px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.price-row strong{
  font-size:21px;
  color:#111827;
  font-weight:850;
}

.deal-cta{
  width:34px;
  height:34px;
  border-radius:50%;
  border:0;
  background:var(--dfd-blue);
  color:#fff;
  cursor:pointer;
}

/* AIRLINES */
.airline-partners-section{
  padding:70px 0;
  background:#f5f9ff;
}

.airline-partners-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.airline-partner-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:16px;
  box-shadow:var(--shadow);
  transition:.25s ease;
  overflow:hidden;
}

.airline-partner-card:hover{
  transform:translateY(-5px);
  box-shadow:var(--shadow-hover);
}

.airline-plane{
  width:100%;
  height:215px;
  object-fit:cover;
  border-radius:17px;
  display:block;
}

.airline-logo-text{
  min-height:58px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  font-size:17px;
  font-weight:850;
  letter-spacing:1.5px;
  color:#172554;
}

.airline-logo-text.red{color:#e11d48}
.airline-logo-text.red span{color:#262626}
.airline-logo-text.blue span{color:#07164a}
.airline-logo-text.black{color:#262626;font-size:17px}
.airline-logo-text.italic{font-style:italic}
.airline-logo-text.alaska{color:#073b66;font-size:22px;letter-spacing:0;font-style:italic}
.airline-logo-text.ana{color:#1d4ed8;font-size:22px}

.airline-btn{
  height:42px;
  border-radius:11px;
  background:#071426;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-size:13px;
  font-weight:800;
}

/* CONTENT */
.travel-content,
.help{
  padding:70px 0;
  background:#fff;
}

.content-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
}

.content-box{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:30px;
  box-shadow:0 10px 28px rgba(15,23,42,.05);
}

.content-box h3{
  font-size:18px;
  margin:22px 0 9px;
  color:var(--navy);
  font-weight:850;
}

.content-box h3:first-child{margin-top:0}

.content-box p,
.content-box li{
  font-size:14px;
  line-height:1.75;
  color:#334155;
}

.content-box ol{
  margin:8px 0 0 18px;
  padding:0;
}

/* FAQ */
.faq-list{
  margin-top:28px;
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
}

.faq-item{
  background:#fff;
  border:1px solid var(--line);
  border-radius:10px;
  padding:0;
  box-shadow:0 8px 20px rgba(15,23,42,.035);
  overflow:hidden;
  transition:.25s ease;
}



.faq-q{
  width:100%;
  border:0;
  background:#fff;
  padding:15px 26px;
  text-align:left;
  font-size:18px;
  font-weight:850;
  color:var(--navy);
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.faq-q span:first-child{
  line-height:1.35;
}
.faq-q span {
    font-size: 16px;
    font-weight: 600;
}
.faq-toggle{
  position:relative;
  width:22px;
  height:22px;
  flex-shrink:0;
}

.faq-toggle::before,
.faq-toggle::after{
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  width:15px;
  height:2px;
  background:var(--navy);
  border-radius:999px;
  transform:translate(-50%,-50%);
  transition:.25s ease;
}

.faq-toggle::after{
  width:2px;
  height:15px;
}

.faq-item.active .faq-toggle::after{
  opacity:0;
  transform:translate(-50%,-50%) scaleY(0);
}

.faq-a{
  max-height:0;
  overflow:hidden;
  opacity:0;
  padding:0 26px;
  color:var(--muted);
  font-size:15px;
  line-height:1.75;
  transition:max-height .3s ease, opacity .3s ease, padding .3s ease;
}

.faq-item.active .faq-a{
  max-height:260px;
  opacity:1;
  padding:0 26px 24px;
}

@media(max-width:760px){
  .faq-q{
    font-size:15px;
    padding:18px;
  }

  .faq-a{
    font-size:14px;
    padding:0 18px;
  }

  .faq-item.active .faq-a{
    padding:0 18px 18px;
  }
}

/* MODAL */
.flight-modal{
  position:fixed;
  inset:0;
  background:rgba(7,20,38,.72);
  backdrop-filter:blur(6px);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:99999;
  padding:20px;
}

.flight-modal.active{display:flex}

.modal-box{
  width:100%;
  max-width:500px;
  background:#fff;
  border-radius:24px;
  padding:34px;
  text-align:center;
  position:relative;
  box-shadow:0 28px 80px rgba(0,0,0,.28);
}

.modal-close{
  position:absolute;
  right:18px;
  top:14px;
  width:38px;
  height:38px;
  border:0;
  border-radius:50%;
  background:#eef4fa;
  font-size:26px;
  cursor:pointer;
}

.modal-box h2{
  margin:0 0 8px;
  font-size:27px;
}

.modal-box p{
  margin:0 0 22px;
  color:var(--muted);
}

.modal-form{
  display:grid;
  gap:13px;
}

.modal-form input{
  height:52px;
  border:1px solid #dbe7f2;
  border-radius:13px;
  padding:0 16px;
  outline:0;
}

.modal-form button{
  height:54px;
  border:0;
  border-radius:13px;
  background:var(--blue);
  color:#fff;
  font-size:16px;
  font-weight:850;
}

/* RESPONSIVE */
@media(max-width:1180px){
  .hero-box{
    grid-template-columns:1fr;
    padding:42px;
  }

  .hero-collage{display:none}

  .dfd-flight-search{grid-template-columns:1fr 1fr}

  .dfd-search-btn{grid-column:1/-1}

  .dfd-swap-btn{display:none}

  .dfd-multi-row{grid-template-columns:1fr 1fr}

  .dfd-multi-row .dfd-field:last-child{grid-column:1/-1}

  .dfd-multi-swap{display:none}
}

@media(max-width:1024px){
  .travel-deals-grid,
  .airline-partners-grid{grid-template-columns:repeat(2,1fr)}

  .content-grid{grid-template-columns:1fr}
}

@media(max-width:760px){
  .deals-wrap .container{padding:0 16px}

  .deals-hero{padding:24px 0 38px}

  .hero-box{
    min-height:auto;
    padding:26px 18px;
    border-radius:22px;
  }

  .hero-content h1{
    font-size:32px;
    letter-spacing:-.7px;
  }

  .dfd-trip-type{
    min-width:auto;
    flex:1;
    font-size:13px;
    padding:11px 10px;
  }

  .dfd-flight-search,
  .dfd-multi-row,
  .travel-deals-grid,
  .airline-partners-grid,
  .faq-list{
    grid-template-columns:1fr;
  }

  .dfd-field,
  .dfd-search-btn{min-height:64px}

  .dfd-field input,
  .dfd-field select{font-size:14px}

  .dfd-search-btn{font-size:17px}

  .deals-head,
  .section-head{
    flex-direction:column;
    align-items:flex-start;
  }

  .section-title{font-size:27px}

  .dfd-multi-bottom{
    flex-direction:column;
    align-items:stretch;
  }

  .dfd-multi-search{width:100%}

  .travel-deals-section,
  .airline-partners-section,
  .travel-content,
  .help{
    padding:48px 0;
  }
}
.travel-deals-section {
  padding: 70px 0;
  background: #fff;
}

.deals-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}



.explore-link {
  color: #111c31;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
}

.travel-deals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.travel-deal-card {
  background: #fff;
  border: 1px solid #e5edf6;
  border-radius: 24px;
  overflow: hidden;
}

.deal-img-wrap {
  position: relative;
}

.deal-img-wrap img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.offer-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #fbbf24;
  color: #111827;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 13px;
  border-radius: 999px;
}

.deal-info {
  padding: 22px;
}

.limited-tag {
  display: inline-block;
  margin-bottom: 10px;
  color: #0f5fa8;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.deal-info h3 {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
}

.offer-price-row p{
  margin: 0 0 8px;
  color: #475569;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}

.offer-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-top: 22px;
}

.deal-small-text {
  display: block;
  font-size: 13px;
  color: #64748b;
  font-weight: 700;
}

.offer-price-row strong {
  font-size: 27px;
  font-weight: 900;
  color: #111827;
}

.lead-open-btn {
    border: none;
    border-radius: 25px;
    background: #EEB10F;
    color: #fff;
    padding: 13px 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.deal-lead-popup {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, .68);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.deal-lead-popup.active {
  display: flex;
}

.deal-lead-box {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: #fff;
  border-radius: 26px;
  padding: 34px;
}

.lead-close {
  position: absolute;
  right: 18px;
  top: 14px;
  border: 0;
  background: transparent;
  font-size: 32px;
  cursor: pointer;
}

.deal-lead-box h3 {
  margin: 10px 0;
  font-size: 24px;
  font-weight: 900;
}

.deal-lead-box p {
  color: #475569;
  font-weight: 700;
}

.deal-lead-box input {
  width: 100%;
  height: 50px;
  margin-bottom: 12px;
  border: 1px solid #dbe3ef;
  border-radius: 14px;
  padding: 0 16px;
}

.deal-lead-box button[type="submit"] {
  width: 100%;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: #0f5fa8;
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.lead-message {
  margin-top: 12px;
  font-weight: 800;
  color: #0f5fa8;
}

.loading-text,
.error-text {
  grid-column: 1 / -1;
  font-size: 18px;
  color: #111827;
}

@media (max-width: 1024px) {
  .travel-deals-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .deals-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .travel-deals-grid {
    grid-template-columns: 1fr;
  }

  .offer-price-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .lead-open-btn {
    width: 100%;
  }
}
.deals-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
}

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

.deal-slide-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #dbeafe;
  background: #ffffff;
  color: #0f5fa8;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .08);
}

.deal-slide-btn:hover {
  background: #0f5fa8;
  color: #fff;
}

.travel-deals-slider {
  overflow: hidden;
  position: relative;
}

.travel-deals-grid {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 22px;
  scrollbar-width: none;
  background-color:#fff !important;
}

.travel-deals-grid::-webkit-scrollbar {
  display: none;
}

.travel-deal-card {
  flex: 0 0 calc((100% - 56px) / 3);
  scroll-snap-align: start;
}

@media (max-width: 1024px) {
  .travel-deal-card {
    flex-basis: calc((100% - 28px) / 2);
  }
}

@media (max-width: 640px) {
  .deals-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .deal-slider-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .travel-deal-card {
    flex-basis: 100%;
  }
  .deal-lead-box h3 {
    font-size: 18px;
}
}
.call-assist-box {
  max-width: 520px;
  text-align: left;
}

.call-assist-box h3 {
  font-size: 28px;
  margin: 14px 0 14px;
  color:#eeb10f;
}

.call-assist-box p {
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
  margin: 0 0 20px;
}

.call-assist-card {
  background: linear-gradient(135deg, #f8fbff, #eef6ff);
  border: 1px solid #dbeafe;
  border-radius: 20px;
  padding: 18px;
  margin: 22px 0;
  text-align:center;
}

.call-assist-card span {
  display: block;
  font-size: 13px;
  font-weight: 900;
  color: #0f5fa8;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.call-assist-card strong {
  display: block;
  font-size: 20px;
  color: #111827;
}

.call-assist-btn {
  width: 100%;
  min-height: 50px;
  border-radius: 999px;
  background: #0f5fa8;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 900;
}

.call-assist-btn:hover {
  background: #0b4f8f;
  color: #fff;
}

.call-note {
  text-align: center;
  font-size: 14px !important;
  color: #64748b !important;
  margin-top: 16px !important;
}
