
/* ===============================================
   BASE — variables, reset, global utilities
   =============================================== */

:root {
    --orange: #de1922;
    --orange-light: #de1922;
    --orange-dark: #de1922;
    --navy: #0e2d5e;
    --navy-dark: #0a2249;
    --navy-deep: #061a3a;
    --text: #1a2942;
    --text-soft: #4a5568;
    --muted: #6b7a90;
    --bg: #ffffff;
    --bg-soft: #f7f8fa;
    --border: #e5e7eb;
    --star: #ffb800;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --font-display: 'Plus Jakarta Sans', sans-serif;
    --font-body: "Nunito Sans", sans-serif;
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --container: 1200px;
    --blue-grad: linear-gradient(90deg, #0e2d5e, #de1922);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;padding-top:94px;
}
body.home{padding:0px;}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
input, select { font-family: inherit; outline: none;  background: none; }

/* Utility container width */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===============================================
   ABOUT US — parent: .about-us
   =============================================== */

.about-us {
  position: relative;
  padding: 90px 0 80px;
  background: #fff;
  overflow: hidden;
}

.about-us__plane {
  position: absolute;
  top: 50px;
  right: 40px;
  font-size: 110px;
  color: #e8eef7;
  opacity: 0.4;
  transform: rotate(-15deg);
  pointer-events: none;
  z-index: 0;
}

.about-us__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-us__text {
  max-width: 480px;
}

.about-us__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
}

.about-us__text p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 26px;
}

.about-us__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  padding: 12px 26px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(245, 110, 26, 0.3);
}

.about-us__btn:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.about-us__media {
  position: relative;
}

.about-us__media img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

/* ===============================================
   HEADER — parent: .site-header
   =============================================== */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
}

.site-header__container {
  position: relative;
}

/* ---- TOP support strip (SOLID BLUE BAND) ---- */
.site-header__top {
  background: var(--navy);
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: #fff;
}

.site-header__support {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.site-header__support-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}

.site-header__support-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.site-header__support-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.site-header__support-text .lbl {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.95;
}

.site-header__support-text .val {
  font-size: 15px;
  font-weight: 600;
}

.site-header__social {
  display: flex;
  gap: 8px;
}

.site-header__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s ease;
}

.site-header__social a:hover {
  background: var(--orange);
  border-color: var(--orange);
}

/* ---- MAIN nav strip ---- */
.site-header__main {
    padding: 10px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 1360px;
    margin: 0 auto;
}

/* ---- New logo style ---- */
.site-header__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  line-height: 1;
  text-decoration: none;
}

