/* ============================================================
   Capital Haus Service — style.css
   Color Palette: Black | Yellow #FFD600 | White | Accent Blue
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --black:   #0a0a0a;
  --yellow:  #FFD600;
  --yellow2: #FFC400;
  --white:   #ffffff;
  --light:   #f5f5f0;
  --grey:    #888888;
  --grey2:   #e8e8e4;
  --blue:    #1A3C6E;
  --blue2:   #2456A4;
  --red:     #e63946;
  --radius:  6px;
  --shadow:  0 4px 24px rgba(0,0,0,.12);
  --trans:   all .25s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.65;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4 { font-family: 'Bebas Neue', cursive; letter-spacing: .04em; line-height: 1.1; }

.display-hero { font-size: clamp(3rem, 7vw, 6rem); }
.section-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; }
.section-sub   { font-size: 1rem; color: var(--grey); max-width: 560px; margin: 0 auto 50px; }
.tag-label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--black);
  padding: 4px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
}

/* ---- BUTTONS ---- */
.btn-yellow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow); color: var(--black);
  font-weight: 700; font-size: .95rem;
  padding: 14px 30px; border-radius: var(--radius);
  border: 2px solid var(--yellow);
  transition: var(--trans);
  cursor: pointer;
}
.btn-yellow:hover { background: var(--yellow2); border-color: var(--yellow2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,214,0,.4); }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  font-weight: 700; font-size: .95rem;
  padding: 14px 30px; border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,.6);
  transition: var(--trans);
  cursor: pointer;
}
.btn-outline-white:hover { background: var(--white); color: var(--black); border-color: var(--white); }

.btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--black); color: var(--white);
  font-weight: 700; font-size: .95rem;
  padding: 14px 30px; border-radius: var(--radius);
  border: 2px solid var(--black);
  transition: var(--trans);
  cursor: pointer;
}
.btn-dark:hover { background: #222; box-shadow: var(--shadow); transform: translateY(-2px); }

.btn-green {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: var(--white);
  font-weight: 700; font-size: .95rem;
  padding: 14px 30px; border-radius: var(--radius);
  border: none; transition: var(--trans); cursor: pointer;
}
.btn-green:hover { background: #1ebe5a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.35); }

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNav {
  position: sticky; top: 0; z-index: 1000;
  background: var(--black);
  padding: 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
  transition: var(--trans);
}
#mainNav.scrolled { background: rgba(10,10,10,.97); backdrop-filter: blur(8px); }

.navbar-brand {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.65rem;
  color: var(--white) !important;
  letter-spacing: .06em;
}
.navbar-brand span { color: var(--yellow); }

.nav-link {
  color: rgba(255,255,255,.85) !important;
  font-weight: 500;
  font-size: .9rem;
  letter-spacing: .03em;
  padding: 8px 14px !important;
  border-radius: 4px;
  transition: var(--trans);
}
.nav-link:hover, .nav-link.active { color: var(--yellow) !important; }

.lang-switcher {
  display: flex; align-items: center; gap: 2px;
  font-size: .8rem; font-weight: 700;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 4px; overflow: hidden;
}
.lang-btn {
  padding: 5px 10px; cursor: pointer;
  background: transparent; color: rgba(255,255,255,.6);
  border: none; font-weight: 700; font-size: .8rem;
  transition: var(--trans);
}
.lang-btn.active, .lang-btn:hover { background: var(--yellow); color: var(--black); }

.nav-call-btn {
  background: var(--yellow); color: var(--black) !important;
  font-weight: 700 !important; padding: 8px 18px !important;
  border-radius: 4px; font-size: .85rem !important;
}
.nav-call-btn:hover { background: var(--yellow2) !important; color: var(--black) !important; }

.nav-wa-btn {
  background: #25D366; color: var(--white) !important;
  font-weight: 700 !important; padding: 8px 18px !important;
  border-radius: 4px; font-size: .85rem !important;
}
.nav-wa-btn:hover { background: #1ebe5a !important; color: var(--white) !important; }

.navbar-toggler { border-color: rgba(255,214,0,.5) !important; }
.navbar-toggler-icon { filter: invert(1); }

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  position: relative; min-height: 92vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=80') center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(10,10,10,.92) 55%, rgba(26,60,110,.75) 100%);
}
.hero-content { position: relative; z-index: 2; }
.hero-dots {
  display: flex; gap: 8px; margin-bottom: 24px;
}
.hero-dots span {
  width: 36px; height: 4px; border-radius: 2px;
  background: var(--yellow);
}
.hero-dots span:nth-child(2) { width: 18px; opacity: .5; }
.hero-dots span:nth-child(3) { width: 10px; opacity: .3; }

.hero-pills {
  display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 36px;
}
.hero-pill {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  color: var(--white); padding: 8px 18px; border-radius: 30px;
  font-size: .85rem; font-weight: 500; backdrop-filter: blur(4px);
}
.hero-pill i { color: var(--yellow); font-size: .9rem; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.hero-stats {
  display: flex; gap: 40px; margin-top: 56px;
  padding-top: 36px; border-top: 1px solid rgba(255,255,255,.12);
}
.stat-item { }
.stat-num {
  font-family: 'Bebas Neue', cursive;
  font-size: 2.4rem; color: var(--yellow); line-height: 1;
}
.stat-label { font-size: .82rem; color: rgba(255,255,255,.6); margin-top: 2px; }

/* Floating badge */
.hero-badge {
  position: absolute; right: 6%; top: 50%;
  transform: translateY(-50%);
  background: var(--yellow);
  width: 140px; height: 140px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; z-index: 5;
  animation: badgePulse 3s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(255,214,0,.4);
}
.hero-badge-num  { font-family: 'Bebas Neue', cursive; font-size: 2.4rem; color: var(--black); line-height: 1; }
.hero-badge-text { font-size: .65rem; font-weight: 700; color: var(--black); line-height: 1.3; text-transform: uppercase; }

@keyframes badgePulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,214,0,.5); transform: translateY(-50%) scale(1); }
  50%      { box-shadow: 0 0 0 18px rgba(255,214,0,0); transform: translateY(-50%) scale(1.04); }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--yellow);
  padding: 18px 0;
  overflow: hidden;
}
.trust-bar-inner {
  display: flex; gap: 48px; align-items: center;
  white-space: nowrap;
  animation: ticker 20s linear infinite;
}
.trust-item {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: .9rem; color: var(--black);
  flex-shrink: 0;
}
.trust-item i { font-size: 1rem; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { background: var(--light); }

.service-card {
  background: var(--white);
  border-radius: 10px;
  padding: 36px 28px;
  height: 100%;
  transition: var(--trans);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: var(--yellow);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.service-card:hover { border-color: var(--yellow); transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,.1); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon-wrap {
  width: 64px; height: 64px; border-radius: 12px;
  background: var(--black); color: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 22px;
  transition: var(--trans);
}
.service-card:hover .service-icon-wrap { background: var(--yellow); color: var(--black); }

.service-card h4 { font-size: 1.3rem; margin-bottom: 10px; }
.service-card p  { font-size: .9rem; color: var(--grey); margin-bottom: 18px; }
.service-price {
  font-weight: 700; font-size: .85rem; color: var(--blue2);
  background: #EEF4FF; padding: 6px 14px; border-radius: 30px;
  display: inline-block;
}
.service-link {
  margin-top: 18px; display: flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: .88rem; color: var(--black);
  transition: var(--trans);
}
.service-link:hover { color: var(--blue2); gap: 10px; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { background: var(--black); }
.why-card {
  text-align: center; padding: 36px 20px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  transition: var(--trans);
  height: 100%;
}
.why-card:hover { border-color: var(--yellow); background: rgba(255,214,0,.04); transform: translateY(-4px); }
.why-icon {
  width: 70px; height: 70px; margin: 0 auto 22px;
  background: rgba(255,214,0,.12); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--yellow);
}
.why-card h4 { color: var(--white); font-size: 1.2rem; margin-bottom: 10px; }
.why-card p  { font-size: .88rem; color: rgba(255,255,255,.5); }

/* ============================================================
   REVIEWS / TESTIMONIALS
   ============================================================ */
.reviews-section { background: var(--white); }
.review-card {
  background: var(--light); border-radius: 10px; padding: 30px 26px;
  height: 100%;
  border-left: 4px solid var(--yellow);
  transition: var(--trans);
}
.review-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.stars { color: var(--yellow); font-size: .95rem; margin-bottom: 14px; }
.review-text { font-size: .92rem; color: #444; margin-bottom: 18px; font-style: italic; }
.review-name { font-weight: 700; font-size: .88rem; color: var(--black); }
.review-location { font-size: .8rem; color: var(--grey); }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--black); color: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', cursive; font-size: 1.1rem;
  flex-shrink: 0;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
  background: var(--yellow);
  padding: 80px 0;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: 'CHS';
  position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
  font-family: 'Bebas Neue', cursive; font-size: 20rem; color: rgba(0,0,0,.06);
  line-height: 1; pointer-events: none;
}
.cta-section h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
.cta-section p  { font-size: 1.05rem; opacity: .7; margin: 14px 0 30px; }

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-grid { column-count: 3; column-gap: 16px; }
.gallery-item {
  break-inside: avoid; margin-bottom: 16px;
  position: relative; border-radius: 8px; overflow: hidden;
  cursor: pointer;
}
.gallery-item img { width: 100%; display: block; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--trans);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 2rem; color: var(--yellow); }
.gallery-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--yellow); color: var(--black);
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 4px;
}

