/* ================================================================
   MAC STAND — style.css
   Fonts : Urbanist (headings) + Outfit (body)
   Theme : Deep Navy #08122 / Gold #C6A244 / White #fff
================================================================ */

/* ── VARIABLES ─────────────────────────────────────────────── */
:root {
  --navy      : #081226;
  --navy-2    : #0e1a36;
  --navy-3    : #162442;
  --gold      : #C6A244;
  --gold-2    : #dbb85c;
  --gold-3    : #a8882e;
  --gold-bg   : rgba(198,162,68,.10);
  --gold-bdr  : rgba(198,162,68,.22);
  --white     : #ffffff;
  --off       : #F5F7FA;
  --muted     : #6b7a96;
  --border    : #e4e9f0;
  --text      : #101e38;
  --body-txt  : #3d4d66;

  --r-lg  : 20px;
  --r-md  : 14px;
  --r-sm  : 10px;
  --r-pill: 50px;

  --sh-sm : 0 2px 14px rgba(8,18,38,.07);
  --sh-md : 0 8px 36px rgba(8,18,38,.12);
  --sh-lg : 0 24px 64px rgba(8,18,38,.18);

  --tr    : all .3s ease;

  --f-head: 'Urbanist', sans-serif;
  --f-body: 'Outfit',   sans-serif;
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: var(--f-body);
  color: var(--body-txt);
  background: var(--white);
  line-height: 1.72;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6 { font-family: var(--f-head); color: var(--text); line-height: 1.18; font-weight: 700; }
a   { text-decoration: none; color: inherit; transition: var(--tr); }
img { max-width: 100%; height: auto; display: block; }
ul  { list-style: none; margin: 0; padding: 0; }

/* ── UTILS ─────────────────────────────────────────────────── */
.text-gold   { color: var(--gold); }
.pad-section { padding: 96px 0; }

.tag-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--f-head);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-bg);
  border: 1px solid var(--gold-bdr);
  padding: 6px 16px;
  border-radius: var(--r-pill);
  margin-bottom: 14px;
}
.tag-label::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}

.sec-title {
  font-family: var(--f-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 14px;
}
.sec-sub {
  color: var(--muted);
  font-size: 16px;
  max-width: 560px;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-3));
  color: var(--navy);
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .4px;
  padding: 13px 30px;
  border-radius: var(--r-pill);
  border: none;
  box-shadow: 0 6px 22px rgba(198,162,68,.32);
  transition: var(--tr);
  cursor: pointer;
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(198,162,68,.46);
}

.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 14px;
  padding: 13px 30px;
  border-radius: var(--r-pill);
  border: 2px solid var(--navy);
  transition: var(--tr);
  cursor: pointer;
}
.btn-navy:hover {
  background: transparent;
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 14px;
  padding: 11px 28px;
  border-radius: var(--r-pill);
  border: 2px solid var(--gold);
  transition: var(--tr);
  cursor: pointer;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 14px;
  padding: 11px 28px;
  border-radius: var(--r-pill);
  border: 2px solid rgba(255,255,255,.55);
  transition: var(--tr);
  cursor: pointer;
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

/* ── TOPBAR ─────────────────────────────────────────────────── */
.topbar {
  background: var(--navy-2);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 8px 0;
  font-size: 13px;
}
.topbar-link {
  color: rgba(255,255,255,.70);
  font-family: var(--f-body);
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--tr);
}
.topbar-link:hover { color: var(--gold); }
.topbar-link i { color: var(--gold); font-size: 14px; }
.tb-sep { color: rgba(255,255,255,.15); margin: 0 6px; }

.top-social a {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.60);
  font-size: 13px;
  transition: var(--tr);
}
.top-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* ── HEADER ─────────────────────────────────────────────────── */
.site-header {
  background: var(--white);
  box-shadow: var(--sh-sm);
  z-index: 999;
  transition: var(--tr);
}
.site-header.scrolled { box-shadow: 0 4px 32px rgba(8,18,38,.13); }

#mainNav { padding: 5px 0; }

.brand-mark {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 24px;
  box-shadow: 0 4px 14px rgba(8,18,38,.22);
  flex-shrink: 0;
}
.brand-name {
  font-family: var(--f-head);
  font-size: 21px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.5px;
  line-height: 1;
}
.brand-sub {
  font-family: var(--f-body);
  font-size: 10.5px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  font-family: var(--f-head);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text) !important;
  padding: 7px 13px !important;
  border-radius: 9px;
  transition: var(--tr);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active-link { color: var(--gold) !important; background: var(--gold-bg); }

