/* =========================================================
   SkyFare Deals — Custom Styles (works alongside Tailwind CDN)
   ========================================================= */

:root {
  --brand-blue: #0b3d91;
  --brand-blue-dark: #072a66;
  --brand-orange: #ff7a00;
  --brand-orange-dark: #e06400;
  --brand-sky: #eaf3ff;
  --text-dark: #14213d;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text-dark);
}

.font-heading {
  font-family: 'Poppins', 'Inter', sans-serif;
}

/* ---------- Header ---------- */
#site-header {
  transition: box-shadow .25s ease, background-color .25s ease;
}
#site-header.scrolled {
  box-shadow: 0 4px 18px rgba(11,61,145,0.12);
}

.nav-link {
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  height: 2px; width: 0;
  background: var(--brand-orange);
  transition: width .2s ease;
}
.nav-link:hover::after { width: 100%; }

/* ---------- Hero ---------- */
.hero-section {
  position: relative;
  background: linear-gradient(120deg, rgba(7,42,102,0.92) 0%, rgba(11,61,145,0.82) 45%, rgba(11,61,145,0.55) 100%), url('../images/hero-flight.jpg');
  background-size: cover;
  background-position: center;
}

.hero-badge {
  backdrop-filter: blur(6px);
}

/* Flight path dashed line for visual flourish */
.flight-path {
  position: absolute;
  border-top: 2px dashed rgba(255,255,255,0.45);
  top: 50%;
  left: 0; right: 0;
  z-index: 0;
}

/* ---------- Search widget ---------- */
.search-card {
  box-shadow: 0 20px 45px rgba(7,42,102,0.25);
}
.trip-toggle input:checked + label {
  background: var(--brand-orange);
  color: #fff;
  border-color: var(--brand-orange);
}
.trip-toggle label {
  cursor: pointer;
  transition: all .15s ease;
}

.btn-primary {
  background: var(--brand-orange);
  transition: transform .15s ease, background-color .15s ease, box-shadow .15s ease;
  box-shadow: 0 10px 25px rgba(255,122,0,0.35);
}
.btn-primary:hover {
  background: var(--brand-orange-dark);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--brand-blue);
  color: var(--brand-blue);
  transition: all .15s ease;
}
.btn-outline:hover {
  background: var(--brand-blue);
  color: #fff;
}

/* ---------- Destination cards ---------- */
.dest-card {
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
  transition: transform .25s ease, box-shadow .25s ease;
}
.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px rgba(11,61,145,0.2);
}
.dest-card img {
  transition: transform .5s ease;
}
.dest-card:hover img {
  transform: scale(1.08);
}
.dest-card .dest-overlay {
  background: linear-gradient(to top, rgba(7,42,102,0.92) 0%, rgba(7,42,102,0.15) 60%, transparent 100%);
}

/* ---------- Feature / trust icon circle ---------- */
.icon-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--brand-sky);
  color: var(--brand-blue);
}

/* ---------- Fade-in on scroll ---------- */
.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- FAQ Accordion ---------- */
.faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-item.open .faq-answer {
  max-height: 500px;
}
.faq-item .faq-icon {
  transition: transform .25s ease;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

/* ---------- Sticky mobile call bar ---------- */
#mobile-call-bar {
  box-shadow: 0 -6px 20px rgba(0,0,0,0.12);
}

/* ---------- Back to top ---------- */
#back-to-top {
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
#back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

/* ---------- Testimonial card ---------- */
.testimonial-card {
  border-top: 4px solid var(--brand-orange);
}

/* ---------- Utility ---------- */
.text-brand-blue { color: var(--brand-blue); }
.bg-brand-blue { background-color: var(--brand-blue); }
.bg-brand-blue-dark { background-color: var(--brand-blue-dark); }
.text-brand-orange { color: var(--brand-orange); }
.bg-brand-orange { background-color: var(--brand-orange); }
.bg-brand-sky { background-color: var(--brand-sky); }

/* Toast for form submission */
#toast {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 9999;
  transform: translateY(20px);
  opacity: 0;
  transition: all .3s ease;
  pointer-events: none;
}
#toast.show {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 767px) {
  #back-to-top { bottom: 80px; }
}