/* Lightbox */
#lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.92); align-items: center; justify-content: center;
}
#lightbox.open { display: flex; }
#lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 6px; object-fit: contain; }
#lightbox-close {
  position: absolute; top: 20px; right: 26px;
  color: var(--white); font-size: 2rem; cursor: pointer; background: none; border: none;
  transition: var(--trans);
}
#lightbox-close:hover { color: var(--yellow); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-img-wrap {
  position: relative;
}
.about-img-wrap img { border-radius: 10px; }
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--yellow); border-radius: 10px;
  padding: 22px 28px; text-align: center; box-shadow: var(--shadow);
}
.about-badge-num  { font-family: 'Bebas Neue', cursive; font-size: 3rem; color: var(--black); line-height: 1; }
.about-badge-text { font-size: .75rem; font-weight: 700; color: var(--black); text-transform: uppercase; }

.value-item { display: flex; gap: 16px; margin-bottom: 24px; }
.value-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--yellow); color: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.value-item h5 { font-family: 'DM Sans', sans-serif; font-weight: 700; margin-bottom: 4px; }
.value-item p  { font-size: .88rem; color: var(--grey); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info-card {
  background: var(--black); border-radius: 10px; padding: 40px;
  height: 100%;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 28px; font-size: 1.8rem; }
.contact-detail {
  display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px;
}
.contact-icon {
  width: 44px; height: 44px; background: rgba(255,214,0,.12);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: var(--yellow); font-size: 1rem; flex-shrink: 0;
}
.contact-detail h6 { color: rgba(255,255,255,.5); font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.contact-detail p  { color: var(--white); font-size: .95rem; }
.contact-detail a  { color: var(--yellow); }

.contact-form-card {
  background: var(--light); border-radius: 10px; padding: 40px;
  height: 100%;
}
.contact-form-card h3 { margin-bottom: 28px; font-size: 1.8rem; }
.form-control, .form-select {
  border: 2px solid var(--grey2); border-radius: var(--radius);
  padding: 12px 16px; font-size: .92rem;
  transition: var(--trans); background: var(--white);
}
.form-control:focus, .form-select:focus {
  border-color: var(--yellow); box-shadow: 0 0 0 4px rgba(255,214,0,.15);
}
.form-label { font-weight: 600; font-size: .85rem; margin-bottom: 6px; color: var(--black); }

.map-wrap { border-radius: 10px; overflow: hidden; }
.map-wrap iframe { width: 100%; height: 360px; border: 0; display: block; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--black);
  padding: 80px 0 60px;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; right: 0; top: 0; bottom: 0; width: 35%;
  background: linear-gradient(to right, transparent, rgba(255,214,0,.06));
}
.page-hero h1 { color: var(--white); font-size: clamp(2.5rem, 5vw, 4rem); }
.page-hero p  { color: rgba(255,255,255,.55); margin-top: 12px; }
.breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,.3); }
.breadcrumb-item { color: rgba(255,255,255,.5); font-size: .85rem; }
.breadcrumb-item.active { color: var(--yellow); }
.breadcrumb-item a { color: rgba(255,255,255,.5); }
.breadcrumb-item a:hover { color: var(--yellow); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #050505; color: rgba(255,255,255,.6);
  padding: 70px 0 0;
}
.footer-brand {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.8rem; color: var(--white); letter-spacing: .06em;
}
.footer-brand span { color: var(--yellow); }
.footer-tagline { font-size: .85rem; color: rgba(255,255,255,.4); margin-top: 8px; }
.footer-desc { font-size: .88rem; color: rgba(255,255,255,.5); margin-top: 16px; max-width: 260px; line-height: 1.7; }

.footer-heading {
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .15em;
  color: var(--yellow); margin-bottom: 18px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,.5); font-size: .88rem;
  transition: var(--trans); display: flex; align-items: center; gap: 8px;
}
.footer-links a:hover { color: var(--yellow); padding-left: 4px; }

