/* ════════════════════════════════════════════════════════
   Property Book — style.css
   Fonts: Cormorant Garamond (display) + DM Sans (body)
════════════════════════════════════════════════════════ */

:root {
  --navy:      #0d1b2a;
  --navy-mid:  #1a2e44;
  --navy-soft: #2a4261;
  --gold:      #c9a84c;
  --gold-light:#e0c06e;
  --blue:      #1877f2;
  --white:     #ffffff;
  --off-white: #f8f7f4;
  --grey-100:  #f3f4f6;
  --grey-200:  #e5e7eb;
  --grey-400:  #9ca3af;
  --grey-600:  #4b5563;
  --grey-800:  #1f2937;
  --green:     #10b981;

  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'DM Sans', sans-serif;

  --radius-sm:  8px;
  --radius:     14px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --shadow-sm:  0 2px 8px rgba(13,27,42,.06);
  --shadow:     0 8px 32px rgba(13,27,42,.10);
  --shadow-md:  0 16px 48px rgba(13,27,42,.14);
  --shadow-lg:  0 24px 64px rgba(13,27,42,.20);

  --transition: .3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 15px; color: var(--grey-800); background: var(--white); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--grey-100); }
::-webkit-scrollbar-thumb { background: var(--navy-mid); border-radius: 99px; }

/* ── Typography ── */
.section-eyebrow {
  display: inline-block; font-size: 12px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px); font-weight: 600;
  color: var(--navy); line-height: 1.15;
}
.section-title em { font-style: italic; color: var(--blue); }
.section-sub { font-size: 15px; color: var(--grey-600); max-width: 520px; margin: 0 auto; }
.mt-6 { margin-top: 72px !important; }

/* ── Buttons ── */
.pb-btn-primary {
  background: var(--blue); color: var(--white); border: none;
  border-radius: var(--radius-sm); padding: 10px 22px;
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  transition: var(--transition); box-shadow: 0 4px 16px rgba(24,119,242,.30);
}
.pb-btn-primary:hover { background: #0f65d8; color: var(--white); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(24,119,242,.40); }

.pb-btn-ghost {
  background: transparent; color: var(--navy); border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-sm); padding: 9px 20px;
  font-family: var(--font-body); font-size: 14px; font-weight: 500; transition: var(--transition);
}
.pb-btn-ghost:hover { border-color: var(--blue); color: var(--blue); }

.pb-btn-outline {
  background: transparent; color: var(--blue); border: 1.5px solid var(--blue);
  border-radius: var(--radius-sm); padding: 10px 22px;
  font-family: var(--font-body); font-size: 14px; font-weight: 500; transition: var(--transition);
}
.pb-btn-outline:hover { background: var(--blue); color: var(--white); }

.pb-btn-sm {
  background: var(--navy); color: var(--white); border: none;
  border-radius: var(--radius-sm); padding: 7px 16px;
  font-size: 13px; font-weight: 500; transition: var(--transition);
}
.pb-btn-sm:hover { background: var(--blue); color: var(--white); }

.pb-btn-white {
  background: var(--white); color: var(--navy); border: none;
  border-radius: var(--radius-sm); padding: 12px 28px;
  font-size: 14px; font-weight: 600; transition: var(--transition);
}
.pb-btn-white:hover { background: var(--off-white); transform: translateY(-1px); }

.pb-btn-ghost-white {
  background: transparent; color: rgba(255,255,255,.85); border: 1.5px solid rgba(255,255,255,.40);
  border-radius: var(--radius-sm); padding: 11px 28px;
  font-size: 14px; font-weight: 500; transition: var(--transition);
}
.pb-btn-ghost-white:hover { background: rgba(255,255,255,.12); color: var(--white); border-color: rgba(255,255,255,.6); }

/* ── Navbar ── */
.pb-navbar {
  background: rgba(255,255,255,.95); backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--grey-200); padding: 14px 0;
  z-index: 1040; transition: box-shadow var(--transition);
}
.pb-navbar.scrolled { box-shadow: var(--shadow); }

