/* =============================
BASE RESET
============================= */

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:#e6e8ec;
  color:#1c2a3a;
  display:flex;
  justify-content:center;
  min-height:100vh;
}

/* =============================
APP WRAPPER
============================= */

.st-app{
  position:relative;
  width:100%;
  max-width:420px;
  min-height:100vh;
  background:#ffffff;
  box-shadow:0 0 0 1px rgba(15,23,42,0.04);
}

.st-main{
     padding-top: 5px;

}

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

.st-header{
  position:sticky;
  top:0;
  z-index:999;
  width:100%;
  background:#ffffff;
  border-bottom:1px solid #e8edf3;
  box-shadow:0 2px 6px rgba(0,0,0,0.05);
}

.st-header-container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:12px 14px;
}

.st-logo{
  flex:0 0 auto;
}

.st-logo img{
  height:34px;
  width:auto;
  display:block;
}

.st-trust{
  display:flex;
  align-items:center;
  gap:6px;
  min-width:0;
  font-size:12px;
  font-weight:600;
  color:#1f3a8a;
  background:#f3f6ff;
  padding:6px 10px;
  border-radius:999px;
  white-space:nowrap;
}

.st-trust i{
  color:#f5b400;
  font-size:11px;
}

.st-actions{
  display:flex;
  align-items:center;
  gap:8px;
  flex:0 0 auto;
}

.st-call-btn,
.st-whatsapp-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  width:38px;
  height:38px;
  border-radius:10px;
  font-size:15px;
  text-decoration:none;
  transition:all .25s ease;
}

.st-call-btn{
  background:#1f3a8a;
  color:#ffffff;
}

.st-call-btn:hover{
  background:#17306f;
}

.st-whatsapp-btn{
  background:#25D366;
  color:#ffffff;
}

.st-whatsapp-btn:hover{
  background:#1faf55;
}

/* =============================
PREMIUM HERO SECTION
============================= */

.st-hero{
  position:relative;
  padding:14px 14px 20px;
  background:#ffffff;
}

.st-hero-media{
  position:relative;
  width:100%;
  height:250px;
  border-radius:22px;
  overflow:hidden;
  background:#dfe6ee;
  box-shadow:0 10px 24px rgba(16,24,40,0.10);
}

.st-hero-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.st-hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to top,
    rgba(9,20,44,0.72) 0%,
    rgba(9,20,44,0.18) 50%,
    rgba(9,20,44,0.06) 100%
  );
}

.st-hero-content{
  position:relative;
  margin-top:-72px;
  z-index:2;
  background:#ffffff;
  border-radius:22px;
  padding:18px 16px 16px;
  box-shadow:0 12px 28px rgba(15,23,42,0.08);
  border:1px solid #edf1f6;
}

.st-hero-kicker{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:6px 12px;
  border-radius:999px;
  background:#fff4e8;
  color:#d97706;
  font-family:'Poppins',sans-serif;
  font-size:12px;
  font-weight:600;
  letter-spacing:.2px;
  margin-bottom:12px;
}

.st-hero h1{
  font-family:'Poppins',sans-serif;
  font-size:28px;
  line-height:1.18;
  font-weight:700;
  color:#10233f;
  letter-spacing:-0.4px;
  margin:0 0 10px;
}

.st-hero p{
  font-size:14px;
  line-height:1.7;
  color:#506073;
  margin:0 0 16px;
}

.st-hero-chips{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:18px;
}

.st-hero-chips span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 12px;
  border-radius:999px;
  background:#f3f7fd;
  border:1px solid #e4ebf5;
  color:#183b6b;
  font-size:12px;
  font-weight:600;
  line-height:1;
  white-space:nowrap;
}

.st-hero-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-bottom:16px;
}

.st-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  height:46px;
  border-radius:14px;
  text-decoration:none;
  font-size:14px;
  font-weight:700;
  font-family:'Poppins',sans-serif;
  transition:all .25s ease;
}

.st-btn i{
  font-size:15px;
}

.st-btn-primary{
  background:#1d4ed8;
  color:#ffffff;
  box-shadow:0 8px 18px rgba(29,78,216,0.18);
}

.st-btn-primary:hover{
  background:#193fb1;
}

.st-btn-secondary{
  background:#fff7ed;
  color:#b45309;
  border:1px solid #fed7aa;
}