.nav-cta-btn {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 13.5px;
  background: linear-gradient(135deg, var(--gold), var(--gold-3));
  color: var(--navy) !important;
  padding: 9px 22px !important;
  border-radius: var(--r-pill);
  box-shadow: 0 4px 16px rgba(198,162,68,.30);
}
.nav-cta-btn:hover {
  background: linear-gradient(135deg, var(--gold-2), var(--gold)) !important;
  transform: translateY(-1px);
  box-shadow: 0 7px 22px rgba(198,162,68,.44) !important;
}

/* Dropdown */
.dropdown-menu.ms-dropdown {
  border: 1px solid var(--gold-bdr);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  padding: 8px;
  min-width: 248px;
  animation: fadeDown .2s ease;
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ms-dropdown .dropdown-item {
  font-family: var(--f-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  padding: 10px 14px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--tr);
}
.ms-dropdown .dropdown-item i { color: var(--gold); font-size: 16px; }
.ms-dropdown .dropdown-item:hover { background: var(--gold-bg); color: var(--gold-3); }

/* Toggler */
.navbar-toggler { border: 1px solid rgba(8,18,38,.15); padding: 8px 12px; border-radius: 9px; }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon-custom { font-size: 22px; color: var(--navy); }

/* ── PAGE BANNER (inner pages) ───────────────────────────────── */
.page-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  padding: 90px 0 70px;
}
.page-banner img.banner-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .18;
}
.page-banner .banner-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(198,162,68,.10) 0%, transparent 65%);
}
.banner-content { position: relative; z-index: 2; }
.banner-title {
  font-family: var(--f-head);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.banner-breadcrumb { display: flex; gap: 10px; align-items: center; font-size: 14px; }
.banner-breadcrumb a { color: rgba(255,255,255,.65); }
.banner-breadcrumb a:hover { color: var(--gold); }
.banner-breadcrumb .sep { color: var(--gold); font-size: 12px; }
.banner-breadcrumb .current { color: var(--gold); font-weight: 600; }

/* ── HERO CAROUSEL ───────────────────────────────────────────── */
.hero-wrap { position: relative; }
.hero-slide {
  min-height: 680px;
 /* background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);*/
  background:linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%), url("banner-bg.webp");
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 78% 50%, rgba(198,162,68,.09) 0%, transparent 58%);
}

/* dot grid */
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 30px 30px;
}

.hero-content { position: relative; z-index: 3; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(198,162,68,.14);
  border: 1px solid rgba(198,162,68,.38);
  color: var(--gold-2);
  font-family: var(--f-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: var(--r-pill);
  margin-bottom: 22px;
}
.hero-title {
  font-family: var(--f-head);
  font-size: clamp(34px, 5.5vw, 60px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -.5px;
}
.hero-title span { color: var(--gold); }
.hero-desc {
  color: rgba(255,255,255,.68);
  font-size: 16.5px;
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-img-box {
  position: relative;
  z-index: 3;
}
.hero-img-box img {
  width: 100%;
/*  max-width: 460px;
  height: 400px;*/
  object-fit: cover;
  border-radius: 22px;
  border: 2px solid rgba(198,162,68,.22);
  box-shadow: 0 32px 80px rgba(0,0,0,.4);
}
.hero-img-box::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 2px dashed rgba(198,162,68,.18);
  border-radius: 28px;
  z-index: -1;
}

/* carousel controls */
.h-ctrl {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 18px;
  transition: var(--tr);
}
.h-ctrl:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.carousel-control-prev { left: 18px; width: auto; }
.carousel-control-next { right: 18px; width: auto; }

.carousel-indicators [data-bs-target] {
  width: 28px; height: 4px;
  border-radius: 4px;
  background: rgba(255,255,255,.38);
  border: none;
  transition: var(--tr);
}
.carousel-indicators [data-bs-target].active {
  width: 54px;
  background: var(--gold);
}

/* ── QUICK STATS BAR ─────────────────────────────────────────── */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
  box-shadow: var(--sh-sm);
}
.stat-item {
  padding: 22px 16px;
  border-right: 1px solid var(--border);
  text-align: center;
  transition: var(--tr);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--gold-bg); }