.site-header__logo .logo-icon {
  position: relative;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-header__logo .logo-icon > i {
  font-size: 26px;
  color: #fff;
  transform: rotate(-25deg);
}

.site-header__logo .logo-circle {
  position: absolute;
  bottom: -2px;
  right: -4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.site-header__logo .logo-text {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}

.site-header__logo .logo-text .num {
  color: var(--orange);
}

/* ---- Nav ---- */
.site-header__nav ul {
  display: flex;
  gap: 38px;
  align-items: center;
}
.logo-text{width:150px;}
.site-header__nav a {
    color: #000;
    font-size: 15px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    padding: 6px 0;
    transition: color 0.25s ease;
}
body.home .site-header__nav a{color:#fff;}
.site-header__nav a i {
    font-size: 10px;
}

.site-header__nav a.active,
.site-header__nav a:hover {
  color: var(--orange-light);
}

/* Expert block */
.site-header__expert {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  position:fixed; bottom:0; width:100%; display:none;
}

.site-header__expert-avatar {position: relative; width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, #ffb88a, #f56e1a);
  overflow: hidden; flex-shrink: 0;}
.site-header__expert-avatar img {width: 100%; height: 100%; object-fit: cover;}
.site-header__expert-avatar .dot {position: absolute; bottom: 2px; right: 2px; width: 11px; height: 11px; background: var(--orange);
  border-radius: 50%; border: 2px solid #fff;}
.site-header__expert-avatar-wr{position:relative;}
.site-header__expert-avatar-wr:after{content:''; position: absolute; bottom: 2px; right: 2px; width: 11px; height: 11px; background: #19de33;
  border-radius: 50%; border: 2px solid #fff;}

.site-header__expert-text {display: flex; flex-direction: column; line-height: 1.3;}
.site-header__expert-text .lbl {font-size: 13px; opacity: 0.92; color: #000;}
.site-header__expert-text .val {font-size: 18px; font-weight: 700; display: inline-flex; align-items: center; gap: 7px; color: #000;}
body.home .site-header__expert-text .lbl,
body.home .site-header__expert-text .val{color:#fff;}


/*.home-logo{display:none;}*/
.inner-logo{display:block;}
.home-logo{display:none;}
body.home .inner-logo{display:none;}
body.home .home-logo{display:block;}
body.home .fixed-top .inner-logo{display:block;}
body.home .fixed-top .home-logo{display:none;}

.site-header__expert-text .val i {
    font-size: 14px;
    color: var(--orange);
}

/* ---- Mobile toggle ---- */
.site-header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
}

.site-header__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.site-header__toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header__toggle.active span:nth-child(2) {
  opacity: 0;
}

.site-header__toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
/* ===============================================
   HERO — parent: .hero  (with slider)
   =============================================== */

.hero {
  position: relative;
  min-height: 650px;
  padding: 150px 0 10px;
}

/* ---- SLIDER background ---- */
.hero__slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.2s ease, transform 6s ease;
}

.hero__slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(14, 45, 94, 0.55) 0%,
    rgba(14, 45, 94, 0.35) 40%,
    rgba(14, 45, 94, 0.6) 100%);
  z-index: 1;
}

/* ---- hero slider start ---- */
.hero__container {max-width: 1280px; margin: 0 auto; position: relative; z-index: 2;}
.hero__content {color: #fff; text-align:center;}
.hero__eyebrow {font-size: 16px; letter-spacing: 1px; margin-bottom: 6px; font-weight: 500; color: #fff;}
/* ---- Text slides (cross-fade) ---- */
.hero__text-slide {position: absolute; opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; pointer-events: none;}
.hero__text-slide.active {position: relative; opacity: 1; transform: translateY(0); pointer-events: auto;}
.hero__title {font-family: var(--font-display); font-size: clamp(60px, 9.5vw, 140px); font-weight: 700; font-style: italic; line-height: 1.25; margin-bottom: 28px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.45);}
.hero__desc {font-size: 15px; line-height: 1.8; opacity: 0.97;}
/* ---- City pins (right side, clickable) ---- */
.hero__pins {position: absolute; top: 50%; right: 40px; transform: translateY(-50%); display: flex; flex-direction: column; gap: 20px; z-index: 3;}
.hero__pins li {display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 600; font-size: 18px; cursor: pointer; transition: all 0.3s ease; opacity: 0.7;}
.hero__pins li i {color: rgba(255, 255, 255, 0.7); font-size: 20px; transition: all 0.3s ease;}
.hero__pins li:hover {opacity: 1; color: var(--orange-light);}
.hero__pins li:hover i {color: var(--orange-light);}
.hero__pins li.active {color: var(--orange); opacity: 1; font-size: 20px;}
.hero__pins li.active i {color: var(--orange); font-size: 22px;}
/* ---- Arrows (center bottom) ---- */
.hero__arrows {position: absolute; bottom: 200px; left: 50%; transform: translateX(-50%);display: flex; gap: 18px; z-index: 3;}
.hero__arrow {width: 50px; height: 50px; border-radius: 50%; border: 2px solid var(--orange); background: rgba(245, 110, 26, 0.1); color: var(--orange);
  display: flex; align-items: center; justify-content: center; font-size: 16px; transition: all 0.3s ease; backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);}
.hero__arrow:hover {background: var(--orange); color: #fff; transform: scale(1.06);}
/* ---- Search form ---- */
.hero__search {
  position: relative;
  margin-top: 100px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 22px 0;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
  z-index: 2;
}
.hero_search_1{margin:0; padding:10px 0; box-shadow:none; backdrop-filter:none;}
.hero__search-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.hero__trip-toggle {
  display: flex;
  background: #f0f1f5;
  border-radius: 30px;
  padding: 4px;
}

.hero__trip-toggle button {
  padding: 9px 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  border-radius: 30px;
  transition: all 0.3s ease;
}

.hero__trip-toggle button.active {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 12px rgba(245, 110, 26, 0.3);
}

.hero__class-select {
  position: relative;
}

.hero__class-select select {
  appearance: none;
  -webkit-appearance: none;
  padding: 11px 40px 11px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  min-width: 140px;
}

.hero__class-select::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 11px;
  color: var(--orange);
}

.hero__search-fields {
  display: grid;
  grid-template-columns: 1.3fr 1.3fr 1fr 1fr 1fr auto;
  gap: 18px;
  align-items: center;
}

.hero__field {
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.hero__field i {
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--orange);
  font-size: 14px;
}

.hero__field input {
  width: 100%;
  padding: 4px 4px 4px 24px;
  font-size: 14px;
  color: var(--text);
  background: transparent;
  font-weight: 500;
}

.hero__field input::placeholder {
  color: #9ca3af;
}

.hero__search-btn {
  background: var(--orange);
  color: #fff;
  padding: 13px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(245, 110, 26, 0.35);
}

.hero__search-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(245, 110, 26, 0.45);
}
/* ===============================================
   NEWSLETTER — parent: .newsletter
   =============================================== */

.newsletter {
  padding: 40px 0 50px;
  background: #fff;
  border-top: 1px solid var(--border);
}

.newsletter__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.newsletter__text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 4px;
}

.newsletter__text p {
  font-size: 13px;
  color: var(--muted);
}

.newsletter__form {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 420px;
}

.newsletter__input {
  position: relative;
  flex: 1;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
}

.newsletter__input i {
  position: absolute;
  left: 14px;
  color: var(--orange);
  font-size: 13px;
}

.newsletter__input input {
  width: 100%;
  padding: 12px 14px 12px 38px;
  font-size: 14px;
  color: var(--text);
  background: transparent;
}

.newsletter__form button {
  background: var(--orange);
  color: #fff;
  padding: 12px 26px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.newsletter__form button:hover {
  background: var(--orange-dark);
}
/* ===============================================
   SPECIAL OFFERS — parent: .special-offers
   =============================================== */

.special-offers {
  padding: 70px 0 30px;
  background: #fff;
}

.special-offers__intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
  padding: 0 20px;
}

.special-offers__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 44px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.special-offers__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.special-offers__wrap {
  display: grid;
  grid-template-columns:1fr;
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 0 0 30px;
  align-items: stretch;
}

/* ---- Left dark panel ---- */
.special-offers__panel {
  background: var(--navy);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
  border-radius: 0 4px 4px 0;
}

.special-offers__panel-arrows {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.special-offers__panel-arrows button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.special-offers__panel-arrows button:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.special-offers__panel-count {
  display: flex;
  align-items: baseline;
  gap: 12px;
  color: #fff;
}

.special-offers__panel-count .current {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 6px;
  min-width: 60px;
}

.special-offers__panel-count .bar {
  display: none;
}

.special-offers__panel-count .total {
  font-size: 15px;
  opacity: 0.7;
  font-weight: 500;
}

/* ---- Cards (carousel) ---- */
.special-offers__viewport {
  overflow: hidden;
  padding: 20px 30px 30px 0;position:relative;
}
.special-offers__viewport .prev,
.special-offers__viewport .next{width:40px;height:40px;background:#de1922;color:#fff; position:absolute;top:50%;margin-top:-20px; z-index:99}
.special-offers__viewport .prev{left:0px;}
    .special-offers__viewport .next {
        right: 0px;
    }
.special-offers__cards {
    display: flex;
    gap: 26px;
    will-change: transform;
}

.special-offers__card {
    flex: 0 0 calc((100% - 52px) / 4);
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border-bottom: 4px solid #ffcab0;
    transition: all ease-in-out 0.5s;
}

.special-offers__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.special-offers__card-img {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.special-offers__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.special-offers__card:hover .special-offers__card-img img {
    transform: rotate(5deg) scale(1.2);
}

.special-offers__card-img .badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, #2dd4bf, #14b8a6);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 4px;
  letter-spacing: 0.3px;
}

.special-offers__card-body {
  padding: 16px 18px 18px;
  text-align: center;
}

.special-offers__card-body h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.special-offers__card-body .meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.special-offers__card-body .meta li {
  font-size: 12px;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.special-offers__card-body .meta li i {
  color: var(--orange);
  font-size: 11px;
}

.special-offers__card-body .meta li:last-child i {
  color: var(--star);
}

.special-offers__card-body .book-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  padding: 9px 22px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.special-offers__card-body .book-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}
/* ===============================================
   TOP DEALS — parent: .top-deals
   =============================================== */

.top-deals {
  padding: 60px 0 70px;
  background: #fff;
}

.top-deals__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.top-deals__intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 44px;
}

.top-deals__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 44px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}

.top-deals__intro p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.top-deals__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.top-deals__card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all ease-in-out 0.5s;
}

.top-deals__card:hover {
  transform: translateY(-6px);
}

.top-deals__img {
  width: 100%;
  height: 175px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}

.top-deals__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.top-deals__card:hover .top-deals__img img {
    transform: rotate(5deg) scale(1.2);
}

.top-deals__location {
  font-size: 13px;
  color: var(--orange);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 8px;
}

.top-deals__card h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}