.st-btn-secondary:hover{
  background:#ffedd5;
}

.st-hero-points{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
}

.st-point{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  gap:7px;
  background:#f8fafc;
  border:1px solid #ebf0f5;
  border-radius:16px;
  padding:12px 8px;
  min-height:82px;
}

.st-point i{
  font-size:16px;
  color:#1f3a8a;
}

.st-point span{
  font-size:11px;
  line-height:1.35;
  font-weight:600;
  color:#334155;
}

/* =============================
SMALL MOBILE REFINEMENT
============================= */

@media (max-width:380px){

  .st-header-container{
    padding:10px 12px;
    gap:8px;
  }

  .st-logo img{
    height:30px;
  }

  .st-trust{
    font-size:11px;
    padding:5px 8px;
  }

  .st-call-btn,
  .st-whatsapp-btn{
    width:36px;
    height:36px;
    font-size:14px;
  }

  .st-hero-media{
    height:220px;
  }

  .st-hero-content{
        margin-top: -29px;
    padding:16px 14px 14px;
  }

  .st-hero h1{
    font-size:24px;
  }

  .st-hero-actions{
    grid-template-columns:1fr;
  }

  .st-hero-points{
    grid-template-columns:1fr;
  }
} 

/* =============================
SECTION HEAD
============================= */

.st-section-head{
  padding:8px 14px 0;
  margin-bottom:14px;
}

.st-section-kicker{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:5px 11px;
  border-radius:999px;
  background:#eef4ff;
  color:#1f3a8a;
  font-family:'Poppins',sans-serif;
  font-size:12px;
  font-weight:600;
  margin-bottom:10px;
}

.st-section-head h2{
  font-family:'Poppins',sans-serif;
  font-size:24px;
  line-height:1.2;
  font-weight:700;
  color:#10233f;
  margin:0 0 8px;
}

.st-section-head p{
  font-size:14px;
  line-height:1.7;
  color:#5b6b7e;
}

.st-packages{
  padding:4px 0 22px;
  background:#f9fbfe;
}

.st-package-filters{
  display:flex;
  gap:10px;
  overflow-x:auto;
  padding:0 14px 6px;
  margin-bottom:14px;
  scrollbar-width:none;
}

.st-package-filters::-webkit-scrollbar{
  display:none;
}

.st-filter-btn{
  flex:0 0 auto;
  border:none;
  outline:none;
  background:#ffffff;
  color:#26415f;
  border:1px solid #e4ebf3;
  padding:10px 14px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  font-family:'Poppins',sans-serif;
  cursor:pointer;
  transition:all .25s ease;
}

.st-filter-btn.active{
  background:#1f3a8a;
  color:#ffffff;
  border-color:#1f3a8a;
  box-shadow:0 8px 18px rgba(31,58,138,0.16);
}

.st-packages-row{
  display:flex;
  gap:14px;
  overflow-x:auto;
  padding:0 14px 6px;
  scroll-snap-type:x mandatory;
  scrollbar-width:none;
}

.st-packages-row::-webkit-scrollbar{
  display:none;
}

.st-package-card{
  flex:0 0 86%;
  background:#ffffff;
  border:1px solid #e7edf4;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 10px 24px rgba(15,23,42,0.06);
  scroll-snap-align:start;
}

.st-package-card[hidden]{
  display:none !important;
}

.st-package-image{
  position:relative;
  height:190px;
  overflow:hidden;
  background:#dde7f0;
}

.st-package-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.st-package-badge{
  position:absolute;
  left:14px;
  top:14px;
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,0.92);
  color:#17345d;
  font-size:12px;
  font-weight:700;
  font-family:'Poppins',sans-serif;
  box-shadow:0 6px 16px rgba(0,0,0,0.08);
}

.st-package-body{
  padding:16px;
}

.st-package-top{
  margin-bottom:14px;
}

.st-package-duration{
  display:inline-flex;
  align-items:center;
  gap:7px;
  font-size:12px;
  font-weight:600;
  color:#5d6f83;
  margin-bottom:8px;
}

.st-package-top h3{
  font-family:'Poppins',sans-serif;
  font-size:22px;
  line-height:1.25;
  font-weight:700;
  color:#10233f;
  margin:0;
}

