/* ============================================================
   MERIDIAN TRADE GROUP — Main Stylesheet
   Palette: Navy #0B1F3A | Slate #1E3A5F | Sky #2563EB | 
            Amber #F59E0B | Light #F0F4F8 | White #FFFFFF
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #0B1F3A;
  --slate:  #1E3A5F;
  --sky:    #2563EB;
  --sky-lt: #3B82F6;
  --amber:  #F59E0B;
  --amber-dk: #D97706;
  --light:  #F0F4F8;
  --mid:    #CBD5E1;
  --text:   #1E293B;
  --muted:  #64748B;
  --white:  #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(11,31,58,.08), 0 1px 2px rgba(11,31,58,.06);
  --shadow:    0 4px 16px rgba(11,31,58,.12);
  --shadow-lg: 0 12px 40px rgba(11,31,58,.18);

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--sky); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--sky-lt); }

/* ── Typography ──────────────────────────────────────────── */
.display-heading {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
}
h1, h2, h3, h4 { font-weight: 700; line-height: 1.25; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.section-eyebrow {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: .5rem;
}

/* ── Utility ─────────────────────────────────────────────── */
.text-navy  { color: var(--navy); }
.text-sky   { color: var(--sky); }
.text-amber { color: var(--amber); }
.text-muted { color: var(--muted); }
.text-white { color: var(--white); }

.bg-navy  { background: var(--navy); }
.bg-light { background: var(--light); }

.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }

.divider {
  width: 48px; height: 3px;
  background: var(--amber);
  border-radius: 2px;
  margin: 1rem 0 1.5rem;
}
.divider.center { margin-left: auto; margin-right: auto; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn-primary-custom {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--sky);
  color: var(--white);
  padding: .75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .9375rem;
  border: 2px solid var(--sky);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.btn-primary-custom:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,99,235,.35);
}

.btn-outline-custom {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent;
  color: var(--white);
  padding: .75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .9375rem;
  border: 2px solid rgba(255,255,255,.5);
  transition: all var(--transition);
  cursor: pointer;
}
.btn-outline-custom:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-amber {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--amber);
  color: var(--navy);
  padding: .75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .9375rem;
  border: 2px solid var(--amber);
  transition: all var(--transition);
  cursor: pointer;
}
.btn-amber:hover {
  background: var(--amber-dk);
  border-color: var(--amber-dk);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245,158,11,.35);
}

/* ── Navigation ──────────────────────────────────────────── */
.navbar-custom {
  background: var(--navy);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
  transition: box-shadow var(--transition);
}

.navbar-custom .navbar-brand {
  display: flex; align-items: center; gap: .75rem;
  padding: 1rem 0;
  text-decoration: none;
}
.brand-logo-mark {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--sky), var(--amber));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: white; font-weight: 800;
  flex-shrink: 0;
}
.brand-name {
  display: flex; flex-direction: column; line-height: 1.1;
}
.brand-name strong {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -.01em;
}
.brand-name span {
  color: var(--amber);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.navbar-custom .nav-link {
  color: rgba(255,255,255,.8) !important;
  font-weight: 500;
  font-size: .9rem;
  padding: 1.5rem .9rem !important;
  position: relative;
  transition: color var(--transition);
}
.navbar-custom .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: .9rem; right: .9rem;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: var(--white) !important;
}
.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-custom .nav-cta {
  margin-left: .5rem;
  background: var(--amber);
  color: var(--navy) !important;
  padding: .5rem 1.25rem !important;
  border-radius: var(--radius-sm);
  font-weight: 700;
}
.navbar-custom .nav-cta::after { display: none; }
.navbar-custom .nav-cta:hover {
  background: var(--amber-dk) !important;
  color: var(--navy) !important;
}

.navbar-toggler {
  border: 1.5px solid rgba(255,255,255,.3);
  padding: .35rem .6rem;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── Top Bar ─────────────────────────────────────────────── */
.top-bar {
  background: var(--slate);
  padding: .4rem 0;
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.top-bar a { color: rgba(255,255,255,.85); }
.top-bar a:hover { color: var(--amber); }

/* ── Hero Section ────────────────────────────────────────── */
.hero {
  min-height: 88vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--slate) 50%, #142e52 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(37,99,235,.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(245,158,11,.08) 0%, transparent 50%);
}

.hero-grid {
  position: absolute; inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

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

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(245,158,11,.15);
  border: 1px solid rgba(245,158,11,.3);
  color: var(--amber);
  padding: .4rem 1rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  margin-bottom: 1.5rem;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.8); }
}

