:root{
  --bg:#eef3ff;
  --card:#ffffff;
  --text:#0f172a;
  --muted:#64748b;
  --blue:#1e3a8a;
  --orange:#ff7a1a;
  --line:#e6ebf5;
  --shadow:0 10px 28px rgba(15, 23, 42, 0.08);
  --r14:14px;
  --r16:16px;
  --r18:18px;
  --r20:20px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* ===== Header (matches reference) ===== */
.se-header{
  background: rgba(255,255,255,.95);
  border-bottom:1px solid var(--line);
  position: sticky;
  top:0;
  z-index:60;
}

.se-header__top{
  max-width: 1240px;
  margin:0 auto;
  padding: 14px 18px 10px;
  display:flex;
  align-items:center;
  gap: 16px;
}

.se-brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:var(--text);
  font-weight:900;
}


.se-brand__logoFallback{
  width:34px;
  height:34px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  background: linear-gradient(135deg, var(--blue) 0%, #0d2f86 70%, var(--orange) 100%);
}
/* .se-brand__name{ font-size:18px; } */

.se-search{
  flex:1;
  height: 42px;
  border-radius: 999px;
  border:1px solid #dbe6ff;
  background:#f2f5ff;
  display:flex;
  align-items:center;
  gap:10px;
  padding:0 14px;
}

.se-search__icon{ opacity:.85; font-size: 14px; }
.se-search__mic{ opacity:.75; }
.se-search__input{
  flex:1;
  border:none;
  outline:none;
  background:transparent;
  font-weight:700;
  color:#2a3656;
}
.se-search__input::placeholder{ color:#7c8ab0; font-weight:700; }

.se-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.se-pill{
  height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border:1px solid var(--line);
  background:#fff;
  display:flex;
  align-items:center;
  gap:8px;
  text-decoration:none;
  color:#1f2a44;
  font-weight:900;
  box-shadow: 0 8px 18px rgba(15,23,42,.05);
}
.se-pill__icon{ opacity:.9; }

.se-pill--orange{
  border-color:#ffd9bf;
  background: linear-gradient(135deg, #fff 0%, #fff7f0 100%);
}

.se-header__nav{
  max-width: 1240px;
  margin:0 auto;
  padding: 8px 18px 12px;
  display:flex;
  align-items:center;
  gap: 14px;
}

.se-navlink{
  display:flex;
  align-items:center;
  gap:8px;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration:none;
  font-weight:900;
  color:#42527b;
}
.se-navlink--active{
  background:#edf2ff;
  border:1px solid #dbe6ff;
  color: var(--blue);
}
.se-navlink__icon{ opacity:.9; }

/* ===== Main wrap ===== */
.se-wrap{
  max-width: 1700px;
  margin: 12px auto 28px;
  padding: 0 18px;
}

/* ===== Hero (exact: banner image, no extra blocks) ===== */
.se-hero{
  position: relative;
  height: 420px;
  border-radius: 18px;
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  background:#dfe7ff; /* fallback only */
}

.se-hero__bg{
  position:absolute;
  inset:0;
  background-image: url("/public/images/main/se-hero.png"); /* your banner */
  background-size:cover;
  background-position: center;
  background-repeat:no-repeat;
  /* transform: scale(1.01); */
}

.se-hero__content{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding: 18px 24px;
  max-width: 600px;
  color:#fff;
}

.se-hero__content h1{
  margin:0 0 10px;
  font-size: 42px;
  line-height: 1.05;
  letter-spacing: -0.6px;
  font-weight:900;
}
.se-hero__content p{
  margin:0 0 14px;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255,255,255,.92);
  font-weight:600;
}
.se-hero__trust{
  font-weight:900;
  margin-left: 6px;
  color: rgba(255,255,255,.95);
}

.se-hero__btn{
  width: 190px;
  height: 42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 12px;
  text-decoration:none;
  font-weight:900;
  color:#1b1b1b;
  background: linear-gradient(135deg, var(--orange) 0%, #ff9b55 100%);
  border:1px solid rgba(0,0,0,.08);
  box-shadow: 0 16px 28px rgba(255,122,26,.24);
}

/* ===== BIG CARD area (this makes it match reference) ===== */
.se-bigcard{
  margin-top: 12px;
  background: var(--card);
  border:1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 16px;
  display:grid;
  grid-template-columns: 1fr 0px;
  gap: 14px;
  align-items:start;
}

/* left area */
.se-bigcard__left{
  min-width: 0;
}

/* section title */
.se-secTitle{
  font-size: 16px;
  font-weight: 900;
  color:#1a2440;
  margin: 4px 0 12px;
}
.se-secTitle--spaced{ margin-top: 16px; }

/* decoration row */
.se-serviceRow{
  display:grid;
  grid-template-columns: repeat(6, minmax(0,1fr));
  gap: 12px;
}

.se-serviceCard{
  text-decoration:none;
  color: var(--text);
  border:1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg,#fff 0%, #fbfcff 100%);
  /* padding: 10px; */
}

.se-serviceCard__img{
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background:#f2f5ff;
  border:1px solid #dbe6ff;
  overflow:hidden;
  display:grid;
  place-items:center;
  margin-bottom: 8px;
}
.se-serviceCard__img.is-empty::after{
  content:"";
  width:26px;
  height:26px;
  border-radius: 10px;
  background: rgba(30,58,138,.12);
}
.se-serviceCard__img img{
  width:100%;
  height:100%;
  object-fit: cover;
}

.se-serviceCard__t{ font-weight:900; font-size: 12px; margin-bottom: 4px; }
.se-serviceCard__p{ font-weight:900; font-size: 11px; color:#23304d; }
.se-serviceCard__s{ margin-top: 4px; font-weight:700; font-size: 11px; color: var(--muted); }

/* strip */
.se-strip{
  margin-top: 12px;
  border-radius: 18px;
  border:1px solid #dbe6ff;
  background:#f5f8ff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding: 10px 12px;
}

.se-strip__left{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  color:#1a2440;
}
.se-strip__spark{
  width: 26px;
  height: 26px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  background:#fff;
  border:1px solid #dbe6ff;
}

.se-strip__right{
  text-decoration:none;
  font-weight:900;
  color:#2b4aa0;
  display:flex;
  align-items:center;
  gap:8px;
}
.se-strip__arrow{ font-size: 18px; }

/* icons row */
.se-iconRow{
  display:grid;
  grid-template-columns: repeat(8, minmax(0,1fr));
  gap: 10px;
}

.se-iconTile{
  text-decoration:none;
  color: var(--text);
  border:1px solid var(--line);
  border-radius: 16px;
  background:#fff;
  padding: 10px;
  display:flex;
  align-items:center;
  gap:10px;
}

.se-iconTile__img{
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background:#f2f5ff;
  border:1px solid #dbe6ff;
  overflow:hidden;
  display:grid;
  place-items:center;
  flex: 0 0 auto;
}
.se-iconTile__img.is-empty::after{
  content:"";
  width:22px;
  height:22px;
  border-radius: 10px;
  background: rgba(30,58,138,.12);
}
.se-iconTile__img img{
  width:100%;
  height:100%;
  object-fit: cover;
}

.se-iconTile__t{
  white-space: pre-line;
  font-weight: 900;
  font-size: 11px;
  line-height: 1.05;
}

/* right promo */
.se-promo{
  border:1px solid var(--line);
  border-radius: 18px;
  background:#fff;
  padding: 14px;
}

.se-promo__h{
  font-weight: 900;
  font-size: 18px;
  margin: 4px 0 8px;
}
.se-promo__txt{
  font-weight: 700;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}
.se-promo__btn{
  margin-top: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  height: 44px;
  border-radius: 14px;
  text-decoration:none;
  font-weight: 900;
  color:#1b1b1b;
  background: linear-gradient(135deg, var(--orange) 0%, #ff9b55 100%);
  border:1px solid rgba(0,0,0,.08);
}
.se-promo__soon{
  margin-top: 10px;
  font-weight: 900;
  color: var(--blue);
  font-size: 12px;
}

.se-promo__img{
  margin-top: 10px;
  height: 165px;
  border-radius: 16px;
  background:#fff7ef;
  border:1px solid #ffe2cc;
  overflow:hidden;
  display:grid;
  place-items:center;
}
.se-promo__img.is-empty::after{
  content:"";
  width:40px;
  height:40px;
  border-radius: 16px;
  background: rgba(255,122,26,.18);
}
.se-promo__img img{
  width:100%;
  height:100%;
  object-fit: cover;
}

.se-promo__bullets{
  margin-top: 12px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.se-bullet{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 10px 12px;
  border-radius: 16px;
  border:1px solid var(--line);
  background:#fbfcff;
  font-weight: 900;
  font-size: 12px;
  color:#1f2a44;
}

.se-promo__miniRow{
  margin-top: 12px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.se-miniPill{
  text-decoration:none;
  color:#1f2a44;
  font-weight: 900;
  font-size: 12px;
  border:1px solid var(--line);
  background:#fff;
  border-radius: 16px;
  padding: 10px 12px;
  text-align:center;
}

/* footer line inside card */
.se-cardFooter{
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  color:#64748b;
  font-weight: 700;
  font-size: 12px;
}

.se-cardFooter__links{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.se-cardFooter__links a{
  text-decoration:none;
  color:#475569;
  font-weight: 800;
}
/* ===== Single-line header layout ===== */
.se-header--single{
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 60;
}

.se-header__top--single{
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Make search take the main space */
.se-search--wide{
  flex: 1;
  min-width: 420px;
}

/* Inline nav links after search */
.se-inlineNav{
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.se-inlineNav__link{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 900;
  color: #42527b;
  background: transparent;
}

.se-inlineNav__link:hover{
  background: #edf2ff;
  border: 1px solid #dbe6ff;
}

/* Make sure actions don’t wrap */
.se-actions{
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  white-space: nowrap;
}
.se-brand{
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* LOGO SIZE CONTROL */
.se-brand__logo{
  height: 42px;          /* 👈 ideal header size */
  width: auto;
 
}
/* show/hide helpers */
.se-desktopOnly{ display:flex; }
.se-mobileOnly{ display:none; }

@media (max-width: 768px){
  .se-desktopOnly{ display:none !important; }
  .se-mobileOnly{ display:block !important; }

  /* add space so content not hidden behind bottom nav */
  body{ padding-bottom: 74px; }
}

/* ===== MOBILE HEADER (like screenshot) ===== */
.se-mobileHeader{
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  padding: 12px 14px 10px;
}

.se-mobileHeader__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}

.se-mobileBrand__logo{
  height: 28px;
  width: auto;
  object-fit: contain;
}

.se-mobileHeader__right{
  display:flex;
  align-items:center;
  gap: 10px;
}

.se-mIconBtn{
  width: 38px;
  height: 38px;
  display:grid;
  place-items:center;
  border-radius: 12px;
  border:1px solid var(--line);
  background:#fff;
  text-decoration:none;
  box-shadow: 0 8px 18px rgba(15,23,42,.05);
}

.se-mAvatar{
  width: 38px;
  height: 38px;
  border-radius: 14px;
  border:1px solid var(--line);
  overflow:hidden;
  background:#fff;
  box-shadow: 0 8px 18px rgba(15,23,42,.05);
  display:block;
}
.se-mAvatar img{
  width:100%;
  height:100%;
  object-fit: cover;
}
.se-mAvatar.is-fallback{
  background: linear-gradient(135deg, var(--blue) 0%, #0d2f86 70%, var(--orange) 100%);
}

/* mobile search bar */
.se-mobileSearch{
  margin-top: 10px;
  height: 44px;
  border-radius: 16px;
  border:1px solid #dbe6ff;
  background:#f2f5ff;
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 0 12px;
}

.se-mobileSearch__input{
  flex:1;
  border:none;
  outline:none;
  background:transparent;
  font-weight: 800;
  color:#2a3656;
}
.se-mobileSearch__input::placeholder{
  color:#7c8ab0;
  font-weight: 800;
}

/* ===== MOBILE HERO sizing like reference ===== */
@media (max-width: 768px){
  .se-wrap{
    margin-top: 10px;
    padding: 0 14px;
  }

  .se-hero{
    height: 420px;  /* makes hero tall like phone screenshot */
    border-radius: 18px;
  }

  .se-hero__content{
    padding: 18px 16px;
    max-width: 90%;
  }

  .se-hero__content h1{
    font-size: 44px;
    line-height: 1.02;
  }

  .se-hero__btn{
    width: 220px;
    height: 46px;
    border-radius: 14px;
    font-size: 15px;
  }
}

/* ===== MOBILE BOTTOM NAV (3 items) ===== */
.se-bottomNav{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 68px;
  background: rgba(255,255,255,.98);
  border-top: 1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:space-around;
  padding: 8px 10px;
  z-index: 70;
}

.se-bottomNav__item{
  text-decoration:none;
  color:#6b7aa5;
  font-weight: 900;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 4px;
  width: 33.33%;
}

.se-bottomNav__icon{
  font-size: 18px;
  line-height: 1;
}

.se-bottomNav__label{
  font-size: 12px;
}

.se-bottomNav__item--active{
  color: var(--blue);
}

/* If screen is smaller, allow wrap cleanly */
@media (max-width: 1050px){
  .se-header__top--single{
    flex-wrap: wrap;
    row-gap: 10px;
  }
  .se-search--wide{
    min-width: 260px;
    order: 3;
    flex-basis: 100%;
  }
}

/* ===== Responsive (we’ll do mobile next after desktop matches) ===== */
@media (max-width: 1060px){
  .se-bigcard{ grid-template-columns: 1fr; }
  .se-serviceRow{ grid-template-columns: repeat(3, minmax(0,1fr)); }
  .se-iconRow{ grid-template-columns: repeat(4, minmax(0,1fr)); }
}
@media (max-width: 1060px){
  .se-bigcard{ grid-template-columns: 1fr; }
}
/* Default: desktop */
.se-desktopOnly{ display:flex; }
.se-mobileOnly{ display:none; }

/* Mobile only */
@media (max-width: 768px){
  .se-desktopOnly{ display:none !important; }
  .se-mobileOnly{ display:block !important; }
}
.se-bottomNav{
  display: none; /* hidden by default (desktop) */
}

/* Show + fix only on mobile */
@media (max-width: 768px){
  .se-bottomNav{
    display: flex !important;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;

    height: 68px;
    background: rgba(255,255,255,.98);
    border-top: 1px solid #e7eefc;
    z-index: 9999;

    align-items: center;
    justify-content: space-around;
    padding: 8px 12px;

    /* IMPORTANT: prevent it from shrinking */
    width: 100%;
  }
}
/* =========================
   MOBILE HERO OPTIMIZATION
   ========================= */
@media (max-width: 768px) {

  .se-hero {
    min-height: 270px;          /* was too tall */
    border-radius: 18px;
    overflow: hidden;
    height:200px !important;
  }

  .se-hero__content {
    padding: 20px 18px 18px;
  }

  .se-hero h1 {
    font-size: 26px;            /* smaller, tighter */
    line-height: 1.15;
    margin-bottom: 5px;
  }

  .se-hero p {
    font-size: 13px;
    line-height: 1.45;
  }

  .se-hero__btn {
    margin-top: 12px;
    padding: 12px 18px;
    font-size: 14px;
    border-radius: 12px;
  }

  /* Background image control */
  .se-hero__bg {
    /* background-position: center right; */
    background-size: cover; 
    height:270px;    /* avoid blur/stretch */
  }
}




/* =========================
   STABLE MOBILE BOTTOM NAV
   ========================= */
.se-bottomNav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;

  height: 56px;                /* thinner */
  padding-bottom: env(safe-area-inset-bottom);

  background: #ffffff;
  border-top: 1px solid #e6eaff;

  display: flex;
  justify-content: space-around;
  align-items: center;

  z-index: 9999;
  will-change: transform;      /* prevents jitter */
}

/* Reduce icon size */
.se-bottomNav__icon {
  font-size: 18px;
}

/* Reduce label size */
.se-bottomNav__label {
  font-size: 11px;
  margin-top: 2px;
}

/* Active state */
.se-bottomNav__item--active {
  color: #1e3a8a;
  font-weight: 700;
}
@media (max-width: 768px) {
  body {
    padding-bottom: 64px; /* footer height + buffer */
  }
}
@supports (backdrop-filter: blur(10px)) {
  .se-bottomNav {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
  }
}
/* =========================
   SUPER THIN MOBILE FOOTER
   ========================= */

/* Hide on desktop */
.se-mNav { display: none; }

@media (max-width: 768px) {

  /* Make space so content doesn't hide behind footer */
  body {
    padding-bottom: calc(52px + env(safe-area-inset-bottom));
  }

  .se-mNav{
    display: flex;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px; /* little floating feel */
    width: min(420px, calc(100% - 18px));
    height: 52px; /* THIN */
    padding: 6px 10px;

    background: rgba(255,255,255,0.96);
    border: 1px solid #e6eaff;
    border-radius: 16px;

    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
    z-index: 99999;

    align-items: center;
    justify-content: space-around;

    /* prevents jitter while scroll */
    will-change: transform;
    backface-visibility: hidden;
    -webkit-transform: translateX(-50%);
  }

  .se-mNav__item{
    flex: 1;
    text-decoration: none;
    color: #64748b;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 6px 0;
    border-radius: 12px;
  }

  .se-mNav__icon{
    font-size: 18px;
    line-height: 1;
  }

  .se-mNav__label{
    font-size: 10.5px;
    font-weight: 700;
    line-height: 1;
  }

  .se-mNav__item--active{
    color: #1e3a8a;
    background: #eef2ff;
  }

  /* extra stability on some Android browsers */
  html, body{
    overscroll-behavior-y: none;
  }

  /* iOS safe area */
  .se-mNav{
    padding-bottom: calc(6px + env(safe-area-inset-bottom));
  }
}
/* ==============================
   MOBILE HEADER (CONFLICT-PROOF)
   ============================== */

.sx-mhdr { display: none; }

/* Hard stop: remove any old mobile header blocks so they can't interfere */
@media (max-width: 768px) {
  .se-mobileHeader,
  .se-mTop,
  .se-mobileSearch,
  .se-mobileHeader__top,
  .se-mobileHeader__right {
    display: none !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
  }

  /* Also hide desktop header on mobile if needed */
  .se-desktopOnly { display: none !important; }

  .sx-mhdr{
    display: flex;
    align-items: center;
    gap: 8px;

    position: sticky;
    top: 0;
    z-index: 999999;

    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    padding: 10px 12px;
    border-bottom: 1px solid #e6eaff;
  }

  .sx-mhdr__logo{
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
  }

  .sx-mhdr__logo img{
    height: 30px;     /* increase/decrease as you want */
    width: auto;
    display: block;
    object-fit: contain;
  }

  .sx-mhdr__search{
    flex: 1 1 auto;
    min-width: 0;

    display: flex;
    align-items: center;
    gap: 8px;

    height: 35px;
    padding: 0 12px;

    background: #f3f6ff;
    border: 1px solid #e0e7ff;
    border-radius: 14px;
  }

  .sx-mhdr__sicon{ font-size: 16px; opacity: .9; }

  .sx-mhdr__search input{
    flex: 1 1 auto;
    min-width: 0;

    border: 0;
    outline: 0;
    background: transparent;

    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
  }

  .sx-mhdr__search input::placeholder{
    color: #7c8bb5;
    font-weight: 600;
  }

  .sx-mhdr__mic{
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    font-size: 16px;
    opacity: .9;
  }

  .sx-mhdr__btn{
    width: 30px;
    height: 32px;
    flex: 0 0 auto;

    display: grid;
    place-items: center;

    border-radius: 14px;
    border: 1px solid #e6eaff;
    background: #fff;

    text-decoration: none;
    font-size: 18px;
  }

  .sx-mhdr__avatar{
    width: 30px;
    height: 32px;
    flex: 0 0 auto;

    border-radius: 14px;
    border: 1px solid #e6eaff;
    background: #fff;

    overflow: hidden;
    display: grid;
    place-items: center;

    text-decoration: none;
  }

  .sx-mhdr__avatar img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .sx-mhdr__avatar--fallback{
    background: #eef2ff;
  }
}





/* ================================
   NEW CARD UI (se-cardV2)
   Matches: top full image + text below + price at bottom
   ================================ */

/* Container row (if your row spacing feels off, keep this) */
.se-serviceRow{
  display: grid;
  grid-template-columns: repeat(6, minmax(140px, 1fr));
  gap: 14px;
  align-items: stretch;
}
@media (max-width: 1100px){
  .se-serviceRow{ grid-template-columns: repeat(3, minmax(140px, 1fr)); }
}
@media (max-width: 768px){
  /* Mobile like your reference: scrollable row */
  .se-serviceRow{
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .se-serviceRow::-webkit-scrollbar{ height: 6px; }
  .se-serviceRow::-webkit-scrollbar-thumb{ background: rgba(0,0,0,.12); border-radius: 999px; }
}

/* Base card */
.se-serviceCard.se-cardV2{
  /* display: flex; */
  flex-direction: column;
  text-decoration: none;
  color: inherit;

  border: 1px solid #e7eefc;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;

  box-shadow: 0 6px 18px rgba(18, 38, 63, 0.05);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  min-height: 180px;
}
.se-serviceCard.se-cardV2:hover{
  transform: translateY(-2px);
  border-color: #d8e5ff;
  box-shadow: 0 10px 26px rgba(18, 38, 63, 0.09);
}
.se-serviceCard.se-cardV2:active{
  transform: translateY(0);
}

/* Mobile width for scroll row */
@media (max-width: 768px){
  .se-serviceCard.se-cardV2{
    flex: 0 0 148px;           /* card width in scroll */
    scroll-snap-align: start;
    border-radius: 18px;
  }
}

/* Top image area (full width) */
.se-cardV2__img{
  width: 100%;
  height: 82px;               /* reference-like */
  background: #f3f6ff;
  position: relative;
  overflow: hidden;
}
.se-cardV2__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;          /* full width image */
  display: block;
}

/* If image missing */
.se-cardV2__img.is-empty{
  background: linear-gradient(180deg, #f6f9ff, #eef4ff);
}
.se-cardV2__img.is-empty::after{
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 14px;
  border: 1px dashed #cfe0ff;
}

/* Body content */
.se-cardV2__body{
  display: flex;
  flex-direction: column;
  padding: 10px 12px 12px;
  height: 100%;
}

/* Title (wraps like your reference) */
.se-cardV2__title{
  font-weight: 700;
  font-size: 14px;
  line-height: 1.15;
  letter-spacing: -0.2px;
  color: #0e1b2a;
  margin-bottom: 6px;

  display: -webkit-box;
  -webkit-line-clamp: 2;      /* keep neat */
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 25px;           /* keeps consistent card heights */
}

/* Push price to bottom */


/* Price + sub text */
.se-cardV2__meta{
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.se-cardV2__price{
  font-weight: 800;
  font-size: 13px;
  color: #0e1b2a;
}
.se-cardV2__sub{
  font-weight: 600;
  font-size: 12px;
  color: #5f6f88;
}

/* OPTIONAL: slightly tighter on mobile */
@media (max-width: 768px){
  .se-cardV2__img{ height: 74px; }
  /* .se-cardV2__body{ padding: 2px 4px 4px; } */
  .se-cardV2__title{ font-size: 13px; min-height: 20px; }
  .se-cardV2__price{ font-size: 13px; }
  .se-cardV2__sub{ font-size: 12px; }
}



/* View More card */
.se-cardV2--more{
  border-style: dashed;
  border-color: #d9e6ff;
}
.se-cardV2__img--more{
  background: linear-gradient(180deg, #f6f9ff, #eef4ff);
  display: flex;
  align-items: center;
  justify-content: center;
}
.se-cardV2__moreIcon{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #d9e6ff;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 900;
  color: #2b4a7f;
  box-shadow: 0 10px 20px rgba(18, 38, 63, 0.08);
}
.se-cardV2--more:hover .se-cardV2__moreIcon{
  transform: translateX(2px);
  transition: transform .15s ease;
}
/* Card image wrapper */
.se-cardV2__img {
  width: 100%;
  height: 120px;          /* mobile-friendly height */
  border-radius: 14px;
  overflow: hidden;
  background: #f6f8ff;
  display: flex;
  align-items: flex-start; /* IMPORTANT */
}

/* Image inside card */
.se-cardV2__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center; /* 🔥 FIXES FACE CUT */
}


.se-cardV2__img--more{
  height: 110px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  position: relative;
}

/* =========================
   COMING SOON GRID (Blinkit-style)
   ========================= */

.se-soonGrid{
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 16px;
  margin-top: 10px;
}

.se-soonItem{
  text-decoration: none;
  color: inherit;
  text-align: center;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  cursor: default;
}

.se-soonItem__img{
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  background: #f5f8ff;
  border: 1px solid rgba(30, 58, 138, 0.10);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.se-soonItem__img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translateZ(0);
}

.se-soonItem__img.is-empty::after{
  content: "";
  width: 66%;
  height: 66%;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(30,58,138,0.10), rgba(255,122,26,0.10));
  filter: blur(0.2px);
}

.se-soonItem__badge{
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 122, 26, 0.14);
  color: #b34a00;
  border: 1px solid rgba(255, 122, 26, 0.25);
}

.se-soonItem__t{
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  color: #1f2a44;
}

/* Hover only on desktops */
@media (hover:hover){
  .se-soonItem:hover .se-soonItem__img{
    border-color: rgba(30, 58, 138, 0.18);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
    transition: 180ms ease;
  }
}

/* Responsive columns */
@media (max-width: 1200px){
  .se-soonGrid{ grid-template-columns: repeat(8, minmax(0, 1fr)); }
}
@media (max-width: 992px){
  .se-soonGrid{ grid-template-columns: repeat(6, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  .se-soonGrid{
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }
  .se-soonItem__t{
    font-size: 12px;
  }
  .se-soonItem__badge{
    top: 8px;
    right: 8px;
    font-size: 10px;
    padding: 5px 8px;
  }
}









/* =========================
   UNIQUE "WHY SERVEASILY"
   ========================= */

.sx-why{
  padding: 18px 0 26px;
}

.sx-why__head{
  text-align: left;
  margin: 10px 0 14px;
}

.sx-why__title{
  margin: 0;
  font-size: 34px;
  font-weight: 1000;
  letter-spacing: -0.02em;
  color: #0f172a;
}
.sx-why__title span{
  color: #ff7a1a;
}

.sx-why__sub{
  margin: 6px 0 0;
  color: #475569;
  font-weight: 600;
  max-width: 720px;
}

.sx-why__grid{
  display: grid;
  gap: 14px;
}

.sx-why__grid--top{
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 14px;
}

.sx-why__grid--bottom{
  grid-template-columns: 1.35fr 0.65fr;
  margin-top: 14px;
}

/* Small feature cards */
.sx-whyCard{
  background: #fff;
  border: 1px solid rgba(30,58,138,0.10);
  border-radius: 18px;
  padding: 14px 14px 12px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
  position: relative;
  overflow: hidden;
}

.sx-whyCard::before{
  content:"";
  position:absolute;
  inset: -40px -40px auto auto;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at 30% 30%, rgba(255,122,26,0.22), transparent 60%);
  transform: rotate(15deg);
}

.sx-whyCard__icon{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255,122,26,0.12);
  font-size: 20px;
}

.sx-whyCard__h{
  margin-top: 10px;
  font-weight: 900;
  color: #0f172a;
  font-size: 16px;
}

.sx-whyCard__p{
  margin-top: 6px;
  color: #55657d;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.35;
}

.sx-whyCard__tag{
  margin-top: 12px;
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  color: #1e3a8a;
  background: rgba(30,58,138,0.08);
  padding: 7px 10px;
  border-radius: 999px;
}

/* Big cards */
.sx-whyBig{
  background: #fff;
  border: 1px solid rgba(30,58,138,0.10);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
  overflow: hidden;
  position: relative;
}

.sx-whyBig--trust{
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(255,122,26,0.12), transparent 55%),
    radial-gradient(120% 120% at 100% 100%, rgba(30,58,138,0.08), transparent 55%),
    #fff;
}

.sx-whyBig__top{
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}

.sx-whyBig__title{
  font-weight: 1000;
  font-size: 18px;
  color: #0f172a;
}

.sx-whyBig__desc{
  margin-top: 6px;
  color: #55657d;
  font-weight: 650;
  font-size: 13px;
  max-width: 520px;
  line-height: 1.4;
}

/* rating badge */
.sx-whyBig__badge{
  min-width: 110px;
  text-align: center;
  border-radius: 18px;
  padding: 10px 10px 8px;
  color: #fff;
  background: linear-gradient(180deg, #ff7a1a, #ff5f00);
  box-shadow: 0 16px 30px rgba(255, 122, 26, 0.25);
}
.sx-whyBig__badgeNum{
  font-size: 34px;
  font-weight: 1000;
  line-height: 1;
}
.sx-whyBig__badgeStar{
  letter-spacing: 2px;
  font-size: 12px;
  margin-top: 6px;
  opacity: .95;
}
.sx-whyBig__badgeSub{
  margin-top: 6px;
  font-size: 11px;
  font-weight: 800;
  opacity: .92;
}

/* Trust bars */
.sx-whyBig__bars{
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.sx-bar{
  display: grid;
  grid-template-columns: 140px 1fr 50px;
  gap: 10px;
  align-items: center;
}

.sx-bar__label{
  font-size: 12px;
  font-weight: 800;
  color: #1f2a44;
}

.sx-bar__track{
  height: 10px;
  background: rgba(30,58,138,0.10);
  border-radius: 999px;
  overflow: hidden;
}
.sx-bar__track span{
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(30,58,138,1), rgba(255,122,26,1));
}

.sx-bar__val{
  text-align: right;
  font-size: 12px;
  font-weight: 900;
  color: #0f172a;
}

.sx-whyBig__foot{
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sx-pillMini{
  font-size: 12px;
  font-weight: 850;
  color: #0f172a;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.06);
  padding: 8px 10px;
  border-radius: 999px;
}

/* Guarantee list */
.sx-whyList{
  margin: 12px 0 14px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.sx-whyList li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 750;
  color: #1f2a44;
  font-size: 13px;
}
.sx-whyList li span{
  width: 28px;
  height: 28px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255,122,26,0.12);
  flex: 0 0 auto;
}

.sx-whyCTA{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 950;
  color: #fff;
  background: linear-gradient(90deg, #ff7a1a, #ff5f00);
  padding: 12px 14px;
  border-radius: 14px;
  box-shadow: 0 16px 28px rgba(255, 122, 26, 0.22);
}
.sx-whyCTA span{
  font-size: 18px;
  line-height: 1;
}

/* Responsive */
@media (max-width: 1100px){
  .sx-why__grid--top{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sx-why__grid--bottom{ grid-template-columns: 1fr; }
}

@media (max-width: 640px){
  .sx-why__title{ font-size: 26px; }
  .sx-whyCard{ padding: 12px; }
  .sx-bar{ grid-template-columns: 120px 1fr 46px; }
}
.se-hero__bg{
  background-size: cover;
  background-position: 75% 30%; /* RIGHT + TOP bias */
}
.se-hero h1{
  color: #F8FAFC;   /* soft white */
}
.se-hero p{
  color: rgba(248, 250, 252, 0.88);
}
.se-hero .cta-btn{
  background: #FF7A1A;
  color: #0F172A;
}
.se-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15, 23, 42, 0.55) 0%,
    rgba(15, 23, 42, 0.35) 40%,
    rgba(15, 23, 42, 0.15) 65%,
    rgba(15, 23, 42, 0.0) 100%
  );
  z-index: 1;
}

.se-hero-content{
  position: relative;
  z-index: 2;
}



/* =========================
   Center Highlight Section Tags
   ========================= */

.se-secTitleWrap{
  display: flex;
  justify-content: center;
  margin: 22px 0 16px;
}

.se-secTitleWrap--spaced{
  margin-top: 34px;
}

.se-secTag{
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 10px 18px;
  border-radius: 999px;

  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.2px;

  color: #0f172a; /* navy-ish */
  background: linear-gradient(
    135deg,
    rgba(255, 122, 26, 0.14),
    rgba(30, 58, 138, 0.10)
  );

  border: 1px solid rgba(30, 58, 138, 0.14);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
}

/* orange dot highlight */
.se-secTag::before{
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff7a1a;
  box-shadow: 0 0 0 5px rgba(255,122,26,0.18);
}

/* brand emphasis */
.se-secTag strong{
  color: #ff7a1a;
}

@media (max-width: 768px){
  .se-secTitleWrap{
    margin: 18px 0 12px;
  }
  .se-secTag{
    font-size: 16px;
    padding: 8px 14px;
  }
}


/* SECTION BACKGROUNDS */
.se-bg-white {
  background: var(--se-bg-white);
}

.se-bg-soft {
  background: linear-gradient(
    180deg,
    #f8fbff 0%,
    #ffffff 100%
  );
}

.se-bg-warm {
  background: linear-gradient(
    180deg,
    #fff6ee 0%,
    #ffffff 100%
  );
}

/* spacing so background feels intentional */
.se-section {
  padding: 56px 0;
}
/* =========================
   FOOTER (IMAGE OVERLAY)
========================= */

.sx-footer{
  position: relative;
  padding: 64px 16px 72px;
  overflow: hidden;
  background: #ffffff;
}

/* Background image layer */
.sx-footer__bg{
  position: absolute;
  inset: 0;
  background-image: var(--footer-bg);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 1;
  transform: scale(1.02);
  pointer-events: none;
}

/* set your footer image here */
:root{
  --sx-navy: #1e2b66;     /* Serveasily-ish navy */
  --sx-orange: #ff7a1a;   /* Serveasily orange */
  --sx-card: rgba(255,255,255,0.72);
  --sx-border: rgba(30,43,102,0.12);
  --footer-bg: url('/public/images/main/footer.png'); /* <-- change this */
}

/* centered content */
.sx-footer__wrap{
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* The “glass” card on top of the image */
.sx-footer__card{
  border-radius: 26px;
  padding: 28px 28px 18px;
  /* background: var(--sx-card);
  border: 1px solid var(--sx-border);
  box-shadow: 0 22px 60px rgba(20, 30, 60, 0.10);
  backdrop-filter: blur(10px); */
  /* -webkit-backdrop-filter: blur(10px); */
}

/* top section */
.sx-footer__top{
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.sx-footer__brand{
  max-width: 560px;
}

.sx-footer__logo{
  height: 44px;
  width: auto;
  display: block;
  margin-bottom: 10px;
}

.sx-footer__desc{
  margin: 0 0 14px;
  color: rgba(10, 15, 35, 0.78);
  line-height: 1.6;
  font-size: 15px;
}

/* social pills */
.sx-footer__social{
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.sx-socialBtn{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-weight: 700;
  color: var(--sx-navy);
  background: rgba(255, 255, 255, 0.859);
  border: 1px solid rgba(30,43,102,0.16);
  box-shadow: 0 10px 22px rgba(30,43,102,0.08);
  transition: transform .15s ease, box-shadow .15s ease;
}

.sx-socialBtn:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(30,43,102,0.12);
}

.sx-socialBtn--wa{
  border-color: rgba(34,197,94,0.35);
}

/* divider */
.sx-footer__divider{
  height: 1px;
  background: rgba(30,43,102,0.12);
  margin: 18px 0 18px;
}

/* columns grid */
.sx-footer__grid{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.2fr;
  gap: 22px;
  align-items: start;
}

.sx-footer__h{
  font-size: 18px;
  font-weight: 800;
  color: #0b1226;
  margin-bottom: 10px;
}

.sx-footer__a{
  display: block;
  text-decoration: none;
  color: rgba(10, 15, 35, 0.72);
  font-weight: 600;
  padding: 6px 0;
  transition: color .15s ease;
}

.sx-footer__a:hover{
  color: var(--sx-navy);
}

.sx-footer__muted{
  color: rgba(10, 15, 35, 0.62);
  font-weight: 700;
  padding: 6px 0 8px;
}

/* vertical lines between columns (like reference) */
.sx-footer__col--withLine{
  position: relative;
  padding-left: 20px;
}

.sx-footer__col--withLine::before{
  content:"";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: rgba(30,43,102,0.12);
}

/* payments */
.sx-footer__pay{
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.sx-payRow{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.sx-payPill{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(30,43,102,0.14);
  box-shadow: 0 14px 32px rgba(30,43,102,0.10);
  font-weight: 800;
  color: var(--sx-navy);
  min-width: 96px;
  justify-content: center;
}

.sx-payPill img{
  height: 18px;
  width: auto;
  display: block;
}

/* bottom line */
.sx-footer__bottom{
  margin-top: 14px;
  text-align: center;
  color: rgba(10, 15, 35, 0.62);
  font-weight: 700;
  padding-top: 10px;
}

/* Responsive */
@media (max-width: 980px){
  .sx-footer__grid{
    grid-template-columns: 1fr 1fr;
  }
  .sx-footer__pay{
    justify-content: flex-start;
  }
}

@media (max-width: 560px){
  .sx-footer{
    padding: 46px 12px 80px;
  }
  .sx-footer__card{
    padding: 18px 16px 14px;
    border-radius: 18px;
  }
  .sx-footer__grid{
    grid-template-columns: 1fr;
  }
  .sx-footer__col--withLine{
    padding-left: 0;
  }
  .sx-footer__col--withLine::before{
    display: none;
  }
  .sx-payRow{
    justify-content: flex-start;
  }
}
.sx-payRow{
  display: flex;
  flex-direction: column;   /* 👈 STACK VERTICALLY */
  gap: 14px;
  align-items: flex-end;    /* 👈 ALIGN TO RIGHT */
}


/* Base social button */
.sx-socialBtn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  background: #fff;
  border: 1px solid #e5e7eb;
  color: #1f2937; /* default icon color */
  transition: all 0.25s ease;
}

/* Hover lift */
.sx-socialBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* =========================
   INSTAGRAM (official look)
   ========================= */
.sx-socialBtn .fa-instagram {
  background: radial-gradient(
      circle at 30% 110%,
      #fdf497 0%,
      #fdf497 5%,
      #fd5949 45%,
      #d6249f 60%,
      #285AEB 90%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Optional: Instagram ring on hover */
.sx-socialBtn:hover .fa-instagram {
  filter: brightness(1.1);
}

/* =========================
   WHATSAPP (official green)
   ========================= */
.sx-socialBtn .fa-whatsapp {
  color: #25D366;
}

/* Optional: WhatsApp glow on hover */
.sx-socialBtn:hover .fa-whatsapp {
  color: #1ebe5d;
}

/* =========================
   X / Twitter neutral
   ========================= */
.sx-socialBtn .fa-x-twitter,
.sx-socialBtn .fa-twitter {
  color: #111;
}

/* Facebook */
.sx-socialBtn .fa-facebook-f {
  color: #1877F2;
}
/* Payment area wrapper (right side) */
.sx-footer__pay{
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

/* Stack the pills vertically (line by line) */
.sx-payRow{
  display: flex;
  flex-direction: column;
  gap: 14px;                 /* space between Visa/Mastercard/Paytm */
  align-items: flex-end;     /* align all pills to the right */
}

/* Each pill (badge) */
.sx-payPill{
  width: 200px;              /* ✅ consistent width */
  height: 54px;              /* ✅ consistent height */
  padding: 0 16px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(30,58,138,0.14);  /* theme border */
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.07);

  display: flex;
  align-items: center;
  gap: 12px;
}

/* Logo sizing */
.sx-payPill img{
  height: 28px;              /* ✅ bigger logos */
  width: auto;
  object-fit: contain;
  display: block;
}

/* Text styling */
.sx-payPill span{
  font-weight: 700;
  font-size: 16px;
  color: #0f172a;            /* dark for visibility */
  letter-spacing: 0.2px;
}

/* Small responsiveness */
@media (max-width: 768px){
  .sx-payRow{ align-items: center; }
  .sx-footer__pay{ justify-content: center; }
  .sx-payPill{ width: 220px; }
}
.sx-payPill img { height: 32px; }
/* JOIN CARD */
.sx-joinCard {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  margin-top: 32px;

  background: linear-gradient(
    135deg,
    rgba(255, 122, 26, 0.08),
    rgba(30, 58, 138, 0.06)
  );

  border: 1px solid rgba(30, 58, 138, 0.08);
  border-radius: 16px;
  max-width: 520px;
}

.sx-joinCard__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}

.sx-joinCard__content h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 4px;
  color: #0f172a;
}

.sx-joinCard__content p {
  font-size: 13px;
  line-height: 1.4;
  color: #475569;
  margin: 0 0 8px;
}

.sx-joinCard__btn {
  font-size: 13px;
  font-weight: 600;
  color: #ff7a1a;
  text-decoration: none;
}

.sx-joinCard__btn:hover {
  text-decoration: underline;
}
/* SERVEASILY FLOW SECTION */
.sx-flow{
  padding: 56px 20px;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    rgba(255,122,26,0.05) 100%
  );
}

.sx-flow__head{
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.sx-flow__tag{
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #1e3a8a;
  background: rgba(30,58,138,0.12);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.sx-flow__head h2{
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 8px;
  color: #0f172a;
}

.sx-flow__head p{
  font-size: 15px;
  color: #475569;
}

/* Steps grid */
.sx-flow__steps{
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* Step card */
.sx-flowStep{
  background: #fff;
  border-radius: 18px;
  padding: 26px 20px 24px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
}

.sx-flowStep__num{
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 12px;
  font-weight: 800;
  color: #ff7a1a;
  background: rgba(255,122,26,0.12);
  padding: 4px 10px;
  border-radius: 999px;
}

.sx-flowStep__icon{
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e3a8a, #ff7a1a);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.sx-flowStep h4{
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #0f172a;
}

.sx-flowStep p{
  font-size: 13.5px;
  line-height: 1.5;
  color: #64748b;
}

/* MOBILE */
@media (max-width: 900px){
  .sx-flow__steps{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px){
  .sx-flow{
    padding: 40px 16px;
  }

  .sx-flow__steps{
    grid-template-columns: 1fr;
  }

  .sx-flow__head h2{
    font-size: 22px;
  }
}








/* MOST BOOKED - section shell */
.sx-mostBooked{
  margin: 26px 0;
  padding: 18px 0 8px;
}

.sx-mostBooked__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  margin-bottom: 12px;
}

.sx-mostBooked__title{
  margin:0;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.sx-mostBooked__sub{
  margin:0;
  font-size: 13px;
  color: #64748b;
}

/* MARQUEE WRAP */
.sx-marquee{
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  padding: 14px 0;

  /* mild background */
  background:
    radial-gradient(900px 220px at 50% 0%, rgba(255,122,26,.12), transparent 60%),
    linear-gradient(180deg, rgba(30,58,138,.06), rgba(255,255,255,0));
  border: 1px solid rgba(15, 23, 42, .08);
}

/* fade edges (looks premium) */
.sx-marquee::before,
.sx-marquee::after{
  content:"";
  position:absolute;
  top:0; bottom:0;
  width: 80px;
  z-index: 2;
  pointer-events:none;
}
.sx-marquee::before{
  left:0;
  background: linear-gradient(90deg, rgba(255,255,255,.95), rgba(255,255,255,0));
}
.sx-marquee::after{
  right:0;
  background: linear-gradient(270deg, rgba(255,255,255,.95), rgba(255,255,255,0));
}

/* TRACK: two lists move together */
.sx-marquee__track{
  display:flex;
  gap: 18px;
  width: max-content;
  animation: sx-marquee-move 34s linear infinite;
}

/* pause on hover (desktop) */
.sx-marquee:hover .sx-marquee__track{
  animation-play-state: paused;
}

@keyframes sx-marquee-move{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* each list is one full set of cards */
.sx-marquee__list{
  display:flex;
  align-items: stretch;
  gap: 14px;
  padding: 0 10px;
}

/* CARD */
.sx-mCard{
  width: 170px;
  min-width: 170px;
  text-decoration:none;
  color: inherit;

  background: rgba(255,255,255,.72);
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .08);
  overflow:hidden;

  transition: transform .18s ease, box-shadow .18s ease;
}

.sx-mCard:hover{
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, .12);
}

.sx-mCard__img{
  height: 110px;
  background: #f1f5f9;
  overflow:hidden;
}

.sx-mCard__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}

.sx-mCard__meta{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px 12px;
}

.sx-mCard__name{
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -.01em;
  color: #0f172a;
  line-height: 1.2;
}

.sx-mCard__tag{
  font-size: 11px;
  font-weight: 800;
  color: #1e3a8a;
  background: rgba(30,58,138,.10);
  border: 1px solid rgba(30,58,138,.18);
  padding: 5px 8px;
  border-radius: 999px;
  white-space: nowrap;
}

/* Mobile tweaks */
@media (max-width: 520px){
  .sx-mostBooked__head{
    flex-direction: column;
    align-items: flex-start;
  }
  .sx-mCard{
    width: 150px;
    min-width: 150px;
  }
  .sx-mCard__img{ height: 100px; }
  .sx-marquee::before,
  .sx-marquee::after{ width: 45px; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .sx-marquee__track{
    animation: none;
    transform: none;
  }
}




/* ================================
   FIX: Service cards image fitting
================================ */

/* image container must have fixed height */
.se-cardV2__img {
  width: 100%;
  height: 140px;              /* adjust if you want taller */
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  background: #f6f7f9;
  position: relative;
}

/* force <img> to fill like a proper UI card */
.se-cardV2__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;          /* KEY */
  object-position: center;
  display: block;
}

/* your background-image version (View All card) */
.se-cardV2__img--more {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* if image fails -> keep card clean */
.se-cardV2__img.is-empty {
  background: linear-gradient(135deg, #f4f6ff, #fff6ee);
}








/* TESTIMONIALS */
.sx-testimonials {
  padding: 64px 0;
  overflow: hidden;
}

.sx-testimonials__head {
  text-align: center;
  margin-bottom: 32px;
}

.sx-testimonials__head h2 {
  font-size: 28px;
  font-weight: 700;
}

.sx-testimonials__slider {
  overflow: hidden;
}

.sx-testimonials__track {
  display: flex;
  gap: 20px;
  animation: testiScroll 40s linear infinite;
  width: max-content;
}

@keyframes testiScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* CARD */
.sx-testiCard {
  width: 320px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  overflow: hidden;
  flex-shrink: 0;
}

/* MEDIA */
.sx-testiCard__media {
  height: 180px;
  background: #f4f6fb;
}

.sx-testiCard__media img,
.sx-testiCard__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* BODY */
.sx-testiCard__body {
  padding: 16px;
}

.sx-testiCard__body p {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

/* FOOT */
.sx-testiCard__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
}

.sx-testiCard__meta {
  font-size: 12px;
  color: #888;
}

.sx-rating {
  color: #ffb400;
  font-size: 14px;
}

.sx-date {
  font-size: 12px;
  color: #777;
}

/* MOBILE */
@media (max-width: 768px) {
  .sx-testiCard {
    width: 260px;
  }
}




/* UPCOMING (Pronto-style) */
.se-upcoming{
  width: 100%;
  padding: 56px 0;
  background: radial-gradient(1200px 500px at 20% 0%, rgba(255, 122, 26, 0.10), transparent 60%),
              radial-gradient(900px 450px at 80% 20%, rgba(30, 58, 138, 0.10), transparent 55%),
              linear-gradient(180deg, #ffffff 0%, #fbfbff 100%);
  border-top: 1px solid rgba(30, 58, 138, 0.08);
  border-bottom: 1px solid rgba(30, 58, 138, 0.08);
  overflow: hidden;
}

.se-upcoming__inner{
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.se-upcoming__head{
  text-align: center;
  margin-bottom: 18px;
}

.se-pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(30,58,138,0.10);
  box-shadow: 0 8px 24px rgba(16,24,40,0.06);
  font-weight: 700;
}

.se-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ff7a1a;
  box-shadow: 0 0 0 4px rgba(255,122,26,0.20);
}

.se-upcoming__title{
  margin: 14px 0 6px;
  font-size: clamp(22px, 2.5vw, 36px);
  line-height: 1.15;
  color: #0f172a;
  font-weight: 800;
}

.se-upcoming__sub{
  margin: 0 auto;
  max-width: 720px;
  color: rgba(15,23,42,0.72);
  font-size: clamp(14px, 1.2vw, 16px);
}

/* Marquee container */
.se-marquee{
  position: relative;
  margin-top: 22px;
  padding: 18px 0 10px;
  overflow: hidden;
}

.se-marquee::before,
.se-marquee::after{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.se-marquee::before{
  left: 0;
  background: linear-gradient(90deg, rgba(251,251,255,1) 0%, rgba(251,251,255,0) 100%);
}

.se-marquee::after{
  right: 0;
  background: linear-gradient(270deg, rgba(251,251,255,1) 0%, rgba(251,251,255,0) 100%);
}

/* Track (two tracks for seamless loop) */
.se-marquee__track{
  display: flex;
  gap: 22px;
  align-items: stretch;
  width: max-content;
  animation: seMarquee 22s linear infinite;
  will-change: transform;
}

.se-marquee__track--clone{
  position: absolute;
  left: 0;
  top: 18px;
  animation-delay: 0s; /* same speed */
}

/* Tile */
.se-tile{
  width: clamp(240px, 28vw, 380px);
  flex: 0 0 auto;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(30,58,138,0.10);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(16,24,40,0.10);
  transform: translateZ(0);
}

.se-tile__imgWrap{
  position: relative;
  height: clamp(160px, 18vw, 230px);
  overflow: hidden;
  background: #fff;
}

.se-tile__imgWrap img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

.se-tile__badge{
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(15,23,42,0.12);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  color: #0f172a;
}

.se-tile__title{
  margin: 14px 16px 16px;
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
}

/* Pause on hover (desktop) */
.se-marquee:hover .se-marquee__track{
  animation-play-state: paused;
}

/* Right-to-left movement */
@keyframes seMarquee{
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .se-marquee__track{ animation: none; }
}

/* Mobile tuning */
@media (max-width: 768px){
  .se-upcoming{ padding: 42px 0; }
  .se-marquee::before, .se-marquee::after{ width: 40px; }
  .se-marquee__track{ gap: 14px; animation-duration: 18s; }
  .se-tile{ width: 78vw; border-radius: 18px; }
  .se-tile__imgWrap{ height: 190px; }
}










/* =========================
   WHY SERVEASILY (REAL IMAGE SECTION)
   ========================= */

.sx-whyReal{
  margin: 18px 0 24px;
  padding: 16px 0 10px;
}

.sx-whyReal__head{
  margin: 0 0 12px;
}

.sx-whyReal__title{
  margin: 0;
  font-size: 30px;
  font-weight: 1000;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.sx-whyReal__sub{
  margin: 6px 0 0;
  color: #55657d;
  font-weight: 650;
  max-width: 720px;
  line-height: 1.45;
}

/* desktop grid */
.sx-whyReal__row{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.sx-whyRealCard{
  background: #fff;
  border: 1px solid rgba(30,58,138,0.10);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
}

.sx-whyRealCard__img{
  height: 190px;
  background: radial-gradient(circle at 20% 20%, rgba(255,122,26,0.16), transparent 60%),
              radial-gradient(circle at 80% 80%, rgba(30,58,138,0.10), transparent 60%),
              #f6f8ff;
  position: relative;
}

.sx-whyRealCard__img img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;          /* keeps real photos looking good */
  object-position: center;    /* adjust per image if needed */
}

.sx-whyRealCard__img.is-empty{
  display: block;
}

.sx-whyRealCard__body{
  padding: 14px 14px 16px;
}

.sx-whyRealCard__kicker{
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  color: #1e3a8a;
  background: rgba(30,58,138,0.08);
  padding: 7px 10px;
  border-radius: 999px;
}

.sx-whyRealCard__h{
  margin: 10px 0 6px;
  font-size: 17px;
  font-weight: 1000;
  color: #0f172a;
}

.sx-whyRealCard__p{
  margin: 0;
  color: #55657d;
  font-weight: 650;
  font-size: 13.5px;
  line-height: 1.45;
}

.sx-whyReal__ctaRow{
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.sx-whyReal__cta{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 950;
  color: #fff;
  background: linear-gradient(90deg, #ff7a1a, #ff5f00);
  padding: 12px 14px;
  border-radius: 14px;
  box-shadow: 0 16px 28px rgba(255, 122, 26, 0.22);
}

.sx-whyReal__cta span{
  font-size: 18px;
  line-height: 1;
}

.sx-whyReal__link{
  color: #1e3a8a;
  font-weight: 900;
  text-decoration: none;
}

.sx-whyReal__link:hover{
  text-decoration: underline;
}

/* phone: horizontal scroll like your service row */
@media (max-width: 720px){
  .sx-whyReal__title{ font-size: 22px; }

  .sx-whyReal__row{
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .sx-whyReal__row::-webkit-scrollbar{
    height: 6px;
  }
  .sx-whyReal__row::-webkit-scrollbar-thumb{
    background: rgba(15, 23, 42, 0.14);
    border-radius: 999px;
  }

  .sx-whyRealCard{
    min-width: 82%;
    scroll-snap-align: start;
  }

  .sx-whyRealCard__img{
    height: 160px;
  }
}
/* Center the Why Serveasily heading + subtitle */
.sx-whyReal__head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Optional: keep subtitle nicely constrained */
.sx-whyReal__sub {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
/* WHY SERVEASILY CARD IMAGE */
.why-card__img {
  width: 100%;
  height: 220px;              /* desktop */
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  background: #f6f7fb;
}
.why-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;        /* 🔥 NOT cover */
  object-position: center;
  image-rendering: auto;
  display: block;
}
@media (max-width: 768px) {
  .why-card__img {
    height: 180px;
  }
}
.why-card__img img {
  filter: contrast(1.02) saturate(1.05);
}


/* =========================
   WHY SERVEASILY (sx-whyReal)
   Goal: image should NOT cut
   ========================= */

.sx-whyReal{
  margin-top: 22px;
  padding: 18px 0 6px;
}

.sx-whyReal__head{
  text-align: center;
  margin-bottom: 14px;
}

.sx-whyReal__title{
  margin: 0;
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.sx-whyReal__sub{
  margin: 8px auto 0;
  max-width: 820px;
  color: #5b6473;
  font-weight: 600;
  line-height: 1.35;
}

/* Row layout */
.sx-whyReal__row{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

/* Card */
.sx-whyRealCard{
  background: #fff;
  border: 1px solid #e7ecf6;
  border-radius: 18px;
  overflow: hidden; /* keeps corners clean */
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

/* Image frame (fixed height) */
.sx-whyRealCard__img{
  height: 220px;                 /* change if you want taller */
  background: #f5f7ff;           /* fallback behind images */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;                 /* gives breathing space so nothing touches edges */
}

/* ✅ KEY FIX: show full image, no crop */
.sx-whyRealCard__img img{
  width: 100%;
  height: 100%;
  object-fit:cover;           /* IMPORTANT: no cutting */
  object-position: center;
  border-radius: 14px;           /* soft inner rounding */
  image-rendering: auto;
  transform: translateZ(0);      /* reduces blur on some browsers */
}

/* If image fails */
.sx-whyRealCard__img.is-empty{
  background: linear-gradient(135deg, rgba(255,122,26,0.10), rgba(30,58,138,0.08));
}

/* Body */
.sx-whyRealCard__body{
  padding: 14px 16px 16px;
}

.sx-whyRealCard__kicker{
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef3ff;
  color: #173a8f;
  margin-bottom: 10px;
}

.sx-whyRealCard__h{
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.sx-whyRealCard__p{
  margin: 0;
  color: #556074;
  font-weight: 600;
  line-height: 1.4;
}

/* CTA row */
.sx-whyReal__ctaRow{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}

.sx-whyReal__cta{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  background: #ff7a1a;
  color: #0b1220;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(255,122,26,0.22);
}

.sx-whyReal__cta span{
  font-size: 18px;
  line-height: 1;
}

.sx-whyReal__link{
  color: #173a8f;
  font-weight: 800;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 980px){
  .sx-whyReal__row{
    grid-template-columns: 1fr;
  }
  .sx-whyRealCard__img{
    height: 200px;
  }
  .sx-whyReal__ctaRow{
    flex-direction: column;
    align-items: stretch;
  }
  .sx-whyReal__cta,
  .sx-whyReal__link{
    text-align: center;
    justify-content: center;
  }
}



/* ===== Auth Modals ===== */
.se-modal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 999999;
}
.se-modal[aria-hidden="false"]{ display:block; }

.se-modal__backdrop{
  position:absolute;
  inset:0;
  background: rgba(15,23,42,.55);
  backdrop-filter: blur(6px);
}

.se-modal__card{
  position: relative;
  width: min(520px, 92vw);
  margin: 7vh auto;
  background: #fff;
  border-radius: 18px;
  border: 1px solid #e7eefc;
  box-shadow: 0 30px 80px rgba(15,23,42,.25);
  overflow: hidden;
}

.se-modal__head{
  padding: 14px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom: 1px solid #eef2ff;
}
.se-modal__head h3{ margin:0; font-size: 16px; font-weight: 900; }
.se-modal__x{
  border:0;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
}

.se-modal__tabs{
  display:flex;
  gap: 8px;
  padding: 12px 16px 0;
}
.se-tab{
  border:1px solid #e7eefc;
  background:#f6f9ff;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 800;
  cursor:pointer;
}
.se-tab.is-active{
  background:#fff;
  border-color:#d8e5ff;
}

.se-modal__body{ padding: 14px 16px 16px; }
.se-pane{ display:none; }
.se-pane.is-active{ display:block; }

.se-field{ display:flex; flex-direction:column; gap:6px; margin-bottom: 12px; }
.se-field label{ font-size: 12px; font-weight: 800; color:#334155; }
.se-field input{
  height: 42px;
  border-radius: 12px;
  border:1px solid #e7eefc;
  padding: 0 12px;
  font-weight: 700;
}

.se-btn{
  width: 100%;
  height: 44px;
  border-radius: 12px;
  border: 1px solid #e7eefc;
  background: #fff;
  font-weight: 900;
  cursor: pointer;
}
.se-btn--primary{
  background: linear-gradient(135deg, #ff7a1a 0%, #ff9b55 100%);
  border-color: rgba(0,0,0,.08);
}
.se-btn--google{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}

.se-msg{
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  color: #475569;
}
/* ================================
   ACCOUNT DROPDOWN (HEADER)
   ================================ */
.sx-acct{
  position: relative;
  display: inline-block;
}

.sx-acctMenu{
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: 210px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
  padding: 6px;
  display: none;
  z-index: 9999;
}

.sx-acctMenu.is-open{ display: block; }

.sx-acctMenu__item{
  display:block;
  width:100%;
  text-align:left;
  padding: 10px 10px;
  border-radius: 10px;
  color:#111827;
  text-decoration:none;
  background:transparent;
  border:0;
  cursor:pointer;
  font-weight:700;
  font-size:13px;
}

.sx-acctMenu__item:hover{ background:#f3f4f6; }
.sx-acctMenu__logout{ color:#ef4444; }

/* ================================
   AVAILABILITY BAR (HOME TOP)
   ================================ */
.sx-avail{
  margin: 12px 0 0;
  padding: 10px 12px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  font-weight: 700;
  font-size: 13px;
  color: #111827;
}