.st-package-desc{
  margin-top:8px;
  font-size:13px;
  line-height:1.65;
  color:#627386;
}

.st-package-points,
.st-package-places{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:16px;
}

.st-package-points span,
.st-package-places span{
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:8px 11px;
  border-radius:999px;
  background:#f5f8fc;
  border:1px solid #e6edf5;
  color:#35506d;
  font-size:12px;
  font-weight:600;
  line-height:1;
}

.st-more-chip{
  background:#fff7ed !important;
  border-color:#fed7aa !important;
  color:#b45309 !important;
}

.st-package-price-hero{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  padding:16px 16px;
  margin-bottom:14px;
  border-radius:18px;
  background:#102f63;
  color:#ffffff;
}

.st-package-price-hero small{
  display:block;
  font-size:11px;
  font-weight:600;
  opacity:.84;
  margin-bottom:4px;
}

.st-package-price-hero strong{
  display:block;
  font-family:'Poppins',sans-serif;
  font-size:30px;
  line-height:1;
  font-weight:700;
  letter-spacing:-0.6px;
}

.st-package-price-hero span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:34px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,0.14);
  font-size:12px;
  font-weight:700;
  font-family:'Poppins',sans-serif;
}

.st-vehicle-strip{
  display:flex;
  gap:8px;
  overflow-x:auto;
  padding-bottom:4px;
  margin-bottom:14px;
  scrollbar-width:none;
}

.st-vehicle-strip::-webkit-scrollbar{
  display:none;
}

.st-vehicle-strip span{
  flex:0 0 auto;
  padding:8px 10px;
  border-radius:999px;
  background:#eef4ff;
  border:1px solid #dbe7fb;
  color:#173b70;
  font-size:11px;
  font-weight:700;
  white-space:nowrap;
}

.st-package-meta-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
  margin-bottom:14px;
}

.st-meta-box{
  padding:14px;
  border-radius:16px;
  background:#f7fbff;
  border:1px solid #e6eef8;
}

.st-meta-box-light{
  background:#fcfcfd;
  border-color:#eceff3;
}

.st-meta-box h4{
  display:flex;
  align-items:center;
  gap:8px;
  margin:0 0 10px;
  font-family:'Poppins',sans-serif;
  font-size:13px;
  font-weight:700;
  color:#10233f;
}

.st-meta-box h4 i{
  color:#1f3a8a;
}

.st-meta-box ul{
  list-style:none;
  display:grid;
  gap:7px;
  margin:0;
  padding:0;
}

.st-meta-box li{
  position:relative;
  padding-left:16px;
  font-size:12px;
  line-height:1.5;
  color:#5d6f83;
}

.st-meta-box li::before{
  content:"";
  position:absolute;
  left:0;
  top:8px;
  width:6px;
  height:6px;
  border-radius:50%;
  background:#f59e0b;
}

.st-package-actions{
  display:grid;
  gap:10px;
}

.st-package-toggle{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:44px;
  width:100%;
  border:none;
  border-radius:14px;
  background:#f5f8fc;
  color:#183b6b;
  font-family:'Poppins',sans-serif;
  font-size:13px;
  font-weight:700;
  cursor:pointer;
}

.st-package-toggle i{
  font-size:12px;
  transition:transform .25s ease;
}

.st-package-card.is-open .st-package-toggle i{
  transform:rotate(180deg);
}

.st-package-cta{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  width:100%;
  min-height:48px;
  padding:0 14px;
  border-radius:14px;
  background:#25D366;
  color:#ffffff;
  text-decoration:none;
  font-family:'Poppins',sans-serif;
  font-size:14px;
  font-weight:700;
  box-shadow:0 10px 18px rgba(37,211,102,0.18);
  transition:all .25s ease;
}

.st-package-cta:hover{
  background:#1faf55;
}

.st-package-expand{
  display:none;
  padding-top:14px;
}

.st-package-card.is-open .st-package-expand{
  display:block;
}

.st-expand-block h5{
  margin:0 0 10px;
  font-family:'Poppins',sans-serif;
  font-size:13px;
  font-weight:700;
  color:#10233f;
}

.st-expand-tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.st-expand-tags span{
  display:inline-flex;
  align-items:center;
  padding:8px 10px;
  border-radius:12px;
  background:#f8fafc;
  border:1px solid #e9eef4;
  font-size:12px;
  font-weight:600;
  color:#46586b;
}

