/* ============================================================
   METRO GLOBAL PARTNERS — DESIGN TOKENS
   Palette extracted directly from Logo1.png (pixel-sampled):
     Navy  #003656  — wordmark "METRO GLOBAL"
     Teal  #00AEC3  — logo ring
     Red   #E2312E  — logo ring
     Gray  #6D6F70  — subtitle "Hospitality Services"
   ============================================================ */

:root {
  /* ---------- Brand colors ---------- */
  --color-navy:        #003656;
  --color-navy-600:     #004a72;
  --color-navy-700:     #00263e;   /* footer / deepest band */
  --color-navy-800:     #001b2c;

  --color-teal:         #00aec3;   /* primary CTA / links / accents */
  --color-teal-600:     #0197aa;   /* hover */
  --color-teal-100:     #e3f6f9;   /* soft tint backgrounds */

  --color-red:           #e2312e;  /* sparing use: highlights, badges */
  --color-red-600:       #c62521;

  --color-gray:          #6d6f70;  /* muted / secondary text */

  /* ---------- Neutrals ---------- */
  --color-ink:            #182226; /* body copy */
  --color-white:           #ffffff;
  --color-bg-soft:         #f4f7f8; /* alternate section background */
  --color-border:          #e2e6e8;

  /* ---------- Functional (kept standard for recognition) ---------- */
  --color-whatsapp:        #25d366;
  --color-whatsapp-dark:   #1ebe5d;

  /* ---------- Typography ---------- */
  --font-heading: 'Lato', 'Segoe UI', sans-serif;
  --font-body:    'Lato', 'Segoe UI', sans-serif;

  --fs-h1: clamp(2.1rem, 1.4rem + 2.8vw, 3.4rem);
  --fs-h2: clamp(1.6rem, 1.2rem + 1.6vw, 2.4rem);
  --fs-h3: 1.25rem;
  --fs-body: 1.03rem;
  --fs-small: 0.9rem;

  --lh-tight: 1.15;
  --lh-normal: 1.65;

  /* ---------- Layout ---------- */
  --container-max: 1200px;
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-pill: 999px;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.75rem;
  --space-lg: 3rem;
  --space-xl: 5.5rem;

  --shadow-sm: 0 2px 10px rgba(0, 40, 60, 0.06);
  --shadow-md: 0 12px 32px rgba(0, 40, 60, 0.12);

  --transition: 0.2s ease;

  /* Map onto Bootstrap 5 variables so its components inherit the brand automatically */
  --bs-primary: var(--color-navy);
  --bs-primary-rgb: 0, 54, 86;
  --bs-secondary: var(--color-teal);
  --bs-body-font-family: var(--font-body);
  --bs-body-color: var(--color-ink);
  --bs-link-color: var(--color-teal);
  --bs-link-hover-color: var(--color-teal-600);
}

/* ============================================================
   BASE
   ============================================================ */
* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--color-ink);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  background: var(--color-white);
  overflow-x: hidden;
  max-width: 100vw;
}

h1, h2, h3, h4,
.font-heading {
  font-family: var(--font-heading);
  color: var(--color-navy);
  line-height: var(--lh-tight);
  font-weight: 600;
}

h1 { font-size: var(--fs-h1); font-weight: 700; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

a { text-decoration: none; color: var(--color-teal); transition: color var(--transition); }
a:hover { color: var(--color-teal-600); }

img { max-width: 100%; display: block; }

.container-xl {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-sm);
}

/* ============================================================
   UTILITIES
   ============================================================ */
.section          { padding-block: var(--space-xl); }
.section-soft     { background: var(--color-bg-soft); }
.section-navy     { background: var(--color-navy); color: var(--color-white); }
.section-navy h2, .section-navy h3 { color: var(--color-white); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-small);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: var(--space-xs);
}

.section-head { max-width: 720px; margin-bottom: var(--space-lg); }
.section-head.text-center { margin-inline: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-small);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.85rem 1.9rem;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
}