.top-deals__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  padding: 8px 20px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.top-deals__btn:hover {background: var(--orange-dark); transform: translateY(-2px); color:#fff;}
/* ===============================================
   WHY CHOOSE US — parent: .why-choose-us
   =============================================== */

.why-choose-us {
    padding: 80px 0 70px;
    background: #efefef;
    /*border-bottom: 1px solid var(--border);*/
}

.why-choose-us__container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 30px;
}

.why-choose-us__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 56px;
}

.why-choose-us__title span {
  position: relative;
  display: inline-block;
}

.why-choose-us__title span::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

.why-choose-us__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-choose-us__card {
  /*text-align: center;
  padding: 10px 14px;
  transition: transform 0.3s ease;*/
  padding: 21px 9px 19px;
  border: 1px solid #f1f1f1;
  box-shadow: 0 0 9px 3px #00000033;
  transition: all ease-in-out 0.5s;
  overflow: hidden;
  background: white;
  position: relative;
  border-radius: 10px;
  transform: translateY(0px);
  text-align:center;
}
.why-choose-us__card::after{content: "";
    background: var(--navy);
    height: 2px;
    width: 0%;
    bottom: 0;
    left: 0;
    transition: all 0.5s;
    position: absolute;
    transition: all ease-in-out 0.5s;
}