/* =============================
PACKAGE MOBILE REFINEMENT
============================= */

@media (max-width:380px){
  .st-section-head h2{
    font-size:22px;
  }

  .st-package-card{
    flex:0 0 90%;
  }

  .st-package-image{
    height:175px;
  }

  .st-package-top h3{
    font-size:20px;
  }

  .st-package-price-hero strong{
    font-size:26px;
  }
}

/* =============================
FLEET SECTION
============================= */

.st-fleet{
  padding:8px 0 24px;
  background:#ffffff;
}

.st-fleet-row{
  display:flex;
  gap:14px;
  overflow-x:auto;
  padding:0 14px 6px;
  scroll-snap-type:x mandatory;
  scrollbar-width:none;
}

.st-fleet-row::-webkit-scrollbar{
  display:none;
}

.st-fleet-card{
  flex:0 0 86%;
  background:#ffffff;
  border:1px solid #e7edf4;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 10px 24px rgba(15,23,42,0.06);
  scroll-snap-align:start;
}

.st-fleet-image{
  position:relative;
  height:190px;
  overflow:hidden;
  background:#dde7f0;
}

.st-fleet-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.st-fleet-badge{
  position:absolute;
  left:14px;
  top:14px;
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,0.92);
  color:#17345d;
  font-size:12px;
  font-weight:700;
  font-family:'Poppins',sans-serif;
  box-shadow:0 6px 16px rgba(0,0,0,0.08);
}

.st-fleet-body{
  padding:16px;
}

.st-fleet-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
  margin-bottom:14px;
}

.st-fleet-top h3{
  font-family:'Poppins',sans-serif;
  font-size:22px;
  line-height:1.25;
  font-weight:700;
  color:#10233f;
}

.st-fleet-capacity{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:8px 11px;
  border-radius:999px;
  background:#f3f7fd;
  border:1px solid #e4ebf5;
  color:#35506d;
  font-size:12px;
  font-weight:700;
}

.st-fleet-price{
  padding:16px;
  border-radius:18px;
  background:#102f63;
  color:#ffffff;
  margin-bottom:14px;
}

.st-fleet-price small{
  display:block;
  font-size:11px;
  font-weight:600;
  opacity:.84;
  margin-bottom:4px;
}

.st-fleet-price strong{
  display:block;
  font-family:'Poppins',sans-serif;
  font-size:30px;
  line-height:1;
  font-weight:700;
  letter-spacing:-0.6px;
}

.st-fleet-points{
  display:grid;
  gap:9px;
  margin-bottom:16px;
}

.st-fleet-points span{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  line-height:1.5;
  color:#5d6f83;
  font-weight:600;
}

.st-fleet-points i{
  color:#1f3a8a;
  font-size:12px;
}

.st-fleet-cta{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  width:100%;
  min-height:48px;
  padding:0 14px;
  border-radius:14px;
  background:#25D366;
  color:#ffffff;
  text-decoration:none;
  font-family:'Poppins',sans-serif;
  font-size:14px;
  font-weight:700;
  box-shadow:0 10px 18px rgba(37,211,102,0.18);
  transition:all .25s ease;
}

.st-fleet-cta:hover{
  background:#1faf55;
}

/* =============================
FLEET MOBILE REFINEMENT
============================= */

@media (max-width:380px){

  .st-fleet-card{
    flex:0 0 90%;
  }

  .st-fleet-image{
    height:175px;
  }

  .st-fleet-top{
    flex-direction:column;
    align-items:flex-start;
  }

  .st-fleet-top h3{
    font-size:20px;
  }

  .st-fleet-price strong{
    font-size:26px;
  }
}

/* =============================
FARE CALCULATOR SECTION
============================= */

.st-fare{
  padding:8px 0 24px;
  background:#f9fbfe;
}

.st-fare-card{
  margin:0 14px;
  background:#ffffff;
  border:1px solid #e7edf4;
  border-radius:24px;
  box-shadow:0 12px 28px rgba(15,23,42,0.06);
  overflow:hidden;
}

.st-fare-form{
  display:grid;
  gap:14px;
  padding:16px;
  border-bottom:1px solid #eef2f6;
}