.btn-brand-primary {
  background: var(--color-navy);
  color: var(--color-white);
}
.btn-brand-primary:hover {
  background: var(--color-teal-600);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-brand-outline {
  background: transparent;
  border-color: var(--color-white);
  color: var(--color-white);
}
.btn-brand-outline:hover {
  background: var(--color-white);
  color: var(--color-navy);
}

.btn-brand-outline-navy {
  background: transparent;
  border-color: var(--color-navy);
  color: var(--color-navy);
}
.btn-brand-outline-navy:hover {
  background: var(--color-navy);
  color: var(--color-white);
}

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: var(--color-navy-700);
  color: var(--color-white);
  font-size: var(--fs-small);
}
.topbar .container-xl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-block: 0.5rem;
}
.topbar-contacts {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  min-width: 0;
}
.topbar-contacts a,
.topbar-contacts > span {
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  max-width: 100%;
  min-width: 0;
  line-height: 1.45;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.topbar-contacts a:hover { color: var(--color-teal); }
.topbar-contacts i { color: var(--color-teal); }
.chip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.site-header .navbar { padding-block: 0.75rem; }
.site-header .navbar-brand img { height: 42px; }

.site-header .nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-navy) !important;
  padding: 0.5rem 1rem !important;
  position: relative;
}
.site-header .nav-link:hover,
.site-header .nav-link.active { color: var(--color-teal) !important; }

/* ============================================================
   WHY US / VALUE GRID
   ============================================================ */
.value-item { display: flex; gap: 1rem; }
.value-item__num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: #ffffff;
  background: var(--color-navy);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  animation: iconBreathe 3.2s ease-in-out infinite;
}
.value-item__num i { display: block; transition: transform .4s ease; }
.value-item:hover .value-item__num i { transform: rotate(-10deg) scale(1.15); }
.value-item:nth-child(even) .value-item__num,
.col-md-6:nth-child(2) .value-item__num,
.col-md-6:nth-child(4) .value-item__num { background: var(--color-teal); }
.row > .col-md-6:nth-child(2) .value-item__num,
.row > .col-md-6:nth-child(4) .value-item__num { animation-delay: .6s; }

@keyframes iconBreathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.07); }
}

/* ============================================================
   WHAT WE DO STRIP
   ============================================================ */
.expertise-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--color-border);
}
.expertise-item:last-child { border-bottom: none; }
.expertise-item i {
  color: var(--color-teal);
  font-size: 1.5rem;
  margin-top: 0.15rem;
}
.expertise-item p { margin: 0; font-weight: 500; color: var(--color-white); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  position: relative;
  z-index: 5;
  overflow: hidden;
  background: linear-gradient(115deg, var(--color-navy) 0%, var(--color-navy-600) 60%, var(--color-teal) 130%);
  color: var(--color-white);
  border-radius: 28px;
  padding: 3rem 3rem;
  box-shadow: var(--shadow-xl), 0 1px 0 rgba(255,255,255,.14) inset;
  margin-bottom: -110px; /* floats down over the footer below */
}
.cta-band h2 { color: var(--color-white); margin-bottom: .5rem; text-align: left; }
.cta-band__row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.cta-band__text { text-align: left; max-width: 560px; }
.cta-band__text p { opacity: .85; margin: 0; }
.cta-band .btn-brand-outline { flex-shrink: 0; }

/* decorative swirl line, top-left */
.cta-band .cta-swirl {
  position: absolute;
  top: -30px; left: -20px;
  width: 220px; height: 160px;
  opacity: .5;
  z-index: 0;
  pointer-events: none;
}

/* decorative striped circle, right */
.cta-band .cta-circle {
  position: absolute;
  right: -70px; top: 50%;
  transform: translateY(-50%);
  width: 220px; height: 220px;
  border-radius: 50%;
  overflow: hidden;
  opacity: .35;
  z-index: 0;
  pointer-events: none;
  background: repeating-linear-gradient(70deg, rgba(255,255,255,.9) 0 2px, transparent 2px 10px);
}