.pb-brand { display: flex !important; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--navy); }
.brand-icon { width: 36px; height: 36px; background: var(--navy); border-radius: 9px; display: grid; place-items: center; color: var(--gold); font-size: 16px; flex-shrink: 0; }
.brand-text { color: #fff; }
.brand-accent { color: var(--blue); }

.pb-link { font-family: var(--font-body); font-size: 14px; font-weight: 500; color: var(--grey-600) !important; padding: 6px 12px !important; border-radius: var(--radius-sm); transition: var(--transition); }
.pb-link:hover, .pb-link.active { color: var(--navy) !important; background: var(--grey-100); }

.pb-toggler { border: none; background: transparent; padding: 6px; display: flex; flex-direction: column; gap: 5px; }
.pb-toggler:focus { box-shadow: none; }
.toggler-icon { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }

/* ── Hero ── */
.pb-hero {
  position: relative; min-height: 90vh; display: flex; align-items: center;
  background: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1600&q=85') center/cover no-repeat;
  padding: 80px 0 60px;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,27,42,.88) 0%, rgba(13,27,42,.60) 60%, rgba(24,119,242,.25) 100%); }
.hero-grain { position: absolute; inset: 0; opacity: .04; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); pointer-events: none; }
.hero-content { position: relative; z-index: 2; }

.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 16px; padding: 5px 14px; border: 1px solid rgba(201,168,76,.35); border-radius: 40px; background: rgba(201,168,76,.08); }
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); animation: dot-pulse 2s infinite; }
@keyframes dot-pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }

.hero-title { font-family: var(--font-display); font-size: clamp(44px, 7vw, 80px); font-weight: 600; color: var(--white); line-height: 1.08; margin-bottom: 20px; }
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-sub { font-size: 16px; color: rgba(255,255,255,.75); max-width: 520px; margin: 0 auto; line-height: 1.65; }

.hero-search-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-lg); }
.search-tabs { display: flex; gap: 4px; }
.stab { background: transparent; border: none; border-radius: var(--radius-sm); padding: 7px 18px; font-family: var(--font-body); font-size: 14px; font-weight: 500; color: var(--grey-600); cursor: pointer; transition: var(--transition); }
.stab.active, .stab:hover { background: var(--navy); color: var(--white); }
.search-label { display: block; font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--grey-400); margin-bottom: 6px; }
.pb-input { border: 1.5px solid var(--grey-200); border-radius: var(--radius-sm); padding: 10px 14px; font-family: var(--font-body); font-size: 14px; color: var(--grey-800); background: var(--white); transition: border-color var(--transition); }
.pb-input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(24,119,242,.10); outline: none; }
.input-icon-wrap { position: relative; }
.input-icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--grey-400); font-size: 13px; pointer-events: none; }
.input-icon-wrap .pb-input { padding-left: 34px; }
.search-btn { padding: 11px 20px; font-size: 14px; font-weight: 600; }

.hero-stats { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 12px; }
.hstat { display: flex; flex-direction: column; align-items: center; padding: 0 28px; }
.hstat-num { font-family: var(--font-display); font-size: 30px; font-weight: 700; color: var(--white); line-height: 1; }
.hstat-suffix { font-size: 18px; font-weight: 700; color: var(--white); display: inline; }
.hstat-label { font-size: 12px; color: rgba(255,255,255,.6); margin-top: 4px; letter-spacing: .04em; }
.hstat-divider { width: 1px; height: 36px; background: rgba(255,255,255,.2); }

/* ── Sections ── */
.pb-section { padding: 90px 0; }
.col-lg-2dot4 { flex: 0 0 20%; max-width: 20%; }
@media(max-width:991px){ .col-lg-2dot4 { max-width: 100%; } }

/* ── Categories ── */
.pb-categories { background: var(--off-white); }
.cat-card { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 28px 16px 24px; background: var(--white); border: 1.5px solid var(--grey-200); border-radius: var(--radius); cursor: pointer; transition: var(--transition); text-align: center; color: inherit; }
.cat-card:hover { border-color: var(--blue); box-shadow: var(--shadow-md); transform: translateY(-4px); color: inherit; }
.cat-icon-wrap { width: 60px; height: 60px; border-radius: var(--radius); background: var(--grey-100); display: grid; place-items: center; font-size: 24px; color: var(--navy); transition: var(--transition); }
.cat-card:hover .cat-icon-wrap { background: var(--blue); color: var(--white); }
.cat-card.highlight-cat .cat-icon-wrap { background: var(--navy); color: var(--gold); }
.cat-card.highlight-cat:hover .cat-icon-wrap { background: var(--gold); color: var(--navy); }
.cat-name { font-weight: 600; font-size: 14px; }
.cat-count { font-size: 12px; color: var(--grey-400); }