.st-field label{
  display:block;
  margin-bottom:7px;
  font-size:13px;
  font-weight:700;
  color:#18324f;
  font-family:'Poppins',sans-serif;
}

.st-input-wrap,
.st-select-wrap{
  position:relative;
}

.st-input-wrap i,
.st-select-wrap i{
  position:absolute;
  top:50%;
  left:14px;
  transform:translateY(-50%);
  font-size:14px;
  color:#1f3a8a;
  pointer-events:none;
}

.st-input-wrap input,
.st-select-wrap select{
  width:100%;
  min-height:48px;
  border:1px solid #dbe5ef;
  border-radius:14px;
  background:#fbfdff;
  padding:0 14px 0 42px;
  font-size:14px;
  color:#24384f;
  outline:none;
  transition:border-color .2s ease, box-shadow .2s ease;
}

.st-input-wrap input:focus,
.st-select-wrap select:focus{
  border-color:#9db7e2;
  box-shadow:0 0 0 4px rgba(31,58,138,0.08);
}

.st-select-wrap select{
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
  cursor:pointer;
}

.st-fare-result{
  padding:16px;
}

.st-fare-result-top{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}

.st-fare-result-label{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:5px 10px;
  border-radius:999px;
  background:#eef4ff;
  color:#1f3a8a;
  font-size:12px;
  font-weight:700;
  font-family:'Poppins',sans-serif;
}

#st-fare-amount{
  font-family:'Poppins',sans-serif;
  font-size:34px;
  line-height:1;
  color:#102f63;
  letter-spacing:-0.8px;
}

#st-fare-note{
  font-size:13px;
  line-height:1.65;
  color:#627386;
  margin-bottom:14px;
}

.st-fare-summary{
  padding:14px;
  border-radius:16px;
  background:#f7fbff;
  border:1px solid #e5edf6;
  font-size:13px;
  line-height:1.65;
  color:#35506d;
  font-weight:600;
  margin-bottom:14px;
}

.st-fare-actions{
  display:grid;
  gap:10px;
}

.st-fare-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:48px;
  border:none;
  border-radius:14px;
  text-decoration:none;
  font-size:14px;
  font-weight:700;
  font-family:'Poppins',sans-serif;
  cursor:pointer;
  transition:all .25s ease;
}

.st-fare-btn-primary{
  background:#1f3a8a;
  color:#ffffff;
  box-shadow:0 10px 18px rgba(31,58,138,0.16);
}

.st-fare-btn-primary:hover{
  background:#17306f;
}

.st-fare-btn-whatsapp{
  background:#25D366;
  color:#ffffff;
  box-shadow:0 10px 18px rgba(37,211,102,0.18);
}

.st-fare-btn-whatsapp:hover{
  background:#1faf55;
}

@media (max-width:380px){

  #st-fare-amount{
    font-size:28px;
  }
}

/* =============================
GOOGLE REVIEWS SECTION
============================= */

.st-reviews{
  padding:8px 0 26px;
  background:#ffffff;
}

.st-review-summary-card{
  margin:0 14px 16px;
  padding:18px;
  border-radius:24px;
  background:#102f63;
  color:#ffffff;
  box-shadow:0 14px 28px rgba(16,47,99,0.16);
}

.st-review-summary-top{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  margin-bottom:16px;
}

.st-review-score strong{
  display:block;
  font-family:'Poppins',sans-serif;
  font-size:40px;
  line-height:1;
  font-weight:700;
  letter-spacing:-1px;
}

.st-review-score span{
  display:block;
  margin-top:6px;
  font-size:13px;
  font-weight:600;
  opacity:.9;
}

.st-review-stars{
  display:flex;
  gap:6px;
  font-size:16px;
  color:#fbbf24;
}

.st-review-metrics{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:10px;
}

.st-review-metric{
  padding:12px 8px;
  border-radius:16px;
  background:rgba(255,255,255,0.10);
  text-align:center;
}

.st-review-metric strong{
  display:block;
  font-family:'Poppins',sans-serif;
  font-size:14px;
  font-weight:700;
  margin-bottom:4px;
}

.st-review-metric span{
  display:block;
  font-size:11px;
  line-height:1.4;
  opacity:.9;
}

