/* ============ MAIN STYLESHEET ============ */

@keyframes animate {
  0% {
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.4);
  }
  100% {
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
  }
}

@keyframes phone-ring {
  0% { transform: rotate(0) scale(1); }
  10% { transform: rotate(-15deg) scale(1.1); }
  20% { transform: rotate(15deg) scale(1.1); }
  30% { transform: rotate(-15deg) scale(1.1); }
  40% { transform: rotate(15deg) scale(1.1); }
  50% { transform: rotate(0) scale(1); }
  100% { transform: rotate(0) scale(1); }
}

@keyframes trin {
  0% { transform: rotate(0) scale(1); }
  10% { transform: rotate(-15deg) scale(1.1); }
  20% { transform: rotate(15deg) scale(1.1); }
  30% { transform: rotate(-15deg) scale(1.1); }
  40% { transform: rotate(15deg) scale(1.1); }
  50% { transform: rotate(0) scale(1); }
  100% { transform: rotate(0) scale(1); }
}

.phone-svg-animated {
  animation: phone-ring 1.5s infinite ease-in-out;
  transform-origin: center;
  display: inline-block;
  vertical-align: middle;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.text-center {
  text-align: center;
}

.black {
  color: black;
}

a.link-neutral {
  text-decoration: none;
  color: inherit;
}

a.link-neutral:visited {
  text-decoration: none;
  color: inherit;
}

/* HERO Section */
.hero {
  background-image: linear-gradient(rgba(22, 22, 22, 0.5), rgba(22, 22, 22, 0.5)), url('../images/hero-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: white;
  position: relative;
}

.hero-content {
  padding: 40px 20px 60px 20px;
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.hero-title {
  font-size: 32px;
  line-height: 1.25;
  padding: 15px 10px 10px 10px;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  color: #f5a623;
  margin: 0 0 24px;
}

.hero-bottom {
  background: #096198;
  color: white;
  padding: 24px 0;
  font-size: 26px;
  line-height: 30px;
}

.hero-bottom-title {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
}

.hero-bottom-text {
  font-weight: 700;
  color: #ffffff;
}

@media screen and (min-width: 768px) {
  .hero-content {
    padding: 60px 20px;
  }
  .hero-title {
    font-size: 44px;
    line-height: 1.2;
    padding: 0 0 15px;
  }
  .hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .hero-bottom {
    padding: 30px 0;
    font-size: 32px;
  }
}

@media screen and (min-width: 1200px) {
  .hero-content {
    padding: 80px 20px;
  }
}

/* Booking Widget */
.booking-widget {
  background: #ffffff;
  color: #222;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  max-width: 1100px;
  margin: 0 auto 30px;
  text-align: left;
  box-sizing: border-box;
}

.booking-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.booking-tab {
  background: #f1f3f6;
  color: #555;
  border: none;
  outline: none;
  padding: 10px 20px;
  border-radius: 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, color 0.2s;
}

.booking-tab:hover { background: #e3e9f0; }
.booking-tab.active { background: #096198; color: #fff; }

.booking-form {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "from"
    "to"
    "depart"
    "return"
    "passengers"
    "submit";
  gap: 14px;
  align-items: end;
}

.booking-field { display: flex; flex-direction: column; min-width: 0; position: relative; }
.booking-field label {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  color: #777;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.booking-field input,
.booking-field select {
  width: 100%;
  border: 1px solid #d8dde3;
  border-radius: 8px;
  padding: 13px 14px;
  font-size: 15px;
  font-family: inherit;
  background: #fafbfc;
  color: #222;
  outline: none;
  box-sizing: border-box;
  height: 48px;
  transition: border-color 0.2s, background 0.2s;
}

.booking-field input:focus,
.booking-field select:focus { border-color: #096198; background: #fff; }

.booking-submit {
  grid-area: submit;
  background: #f5a623;
  color: #fff;
  border: none;
  padding: 0 26px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  height: 48px;
  font-family: inherit;
  transition: background 0.2s;
}

.booking-submit:hover { background: #e09416; }

.booking-field:nth-of-type(1) { grid-area: from; }
.booking-field:nth-of-type(2) { grid-area: to; }
.booking-field:nth-of-type(3) { grid-area: depart; }
.booking-field:nth-of-type(4) { grid-area: return; }
.booking-field:nth-of-type(5) { grid-area: passengers; }

@media (min-width: 640px) {
  .booking-form {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "from to"
      "depart return"
      "passengers passengers"
      "submit submit";
  }
}

@media (min-width: 960px) {
  .booking-form {
    grid-template-columns: 1.3fr 1.3fr 1.15fr 1.15fr 1.1fr auto;
    grid-template-areas: "from to depart return passengers submit";
  }
  .booking-form--oneway {
    grid-template-columns: 1.4fr 1.4fr 1.15fr 1.1fr auto;
    grid-template-areas: "from to depart passengers submit";
  }
}

@media (min-width: 640px) and (max-width: 959px) {
  .booking-form--oneway {
    grid-template-areas:
      "from to"
      "depart passengers"
      "submit submit";
  }
}

/* Loader and Results inside Widget */
.booking-loader,
.booking-result { display: none; padding: 22px 6px 6px; text-align: center; }
.booking-loader.open,
.booking-result.open { display: block; animation: fadeIn 0.25s ease-out; }

.booking-loader p {
  margin: 18px 0 0;
  color: #555;
  font-size: 15px;
}

.spinner {
  width: 48px;
  height: 48px;
  margin: 0 auto;
  border: 4px solid #e3e9f0;
  border-top-color: #096198;
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.booking-result__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #e6f4ea;
  color: #2e8b57;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.booking-result__icon svg { width: 28px; height: 28px; }
.booking-result h3 {
  color: #0a4d7a;
  font-size: 22px;
  margin: 0 0 8px;
  font-weight: 700;
}

.booking-result p {
  color: #455564;
  font-size: 15px;
  line-height: 1.6;
  margin: 0 auto 16px;
  max-width: 560px;
}

.booking-result__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #f5a623;
  color: #ffffff;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 28px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 22px rgba(245,166,35,0.35);
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}

.booking-result__cta:hover {
  background: #e09416;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(245,166,35,0.45);
}

/* Autocomplete suggestions dropdown */
.ac-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 4px;
  background: #ffffff;
  border: 1px solid #d8dde3;
  border-radius: 10px;
  box-shadow: 0 14px 32px rgba(9,45,68,0.18);
  max-height: 280px;
  overflow-y: auto;
  z-index: 40;
  display: none;
}

.ac-list.open { display: block; }

.ac-item {
  padding: 11px 16px;
  font-size: 14.5px;
  color: #2d3a48;
  cursor: pointer;
  border-bottom: 1px solid #f1f3f6;
  transition: background 0.12s, color 0.12s;
}

.ac-item:last-child { border-bottom: none; }
.ac-item:hover,
.ac-item--active {
  background: #e8f0f6;
  color: #096198;
}

.ac-list::-webkit-scrollbar { width: 6px; }
.ac-list::-webkit-scrollbar-thumb { background: #cfd9e3; border-radius: 3px; }
.ac-list::-webkit-scrollbar-track { background: #f5f7fa; }

/* Hero chips below widget */
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 10px;
  margin: 26px auto 0;
  max-width: 720px;
}

.hero-chips span {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  backdrop-filter: blur(4px);
  white-space: nowrap;
}

.hero-chips span i {
  display: inline-block;
  color: #f5a623;
  font-style: normal;
  font-weight: 700;
  margin-right: 6px;
}

/* Advantages Grid */
.advantages {
  max-width: 1200px;
  margin: 70px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 700px) {
  .advantages { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

.advantages-item {
  background: #fff;
  border: 1px solid #e3e9f0;
  border-radius: 14px;
  padding: 32px 26px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.advantages-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(9,97,152,0.10);
  border-color: #cfd9e3;
}

.advantages-item__icon {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, #e8f0f6 0%, #f5e8d4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.advantages-item__icon svg {
  width: 30px;
  height: 30px;
  stroke: #096198;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.advantages-item__info { width: 100%; }

.advantages-item__heading {
  color: #0a4d7a;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 8px;
}

.advantages-item__description {
  color: #6b7a8a;
  font-size: 14.5px;
  line-height: 1.55;
  font-weight: 400;
}

/* Cabin Types Section */
.cabin-types { padding: 60px 20px; background: #ffffff; }

.section-title {
  text-align: center;
  font-size: 28px;
  line-height: 1.2;
  color: #096198;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 0 0 10px;
}

.section-subtitle {
  text-align: center;
  color: #666;
  font-size: 16px;
  margin: 0 0 36px;
  padding: 0 15px;
}

@media screen and (min-width: 768px) {
  .section-title { font-size: 36px; }
  .section-subtitle { font-size: 18px; margin-bottom: 50px; }
}

.cabin-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.cabin-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(9,97,152,0.10);
  border: 1px solid #eef1f5;
  display: flex;
  flex-direction: column;
}

.cabin-card__image {
  height: 180px;
  background-size: cover;
  background-position: center;
}

.cabin-coach    {
  background-color: #4a90c9;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.25) 100%),
    url("https://images.unsplash.com/photo-1519074002996-a69e7ac46a42?auto=format&fit=crop&w=800&q=80");
}

.cabin-business {
  background-color: #0a4d7a;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.25) 100%),
    url("https://images.unsplash.com/photo-1541417904950-b855846fe074?auto=format&fit=crop&w=800&q=80");
}

.cabin-private  {
  background-color: #c0741a;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.25) 100%),
    url("https://images.unsplash.com/photo-1569003339405-ea396a5a8a90?auto=format&fit=crop&w=800&q=80");
}

.cabin-card__body { padding: 24px; display: flex; flex-direction: column; flex-grow: 1; }
.cabin-card__body h3 { color: #096198; font-size: 22px; margin: 0 0 8px; }
.cabin-card__price { color: #555; margin: 0 0 12px; font-size: 15px; }
.cabin-card__price strong { color: #f5a623; font-size: 24px; }
.cabin-card__body p { color: #555; line-height: 1.55; font-size: 15px; margin: 0 0 16px; flex-grow: 1; }

.cabin-card__cta {
  display: inline-block;
  color: #096198;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  text-decoration: none;
  transition: color 0.2s;
  margin-top: auto;
}

.cabin-card__cta:hover { color: #f5a623; }

@media screen and (min-width: 768px) {
  .cabin-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Featured Destinations */
.destinations { padding: 60px 20px; background: #f5f7fa; }

.destination-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.destination-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.25s, box-shadow 0.25s;
}

.destination-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,0.12); }

.destination-card__image {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.dest-nyc     {
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.55) 100%),
    url("https://images.unsplash.com/photo-1496442226666-8d4d0e62e6e9?w=800&q=80&auto=format&fit=crop");
}
.dest-la      {
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.55) 100%),
    url("https://images.unsplash.com/photo-1444723121867-7a241cacace9?w=800&q=80&auto=format&fit=crop");
}
.dest-chicago {
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.55) 100%),
    url("https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?w=800&q=80&auto=format&fit=crop");
}
.dest-boston  {
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.55) 100%),
    url("https://images.unsplash.com/photo-1573524949339-b830334a31ee?w=800&q=80&auto=format&fit=crop");
}
.dest-dc      {
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.55) 100%),
    url("https://images.unsplash.com/photo-1508385082359-f38ae991e8f2?w=800&q=80&auto=format&fit=crop");
}
.dest-sf      {
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.55) 100%),
    url("https://images.unsplash.com/photo-1521747116042-5a810fda9664?w=800&q=80&auto=format&fit=crop");
}

.destination-card__body {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.destination-card__body h3 { color: #096198; font-size: 19px; margin: 0; }
.destination-card__price { margin: 0; color: #666; font-size: 14px; }
.destination-card__price strong { color: #f5a623; font-size: 20px; }

.destination-card__cta {
  display: inline-block;
  padding: 8px 16px;
  background: #096198;
  color: #fff;
  border-radius: 20px;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.destination-card__cta:hover { background: #074a75; }

@media screen and (min-width: 700px) {
  .destination-grid { grid-template-columns: repeat(2, 1fr); }
}
@media screen and (min-width: 1024px) {
  .destination-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Popular Routes Section */
.routes-section { padding: 60px 20px; background: #ffffff; }

.routes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.route-card {
  display: block;
  background: #f8fafc;
  border: 1px solid #e3e9f0;
  border-left: 4px solid #096198;
  padding: 20px 22px;
  border-radius: 8px;
  color: #222;
  text-decoration: none;
  transition: all 0.2s;
}

.route-card:hover { background: #fff; border-left-color: #f5a623; transform: translateX(4px); }

.route-card__row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 600;
  color: #096198;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.route-arrow { color: #f5a623; font-size: 20px; }

.route-card__meta {
  display: flex;
  justify-content: space-between;
  color: #666;
  font-size: 14px;
}

.route-card__price { color: #f5a623; font-weight: 700; font-size: 16px; }

/* Reservations Desk Redesign */
.desk-section {
  background: #f5f7fa;
  padding: 80px 20px;
}

.desk-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

.desk-section__eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 700;
  color: #f5a623;
  margin: 0 0 12px;
}

.desk-section__title {
  font-size: 32px;
  line-height: 1.2;
  color: #0a4d7a;
  margin: 0 0 18px;
  font-weight: 700;
  letter-spacing: -0.4px;
}

.desk-section__lead {
  color: #455564;
  line-height: 1.75;
  font-size: 16px;
  margin: 0 0 24px;
}

.desk-section__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #096198;
  color: #ffffff;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 28px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 8px 22px rgba(9,97,152,0.30);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.desk-section__cta:hover { background: #074a75; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(9,97,152,0.40); color: #ffffff; }

.desk-section__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.desk-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 26px;
  border: 1px solid #e3e9f0;
  box-shadow: 0 8px 22px rgba(9,45,68,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}

.desk-card:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(9,45,68,0.10); }

.desk-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #e8f0f6 0%, #f5e8d4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #096198;
}

.desk-card__icon svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.desk-card h3 { color: #0a4d7a; font-size: 20px; margin: 0 0 10px; font-weight: 700; }
.desk-card p  { color: #455564; line-height: 1.7; font-size: 15px; margin: 0; }
.desk-card strong { color: #096198; }

@media (min-width: 900px) {
  .desk-section__inner { grid-template-columns: 1fr 1.1fr; gap: 60px; }
  .desk-section__cards { gap: 22px; }
}

/* Testimonials section */
.testimonials { padding: 70px 20px; background: #ffffff !important; }

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: #ffffff;
  padding: 28px 24px;
  border-radius: 12px;
  border: 1px solid #e3e9f0;
  border-top: 4px solid #096198;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
}

.testimonial-card__stars { color: #f5a623; font-size: 17px; letter-spacing: 2px; margin-bottom: 12px; }
.testimonial-card__quote { font-style: italic; color: #2d3a48; line-height: 1.65; margin: 0 0 20px; flex-grow: 1; }

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #e3e9f0;
  padding-top: 15px;
}

.testimonial-card__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: #096198;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
}

.testimonial-card__author strong { display: block; color: #096198; }
.testimonial-card__author span { color: #888; font-size: 13px; }

@media (min-width: 700px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); } }

/* POPUP Support Desk CSS */
.popup {
  background: white;
  width: 100%;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
}

.popup-inner {
  display: block;
  background: white;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.popup-close {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  right: 15px;
  top: 10px;
  font-size: 38px;
  line-height: 44px;
  color: #333333;
  cursor: pointer;
  background: none;
  z-index: 100000;
}

.popup-content {
  padding: 20px 20px 80px 20px;
  max-width: 480px;
  margin: 0 auto;
}

.popup-title {
  font-size: 20px;
  color: #ffffff;
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 10px;
  background-color: #096198;
  padding: 12px 0px;
  margin-bottom: 20px;
  border-radius: 6px;
}

.popup-customer-rep img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.popup-service {
  display: flex;
  justify-content: center;
  margin-top: 16px;
  margin-bottom: 12px;
}

.popup-service button {
  background: #096198;
  border-radius: 50px;
  padding: 12px 15px;
  font-size: 18px;
  border: none;
  color: #fff;
  width: 100%;
  font-weight: 700;
  line-height: 22px;
}

.popup-text {
    font-size: 16px;
    color: #1a1a1a;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 12px;
}

.popup-call {
  border-radius: 47px;
  background: #fe5a04;
  display: flex;
  padding: 8px 12px;
  margin: 14px 0;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 16px rgba(254,90,4,0.3);
}

.popup-phone-circle {
  border: solid 3px #fff;
  height: 45px;
  width: 45px;
  background: #fe5a04;
  margin-right: 10px;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: trin 1.5s infinite linear;
}
.popup-phone-circle::before {
  content: "📞";
  font-size: 20px;
  color: white;
}

.popup-call h4 {
  margin: 0;
  font-weight: 700;
  font-size: 18px;
  color: white;
}

.popup-call h4 .phone-num-large {
  font-weight: bold;
  color: #ffffff;
  font-size: 28px;
  letter-spacing: 1px;
}

.popup-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #096198;
  color: white;
  padding: 20px 0;
  font-size: 26px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

@media screen and (min-width: 768px) {
  .popup {
    display: none !important;
  }
}

/* Bottom banner styles have been moved to footer.css to ensure global styling availability across all pages */