.hero h1 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--amber);
}

.hero-lead {
  color: rgba(255,255,255,.72);
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 500px;
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex; gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat span {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
}

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

.hero-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.hero-img-frame::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(37,99,235,.1), transparent);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.1);
}

.hero-card-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: .75rem;
}
.hero-card-float.card-1 { bottom: -20px; left: -24px; }
.hero-card-float.card-2 { top: 20px; right: -20px; }
.hero-card-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.hero-card-text strong { display: block; font-size: .85rem; font-weight: 700; color: var(--navy); }
.hero-card-text span  { font-size: .72rem; color: var(--muted); }

/* ── Trusted Logos ───────────────────────────────────────── */
.trusted-bar {
  background: var(--white);
  padding: 2rem 0;
  border-bottom: 1px solid var(--mid);
}
.trusted-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  margin-right: 1.5rem;
}
.logo-strip {
  display: flex; align-items: center; gap: 2.5rem;
  overflow: hidden;
}
.logo-placeholder {
  height: 28px;
  background: var(--mid);
  border-radius: 4px;
  opacity: .4;
  flex-shrink: 0;
}

/* ── Stats Banner ────────────────────────────────────────── */
.stats-banner {
  background: linear-gradient(135deg, var(--sky) 0%, #1d4ed8 100%);
  padding: 60px 0;
}
.stat-item {
  text-align: center;
  padding: 1rem;
}
.stat-item strong {
  display: block;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  font-family: var(--font-display);
}
.stat-item p {
  color: rgba(255,255,255,.75);
  font-size: .875rem;
  margin: .4rem 0 0;
  font-weight: 500;
  letter-spacing: .03em;
}
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,.2);
  align-self: stretch;
  margin: .5rem 0;
}

/* ── Section Headers ─────────────────────────────────────── */
.section-header { margin-bottom: 3rem; }
.section-header h2 { margin-top: .5rem; }

/* ── Category Cards ──────────────────────────────────────── */
.cat-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  height: 100%;
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sky);
}
.cat-card-img {
  height: 190px;
  object-fit: cover;
  width: 100%;
}
.cat-card-body { padding: 1.25rem; }
.cat-card-body h4 { font-size: 1rem; font-weight: 700; margin-bottom: .3rem; color: var(--navy); }
.cat-card-body p  { font-size: .85rem; color: var(--muted); margin-bottom: .9rem; }
.cat-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--sky);
  display: flex; align-items: center; gap: .25rem;
}
.cat-link i { font-size: .75rem; transition: transform var(--transition); }
.cat-card:hover .cat-link i { transform: translateX(4px); }

/* ── Product Cards ───────────────────────────────────────── */
.product-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.product-card-img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}
.product-badge {
  display: inline-block;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .2rem .6rem;
  border-radius: 4px;
  margin-bottom: .6rem;
}
.badge-new  { background: rgba(37,99,235,.1); color: var(--sky); }
.badge-hot  { background: rgba(245,158,11,.1); color: var(--amber-dk); }
.badge-sale { background: rgba(239,68,68,.1);  color: #dc2626; }

.product-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex; flex-direction: column;
}
.product-card-body h5 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: .3rem; }
.product-card-body .sku { font-size: .72rem; color: var(--muted); margin-bottom: .5rem; }
.product-card-body p { font-size: .83rem; color: var(--muted); flex: 1; }
.product-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 1rem; padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}
.product-moq { font-size: .8rem; color: var(--muted); }
.product-moq strong { color: var(--navy); font-weight: 700; }

/* ── Features / Why Us ───────────────────────────────────── */
.feature-item {
  display: flex; gap: 1.25rem;
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  transition: box-shadow var(--transition), border-color var(--transition);
  height: 100%;
}
.feature-item:hover {
  box-shadow: var(--shadow);
  border-color: rgba(37,99,235,.25);
}
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(37,99,235,.06));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.feature-text h4 { font-size: 1rem; font-weight: 700; margin-bottom: .3rem; color: var(--navy); }
.feature-text p  { font-size: .875rem; color: var(--muted); margin: 0; }