.st-review-row{
  display:flex;
  gap:14px;
  overflow-x:auto;
  padding:0 14px 8px;
  scroll-snap-type:x mandatory;
  scrollbar-width:none;
}

.st-review-row::-webkit-scrollbar{
  display:none;
}

.st-review-card{
  flex:0 0 86%;
  background:#ffffff;
  border:1px solid #e8eef5;
  border-radius:22px;
  padding:16px;
  box-shadow:0 10px 24px rgba(15,23,42,0.05);
  scroll-snap-align:start;
}

.st-review-card-top{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-bottom:14px;
}

.st-review-user{
  display:flex;
  align-items:center;
  gap:12px;
}

.st-review-avatar{
  width:44px;
  height:44px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#eef4ff;
  color:#1f3a8a;
  font-family:'Poppins',sans-serif;
  font-size:18px;
  font-weight:700;
  flex:0 0 auto;
}

.st-review-user h3{
  font-family:'Poppins',sans-serif;
  font-size:16px;
  line-height:1.2;
  font-weight:700;
  color:#10233f;
  margin:0 0 4px;
}

.st-review-user span{
  font-size:12px;
  line-height:1.5;
  color:#627386;
  font-weight:600;
}

.st-review-card-stars{
  display:flex;
  gap:4px;
  font-size:14px;
  color:#fbbf24;
}

.st-review-card p{
  font-size:14px;
  line-height:1.75;
  color:#4f6176;
}

.st-review-actions{
  display:grid;
  gap:10px;
  padding:14px 14px 0;
}

.st-review-btn-primary,
.st-review-btn-secondary{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:48px;
  border-radius:14px;
  text-decoration:none;
  font-family:'Poppins',sans-serif;
  font-size:14px;
  font-weight:700;
  transition:all .25s ease;
}

.st-review-btn-primary{
  background:#25D366;
  color:#ffffff;
  box-shadow:0 10px 18px rgba(37,211,102,0.18);
}

.st-review-btn-primary:hover{
  background:#1faf55;
}

.st-review-btn-secondary{
  background:#f5f8fc;
  color:#183b6b;
  border:1px solid #e5edf6;
}

.st-review-btn-secondary:hover{
  background:#edf3f9;
}

/* =============================
REVIEWS MOBILE REFINEMENT
============================= */

@media (max-width:380px){

  .st-review-score strong{
    font-size:34px;
  }

  .st-review-metrics{
    grid-template-columns:repeat(2, 1fr);
  }

  .st-review-card{
    flex:0 0 90%;
  }
}

/* =============================
QUICK QUOTE FORM SECTION
============================= */

.st-quote{
  padding:8px 0 28px;
  background:#f9fbfe;
}

.st-quote-card{
  margin:0 14px;
  background:#ffffff;
  border:1px solid #e7edf4;
  border-radius:24px;
  box-shadow:0 12px 28px rgba(15,23,42,0.06);
  overflow:hidden;
  padding:16px;
}

.st-quote-grid{
  display:grid;
  gap:14px;
}

.st-field-full{
  grid-column:1 / -1;
}

.st-textarea-wrap{
  position:relative;
}

.st-textarea-wrap i{
  position:absolute;
  top:16px;
  left:14px;
  font-size:14px;
  color:#1f3a8a;
  pointer-events:none;
}

.st-textarea-wrap textarea{
  width:100%;
  border:1px solid #dbe5ef;
  border-radius:14px;
  background:#fbfdff;
  padding:14px 14px 14px 42px;
  font-size:14px;
  line-height:1.65;
  color:#24384f;
  outline:none;
  resize:vertical;
  min-height:110px;
  transition:border-color .2s ease, box-shadow .2s ease;
}

.st-textarea-wrap textarea:focus{
  border-color:#9db7e2;
  box-shadow:0 0 0 4px rgba(31,58,138,0.08);
}

.st-quote-note{
  margin-top:14px;
  padding:14px;
  border-radius:16px;
  background:#f7fbff;
  border:1px solid #e5edf6;
  font-size:13px;
  line-height:1.65;
  color:#5d6f83;
  font-weight:600;
}

.st-quote-actions{
  display:grid;
  gap:10px;
  margin-top:14px;
}

