@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

*:not(i) {
  font-family: "Montserrat", sans-serif;
}

.navbar-my {
  padding-top: 20px;
  padding-bottom: 20px;
}

.navbar-my ul li a.active-self {
  color: #8aa624;
  font-weight: 600;
}

.navbar-my ul li a:hover {
  color: #8aa624;
}

.brand-logo{
  width: 42px; height: 42px; border-radius: 10px; object-fit: cover;
}
.brand-line1{ font-weight: 700; font-size: 1.5rem; line-height: 1; }
.brand-line2{ font-weight: 600; font-size: 1rem; color: #212529; opacity: .85; }

.nav-underline .nav-link{
  color:#1f1f1f; padding-bottom:.75rem; border-bottom: 3px solid transparent;
}
.nav-underline .nav-link:hover{ color:#0d6efd; }
.nav-underline .nav-link.active{
  color:#0d6efd; border-bottom-color:#0d6efd; font-weight:600;
}

.hero-card{
  background: linear-gradient(180deg,#f5f8ff 0%, #eef3ff 100%);
  border-radius: 48px;
  padding: clamp(2rem, 4vw, 4rem);
}
.btn-compare{ border-radius: 999px; padding:.7rem 1.6rem; }

.lead-muted{
  color:#6c757d; max-width: 860px; margin-inline:auto;
}

.feature-title{ font-weight: 700; font-size: clamp(1rem, 1.2rem + .2vw, 1.4rem); }

.icons-grid{
  display: grid; grid-template-columns: repeat(2, minmax(110px, 140px));
  grid-auto-rows: minmax(110px, 140px); gap: 22px; place-content: start;
}
.icon-tile{
  background:#fff; border-radius: 22px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, .08);
  display:flex; align-items:center; justify-content:center;
}
.icon-tile .bi{ font-size: 2rem; color:#3b6cff; }

.globe-img{
  width: min(560px, 90%); aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: url("images/globe-rings.png") center/cover no-repeat; /* <- your image */
  box-shadow:
    inset 0 -25px 60px rgba(0,0,0,.08),
    0 20px 60px rgba(30,41,59,.12);
  margin-inline:auto; position: relative; overflow: hidden;
}
.globe-img::before{
  content:""; position:absolute; inset:0; border-radius:inherit;
  background:
    radial-gradient(closest-side at 35% 30%, rgba(255,255,255,.55), transparent 60%),
    radial-gradient(closest-side at 70% 85%, rgba(0,0,0,.10), transparent 70%);
  pointer-events:none;
}

@media (max-width: 992px){
  .icons-grid{ grid-template-columns: repeat(2, 120px); grid-auto-rows: 120px; justify-content:center; }
  .feature-title{ text-align:center; }
}

.soft-card{
  background: linear-gradient(180deg,#f6f8ff 0%, #ffffff 85%);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(15,23,42,.08);
  position: relative;
  overflow: hidden;
  min-height: 320px;
}
.soft-card .dot{
  position:absolute; top:22px; left:22px;
  width:16px; height:16px; border-radius:50%;
  box-shadow: 0 6px 16px rgba(59, 130, 246, .25);
}
.dot-blue{ background:#4f7cff; }
.dot-pink{ background:#e14489; box-shadow:0 6px 16px rgba(225, 68, 137, .25); }

.soft-card h3{
  font-weight:800;
  letter-spacing:.2px;
  margin-top: 36px;
  margin-bottom: 16px;
  color:#0f172a;
}
.soft-card p{
  color:#6b7280;
  font-size:1.05rem;
  line-height:1.7;
  max-width: 36ch;
}

@media (max-width: 991px){
  .soft-card{ min-height: auto; }
  .soft-card p{ max-width: 100%; }
}

.hotel-img{
  width:100%;
  height:auto;
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0,0,0,.12);
  object-fit: cover;
}

.hotel-title{
  font-weight: 700;
  color:#1f2937;          
  margin-bottom:.5rem;
}

.hotel-desc{
  color:#4b5563;          
  line-height:1.75;
}

.hotel-note{
  margin-top:1.25rem;
  font-style: italic;
  font-weight:600;
  color:#111827;          
}

.compare-table thead th{
  font-weight:700; color:#111827; font-size:1.05rem; padding:1rem 1.25rem;
}
.compare-table th[scope="row"]{
  width: 22%; min-width: 180px; font-weight:600; color:#1f2937;
}
.compare-table td{
  color:#374151; line-height:1.85;
}
.compare-table td, .compare-table th{
  padding:1.4rem 1.25rem; border-top:0;
}
.compare-table .row-alt td,
.compare-table .row-alt th{
  background:#EEF1F4;
}
.table-divider{ border-top:1px solid rgba(0,0,0,.08); }

@media (max-width: 768px){
  .compare-table{ font-size:.98rem; }
  .compare-table th[scope="row"]{ width: 160px; }
}

:root{
  --ink:#0f172a;          
  --muted:#6b7280;        
  --accent:#7ea4ff;       
}

body{ background:#fff; color:var(--ink); }

.steps-grid{ max-width: 1200px; }

.step{
  position: relative;
  border-radius: 20px;
  padding: clamp(1.25rem, 2vw, 2rem);
}

.step--highlight{
  background:#fff;
  padding: clamp(2rem, 3vw, 3rem);
  border-radius: 22px;
  box-shadow: 0 40px 120px rgba(15,23,42,.12);
}

.step__num{
  font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  line-height: 1;
  color: var(--accent);
  opacity: .9;
  margin: 0 0 .5rem 0;
}

.step__title{
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 700;
  margin: .25rem 0 1rem;
  color: var(--ink);
}

.step__desc{
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.8;
  max-width: 42ch;
  margin: 0;
}

.step--plain{ padding-top: clamp(1.5rem, 3vw, 2rem); }

.gx-xxl-6{ --bs-gutter-x: 3.5rem; }   

@media (max-width: 991.98px){
  .step__desc{ max-width: 100%; }
}

:root{
  --ink:#0f172a;     
  --body:#3f4a5a;    
}
.side-title{
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  color: var(--ink);
  margin: 0;
}
.copy p{
  color: var(--body);
  line-height: 1.9;
  margin-bottom: 1.05rem;
  max-width: 62ch;         
}
.section-title{
  font-weight: 700;
  color: var(--ink);
  font-size: clamp(1.6rem, 3.2vw, 2.1rem);
  margin-bottom: 1rem;
}
@media (max-width: 991.98px){
  .side-title{ margin-bottom: .5rem; }
}

:root{
  --ink:#16181d;
  --muted:#6b7280;
  --border:#e5e7eb;
  --accent:#5b8bff;
  --accent-hover:#4f7cff;
}
.side-heading{
  font-weight:800;
  font-size:clamp(2.4rem, 6vw, 4.8rem);
  line-height:1.05;
  color:var(--ink);
  margin:0;
}
.form-label{
  font-size:.9rem;
  color:#0f172a;
  opacity:.8;
  margin-bottom:.35rem;
}
.control{
  border:1px solid var(--border);
  border-radius:10px;
  padding:.9rem 1rem;
}
.control::placeholder{ color:#a3aab4; }
textarea.control{ min-height:220px; resize: vertical; }
.btn-send{
  background:var(--accent);
  border-color:var(--accent);
  padding:.6rem 1.2rem;
  border-radius:8px;
  font-weight:600;
}
.btn-send:hover{ background:var(--accent-hover); border-color:var(--accent-hover); }


.footer-logo{ width: 28px; height: 28px; border-radius: 6px; object-fit: cover; }
.brand-line{ font-size: 0.95rem; }
.brand-sub { font-size: 0.85rem; color:#6b7280; }

.footer-links .nav-link{
  color:#111827; opacity:.75; transition:opacity .2s, color .2s;
}
.footer-links .nav-link:hover{ color:#0d6efd; opacity:1; }