/* ── Service Cards ───────────────────────────────────────── */
.service-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sky), var(--amber));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--slate));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  color: white;
}
.service-card h4 { font-size: 1.1rem; margin-bottom: .6rem; color: var(--navy); }
.service-card p  { font-size: .875rem; color: var(--muted); }
.service-card ul { list-style: none; margin-top: .75rem; }
.service-card ul li {
  font-size: .85rem; color: var(--muted);
  padding: .25rem 0;
  display: flex; align-items: center; gap: .5rem;
}
.service-card ul li::before {
  content: '✓';
  color: var(--sky);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Quote Banner ────────────────────────────────────────── */
.quote-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--slate) 100%);
  position: relative;
  overflow: hidden;
}
.quote-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(37,99,235,.2), transparent);
}
.quote-banner-inner { position: relative; z-index: 1; }

/* ── Testimonials ────────────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
}
.stars { color: var(--amber); font-size: .9rem; margin-bottom: .75rem; }
.testimonial-card blockquote {
  font-size: .925rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--navy));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: .9rem;
  flex-shrink: 0;
}
.author-info strong { display: block; font-size: .875rem; font-weight: 700; }
.author-info span   { font-size: .78rem; color: var(--muted); }

/* ── Page Hero (inner pages) ─────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--slate) 100%);
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(37,99,235,.15), transparent);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: .5rem; }
.page-hero p  { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 540px; }
.breadcrumb-custom {
  display: flex; align-items: center; gap: .5rem;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 1rem;
}
.breadcrumb-custom a { color: rgba(255,255,255,.65); }
.breadcrumb-custom a:hover { color: var(--amber); }
.breadcrumb-custom i { font-size: .65rem; }

/* ── Filter Bar ──────────────────────────────────────────── */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: .5rem;
  padding: 1.5rem 0;
}
.filter-btn {
  padding: .45rem 1.1rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 50px;
  font-size: .83rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--sky);
  border-color: var(--sky);
  color: var(--white);
}

/* ── Contact & Forms ─────────────────────────────────────── */
.contact-info-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex; gap: 1rem;
  align-items: flex-start;
  transition: box-shadow var(--transition);
}
.contact-info-card:hover { box-shadow: var(--shadow); }
.contact-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(37,99,235,.06));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-card h5 { font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: .2rem; }
.contact-info-card p  { font-size: .875rem; color: var(--muted); margin: 0; }
.contact-info-card a  { color: var(--sky); font-size: .875rem; }

.form-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.form-label-custom {
  font-size: .83rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .4rem;
  display: block;
}
.form-control-custom {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control-custom:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}
.form-control-custom::placeholder { color: #94a3b8; }
select.form-control-custom { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; cursor: pointer; }
textarea.form-control-custom { resize: vertical; min-height: 130px; }

/* ── About Us ────────────────────────────────────────────── */
.about-visual {
  position: relative;
}
.about-img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 460px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about-badge-float {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--amber);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-badge-float strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.about-badge-float span {
  font-size: .75rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.team-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  transition: all var(--transition);
}
.team-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.team-card-img { height: 200px; object-fit: cover; width: 100%; }
.team-card-body { padding: 1.25rem; }
.team-card-body h5 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: .15rem; }
.team-card-body span { font-size: .8rem; color: var(--muted); }

.value-item {
  text-align: center;
  padding: 2rem 1.25rem;
}
.value-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--navy));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1rem;
  color: white;
}
.value-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; color: var(--navy); }
.value-item p  { font-size: .875rem; color: var(--muted); }

/* ── Map Placeholder ─────────────────────────────────────── */
.map-placeholder {
  background: linear-gradient(135deg, #dbeafe, #eff6ff);
  border-radius: var(--radius-lg);
  height: 360px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  border: 1px solid #bfdbfe;
  text-align: center;
}
.map-placeholder i { font-size: 2.5rem; color: var(--sky); margin-bottom: .75rem; }
.map-placeholder p { color: var(--muted); font-size: .9rem; margin: 0; }
.map-placeholder a { color: var(--sky); font-size: .875rem; font-weight: 600; }

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  padding: 72px 0 0;
}
.footer-brand { margin-bottom: 1.25rem; }
.footer-brand p { color: rgba(255,255,255,.55); font-size: .875rem; max-width: 280px; line-height: 1.7; margin-top: .75rem; }