@media (max-width: 767.98px) {
  .cta-band__row { flex-direction: column; text-align: center; }
  .cta-band__text { text-align: center; margin-inline: auto; }
  .cta-band h2 { text-align: center; }
  .cta-band .cta-circle { width: 150px; height: 150px; right: -50px; }
  .cta-band { margin-bottom: -60px; padding: 2.25rem 1.75rem; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-navy-800);
  color: rgba(255,255,255,.75);
  padding-block: calc(var(--space-lg) + 110px) var(--space-md);
  font-size: 0.95rem;
}
@media (max-width: 767.98px) {
  .site-footer { padding-top: calc(var(--space-lg) + 60px); }
}
.site-footer h4 {
  color: var(--color-white);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}
.site-footer a { color: rgba(255,255,255,.75); }
.site-footer a:hover { color: var(--color-teal); }
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: var(--space-md);
  padding-top: var(--space-sm);
  font-size: var(--fs-small);
  color: rgba(255,255,255,.55);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-contact-item { display: flex; gap: 0.6rem; margin-bottom: 0.75rem; }
.footer-contact-item i { color: var(--color-teal); margin-top: 0.2rem; }

/* ============================================================
   FLOATING ACTION ICONS (call + WhatsApp)
   ============================================================ */
.floating-actions {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 1050;
}
.floating-actions a {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
}
.floating-actions a:hover { transform: scale(1.08); color: var(--color-white); }
.floating-call { background: var(--color-navy); }
.floating-whatsapp { background: var(--color-whatsapp); animation: pulseRing 2.6s ease-out infinite; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
  .topbar {
    font-size: 0.8rem;
  }
  .topbar .container-xl {
    justify-content: center;
    text-align: center;
    padding-block: 0.65rem;
  }
  .topbar-contacts {
    justify-content: center;
    gap: 0.55rem 0.9rem;
  }
}

@media (max-width: 767.98px) {
  html, body {
    overflow-x: hidden;
  }
  .topbar-address {
    display: none !important;
  }
  .topbar .container-xl {
    display: block;
    text-align: center;
  }
  .topbar-contacts {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 0.5rem 0.75rem;
  }
  .topbar-contacts a,
  .topbar-contacts > span {
    justify-content: center;
    text-align: center;
  }
  .topbar .social-icons {
    justify-content: center;
    margin-top: 0.35rem;
  }
  .section { padding-block: var(--space-lg); }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}

/* ============================================================
   MOTION SYSTEM
   Used deliberately, not decoratively:
   - hero: one entrance sequence on load (headline → copy → CTA)
   - scroll reveals: AOS handles fade/rise as sections enter view
   - floating actions: a slow pulse so they read as "live", not static UI
   - header: condenses on scroll so nav stays out of the way
   ============================================================ */

@keyframes pulseRing {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.45); }
  70%  { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* condensed header state, toggled by a small JS scroll listener */
.site-header.is-scrolled { box-shadow: var(--shadow-md); }
.site-header.is-scrolled .navbar { padding-block: 0.4rem; }
.site-header.is-scrolled .navbar-brand img { height: 34px; }

/* button shine sweep on hover — used only on the two primary CTAs */
.btn-brand-primary, .cta-band .btn-brand-outline {
  position: relative;
  overflow: hidden;
}
.btn-brand-primary::after, .cta-band .btn-brand-outline::after {
  content: "";
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg);
  transition: left .55s ease;
}
.btn-brand-primary:hover::after, .cta-band .btn-brand-outline:hover::after { left: 130%; }

@media (prefers-reduced-motion: reduce) {
  .floating-whatsapp { animation: none !important; }
}

/* ============================================================
   OUTSOURCE — PHOTO CARDS
   Real photography per service model, with a slow image zoom
   on hover and a description that reveals from beneath the fold.
   ============================================================ */