.stat-num {
  font-family: var(--f-head);
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.stat-num span { color: var(--gold); }
.stat-lbl {
  font-family: var(--f-body);
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 500;
  margin-top: 4px;
  letter-spacing: .5px;
}

/* ── ABOUT ───────────────────────────────────────────────────── */
.about-img-wrap { position: relative; }
.about-img-main {
  width: 100%;
  /* height: 480px; */
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  border: 2px solid var(--gold-bdr);
}
.about-pill {
  position: absolute;
  top: 28px; left: -22px;
  background: linear-gradient(135deg, var(--gold), var(--gold-3));
  color: var(--navy);
  padding: 14px 20px;
  border-radius: var(--r-md);
  font-family: var(--f-head);
  font-weight: 800;
  text-align: center;
  box-shadow: var(--sh-md);
  z-index: 2;
}
.about-pill .num { font-size: 30px; line-height: 1; display: block; }
.about-pill .lbl { font-size: 10.5px; letter-spacing: 1.5px; text-transform: uppercase; }

.about-float {
  position: absolute;
  bottom: 28px; right: -22px;
  background: var(--navy);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--r-md);
  box-shadow: var(--sh-md);
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; font-weight: 600;
  z-index: 2;
  border: 1px solid rgba(198,162,68,.28);
  font-family: var(--f-head);
}
.about-float i { color: var(--gold); font-size: 22px; }

.feat-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 13px 17px;
  font-family: var(--f-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: var(--tr);
}
.feat-chip:hover { border-color: var(--gold-bdr); background: var(--gold-bg); }
.feat-chip i { color: var(--gold); font-size: 18px; flex-shrink: 0; }

/* ── SERVICE CARDS ───────────────────────────────────────────── */
.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: var(--tr);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
  border-color: var(--gold-bdr);
}
.svc-img {
  position: relative;
 /* height: 200px;*/
  overflow: hidden;
}
.svc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.svc-card:hover .svc-img img { transform: scale(1.06); }
.svc-tag {
  position: absolute;
  top: 13px; right: 13px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--f-head);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 13px;
  border-radius: var(--r-pill);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.svc-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.svc-icon {
  width: 50px; height: 50px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-bdr);
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 14px;
}
.svc-name { font-family: var(--f-head); font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.svc-text { color: var(--muted); font-size: 14.5px; flex: 1; line-height: 1.65; margin-bottom: 18px; }
.btn-svc {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  border: 2px solid var(--gold-bdr);
  color: var(--gold-3);
  font-family: var(--f-head);
  font-size: 13px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: var(--r-pill);
  transition: var(--tr);
  align-self: flex-start;
}
.btn-svc:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* ── WHY CHOOSE ──────────────────────────────────────────────── */
.why-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--r-md);
  border-left: 3px solid transparent;
  transition: var(--tr);
  margin-bottom: 10px;
}
.why-row:hover { background: var(--off); border-left-color: var(--gold); }
.why-ico { color: var(--gold); font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.why-row h5 { font-family: var(--f-head); font-size: 15.5px; font-weight: 700; margin-bottom: 4px; }
.why-row p  { font-size: 14px; color: var(--muted); margin: 0; }

.why-grid { position: relative; height: 440px; }
.wg-img {
  position: absolute;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 3px solid var(--white);
  box-shadow: var(--sh-md);
}
.wg-img img { width: 100%; height: 100%; object-fit: cover; }
.wg-img.a { width: 58%; height: 52%; top: 0; left: 0; z-index: 2; }
.wg-img.b { width: 44%; height: 52%; top: 0; right: 0; }
.wg-img.c { width: 68%; height: 48%; bottom: 0; left: 50%; transform: translateX(-50%); z-index: 3; }
.why-badge {
  position: absolute;
  bottom: 18px; right: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-3));
  color: var(--navy);
  padding: 16px 20px;
  border-radius: var(--r-md);
  z-index: 5;
  text-align: center;
  box-shadow: var(--sh-md);
  min-width: 110px;
}
.why-badge i { font-size: 22px; display: block; margin-bottom: 4px; }
.why-badge strong { font-family: var(--f-head); font-size: 22px; font-weight: 800; display: block; line-height: 1; }
.why-badge small { font-size: 11px; font-weight: 700; letter-spacing: .5px; }