.footer-heading {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 1rem;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a {
  color: rgba(255,255,255,.6);
  font-size: .875rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--amber); }

.footer-contact { list-style: none; }
.footer-contact li {
  display: flex; align-items: flex-start; gap: .6rem;
  margin-bottom: .75rem;
  color: rgba(255,255,255,.6);
  font-size: .875rem;
}
.footer-contact li i { color: var(--amber); margin-top: .15rem; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,.6); }
.footer-contact a:hover { color: var(--amber); }

.social-links { display: flex; gap: .6rem; margin-top: 1rem; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--sky);
  border-color: var(--sky);
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 0;
  margin-top: 3rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .75rem;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.4); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: var(--amber); }

/* ── WhatsApp FAB ────────────────────────────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
  display: flex; align-items: center; gap: .6rem;
  background: #25D366;
  color: white;
  padding: .75rem 1.25rem;
  border-radius: 50px;
  font-size: .875rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  text-decoration: none;
  transition: all var(--transition);
}
.whatsapp-fab i { font-size: 1.25rem; }
.whatsapp-fab:hover {
  background: #1ea852;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,.45);
}
.whatsapp-fab .fab-text { display: inline; }

/* ── Scroll to Top ───────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 90px; right: 28px;
  z-index: 9998;
  width: 40px; height: 40px;
  background: var(--sky);
  color: white;
  border: none;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
  pointer-events: none;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.scroll-top:hover { background: #1d4ed8; }

/* ── Accordion (FAQ/Services) ────────────────────────────── */
.accordion-custom .accordion-item {
  border: 1px solid #e2e8f0;
  border-radius: var(--radius) !important;
  margin-bottom: .75rem;
  overflow: hidden;
}
.accordion-custom .accordion-button {
  font-weight: 600;
  font-size: .95rem;
  color: var(--navy);
  background: var(--white);
  box-shadow: none;
  padding: 1.1rem 1.25rem;
}
.accordion-custom .accordion-button:not(.collapsed) {
  color: var(--sky);
  background: #eff6ff;
}
.accordion-custom .accordion-button::after {
  filter: none;
}
.accordion-custom .accordion-body {
  font-size: .875rem;
  color: var(--muted);
  padding: 1rem 1.25rem;
}

/* ── Process Steps ───────────────────────────────────────── */
.process-step {
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
}
.process-step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--navy));
  color: white;
  font-weight: 800;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 1;
}
.process-step h5 { font-size: .95rem; font-weight: 700; margin-bottom: .4rem; color: var(--navy); }
.process-step p  { font-size: .83rem; color: var(--muted); }
.process-connector {
  position: absolute;
  top: 2.5rem; right: -30%;
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, var(--sky), transparent);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .hero { min-height: 70vh; }
  .hero-visual { display: none; }
  .hero-stats { gap: 1.5rem; }
  .about-badge-float { right: 0; bottom: 0; }
  .process-connector { display: none; }
  .stat-divider { display: none; }
}

@media (max-width: 767.98px) {
  .section-pad { padding: 64px 0; }
  .top-bar .d-flex { flex-direction: column; gap: .25rem; text-align: center; }
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .whatsapp-fab .fab-text { display: none; }
  .whatsapp-fab { padding: .85rem; border-radius: 50%; }
  .footer-bottom { text-align: center; justify-content: center; }
  .form-card { padding: 1.5rem; }
  .logo-strip { gap: 1.5rem; }
}

@media (max-width: 575.98px) {
  .hero-stats { gap: .75rem; }
  .hero-stat strong { font-size: 1.3rem; }
  .filter-bar { gap: .4rem; }
}

/* ── Animate on scroll ───────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Stripe badge ────────────────────────────────────────── */
.stripe-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  padding: .4rem .9rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--muted);
}
.stripe-badge img { height: 18px; }