/* ── Property Cards ── */
.pb-featured { background: var(--white); }
.prop-card { background: var(--white); border: 1.5px solid var(--grey-200); border-radius: var(--radius); overflow: hidden; transition: var(--transition); height: 100%; }
.prop-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }
.prop-img-wrap { position: relative; height: 210px; overflow: hidden; }
.prop-img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.prop-card:hover .prop-img { transform: scale(1.05); }
.prop-badge { position: absolute; top: 12px; left: 12px; background: var(--blue); color: var(--white); font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 40px; letter-spacing: .04em; }
.new-badge { background: var(--green); }
.luxury-badge { background: var(--navy); color: var(--gold); }
.prop-type-badge { position: absolute; bottom: 12px; left: 12px; background: rgba(13,27,42,.75); color: var(--white); font-size: 11px; font-weight: 500; padding: 3px 10px; border-radius: 40px; backdrop-filter: blur(4px); }
.prop-wishlist { position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; border-radius: 50%; border: none; background: rgba(255,255,255,.9); color: var(--grey-600); display: grid; place-items: center; cursor: pointer; transition: var(--transition); backdrop-filter: blur(4px); }
.prop-wishlist:hover, .prop-wishlist.active { background: #fef2f2; color: #ef4444; }
.prop-body { padding: 18px; }
.prop-price { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.prop-title { font-size: 15px; font-weight: 600; color: var(--grey-800); margin-bottom: 5px; }
.prop-loc { font-size: 13px; color: var(--grey-400); margin-bottom: 12px; }
.prop-meta { display: flex; gap: 14px; flex-wrap: wrap; font-size: 12px; color: var(--grey-600); margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--grey-200); }
.prop-meta span { display: flex; align-items: center; gap: 5px; }
.prop-meta i { color: var(--blue); font-size: 13px; }
.prop-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.prop-agent { display: flex; align-items: center; gap: 7px; font-size: 12px; color: var(--grey-600); font-weight: 500; }
.prop-agent img { width: 26px; height: 26px; border-radius: 50%; object-fit: cover; }

/* ── Why ── */
.pb-why { background: var(--navy); }
.pb-why .section-eyebrow { color: var(--gold); }
.pb-why .section-title { color: var(--white); }
.pb-why .section-title em { color: var(--gold-light); }
.why-card { padding: 32px 28px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); transition: var(--transition); height: 100%; }
.why-card:hover { background: rgba(255,255,255,.09); border-color: rgba(201,168,76,.30); transform: translateY(-4px); }
.why-icon-wrap { width: 54px; height: 54px; border-radius: var(--radius-sm); background: rgba(201,168,76,.15); display: grid; place-items: center; font-size: 22px; color: var(--gold); margin-bottom: 20px; transition: var(--transition); }
.why-card:hover .why-icon-wrap { background: var(--gold); color: var(--navy); }
.why-title { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.why-desc { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.65; }

/* ── Locations ── */
.pb-locations { background: var(--off-white); }
.loc-card { display: block; position: relative; border-radius: var(--radius); overflow: hidden; height: 220px; cursor: pointer; }
.loc-img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.loc-card:hover .loc-img { transform: scale(1.07); }
.loc-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,27,42,.85) 0%, rgba(13,27,42,.20) 60%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; }
.loc-name { font-family: var(--font-display); font-size: 24px; font-weight: 600; color: var(--white); line-height: 1.15; margin-bottom: 4px; }
.loc-count { font-size: 12px; color: rgba(255,255,255,.7); font-weight: 500; }

/* ══════════════════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════════════════ */
.pb-about { background: var(--white); }