/* ── COUNTER ─────────────────────────────────────────────────── */
.counter-section { /*background: var(--navy);*/ padding: 80px 0;
    background: linear-gradient(135deg, #081226e6 0%, #162442de 100%), url(banner-bg.webp);
 }
 .wuld-lke{
	  padding: 80px 0;
    background: linear-gradient(135deg, #081226e6 0%, #162442de 100%), url(banner-bg.webp);
 }
.ctr-card {
  padding: 36px 20px;
  text-align: center;
  border: 1px solid rgb(198 162 68 / 57%);
  border-radius: var(--r-lg);
  transition: var(--tr);
  position: relative;
  overflow: hidden;
}
.ctr-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-3));
  transform: scaleX(0);
  transition: var(--tr);
}
.ctr-card:hover::after { transform: scaleX(1); }
.ctr-card:hover { border-color: rgba(198,162,68,.36); }
.ctr-icon { font-size: 34px; color: var(--gold); display: block; margin-bottom: 10px; }
.ctr-num  {
  font-family: var(--f-head);
  font-size: 46px;
  font-weight: 900;
  color: var(--white);
  display: inline;
  line-height: 1;
}
.ctr-plus { font-size: 32px; color: var(--gold); font-weight: 800; vertical-align: top; margin-top: 4px; display: inline-block; }
.ctr-lbl  { font-family: var(--f-body); font-size: 13px; color: rgba(255,255,255,.55); margin-top: 8px; text-transform: uppercase; letter-spacing: 1.2px; }

/* ── HOW IT WORKS ────────────────────────────────────────────── */
.how-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 26px;
  text-align: center;
  box-shadow: var(--sh-sm);
  transition: var(--tr);
  position: relative;
  height: 100%;
}
.how-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: var(--gold-bdr); }
.how-num {
  position: absolute;
  top: 18px; right: 20px;
  font-family: var(--f-head);
  font-size: 52px;
  font-weight: 900;
  color: rgba(198,162,68,.11);
  line-height: 1;
}
.how-ico {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 28px;
  margin: 0 auto 18px;
  box-shadow: 0 8px 26px rgba(8,18,38,.22);
}
.how-card h4 { font-family: var(--f-head); font-size: 17.5px; font-weight: 700; margin-bottom: 10px; }
.how-card p  { color: var(--muted); font-size: 14px; }

/* ── BOOK SERVICE ────────────────────────────────────────────── */
.book-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--sh-lg);
  border: 1px solid var(--gold-bdr);
}
.book-left {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-3) 100%);
  padding: 54px 44px;
  position: relative;
  overflow: hidden;
}
.book-left::after {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198,162,68,.12) 0%, transparent 70%);
  bottom: -100px; right: -80px;
}
.book-left .sec-title { font-size: 30px; }
.book-desc  { color: rgba(255,255,255,.68); font-size: 15px; margin-top: 10px; }
.book-perks li {
  color: rgba(255,255,255,.82);
  font-size: 14.5px;
  font-weight: 500;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.book-perks li i { color: var(--gold); }
.book-clink {
  display: flex; align-items: center; gap: 10px;
  color: var(--gold-2);
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 15px;
}
.book-clink i { font-size: 18px; }
.book-clink:hover { color: var(--white); }

.book-right { background: var(--white); padding: 54px 44px; }
.book-right-title {
  font-family: var(--f-head);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--off);
  color: var(--text);
}