.footer-social { display: flex; gap: 10px; margin-top: 10px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(255,255,255,.07); color: rgba(255,255,255,.6);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; transition: var(--trans);
}
.social-btn:hover { background: var(--yellow); color: var(--black); transform: translateY(-3px); }

.footer-contact-item {
  display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px;
}
.footer-contact-item i { color: var(--yellow); margin-top: 3px; font-size: .9rem; }
.footer-contact-item span { font-size: .87rem; color: rgba(255,255,255,.5); }
.footer-contact-item a { color: rgba(255,255,255,.5); transition: var(--trans); }
.footer-contact-item a:hover { color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 0; margin-top: 50px;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.35); }
.footer-bottom a { color: rgba(255,255,255,.35); transition: var(--trans); }
.footer-bottom a:hover { color: var(--yellow); }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.float-btns {
  position: fixed; bottom: 30px; right: 24px;
  display: flex; flex-direction: column; gap: 12px; z-index: 999;
}
.float-btn {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; cursor: pointer; border: none;
  transition: var(--trans);
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
}
.float-wa  { background: #25D366; color: var(--white); }
.float-tel { background: var(--yellow); color: var(--black); }
.float-btn:hover { transform: scale(1.12); }

.float-tooltip {
  position: absolute; right: 66px; top: 50%; transform: translateY(-50%);
  background: var(--black); color: var(--white);
  font-size: .78rem; font-weight: 600; white-space: nowrap;
  padding: 5px 12px; border-radius: 4px;
  opacity: 0; pointer-events: none; transition: var(--trans);
}
.float-tooltip::after {
  content: ''; position: absolute; left: 100%; top: 50%; transform: translateY(-50%);
  border: 5px solid transparent; border-left-color: var(--black);
}
.float-btn:hover .float-tooltip { opacity: 1; }

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
#scrollTop {
  position: fixed; bottom: 30px; left: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--black); color: var(--white);
  border: 2px solid var(--yellow);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; cursor: pointer; z-index: 999;
  opacity: 0; pointer-events: none;
  transition: var(--trans);
  box-shadow: var(--shadow);
}
#scrollTop.show { opacity: 1; pointer-events: auto; }
#scrollTop:hover { background: var(--yellow); color: var(--black); transform: translateY(-3px); }

/* ============================================================
   MISCELLANEOUS
   ============================================================ */
.divider-yellow {
  width: 50px; height: 4px; background: var(--yellow); border-radius: 2px; margin-bottom: 18px;
}
.divider-yellow.center { margin: 0 auto 18px; }

.bg-light-alt { background: var(--light); }
.text-yellow   { color: var(--yellow) !important; }
.bg-black      { background: var(--black); }

/* Pill tabs (gallery filter) */
.filter-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 36px; }
.filter-pill {
  padding: 8px 22px; border-radius: 30px;
  border: 2px solid var(--grey2); background: transparent;
  font-weight: 600; font-size: .85rem; cursor: pointer; transition: var(--trans);
}
.filter-pill.active, .filter-pill:hover {
  border-color: var(--yellow); background: var(--yellow); color: var(--black);
}

/* Team cards */
.team-card {
  text-align: center; background: var(--light);
  border-radius: 10px; overflow: hidden; transition: var(--trans);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.team-card img { width: 100%; height: 240px; object-fit: cover; }
.team-info { padding: 22px; }
.team-info h5 { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 1rem; }
.team-info p  { font-size: .83rem; color: var(--grey); }

/* Process steps */
.process-step {
  text-align: center; padding: 30px 20px; position: relative;
}
.step-num {
  font-family: 'Bebas Neue', cursive;
  font-size: 4rem; color: var(--grey2); line-height: 1; margin-bottom: -10px;
}
.step-icon {
  width: 60px; height: 60px; margin: 0 auto 16px;
  background: var(--yellow); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--black);
}
.process-step h5 { font-family: 'DM Sans', sans-serif; font-weight: 700; margin-bottom: 8px; }
.process-step p  { font-size: .88rem; color: var(--grey); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .hero-badge { display: none; }
  .gallery-grid { column-count: 2; }
  .about-img-wrap { margin-bottom: 60px; }
  .about-badge { right: 10px; }
}
@media (max-width: 767px) {
  .section-pad { padding: 60px 0; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .gallery-grid { column-count: 1; }
  .contact-info-card, .contact-form-card { padding: 28px; }
}