.about-collage { position: relative; padding: 20px 0 40px; }
.about-img-main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.about-img-main img { width: 100%; height: 380px; object-fit: cover; }
.about-img-float { position: absolute; bottom: 0; right: -20px; width: 44%; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); border: 4px solid var(--white); }
.about-img-float img { width: 100%; height: 180px; object-fit: cover; }
.about-badge-float { position: absolute; top: 30px; left: -20px; background: var(--navy); border-radius: var(--radius); padding: 16px 20px; box-shadow: var(--shadow-md); display: flex; flex-direction: column; align-items: center; z-index: 2; }
.about-badge-num { font-family: var(--font-display); font-size: 30px; font-weight: 700; color: var(--gold); line-height: 1; }
.about-badge-text { font-size: 11px; color: rgba(255,255,255,.7); margin-top: 3px; text-align: center; }

.about-para { font-size: 15px; color: var(--grey-600); line-height: 1.75; margin-bottom: 12px; }

.about-pillars { display: flex; flex-direction: column; gap: 18px; }
.about-pillar { display: flex; align-items: flex-start; gap: 16px; padding: 18px; background: var(--off-white); border-radius: var(--radius); border-left: 3px solid var(--blue); transition: var(--transition); }
.about-pillar:hover { background: var(--grey-100); transform: translateX(4px); }
.pillar-icon { width: 44px; height: 44px; border-radius: var(--radius-sm); background: var(--navy); display: grid; place-items: center; font-size: 18px; color: var(--gold); flex-shrink: 0; }
.pillar-title { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.pillar-desc { font-size: 13px; color: var(--grey-600); line-height: 1.55; margin: 0; }

/* Team cards */
.team-card { text-align: center; transition: var(--transition); }
.team-card:hover { transform: translateY(-4px); }
.team-img-wrap { position: relative; border-radius: var(--radius); overflow: hidden; margin-bottom: 14px; }
.team-img { width: 100%; height: 200px; object-fit: cover; transition: transform .4s ease; }
.team-card:hover .team-img { transform: scale(1.05); }
.team-overlay { position: absolute; inset: 0; background: rgba(13,27,42,.65); display: flex; align-items: center; justify-content: center; gap: 12px; opacity: 0; transition: var(--transition); }
.team-card:hover .team-overlay { opacity: 1; }
.team-overlay a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); display: grid; place-items: center; color: var(--white); font-size: 14px; transition: var(--transition); }
.team-overlay a:hover { background: var(--blue); border-color: var(--blue); }
.team-name { font-family: var(--font-display); font-size: 17px; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.team-role { font-size: 12px; color: var(--grey-400); font-weight: 500; }

/* ══════════════════════════════════════════════════════
   CTA
══════════════════════════════════════════════════════ */
.pb-cta { position: relative; background: linear-gradient(135deg, var(--blue) 0%, #0b4fc9 60%, var(--navy) 100%); padding: 90px 0; overflow: hidden; }
.cta-bg-pattern { position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 80%, rgba(255,255,255,.07) 0, transparent 40%), radial-gradient(circle at 80% 20%, rgba(201,168,76,.12) 0, transparent 40%); pointer-events: none; }
.cta-eyebrow { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.65); margin-bottom: 14px; }
.cta-title { font-family: var(--font-display); font-size: clamp(32px, 5vw, 54px); font-weight: 600; color: var(--white); line-height: 1.12; margin-bottom: 16px; }
.cta-title em { font-style: italic; color: var(--gold-light); }
.cta-sub { font-size: 16px; color: rgba(255,255,255,.70); max-width: 480px; margin: 0 auto; line-height: 1.65; }

/* ══════════════════════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════════════════════ */
.pb-contact { background: var(--off-white); }

.contact-info-wrap { display: flex; flex-direction: column; gap: 6px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; padding: 18px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--grey-200); transition: var(--transition); }
.contact-info-item:hover { box-shadow: var(--shadow); transform: translateX(4px); border-color: var(--blue); }
.ci-icon { width: 44px; height: 44px; border-radius: var(--radius-sm); background: var(--navy); display: grid; place-items: center; font-size: 18px; color: var(--gold); flex-shrink: 0; }
.ci-title { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--grey-400); margin-bottom: 3px; }
.ci-text { font-size: 14px; color: var(--grey-800); line-height: 1.5; margin: 0; }
.contact-social { display: flex; gap: 10px; }