/* ── FORMS ───────────────────────────────────────────────────── */
.ms-input {
  border: 1.5px solid var(--border);
  border-radius: 11px;
  padding: 12px 17px;
  font-size: 14.5px;
  font-family: var(--f-body);
  color: var(--text);
  background: var(--off);
  transition: var(--tr);
  width: 100%;
}
.ms-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198,162,68,.13);
  background: var(--white);
}
.ms-label {
  font-family: var(--f-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  display: block;
}

/* ── GALLERY ─────────────────────────────────────────────────── */
.gal-item {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  border: 1px solid var(--border);
  box-shadow: var(--sh-sm);
}
.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.gal-item:hover img { transform: scale(1.08); }
.gal-ov {
  position: absolute;
  inset: 0;
  background: rgba(8,18,38,.62);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 28px;
  opacity: 0;
  transition: var(--tr);
}
.gal-item:hover .gal-ov { opacity: 1; }

/* Filter buttons */
.gal-filter .f-btn {
  background: var(--off);
  border: 1.5px solid var(--border);
  color: var(--text);
  font-family: var(--f-head);
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 22px;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: var(--tr);
}
.gal-filter .f-btn:hover,
.gal-filter .f-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

/* Lightbox */
.lb {
  position: fixed; inset: 0;
  background: rgba(8,18,38,.96);
  z-index: 9999;
  display: none; align-items: center; justify-content: center;
}
.lb.open { display: flex; }
.lb-img { max-width: 90vw; max-height: 85vh; border-radius: 14px; object-fit: contain; box-shadow: var(--sh-lg); }
.lb-btn {
  position: fixed;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: var(--tr);
}
.lb-btn:hover { background: var(--gold); color: var(--navy); }
.lb-close { top: 18px; right: 18px; }
.lb-prev  { left: 18px; top: 50%; transform: translateY(-50%); }
.lb-next  { right: 18px; top: 50%; transform: translateY(-50%); }

/* ── TESTIMONIALS ────────────────────────────────────────────── */
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px;
  box-shadow: var(--sh-sm);
  transition: var(--tr);
  height: 100%;
}
.testi-card:hover { box-shadow: var(--sh-md); border-color: var(--gold-bdr); }
.testi-stars { color: var(--gold); font-size: 13px; margin-bottom: 14px; letter-spacing: 2px; }
.testi-q { color: var(--gold); font-size: 40px; line-height: .6; font-family: var(--f-head); margin-bottom: 8px; }
.testi-txt { color: var(--body-txt); font-size: 14.5px; line-height: 1.72; }
.tav {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-bdr);
  flex-shrink: 0;
}
.testi-name { font-family: var(--f-head); font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.testi-role { font-size: 12.5px; color: var(--muted); }
.testi-ctrl {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 2px solid var(--gold-bdr);
  background: var(--white);
  color: var(--navy);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--tr);
  font-size: 16px;
}
.testi-ctrl:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* ── FAQ ─────────────────────────────────────────────────────── */
.ms-acc .accordion-item {
  border: 1.5px solid var(--border);
  border-radius: var(--r-md) !important;
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--tr);
}
.ms-acc .accordion-item:hover { border-color: var(--gold-bdr); }
.ms-acc .accordion-button {
  font-family: var(--f-head);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text);
  background: var(--white);
  padding: 18px 24px;
  box-shadow: none;
}
.ms-acc .accordion-button:not(.collapsed) {
  background: var(--gold-bg);
  color: var(--gold-3);
  box-shadow: none;
}
.ms-acc .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23C6A244'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.ms-acc .accordion-body {
  font-size: 14.5px;
  color: var(--body-txt);
  padding: 4px 24px 20px;
  line-height: 1.72;
  border-top: 1px solid var(--border);
}

/* ── CONTACT ─────────────────────────────────────────────────── */
.ct-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px 24px;
  box-shadow: var(--sh-sm);
  display: flex; gap: 16px; align-items: flex-start;
  transition: var(--tr);
}
.ct-info-card:hover { border-color: var(--gold-bdr); box-shadow: var(--sh-md); }
.ct-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}
.ct-info-card h5 { font-family: var(--f-head); font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.ct-info-card p, .ct-info-card a { font-size: 14px; color: var(--muted); margin: 0; }
.ct-info-card a:hover { color: var(--gold); }

.ct-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: var(--sh-sm);
}
.map-box { border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--border); }

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer { background: var(--navy-2); }
.footer-top  { padding: 72px 0 52px; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-brand-name {
  font-family: var(--f-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.4px;
}
.footer-brand-sub {
  font-family: var(--f-body);
  font-size: 10.5px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}
.footer-about { color: rgba(255,255,255,.55); font-size: 14px; line-height: 1.72; max-width: 290px; }
.footer-soc a {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.10);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65);
  font-size: 15px;
  transition: var(--tr);
}
.footer-soc a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