.model-card--photo {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .35s ease, transform .35s ease;
}
.model-card--photo:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.model-card--photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.model-card--photo:hover img { transform: scale(1.1); }

.model-card--photo .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,38,62,0) 25%, rgba(0,38,62,.72) 68%, rgba(0,38,62,.94) 100%);
  transition: background .35s ease;
}
.model-card--photo:hover .overlay {
  background: linear-gradient(180deg, rgba(0,38,62,0) 10%, rgba(0,38,62,.8) 55%, rgba(0,38,62,.96) 100%);
}

.model-card--photo .content {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.5rem;
  color: #fff;
}
.model-card--photo .content h3 { color: #fff; margin-bottom: 0.35rem; }
.model-card--photo .content .num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .1em;
  color: var(--color-teal);
  display: block;
  margin-bottom: .35rem;
}
.model-card--photo .content p {
  color: rgba(255,255,255,.9);
  font-size: .88rem;
  line-height: 1.5;
  margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .45s ease, opacity .35s ease .05s;
}
.model-card--photo:hover .content p,
.model-card--photo:focus-within .content p {
  max-height: 220px;
  opacity: 1;
}

@media (max-width: 767.98px) {
  /* touch devices can't hover — reveal descriptions by default */
  .model-card--photo { height: auto; min-height: 340px; }
  .model-card--photo .content p { max-height: 220px; opacity: 1; }
  .model-card--photo img { transform: none !important; }
}

/* ============================================================
   HERO — MODERN (gradient mesh + floating glass stat cards)
   ============================================================ */
.hero-modern {
  position: relative;
  overflow: hidden;
  background: var(--color-white);
  padding-block: 6.5rem 5.5rem;
}

/* soft blurred gradient blobs, slowly drifting */
.hero-modern .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .35;
  z-index: 0;
  pointer-events: none;
}
.hero-modern .blob--teal {
  width: 480px; height: 480px;
  background: var(--color-teal);
  top: -180px; right: -120px;
  animation: blobDrift 14s ease-in-out infinite;
}
.hero-modern .blob--navy {
  width: 380px; height: 380px;
  background: var(--color-navy);
  bottom: -160px; left: -140px;
  opacity: .18;
  animation: blobDrift 18s ease-in-out infinite reverse;
}
@keyframes blobDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, 25px) scale(1.08); }
}

.hero-modern .container-xl { position: relative; z-index: 1; }

/* badge pill */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--color-teal-100);
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .02em;
  padding: .5rem 1.1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.4rem;
}
.hero-pill i { color: var(--color-teal); }

/* gradient-highlighted headline word */
.text-gradient {
  background: linear-gradient(100deg, var(--color-navy) 20%, var(--color-teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-modern p.lead { font-size: 1.12rem; color: #000000; font-weight:350; max-width: 520px; }

/* trust row — avatar stack + line */
.trust-row { display: flex; align-items: center; gap: .9rem; margin-top: 2rem; }
.trust-row .avatars { display: flex; }
.trust-row .avatars span {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
  background: var(--color-navy);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: .7rem; font-weight: 700;
}
.trust-row .avatars span:first-child { margin-left: 0; }
.trust-row .avatars span:nth-child(2) { background: var(--color-teal); }
.trust-row .avatars span:nth-child(3) { background: var(--color-red); }
.trust-row small { color: var(--color-gray); font-size: .85rem; }

/* visual side */
.hero-modern__visual { position: relative; }
.hero-modern__visual .dot-grid {
  position: absolute;
  top: -24px; right: -24px;
  width: 120px; height: 120px;
  background-image: radial-gradient(var(--color-teal) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  opacity: .5;
  z-index: 0;
}
.hero-modern__visual .frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 4.6;
  z-index: 1;
}
.hero-modern__visual .frame img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.hero-modern__visual:hover .frame img { transform: scale(1.05); }

/* floating glass stat cards */
.floating-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: .75rem;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: .9rem 1.1rem;
  animation: floatCard 4.5s ease-in-out infinite;
}
.floating-card__icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--color-navy);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.floating-card__num { font-family: var(--font-heading); font-weight: 700; font-size: 1.25rem; color: var(--color-navy); line-height: 1; }
.floating-card__label { font-size: .74rem; color: var(--color-gray); }

.floating-card--years { top: 10%; left: -8%; animation-delay: 0s; }
.floating-card--hotels { bottom: 8%; right: -10%; animation-delay: .8s; }
.floating-card--hotels .floating-card__icon { background: var(--color-teal); }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: var(--color-gray);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.scroll-cue i { animation: scrollBounce 1.8s ease-in-out infinite; color: var(--color-teal); }
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity:.6; }
  50% { transform: translateY(6px); opacity:1; }
}