.contact-form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); border: 1px solid var(--grey-200); }
.contact-form-title { font-family: var(--font-display); font-size: 26px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.contact-form-sub { font-size: 14px; color: var(--grey-400); margin-bottom: 24px; }

.contact-success-msg { display: flex; align-items: center; gap: 14px; padding: 16px 18px; background: #f0fdf4; border: 1px solid #86efac; border-radius: var(--radius); margin-top: 18px; }
.contact-success-msg i { font-size: 28px; color: var(--green); flex-shrink: 0; }
.contact-success-msg strong { display: block; font-weight: 600; color: var(--navy); }
.contact-success-msg p { font-size: 13px; color: var(--grey-600); margin: 0; }

/* ══════════════════════════════════════════════════════
   MESSAGE MODAL
══════════════════════════════════════════════════════ */
.pb-modal-content { border: none; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }

.pb-modal-header { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); padding: 18px 24px; display: flex; align-items: center; justify-content: space-between; }
.pb-modal-brand { display: flex; align-items: center; gap: 10px; }

.pb-modal-left { background: linear-gradient(160deg, var(--navy-mid) 0%, var(--navy) 100%); padding: 36px 32px; display: flex; flex-direction: column; position: relative; overflow: hidden; }
.pb-modal-left::before { content: ''; position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; border-radius: 50%; background: rgba(201,168,76,.06); }
.pb-modal-left::after { content: ''; position: absolute; bottom: -40px; left: -40px; width: 160px; height: 160px; border-radius: 50%; background: rgba(24,119,242,.06); }
.pb-modal-left-inner { position: relative; z-index: 1; display: flex; flex-direction: column; height: 100%; }
.modal-left-title { font-family: var(--font-display); font-size: 24px; font-weight: 600; color: var(--white); line-height: 1.25; margin-bottom: 12px; }
.modal-left-title em { font-style: italic; color: var(--gold-light); }
.modal-left-sub { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.65; margin-bottom: 28px; }
.modal-perks { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.modal-perks li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,.8); }
.modal-perks i { color: var(--gold); font-size: 15px; }
.modal-contact-links { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }
.modal-contact-links a { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,.6); text-decoration: none; transition: var(--transition); }
.modal-contact-links a:hover { color: var(--white); }
.modal-contact-links i { color: var(--gold); font-size: 14px; }