.footer-head {
  font-family: var(--f-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(198,162,68,.28);
  display: inline-block;
}
.footer-links a {
  display: block;
  color: rgba(255,255,255,.58);
  font-size: 13.5px;
  
  padding-bottom:5px;
  transition: var(--tr);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-ct li {
  display: flex; gap: 12px; align-items: flex-start;
  margin-bottom: 14px;
}
.footer-ct i { color: var(--gold); font-size: 15px; margin-top: 3px; flex-shrink: 0; }
.footer-ct span, .footer-ct a { color: rgba(255,255,255,.60); font-size: 13.5px; }
.footer-ct a:hover { color: var(--gold); }

.footer-bottom { padding: 17px 0; background: rgba(0,0,0,.18); }
.footer-bottom p { color: rgba(255,255,255,.45); font-size: 13px; margin: 0; }

/* ── FLOATING BUTTONS ────────────────────────────────────────── */
.fl-wa, .fl-call {
  position: fixed;
  bottom: 82px;
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  box-shadow: 0 6px 22px rgba(0,0,0,.24);
  z-index: 998;
  transition: var(--tr);
  text-decoration: none;
}
.fl-wa   { left: 20px; background: #25D366; color: var(--white); }
.fl-call { right: 20px; background: var(--navy); color: var(--gold); border: 1px solid rgba(198,162,68,.28); }
.fl-wa:hover   { background: #1ebe5d; color: var(--white); transform: scale(1.1) translateY(-3px); }
.fl-call:hover { background: var(--gold); color: var(--navy); transform: scale(1.1) translateY(-3px); }

.fl-tip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--white);
  font-family: var(--f-head);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 7px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--tr);
  border: 1px solid rgba(198,162,68,.22);
}
.fl-wa:hover .fl-tip,
.fl-call:hover .fl-tip { opacity: 1; }

/* Pulse */
.fl-wa::after, .fl-call::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid;
  animation: ripple 2.5s infinite;
}
.fl-wa::after   { border-color: rgba(37,211,102,.40); }
.fl-call::after { border-color: rgba(198,162,68,.36); }
@keyframes ripple {
  0%   { transform: scale(1); opacity: 1; }
  70%  { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* ── BACK TO TOP ─────────────────────────────────────────────── */
#btt {
  position: fixed;
  bottom: 22px; right: 22px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  box-shadow: var(--sh-md);
  cursor: pointer;
  z-index: 997;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--tr);
}
#btt.show { opacity: 1; transform: translateY(0); }
#btt:hover { background: var(--gold-3); transform: translateY(-3px); }

/* ── TOAST ───────────────────────────────────────────────────── */
#ms-toast {
  position: fixed;
  bottom: 30px; left: 50%;
  transform: translateX(-50%) translateY(70px);
  background: var(--navy);
  color: var(--white);
  font-family: var(--f-head);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: var(--r-pill);
  z-index: 9999;
  border: 1px solid rgba(198,162,68,.28);
  box-shadow: var(--sh-lg);
  display: flex; align-items: center; gap: 10px;
  opacity: 0;
  transition: all .4s cubic-bezier(.34,1.56,.64,1);
}
#ms-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
#ms-toast i { color: var(--gold); }
.cu-lg-wdth{
	width:240px;
}
.cu-fter-lnk li{
	border-bottom:1px dashed;
	margin-bottom:5px;
}
/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width:991.98px) {
  .pad-section { padding: 70px 0; }
  .hero-slide   { min-height: 560px; }
  .why-grid     { height: 300px; }
  .book-left, .book-right { padding: 38px 30px; }
  .about-pill   { left: 0; }
  .about-float  { right: 0; }
}

@media (max-width:767.98px) {
	.carousel{
		min-height:749px;
	}
	
	.hero-content{
		text-align:center;
	}
	.cu-jf-cntr{
		justify-content:center!important;
	}
  .pad-section { padding: 56px 0;overflow-x: hidden; }
  .hero-slide  { min-height: auto; padding: 80px 0 60px; }
  .hero-title  { font-size: 30px; }
  .hero-desc   { font-size: 15px; }
  .about-img-main { /*height: 280px; */}
  .about-pill, .about-float { position: relative; left: auto; right: auto; bottom: auto; top: auto; display: inline-flex; gap: 10px; align-items: center; margin: 10px 0; }
  .why-grid    { display: none; }
  .ctr-num     { font-size: 36px; }
  .book-left, .book-right { padding: 30px 22px; }
  .ct-form-wrap { padding: 24px 20px; }
  .stat-item   { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
}

@media (max-width:575.98px) {
  .sec-title  { font-size: 24px; }
  .hero-title { font-size: 26px; }
  .banner-title { font-size: 28px; }
  .testi-card { padding: 20px 16px; }
}
@media(max-width:374px)
{
	.cu-ds-nn-374{
		display:none!important;
	}
	.cu-ds-nn-374-cntr{
		justify-content:center!important
	}
	
	.cu-lg-wdth{
	width:230px;
}
}