@font-face {
    font-family: 'Bold';
    /* Choose a name for your font family */
    src: url('../fonts/1.otf') format('opentype');
    /* Specify the path and format */
}

@font-face {
    font-family: 'Medium';
    /* Choose a name for your font family */
    src: url('../fonts/2.otf') format('opentype');
    /* Specify the path and format */
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.preloader {
  position: fixed;
  inset: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.preloader {
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-ring {
  position: relative;
  width: 7rem;
  height: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ROTATING BORDER ONLY */
.loader-ring::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 0.35rem solid rgba(77, 163, 255, 0.25);
  border-top-color: #4da3ff;
  animation: spin 1s linear infinite;
}

/* STATIC IMAGE */
.loader-ring img {
  width: 5rem;
  height: auto;
  position: relative;
  z-index: 1;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

body {
    background: #fff;
    color: #000;
}

/* NAVBAR */
.navbar {
    font-family: Bold;
    display: flex;
    justify-content: space-between;
    padding: 1rem 2rem;
    align-items: center;
    background: linear-gradient(0deg, #79B5F2,#79B5F2);
}

.logo {
    font-weight: 800;
    font-size: 1.4rem;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
}

.menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== CTYFLY SEARCH BLOCK ===== */
.ctyfly-search {
  background: linear-gradient(180deg, #79B5F2, #ffffff);
}

/* Reset ONLY inside block */
.ctyfly-search * {
  box-sizing: border-box;
  font-family: system-ui, sans-serif;
}

/* Wrapper */
.ctyfly-search .search-wrapper {
  padding: 3rem 1rem;
  text-align: center;
}

.ctyfly-search .brand {
    font-family: Bold;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.ctyfly-search .tagline {
font-family: Bold;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Card */
.ctyfly-search .search-card {
  background: #fff;
  max-width: 45rem;
  margin: auto;
  padding: 1.5rem;
  border-radius: 1.2rem;
  box-shadow: 0 1rem 2.5rem rgba(0,0,0,0.08);
  text-align: left;
}

/* Rows */
.ctyfly-search .row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 0;
  border-bottom: 0.06rem solid #eee;
}

.ctyfly-search .row:last-child {
  border-bottom: none;
}

/* Labels */
.ctyfly-search .label {
  font-size: 0.75rem;
  color: #777;
  text-transform: uppercase;
}

/* Input */
.ctyfly-search .input {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.ctyfly-search .input input {
  border: none;
  outline: none;
  font-size: 1rem;
  font-weight: 600;
  width: 100%;
  background: transparent;
}

/* Icons */
.ctyfly-search .icon {
  font-size: 1.2rem;
}

/* Swap button */
.ctyfly-search .swap {
  background: #f0e9ff;
  border: none;
  border-radius: 50%;
  width: 2.2rem;
  height: 2.2rem;
  cursor: pointer;
  font-size: 1.1rem;
}

/* Swap animation */
.swap {
  transition: transform 0.35s ease;
}

.swap.rotate {
  transform: rotate(180deg);
}

/* Date row */
.ctyfly-search .date-row {
  flex-direction: column;
}

/* Quick date */
.ctyfly-search .quick-date {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.ctyfly-search .quick-date button {
  border: none;
  padding: 0.4rem 0.9rem;
  border-radius: 1rem;
  font-size: 0.8rem;
  cursor: pointer;
  background: #f1f1f1;
}

.ctyfly-search .quick-date .active {
  background: #79B5F2;
  color: #fff;
}

/* CTA */
.ctyfly-search .search-btn {
  margin-top: 1.5rem;
  width: 100%;
  background: #79B5F2;
  color: #fff;
  border: none;
  border-radius: 0.8rem;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
}

/* Responsive */
@media (min-width: 48rem) {
  .ctyfly-search .date-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}



/* ROUTES */
.routes {
    padding: 5rem 5rem;
}

.routes h2 {
    font-family: Bold;
    margin-bottom: 1rem;
    border-bottom: 3px solid #79B5F2;
    display: inline-block;
}

.route-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.route-card {
    font-family: Bold;
    border-radius: 15px;
    overflow: hidden;
    background: #f5f5f5;
}

.route-card:hover {
    transform: scale(1.08);
    transition: 0.3s ease-in-out;
}

.offer {
    position: absolute;
    background: #ff5252;
    color: #fff;
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 0 0 10px 0;
}

.route-card {
    position: relative;
}


.route-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.price {
    font-weight: 700;
    padding: 0.5rem;
    color: #79B5F2;
}

.route-card p {
    padding: 0 0.5rem 0.8rem;
}

/* WHY */
.why {
    font-family: Bold;
    background: #f8f9ff;
    padding: 3rem 2rem;
    text-align: center;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.feature {
    background: #fff;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* FOOTER */
footer {
    font-family: Bold;
    text-align: center;
    padding: 1rem;
    background: #79B5F2;
    color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 60px;
        right: 0;
        background: #fff;
        flex-direction: column;
        width: 200px;
        display: none;
        padding: 1rem;
    }

    .search-box {
        font-family: Bold;
        background: #eee;
        border-radius: 1.875rem;
        /* 30px */
        display: flex;
        justify-content: space-between;
        padding: 0.7rem;
        max-width: 43.7rem;
        /* 700px */
        margin: auto;
        align-items: center;
        text-align: left;
        gap: 0.5rem;
    }

    .field span {
        font-size: 0.7rem;
        color: #555;
    }

    .field input {
        border: none;
        background: transparent;
        font-weight: 600;
        outline: none;
        width: 6rem;
        /* 120px */
    }

    .search-btn {
        background-color: #00000000;
        border: none;
        width: 2.625rem;
        height: 2.625rem;
        cursor: pointer;
    }

    .menu-btn {
        display: block;
    }



    .search-box {
        border-radius: 20px;
    }
}


.whatsapp-float {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    width: 3.5rem;
    height: 3.5rem;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.25);
    z-index: 9999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float img {
    width: 1.8rem;
    height: 1.8rem;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 0.75rem 1.25rem rgba(0, 0, 0, 0.3);
}


.coming-soon {
    font-family: Bold;
    text-align: center;
    padding: 10rem 5rem;
    background: linear-gradient(0deg, #ffffff, #4da3ff1d),
        url("https://i.pinimg.com/1200x/1d/83/75/1d83759b91daf340fceea9b003ea27ba.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: none;
    color: #fff;
}

.coming-soon h2 {
    font-size: 2.2rem;
    margin-bottom: 0.6rem;
}

.coming-soon p {
    font-size: 1rem;
    max-width: 40rem;
    margin: auto;
    opacity: 0.95;
}

.vision {
    font-family: Bold;
    padding: 10rem 5rem;
    text-align: center;
    background: #fff;
}

.vision h2 {
    margin-bottom: 1rem;
}

.vision p {
    max-width: 45rem;
    margin: auto;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

.upcoming-features {
    font-family: Bold;
    background: linear-gradient(180deg, #ffffff, #ffffffab),
        url("https://i.pinimg.com/1200x/59/09/8f/59098fabd1513e48f7449ae89f057a7a.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 10rem 5rem;
    text-align: center;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.feature-card {
    background: #fff;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.waitlist {
    font-family: Bold;
    padding: 10rem 5rem;
    text-align: center;
    background: linear-gradient(180deg, #ffffff, #79B5F2);
}

.waitlist p {
    margin: 0.5rem auto 1.2rem;
    max-width: 35rem;
    color: #555;
}

.waitlist-form {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.waitlist-form input {
    padding: 0.7rem 1rem;
    width: 16rem;
    border-radius: 2rem;
    border: 1px solid #ccc;
    outline: none;
}

.waitlist-form button {
    padding: 0.7rem 1.5rem;
    border-radius: 2rem;
    border: none;
    background: #79B5F2;
    color: #fff;
    cursor: pointer;
}