/* Travelocart additions */
.site-logo-mark{width:42px;height:42px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;background:var(--brand-orange);color:#fff}
.skip-link{position:absolute;left:-9999px;top:10px;z-index:99999}
.skip-link:focus{left:10px;background:#fff;color:var(--brand-blue);padding:10px 14px;border-radius:8px}
input,select,button{font:inherit}
button{cursor:pointer}
@media (max-width:767px){
  .hero-section{background-position:60% center}
  .search-card{padding:16px!important}
  .trip-toggle{overflow-x:auto;flex-wrap:nowrap;padding-bottom:2px}
  .trip-toggle label{white-space:nowrap}
  .dest-card img{height:210px}
}

/* =========================================
   FLIGHT TIPS SECTION
========================================= */

.flight-tips-section {
    width: 100%;
    padding: 90px 20px;
    background: #f7f9fc;
}

.flight-tips-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

/* Heading */

.flight-tips-heading {
    max-width: 780px;
    margin: 0 auto 52px;
    text-align: center;
}

.section-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #38528a;
}

.flight-tips-heading h2 {
    margin: 0 0 16px;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.15;
    font-weight: 800;
    color: #17233d;
}

.flight-tips-heading p {
    margin: 0 auto;
    max-width: 760px;
    font-size: 16px;
    line-height: 1.75;
    color: #5f6878;
}

/* Grid */

.flight-tips-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

/* Card */

.flight-tip-card {
    position: relative;
    padding: 36px 30px 32px;
    background: #ffffff;
    border: 1px solid #e3e7ee;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(24, 43, 77, 0.05);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.flight-tip-card:hover {
    transform: translateY(-5px);
    border-color: #cbd5e5;
    box-shadow: 0 16px 35px rgba(24, 43, 77, 0.10);
}

/* Number */

.flight-tip-number {
    position: absolute;
    top: 20px;
    right: 22px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.8px;
    color: #a5adba;
}

/* Icon */

.flight-tip-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;
    margin-bottom: 24px;

    border-radius: 12px;
    background: #eef2fb;
    color: #30477c;
}

.flight-tip-icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Card heading */

.flight-tip-card h3 {
    margin: 0 0 12px;
    font-size: 19px;
    line-height: 1.35;
    font-weight: 750;
    color: #1d2942;
}

/* Card text */

.flight-tip-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
    color: #667085;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .flight-tips-section {
        padding: 70px 20px;
    }

    .flight-tips-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 640px) {

    .flight-tips-section {
        padding: 55px 16px;
    }

    .flight-tips-heading {
        margin-bottom: 34px;
    }

    .flight-tips-heading h2 {
        font-size: 29px;
        line-height: 1.2;
    }

    .flight-tips-heading p {
        font-size: 14px;
        line-height: 1.7;
    }

    .flight-tips-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .flight-tip-card {
        padding: 30px 24px 26px;
        border-radius: 14px;
    }

    .flight-tip-card h3 {
        font-size: 18px;
    }

    .flight-tip-card p {
        font-size: 14px;
        line-height: 1.7;
    }

    .flight-tip-number {
        top: 18px;
        right: 18px;
    }

} 

/* =========================================================
   TRAVELOCART - WHY CHOOSE US
========================================================= */

.tc-why-section {
    position: relative;
    width: 100%;
    padding: 90px 20px;
    background: #ffffff;
}

.tc-why-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.tc-why-header {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.tc-section-label {
    display: inline-block;
    margin-bottom: 12px;

    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 1.6px;

    color: #315087;
}

.tc-why-header h2 {
    margin: 0 0 18px;

    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.15;
    font-weight: 800;

    color: #17243d;
}

.tc-why-header p {
    max-width: 740px;
    margin: 0 auto;

    font-size: 16px;
    line-height: 1.75;

    color: #667085;
}


/* =========================================================
   MAIN LAYOUT
========================================================= */

.tc-why-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 55px;

    align-items: center;
}


/* =========================================================
   LEFT VISUAL
========================================================= */

.tc-why-visual {
    position: relative;

    min-height: 450px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-radius: 28px;

    background:
        radial-gradient(
            circle at 50% 35%,
            #eaf4ff 0,
            #f6f9fd 45%,
            #ffffff 75%
        );
}

.tc-why-circle {
    position: absolute;

    width: 220px;
    height: 220px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #eef4fc;

    box-shadow:
        0 20px 50px rgba(37, 67, 115, 0.10);
}

.tc-why-circle span {
    font-size: 72px;

    transform: rotate(-25deg);

    color: #315087;
}

.tc-why-visual-text {
    position: absolute;

    bottom: 38px;
    left: 25px;
    right: 25px;

    text-align: center;
}

.tc-why-visual-text strong,
.tc-why-visual-text span {
    display: block;
}

.tc-why-visual-text strong {
    margin-bottom: 5px;

    font-size: 18px;
    color: #17243d;
}

.tc-why-visual-text span {
    font-size: 14px;
    color: #667085;
}