.st-quote-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:50px;
  border-radius:14px;
  background:#25D366;
  color:#ffffff;
  text-decoration:none;
  font-family:'Poppins',sans-serif;
  font-size:14px;
  font-weight:700;
  box-shadow:0 10px 18px rgba(37,211,102,0.18);
  transition:all .25s ease;
}

.st-quote-btn:hover{
  background:#1faf55;
}

/* =============================
PACKAGE / ROUTE KEYWORDS SECTION
============================= */

.st-keywords{
  padding:8px 0 28px;
  background:#ffffff;
}

.st-keywords-wrap{
  display:grid;
  gap:14px;
  padding:0 14px;
}

.st-keyword-group{
  background:#ffffff;
  border:1px solid #e7edf4;
  border-radius:22px;
  padding:16px;
  box-shadow:0 10px 24px rgba(15,23,42,0.05);
}

.st-keyword-group h3{
  display:flex;
  align-items:center;
  gap:10px;
  font-family:'Poppins',sans-serif;
  font-size:17px;
  line-height:1.3;
  font-weight:700;
  color:#10233f;
  margin-bottom:14px;
}

.st-keyword-group h3 i{
  color:#1f3a8a;
  font-size:15px;
}

.st-keyword-chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.st-keyword-chips a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 13px;
  border-radius:999px;
  background:#f5f8fc;
  border:1px solid #e4ebf5;
  color:#35506d;
  text-decoration:none;
  font-size:12px;
  font-weight:700;
  line-height:1;
  transition:all .25s ease;
}

.st-keyword-chips a:hover{
  background:#eef4ff;
  border-color:#d7e4f8;
  color:#173b70;
} 

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

.st-footer{
  padding:20px 14px 92px;
  background:#10233f;
  color:#ffffff;
}

.st-footer-top{
  display:grid;
  gap:18px;
  margin-bottom:18px;
}

.st-footer-brand img{
  height:42px;
  width:auto;
  display:block;
  margin-bottom:12px;
}

.st-footer-brand h2{
  font-family:'Poppins',sans-serif;
  font-size:22px;
  line-height:1.2;
  font-weight:700;
  margin:0 0 6px;
  color:#ffffff;
}

.st-footer-brand p{
  font-size:14px;
  line-height:1.6;
  color:rgba(255,255,255,0.78);
  font-weight:600;
}

.st-footer-contact{
  display:grid;
  gap:10px;
}

.st-footer-link{
  display:flex;
  align-items:center;
  gap:10px;
  min-height:48px;
  padding:0 14px;
  border-radius:14px;
  text-decoration:none;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.10);
  color:#ffffff;
  font-size:14px;
  font-weight:700;
  font-family:'Poppins',sans-serif;
  transition:all .25s ease;
}

.st-footer-link:hover{
  background:rgba(255,255,255,0.12);
}

.st-footer-link i{
  font-size:15px;
}

.st-footer-block{
  margin-top:18px;
}

.st-footer-block h3{
  display:flex;
  align-items:center;
  gap:10px;
  font-family:'Poppins',sans-serif;
  font-size:16px;
  line-height:1.3;
  font-weight:700;
  color:#ffffff;
  margin-bottom:12px;
}

.st-footer-block h3 i{
  color:#fbbf24;
  font-size:14px;
}

.st-footer-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.st-footer-tags span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 13px;
  border-radius:999px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.10);
  color:rgba(255,255,255,0.88);
  font-size:12px;
  font-weight:700;
  line-height:1;
}

.st-footer-note{
  margin-top:18px;
  padding:14px;
  border-radius:16px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.08);
  font-size:13px;
  line-height:1.7;
  color:rgba(255,255,255,0.82);
  font-weight:600;
}

.st-footer-bottom{
  margin-top:18px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,0.10);
}

.st-footer-bottom p{
  font-size:12px;
  line-height:1.6;
  color:rgba(255,255,255,0.65);
  text-align:center;
}

/* =============================
FOOTER MOBILE REFINEMENT
============================= */

@media (max-width:380px){

  .st-footer{
    padding:18px 12px 92px;
  }

  .st-footer-brand h2{
    font-size:20px;
  }
}

/* =============================
STICKY BOTTOM ACTION BAR
============================= */