@media (max-width: 991.98px) {
  .hero-modern { padding-block: 4.5rem 3.5rem; text-align: center; }
  .hero-modern p.lead { margin-inline: auto; }
  .trust-row { justify-content: center; }
  .hero-modern__visual { margin-top: 3rem; max-width: 380px; margin-inline: auto; }
  .floating-card--years { left: -4%; }
  .floating-card--hotels { right: -4%; }
  .scroll-cue { display: none; }
}

@media (max-width: 575.98px) {
  .topbar,
  .site-header,
  .hero-modern,
  .collage,
  .section,
  .container-xl {
    overflow-x: clip;
  }
  .hero-modern .blob--teal {
    width: 300px; height: 300px;
    right: -120px; top: -100px;
  }
  .hero-modern .blob--navy {
    width: 260px; height: 260px;
    left: -120px; bottom: -80px;
  }
  .floating-card { padding: .6rem .8rem; gap: .5rem; }
  .floating-card__icon { width: 34px; height: 34px; font-size: .9rem; }
  .floating-card__num { font-size: 1.05rem; }
  .floating-card--years { left: 0; top: -6%; }
  .floating-card--hotels { right: 0; bottom: -6%; }
  .collage { overflow: hidden; }
  .collage .row { margin-left: 0; margin-right: 0; }
  .collage .col-6 { padding-left: .5rem; padding-right: .5rem; }
  .collage__badge {
    width: 110px; height: 110px;
    font-size: .75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-modern .blob, .floating-card, .scroll-cue i { animation: none !important; }
}

/* ============================================================
   PHOTO COLLAGE (Only Partner You'll Need)
   ============================================================ */
.collage { position: relative; }
.collage figure {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.collage figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s ease;
}
.collage figure:hover img { transform: scale(1.06); }

.collage__badge {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 150px; height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-navy), var(--color-teal));
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  animation: badgePulse 4s ease-in-out infinite;
}
.collage__badge .num { font-family: var(--font-heading); font-weight: 700; font-size: 1.8rem; line-height: 1; }
.collage__badge .label { font-size: .74rem; opacity: .92; margin-top: .2rem; padding-inline: .5rem; }

@keyframes badgePulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.05); }
}

/* ============================================================
   WHY US — ANIMATED ICON BADGES
   (rules merged into the main .value-item__num block above)
   ============================================================ */

@keyframes iconBreathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.07); }
}

@media (prefers-reduced-motion: reduce) {
  .collage__badge, .value-item__num { animation: none !important; }
}
/* ============================================================
   SOCIAL ICONS (topbar + footer)
   NOTE: hrefs are placeholders ("#") — swap in the client's real
   profile URLs before launch.
   ============================================================ */
.social-icons {
  display: flex;
  align-items: center;
  gap: .6rem;
}
.social-icons a {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.1);
  color: #fff;
  font-size: .85rem;
  transition: background var(--transition), transform var(--transition);
}
.social-icons a:hover { background: var(--color-teal); color: #fff; transform: translateY(-2px); }

.topbar .social-icons { flex-shrink: 0; }
.topbar .social-icons a { width: 26px; height: 26px; font-size: .75rem; }

.footer-bottom .social-icons a { background: rgba(255,255,255,.08); }