/* =========================================================
   BENEFIT GRID
========================================================= */

.tc-benefits-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 18px;
}


/* =========================================================
   BENEFIT CARD
========================================================= */

.tc-benefit-card {
    position: relative;

    display: flex;
    gap: 18px;

    padding: 25px;

    min-height: 180px;

    border: 1px solid #e2e7ef;
    border-radius: 16px;

    background: #ffffff;

    box-shadow: 0 5px 20px rgba(20, 38, 70, 0.04);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.tc-benefit-card:hover {
    transform: translateY(-4px);

    border-color: #cbd5e5;

    box-shadow:
        0 14px 35px rgba(20, 38, 70, 0.09);
}


/* Featured cards */

.tc-benefit-featured {
    background:
        linear-gradient(
            135deg,
            #273e73 0%,
            #31588d 55%,
            #3c9fd2 100%
        );

    border-color: transparent;
}

.tc-benefit-featured h3,
.tc-benefit-featured p,
.tc-benefit-featured .tc-benefit-number {
    color: #ffffff !important;
}


/* =========================================================
   ICON
========================================================= */

.tc-benefit-icon {
    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f0f4fa;

    color: #2e4b82;
}

.tc-benefit-featured .tc-benefit-icon {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.tc-benefit-icon svg {
    width: 23px;
    height: 23px;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   CONTENT
========================================================= */

.tc-benefit-content {
    flex: 1;
}

.tc-benefit-number {
    display: block;

    margin-bottom: 6px;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1px;

    color: #9aa4b2;
}

.tc-benefit-content h3 {
    margin: 0 0 9px;

    font-size: 17px;
    line-height: 1.35;

    font-weight: 750;

    color: #1d2942;
}

.tc-benefit-content p {
    margin: 0;

    font-size: 13.5px;
    line-height: 1.7;

    color: #667085;
}


/* =========================================================
   COMPANY DESCRIPTION
========================================================= */

.tc-why-description {
    margin-top: 45px;

    padding: 32px 36px;

    border-left: 4px solid #315087;

    border-radius: 12px;

    background: #f7f9fc;

    box-shadow:
        0 8px 25px rgba(20, 38, 70, 0.04);
}

.tc-why-description h3 {
    margin: 0 0 14px;

    font-size: 22px;
    line-height: 1.3;

    color: #17243d;
}

.tc-why-description p {
    margin: 0 0 12px;

    font-size: 14px;
    line-height: 1.75;

    color: #5f6878;
}

.tc-why-description p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .tc-why-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .tc-why-visual {
        min-height: 260px;
        max-width: 500px;
        width: 100%;
        margin: 0 auto;
    }

    .tc-why-circle {
        width: 150px;
        height: 150px;
    }

    .tc-why-circle span {
        font-size: 50px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .tc-why-section {
        padding: 60px 16px;
    }

    .tc-why-header {
        margin-bottom: 35px;
    }

    .tc-why-header h2 {
        font-size: 29px;
    }

    .tc-why-header p {
        font-size: 14px;
        line-height: 1.7;
    }

    .tc-benefits-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .tc-benefit-card {
        min-height: auto;

        padding: 22px;

        gap: 14px;
    }

    .tc-benefit-icon {
        flex-basis: 44px;

        width: 44px;
        height: 44px;
    }

    .tc-benefit-content h3 {
        font-size: 16px;
    }

    .tc-benefit-content p {
        font-size: 13.5px;
        line-height: 1.65;
    }

    .tc-why-description {
        margin-top: 30px;

        padding: 25px 22px;
    }

    .tc-why-description h3 {
        font-size: 20px;
    }

    .tc-why-description p {
        font-size: 13.5px;
    }

}  



/* =========================================================
   TRAVELOCART FOOTER
   ========================================================= */

.tc-footer {
    background: #092d68;
    color: #ffffff;
    margin-top: 0;
}


/* Main footer
--------------------------------------------------------- */

.tc-footer-main {
    padding: 70px 20px 55px;
}

.tc-footer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.tc-footer-main .tc-footer-container {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.25fr;
    gap: 55px;
}


/* Brand
--------------------------------------------------------- */

.tc-footer-brand {
    max-width: 390px;
}

.tc-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 22px;
}

.tc-footer-logo .custom-logo-link {
    display: flex;
    align-items: center;
}

.tc-footer-logo img {
    max-width: 190px;
    height: auto;
}

.tc-footer-logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ff7900;
    color: #ffffff;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 21px;
}

.tc-footer-logo-text {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.tc-footer-logo-text span {
    color: #ff7900;
}


.tc-footer-description {
    color: rgba(255,255,255,.78);
    font-size: 14px;
    line-height: 1.8;
    margin: 0 0 18px;
}


.tc-footer-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;

    transition: .2s ease;
}

.tc-footer-read-more:hover {
    color: #ff7900;
}

.tc-footer-read-more i {
    font-size: 12px;
}


/* Footer columns
--------------------------------------------------------- */

.tc-footer-column h3 {
    margin: 0 0 22px;

    color: #ffffff;
    font-size: 17px;
    font-weight: 800;
}

.tc-footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tc-footer-column li {
    margin: 0 0 13px;
}

.tc-footer-column li a {
    color: rgba(255,255,255,.76);
    font-size: 14px;
    line-height: 1.5;
    text-decoration: none;

    transition: color .2s ease;
}

.tc-footer-column li a:hover {
    color: #ff7900;
}


/* Contact
--------------------------------------------------------- */

.tc-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 20px;
}