.st-sticky-bar{
  position:fixed;
  bottom:0;
  left:50%;
  transform:translateX(-50%);
  width:100%;
  max-width:420px;
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:8px;
  padding:10px 12px calc(10px + env(safe-area-inset-bottom));
  background:rgba(255,255,255,0.96);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border-top:1px solid #e7edf4;
  box-shadow:0 -8px 24px rgba(15,23,42,0.08);
  z-index:1000;
}

.st-sticky-btn{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:5px;
  min-height:54px;
  border-radius:14px;
  text-decoration:none;
  font-family:'Poppins',sans-serif;
  font-size:11px;
  font-weight:700;
  line-height:1.1;
  transition:all .25s ease;
}

.st-sticky-btn i{
  font-size:16px;
}

.st-sticky-call{
  background:#1f3a8a;
  color:#ffffff;
  box-shadow:0 10px 18px rgba(31,58,138,0.16);
}

.st-sticky-call:hover{
  background:#17306f;
}

.st-sticky-whatsapp{
  background:#25D366;
  color:#ffffff;
  box-shadow:0 10px 18px rgba(37,211,102,0.18);
}

.st-sticky-whatsapp:hover{
  background:#1faf55;
}

.st-sticky-quote{
  background:#fff7ed;
  color:#b45309;
  border:1px solid #fed7aa;
}

.st-sticky-quote:hover{
  background:#ffedd5;
}

/* =============================
STICKY BAR SMALL MOBILE
============================= */

@media (max-width:380px){

  .st-sticky-bar{
    gap:6px;
    padding:8px 10px calc(8px + env(safe-area-inset-bottom));
  }

  .st-sticky-btn{
    min-height:50px;
    font-size:10px;
  }

  .st-sticky-btn i{
    font-size:15px;
  }
}
.st-footer-credit{
  color:#fbbf24;
  font-weight:700;
  text-decoration:none;
  margin-left:4px;
}

.st-footer-credit:hover{
  text-decoration:underline;
}

.st-hero-media{
  position:relative;
  width:100%;
  height:250px;
  border-radius:22px;
  overflow:hidden;
  background:#dfe6ee;
  box-shadow:0 10px 24px rgba(16,24,40,0.10);
}

.st-hero-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.st-hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to top,
    rgba(9,20,44,0.58) 0%,
    rgba(9,20,44,0.28) 45%,
    rgba(9,20,44,0.16) 100%
  );
}

.st-hero-caption{
  position:absolute;
  inset:0;
  z-index:3;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:20px 18px;
}

.st-hero-caption-label{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:30px;
  padding:6px 14px;
  border-radius:999px;
  background:rgba(15, 23, 42, 0.38);
  border:1px solid rgba(255,255,255,0.16);
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
  font-family:'Poppins',sans-serif;
  font-size:12px;
  font-weight:600;
  letter-spacing:.2px;
  color:#ffffff;
  margin-bottom:12px;
}

#st-hero-typing-text{
  margin:0;
  width:100%;
  max-width:320px;
  min-height:64px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  font-family:'Poppins',sans-serif;
  font-size:24px;
  line-height:1.35;
  font-weight:700;
  color:#ffffff;
  text-shadow:0 3px 16px rgba(0,0,0,0.30);
  word-break:break-word;
}

#st-hero-typing-text::after{
  content:"|";
  display:inline-block;
  margin-left:3px;
  color:#fbbf24;
  animation:stBlinkCursor 0.8s infinite;
}

@keyframes stBlinkCursor{
  0%, 49%{ opacity:1; }
  50%, 100%{ opacity:0; }
}

@media (max-width:380px){
  .st-hero-media{
    height:220px;
  }

  .st-hero-caption{
    padding:18px 14px;
  }

  .st-hero-caption-label{
    font-size:11px;
    margin-bottom:10px;
            font-weight: bolder;
  }

  #st-hero-typing-text{
    max-width:280px;
    min-height:56px;
    font-size:20px;
  }
}

/* =============================
COMMON WHATSAPP BUTTON
============================= */

.st-btn-whatsapp{
  background:#25D366;
  color:#ffffff;
  box-shadow:0 10px 20px rgba(37,211,102,0.22);
}

.st-btn-whatsapp:hover{
  background:#1ebe5d;
}

.st-btn-whatsapp i{
  color:#ffffff;
}


.st-field[style*="display: none"] {
  display: none !important;
}