.why-choose-us__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #000;
}

.why-choose-us__icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.why-choose-us__card h3 {font-family: var(--font-display); font-size: 19px; font-weight: 700; color: #3f3f3f; margin-bottom: 10px;}
.why-choose-us__card p {font-size: 13.5px; color: #000; line-height: 1.6;}
.why-choose-us__card:hover {transform: translateY(-6px); transition: all ease-in-out 0.5s; cursor: pointer;}
.why-choose-us__card:hover::after {width: 100%; transition: all ease-in-out 0.5s;}
.why-choose-us__card:hover h3{color:var(--navy)}
.why-choose-us__card:hover .why-choose-us__icon{color:var(--navy);}
/* ===============================================
   FOOTER — parent: .site-footer
   =============================================== */

.site-footer {
  position: relative;
  background: var(--navy);
  color: #fff;
  padding: 60px 0 0;
  overflow: hidden;
}

.site-footer::before {
  content: '\f072';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%) rotate(-15deg);
  font-size: 280px;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  z-index: 0;
}

.site-footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 1;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  margin-bottom: 18px;
  text-decoration: none;
}

.site-footer__logo .logo-icon {
  position: relative;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-footer__logo .logo-icon > i {
  font-size: 26px;
  color: #fff;
  transform: rotate(-25deg);
}

.site-footer__logo .logo-circle {
  position: absolute;
  bottom: -2px;
  right: -4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.site-footer__logo .logo-text {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}

.site-footer__logo .logo-text .num {
  color: var(--orange);
}

.site-footer__col p {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 22px;
}

/* Pay block */
.site-footer__pay span {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}

.site-footer__pay .cards {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.site-footer__pay .cards i {
  font-size: 32px;
  color: #fff;
}

/* Column headings */
.site-footer__col h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}

/* Contact list */
.site-footer__contact {
  margin-bottom: 22px;padding-left:0px;
}

.site-footer__contact li {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
}

.site-footer__contact li i {
  color: var(--orange);
  font-size: 12px;
}

/* Badges */
.site-footer__badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.site-footer__badges .badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9911f, #8c6618);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Link lists */
.site-footer__links{padding-left:0px;}
.site-footer__links li {
    margin-bottom: 10px;
    display: block !important;
}

.site-footer__links a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.site-footer__links a:hover {
  color: var(--orange);
}

.site-footer__links a i {
  font-size: 10px;
  color: var(--orange);
}

/* Disclaimer */
.site-footer__disclaimer {
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

/* Copyright */
.site-footer__copy {
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Back to top */
.site-footer__top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(245, 110, 26, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 99;
}

.site-footer__top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-footer__top-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-3px);
}
.site-header__toggle span{background:#000;}
body.home .site-header__toggle span{background:#fff;}


.modify-btn-mob{display:none; align-items:center; justify-content:space-between; margin:0 0 1rem;}
.modify-btn-mob>div{display:inline-block; padding:8px 12px; border-radius:5px; background:var(--navy); color:#fff;}
.fil-back{display:none; margin-right:8px;}
.mod-back{display:none; margin-bottom:1rem; color:#fff; font-size:2rem;}

.fw-navbar {min-height: 80px; padding: 0;}
.fw-container {position: relative; min-height: 80px; display: flex; align-items: center;}
.fw-call {position: relative; display: flex; flex-direction: column; align-items: center; margin-left: auto; padding-top: 9px; flex-shrink: 0;}
.fw-call-title {position: absolute; top: -5px; left: 50%; width: max-content; transform: translateX(-50%); color: #000; font-size: 11px; font-weight: 700;
line-height: 1; white-space: nowrap;}
body.home .fw-call-title{color:#fff;}
.fw-call-button {padding: 8px 10px 6px 19px; color: #000; background: #fff; border: 2px solid #f5a000; border-radius: 30px; text-decoration: none; position:relative;}
.fw-call-button:hover {color: #111; background: #fff; border-color: #f5a000; transform: translateY(-1px);}
/*.fw-phone-icon {width: 31px; height: 31px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #111; background: #fff; border-radius: 50%; font-size: 14px;}*/
.fw-phone-number {color: #111; font-size: 15px; font-weight: 900; letter-spacing: 2px; white-space: nowrap;}
.fw-phone-icon{position: absolute; left: -29px; top: -3px; width: 44px; height: 44px; background: #ffffff; border-radius: 50%; border: 2px solid #ef9b07;
    display: flex; justify-content: center; align-items: center; box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); animation: ringShake 1s infinite; transform-origin: center;}
.fw-phone-icon img{width: auto !important; max-width: 24px !important; height: 24px !important; flex-shrink: 0;}
@keyframes ringShake{
    0% {transform: rotate(0deg);}
    15% {transform: rotate(15deg);}
    30% {transform: rotate(-15deg);}
    45% {transform: rotate(10deg);}
    60% {transform: rotate(-10deg);}
    75% {transform: rotate(5deg);}
    100% {transform: rotate(0deg);}
}
.site-header.fixed-top {background: #fff; box-shadow: 0 0 15px rgba(204, 204, 204, 0.3411764706); -webkit-animation-name: header; animation-name: header;
-webkit-animation-duration: 1s; animation-duration: 1s; -webkit-animation-fill-mode: both; animation-fill-mode: both; position: fixed; top: 0; right: 0;  z-index: 1030;}
.site-header.fixed-top .fw-desktop-link, .site-header.fixed-top  .fw-normal-link{color:#000;}
.site-header.fixed-top .fw-arrow{border-bottom-color:#000; border-right-color:#000;}
.site-header.fixed-top .fw-call-title{color:#000;}
.site-header.fixed-top .fw-hamburger span {background: #000;}

@keyframes header {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@media (min-width: 1200px) {
.fw-navbar-collapse {position: absolute; top: 10px; left: 50%; display: flex; align-items: center;  transform: translateX(-50%);}
.fw-navbar-collapse.collapse {display: flex;}
.fw-menu {display: flex; align-items: center; justify-content: center; gap: 5px; margin: 0; padding: 0; list-style: none;}
.fw-menu > .nav-item {position: relative; display: flex; align-items: center;}
.fw-desktop-link, .fw-normal-link {display: flex; align-items: center; padding: 30px 10px!important; color: #000; background: transparent; font-size: 15px;
font-weight: 600; line-height: 1; text-decoration: none; white-space: nowrap; transition: color .2s ease; font-family:var(--font-display);}
.fw-arrow {width: 7px; height: 7px; margin-left: 5px; border-right: 1.5px solid #000; border-bottom: 1.5px solid #000; transform: rotate(45deg) translateY(-5px); transition: transform .2s ease;}
/*.fw-dropdown:hover .fw-arrow {transform: rotate(225deg) translateY(-2px);}*/
body.home .fw-desktop-link, body.home .fw-normal-link {color:#fff;}
body.home .fw-arrow{border-right-color:#fff; border-bottom-color:#fff;}
body.home .fw-call-title{color:#fff;}
body.home .fw-hamburger span{color:#fff;}
.fw-desktop-link:hover, .fw-normal-link:hover, .fw-desktop-link:hover .fw-arrow, .fw-normal-link:hover .fw-arrow {color: #f5a000!important;}
.fw-dropdown {position: relative;}
.fw-submenu {position: absolute; top: 70px; left: 50%; width: 220px; padding: 0 0; background: #fff; border: 1px solid #eee; border-radius: 5px; opacity: 0; z-index: 99999;
box-shadow: 0 0 15px rgba(204, 204, 204, 0.3411764706); visibility: hidden; pointer-events: none; transform: translate(-50%, 10px); transition: opacity .2s ease, visibility .2s ease, transform .2s ease; }
.fw-dropdown:hover > .fw-submenu {opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0);}
.fw-submenu a {display: block; padding: 0px 20px; color: #777; background: #fff; font-size: 15px; font-weight: 600; line-height: 2.5; text-decoration: none; transition: .2s ease; border-bottom:1px solid #f1f1f1;}
.fw-submenu a:hover {color: #fff; background: #f5a000;}
.fw-mobile-dropdown, .fw-toggler {display: none;}
.fw-submenu.collapse:not(.show) { display:block; }
}
@media (max-width: 1199.98px) {
.fw-navbar {min-height: 60px;}
.fw-container {min-height: 60px; padding-left: 15px; padding-right: 15px;}
.fw-call {padding-top: 7px;}
.fw-call-title {font-size: 9px;}
/*.fw-call-button {width: 175px; height: 38px;}*/
/*.fw-phone-icon {width: 29px; height: 29px; font-size: 13px;}*/
/*.fw-phone-number {font-size: 11px; letter-spacing: 1.5px;}*/
.fw-toggler {display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; margin-left: 10px; padding: 0; border: 0; outline: 0;
box-shadow: none!important; background: transparent;}
.fw-hamburger {width: 24px; height: 20px; display: flex; flex-direction: column; justify-content: space-between;}
.fw-hamburger span {display: block; width: 24px; height: 2px; background: #000; transition: .25s ease;}
body.home .fw-hamburger span {background: #fff; }
.fw-toggler[aria-expanded="true"] .fw-hamburger span:nth-child(1) {transform: translateY(9px) rotate(45deg);}
.fw-toggler[aria-expanded="true"] .fw-hamburger span:nth-child(2) {opacity: 0;}
.fw-toggler[aria-expanded="true"] .fw-hamburger span:nth-child(3) {transform: translateY(-9px) rotate(-45deg);}
.fw-navbar-collapse {position: absolute; top: 80px; left: 15px; width: calc(100% - 30px); margin: 0; padding: 0; background: #211e25; box-shadow: 0 10px 25px rgba(0, 0, 0, .2); z-index: 99999;}
.fw-menu {width: 100%; max-height: 255px; margin: 0; padding: 0; overflow-y: auto; list-style: none;}
.fw-menu > .nav-item {width: 100%; margin: 0; padding: 0; border-bottom: 1px solid rgba(255, 255, 255, .08);}
.fw-desktop-link {display: none;}
.fw-mobile-dropdown {display: flex; align-items: center; justify-content: space-between; width: 100%; min-height: 50px; margin: 0; padding: 0 15px; border: 0;
color: #fff; background: transparent; font-size: 13px; font-weight: 500; text-align: left; cursor: pointer;}
.fw-mobile-dropdown:hover {color: #fff; /*background: rgba(255, 255, 255, .03);*/ background:#4f6487;}
.fw-plus {display: flex; align-items: center; justify-content: center; width: 34px; height: 50px; margin-right: -15px; border-left: 1px solid rgba(255, 255, 255, .08);
color: #fff; font-size: 22px; font-weight: 300;}
.fw-mobile-dropdown:not(.collapsed) .fw-plus {font-size: 0;}
.fw-mobile-dropdown:not(.collapsed) .fw-plus::before {content: "−"; font-size: 22px;}
.fw-submenu {position: static; width: 100%; padding: 0; background: #211e25; border: 0; border-radius: 0; box-shadow: none; transform: none;}
.fw-submenu a {display: block; width: 100%; min-height: 40px; padding: 11px 15px; color: #d0cae8; /*background: #211e25;*/ background:#424242; border-top: 1px solid rgba(255, 255, 255, .07);
font-size: 13px; font-weight: 400; text-decoration: none;}
.fw-submenu a:hover {color: #fff; background: rgba(255, 255, 255, .04);}
.fw-normal-link {display: flex; align-items: center; width: 100%; min-height: 50px; padding: 0 15px; color: #fff; background: transparent; font-size: 13px;
font-weight: 500; text-decoration: none;}
.fw-normal-link:hover {color: #fff; background: rgba(255, 255, 255, .03);}
.fw-menu a:hover, .fw-menu a:focus{background:#f5a000;}
.hero__slide{transform:scale(1);}
.site-header.fixed-top .fw-desktop-link, .site-header.fixed-top .fw-normal-link {color: #fff;}
}
@media (max-width: 575px) {
.fw-container {padding-left: 12px; padding-right: 12px;}
/*.fw-call-button {width: 145px; height: 36px; gap: 5px; padding-right: 8px;}*/
/*.fw-phone-icon {width: 27px; height: 27px;}
.fw-phone-number {font-size: 9px; letter-spacing: 1px;}*/
.fw-call-title {font-size: 8px;}
.fw-toggler {margin-left: 5px;}
.fw-navbar-collapse {left: 12px;width: calc(100% - 24px);}
.headerLogo img {width: 135px;}
}
@media (max-width: 480px){
.fw-call-button {padding:4px 8px 4px 15px;}
.fw-phone-icon {width: 34px; height: 34px; left: -22px; top: 0;}
.fw-phone-number {font-size: 13px; letter-spacing: 1px;}
.fw-phone-icon img {max-width: 18px !important; height: 18px !important;}
}
.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight{color:#fff; background:var(--orange);}
.ui-datepicker .ui-datepicker-next, .ui-datepicker .ui-datepicker-prev {background: #fff;}
.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus{background-color:var(--orange); color:#fff; border-color:var(--orange);}
.ui-widget-header{background:var(--orange); border-color:var(--orange);}
.ui-datepicker-next.ui-state-hover, .ui-datepicker-prev.ui-state-hover{background:#fff;}

/* Navbar new end */
/* Quote popup start */
.quote-popup-wr {-webkit-backdrop-filter: blur(2px); position: fixed; top: 0; left: 0; height: 100%; width: 100%; backdrop-filter: blur(2px); background: rgba(0,0,0,.6); z-index: 99911;}
.quote-popup-cont {width: 95%; max-width: 500px; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); background-color: #fff; border-radius: 10px;
    text-align: center; box-shadow: 0 0 5px rgba(0,0,0,.6);}
.quote-popup-t{background:var(--navy); color:#fff; padding:12px 20px; border-radius:8px 8px 0 0; display: flex; align-items: center; gap: 30px; justify-content:center;}
.close_popup {width: 32px; height: 32px; line-height: 32px; position: absolute; top: 15px; right: 15px; text-align: center; border-radius: 50%;
    box-shadow: 0px 1px 5px #000; font-size: 22px; z-index: 1; cursor: pointer; border:1px solid #fff;}
.close_popup:hover {background-color: var(--orange); color: #fff;}
.quote-popup-t-l {width:120px; height:120px; background:#ccc; border:2px solid var(--orange); border-radius:50%; position:relative; overflow:hidden;}
.quote-popup-t-l img{max-width:120px; position:absolute; left:50%; top:50%; transform:translate(-50%,-50%);}
.quote-popup-t-r {}
.quote-popup-t-r p{color:#ddd; font-size:14px;}
.quote-popup-t-r a{font-weight:bolder; font-family:var(--font-display); font-size:26px; text-decoration:none; display:block; line-height:2;}
.quote-popup-t-r p:last-of-type{color:#04a304;}
.quote-popup-t-r p:last-of-type span{width:11px; height:11px; border-radius:50%; background:#04a304; display:inline-block; margin-right:5px;}
.quote-popup-b {padding:12px 20px;}
.quote-popup-b .formField{position:relative;}
.quote-popup-b .formField .icon{position:absolute; left: 13px; top: 13px;}
.quote-popup-b .form-control, .quote-popup-b .form-control:focus{border-radius: 6px; height: 5rem; font-size: 1.3rem; width: 100%; padding: 8px 12px 8px 40px; border: 1px solid #ccc!important; font-size:16px;}
.quote-popup-b .btn{width:100%; border-radius:8px; color:#fff; text-align:center; padding:10px 15px; background:var(--orange); font-size:22px;}
.quote-popup-b .btn:focus, .quote-popup-b .btn:active, .quote-popup-b .btn:hover{background:var(--navy);}
/* Quote popup end */