.tc-footer-contact-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;

    border-radius: 50%;

    background: rgba(255,255,255,.1);
    color: #ff7900;

    display: flex;
    align-items: center;
    justify-content: center;
}

.tc-footer-contact-item small {
    display: block;

    color: rgba(255,255,255,.55);
    font-size: 12px;
    margin-bottom: 3px;
}

.tc-footer-contact-item a {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    word-break: break-word;
}

.tc-footer-contact-item a:hover {
    color: #ff7900;
}


.tc-footer-contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    background: #ff7900;
    color: #ffffff;

    padding: 12px 18px;
    border-radius: 10px;

    font-size: 14px;
    font-weight: 800;
    text-decoration: none;

    margin-top: 4px;

    transition: .2s ease;
}

.tc-footer-contact-button:hover {
    background: #ffffff;
    color: #092d68;
}


/* Disclosure
--------------------------------------------------------- */

.tc-footer-disclosure {
    background: #07275a;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);

    padding: 18px 20px;
}

.tc-footer-disclosure-inner {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.tc-footer-disclosure-inner > i {
    color: #ff7900;
    font-size: 17px;
    margin-top: 3px;
}

.tc-footer-disclosure p {
    margin: 0;

    color: rgba(255,255,255,.72);
    font-size: 12px;
    line-height: 1.7;
}

.tc-footer-disclosure strong {
    color: #ffffff;
}


/* Bottom
--------------------------------------------------------- */

.tc-footer-bottom {
    background: #05224e;
    padding: 20px;
}

.tc-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.tc-footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,.6);
    font-size: 12px;
}


/* Legal links
--------------------------------------------------------- */

.tc-footer-legal {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px 18px;
}

.tc-footer-legal a {
    color: rgba(255,255,255,.68);
    font-size: 12px;
    text-decoration: none;

    transition: color .2s ease;
}

.tc-footer-legal a:hover {
    color: #ff7900;
}


/* Back to top
--------------------------------------------------------- */

.tc-back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;

    width: 46px;
    height: 46px;

    border: 0;
    border-radius: 50%;

    background: #ff7900;
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    transition: .25s ease;

    z-index: 9990;

    box-shadow: 0 8px 25px rgba(0,0,0,.18);
}

.tc-back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tc-back-to-top:hover {
    background: #ffffff;
    color: #092d68;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .tc-footer-main .tc-footer-container {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 35px;
    }

    .tc-footer-brand {
        grid-column: 1 / -1;
        max-width: 650px;
    }

    .tc-footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .tc-footer-legal {
        justify-content: flex-start;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 640px) {

    .tc-footer-main {
        padding: 50px 20px 35px;
    }

    .tc-footer-main .tc-footer-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .tc-footer-brand {
        grid-column: auto;
        max-width: none;
    }

    .tc-footer-column h3 {
        margin-bottom: 15px;
    }

    .tc-footer-column li {
        margin-bottom: 11px;
    }

    .tc-footer-description {
        font-size: 13px;
        line-height: 1.75;
    }

    .tc-footer-disclosure {
        padding: 17px 20px;
    }

    .tc-footer-disclosure-inner {
        gap: 10px;
    }

    .tc-footer-disclosure p {
        font-size: 11px;
        line-height: 1.65;
    }

    .tc-footer-bottom {
        padding: 18px 20px 25px;
    }

    .tc-footer-bottom-inner {
        align-items: flex-start;
        gap: 14px;
    }

    .tc-footer-legal {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 9px;
    }

    .tc-footer-legal a {
        font-size: 12px;
    }

    .tc-back-to-top {
        right: 15px;
        bottom: 70px;
        width: 42px;
        height: 42px;
    }

}