.pb-modal-right { padding: 32px; background: var(--white); }
.modal-form-title { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.modal-form-sub { font-size: 13px; color: var(--grey-400); margin-bottom: 24px; }

.msg-submit-btn { padding: 12px; font-size: 15px; font-weight: 600; }
.msg-privacy { font-size: 12px; color: var(--grey-400); text-align: center; margin: 0; }
.msg-privacy i { color: var(--green); }

/* Success view */
.msg-success-view { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 20px 10px; }
.msg-success-anim { width: 80px; height: 80px; border-radius: 50%; background: #f0fdf4; border: 2px solid #86efac; display: grid; place-items: center; font-size: 40px; color: var(--green); margin-bottom: 20px; animation: pop-in .4s ease; }
@keyframes pop-in { 0%{transform:scale(.5);opacity:0} 80%{transform:scale(1.1)} 100%{transform:scale(1);opacity:1} }
.msg-success-title { font-family: var(--font-display); font-size: 26px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.msg-success-body { font-size: 14px; color: var(--grey-600); line-height: 1.65; margin-bottom: 16px; }
.msg-summary { background: var(--off-white); border-radius: var(--radius); padding: 16px; text-align: left; font-size: 13px; color: var(--grey-600); width: 100%; line-height: 1.8; }

/* ══════════════════════════════════════════════════════
   LOGIN MODAL
══════════════════════════════════════════════════════ */
.login-dialog { max-width: 440px; }
.login-body { padding: 28px 28px 32px; }
.login-title { font-family: var(--font-display); font-size: 24px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.login-sub { font-size: 13px; color: var(--grey-400); margin-bottom: 24px; }
.pwd-wrap { position: relative; }
.pwd-toggle-btn { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); background: transparent; border: none; color: var(--grey-400); font-size: 15px; cursor: pointer; padding: 0; transition: var(--transition); }
.pwd-toggle-btn:hover { color: var(--navy); }
.login-check-label { font-size: 13px; color: var(--grey-600); }
.forgot-link { font-size: 13px; color: var(--gold); text-decoration: none; font-weight: 500; }
.forgot-link:hover { color: var(--gold-light); }
.login-register-text { text-align: center; font-size: 13px; color: var(--grey-400); margin: 0; }
.login-register-link { color: var(--gold); font-weight: 600; text-decoration: none; }
.login-divider { position: relative; text-align: center; margin: 20px 0 0; }
.login-divider::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--grey-200); }
.login-divider span { position: relative; background: var(--white); padding: 0 12px; font-size: 12px; color: var(--grey-400); }
.social-login-btn { padding: 10px; border: 1.5px solid var(--grey-200); border-radius: var(--radius-sm); background: transparent; font-family: var(--font-body); font-size: 13px; font-weight: 500; color: var(--grey-800); cursor: pointer; transition: var(--transition); }
.social-login-btn:hover { border-color: var(--navy); background: var(--grey-100); }

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.pb-footer { background: var(--navy); color: rgba(255,255,255,.6); }
.footer-desc { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.50); max-width: 300px; }
.footer-heading { font-family: var(--font-body); font-size: 12px; font-weight: 700; letter-spacing: .10em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.50); transition: var(--transition); }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-contact { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: rgba(255,255,255,.50); line-height: 1.5; }
.footer-contact i { color: var(--gold); font-size: 14px; margin-top: 2px; flex-shrink: 0; }
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-icon { width: 36px; height: 36px; border-radius: 9px; border: 1px solid rgba(255,255,255,.12); display: grid; place-items: center; color: rgba(255,255,255,.50); font-size: 14px; transition: var(--transition); }
.social-icon:hover { background: var(--blue); border-color: var(--blue); color: var(--white); }
.app-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.app-badge { display: flex; align-items: center; gap: 8px; padding: 8px 16px; border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-sm); font-size: 13px; font-weight: 500; color: rgba(255,255,255,.7); transition: var(--transition); }
.app-badge:hover { background: rgba(255,255,255,.06); color: var(--white); border-color: rgba(255,255,255,.30); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.08); font-size: 13px; color: rgba(255,255,255,.35); }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,.35); transition: var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* ── Scroll Reveal ── */
.reveal { opacity: 100; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── Back to Top ── */
#backToTop { position: fixed; bottom: 28px; right: 28px; width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: var(--white); border: none; font-size: 16px; display: grid; place-items: center; cursor: pointer; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transition: var(--transition); z-index: 999; }
#backToTop.visible { opacity: 1; pointer-events: all; }
#backToTop:hover { background: var(--blue); transform: translateY(-2px); }

/* ── Responsive ── */
@media(max-width:991px) {
  .pb-hero { min-height: auto; padding: 60px 0 50px; }
  .hero-title { font-size: clamp(36px, 9vw, 58px); }
  .hstat-divider { display: none; }
  .hstat { padding: 8px 14px; }
  .about-img-float { position: static; width: 100%; margin-top: 12px; }
  .about-img-float img { height: 140px; }
  .about-badge-float { top: 16px; left: 16px; }
}
@media(max-width:767px) {
  .pb-section { padding: 60px 0; }
  .col-lg-2dot4 { flex: 0 0 50%; max-width: 50%; }
  .loc-card { height: 180px; }
  .pb-cta { padding: 60px 0; }
  .footer-bottom { justify-content: center; text-align: center; }
  .pb-modal-right { padding: 24px 20px; }
  .contact-form-wrap { padding: 24px 20px; }
}
@media(max-width:480px) {
  .col-lg-2dot4 { flex: 0 0 100%; max-width: 100%; }
  .hero-search-card .row { flex-direction: column; }
  .pb-modal-right { padding: 20px 16px; }
}

.top-name{
  color: #0d1b2a !important;
}