/* ===== CCE Corporate — Sunway-Inspired Corporate Design ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

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

:root {
  --navy: #0a1e3d;
  --navy-light: #132d54;
  --blue: #2563eb;
  --blue-light: #3b82f6;
  --blue-dark: #1d4ed8;
  --teal: #0e7490;
  --sky: #e8f0fe;
  --sky-pale: #f0f5ff;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gold: #b8922e;
  --gold-light: #d4a843;
  --font-body: 'Poppins', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --max-width: 1240px;
  --radius: 6px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.08);
  --transition: .2s ease;
}

/* smooth scroll handled via JS */
body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--navy); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }

/* ===== UTILITY BAR ===== */
.utility-bar {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  font-size: .75rem;
  padding: .45rem 0;
  letter-spacing: .3px;
}
.utility-bar-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: flex-end; gap: 1.5rem;
}
.utility-bar a {
  color: rgba(255,255,255,.7); text-decoration: none;
  display: flex; align-items: center; gap: .3rem;
  transition: color var(--transition);
}
.utility-bar a:hover { color: var(--white); }
.utility-bar svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ===== NAVIGATION ===== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.06); }
.nav-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.nav-logo { display: flex; align-items: center; gap: .5rem; text-decoration: none; }
.nav-logo svg { height: 42px; width: auto; }
.nav-links { display: flex; gap: .2rem; list-style: none; }
.nav-links a {
  padding: .5rem .9rem;
  font-size: .88rem; font-weight: 500; color: var(--gray-600);
  text-decoration: none; transition: all var(--transition);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -.5rem; left: .9rem; right: .9rem;
  height: 2px; background: var(--blue);
  transform: scaleX(0); transition: transform .25s ease;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--navy); font-weight: 600; }
.nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  padding: .6rem 1.5rem; border-radius: var(--radius);
  background: var(--blue); color: var(--white);
  font-size: .85rem; font-weight: 600; border: none;
  cursor: pointer; text-decoration: none;
  transition: all var(--transition);
}
.nav-cta:hover { background: var(--navy); color: var(--white); }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: .5rem; z-index: 1001; }
.mobile-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 5px 0; border-radius: 1px; transition: all .3s; }
.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu Overlay */
.mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 998; opacity: 0; visibility: hidden; transition: all .3s ease; }
.mobile-overlay.active { opacity: 1; visibility: visible; }

/* Mobile Menu Slide-in */
@media (max-width: 768px) {
  .nav-links {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0; right: -280px;
    width: 280px; height: 100vh; height: 100dvh;
    background: white;
    padding: 5rem 2rem 2rem;
    gap: .3rem;
    z-index: 999;
    box-shadow: -4px 0 24px rgba(0,0,0,.1);
    transition: right .35s cubic-bezier(.4,0,.2,1);
  }
  .nav-links.mobile-open { right: 0; }
  .nav-links a {
    padding: .85rem 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--gray-100);
  }
  .nav-links a::after { display: none; }
  .nav-links a.active { color: var(--blue); }
}

/* Back to Top */
.back-to-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy); color: white; border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(10,30,61,.3);
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: all .3s ease;
  z-index: 900;
}
.back-to-top svg { width: 20px; height: 20px; }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--blue); transform: translateY(-2px); }

/* Smooth Scroll */
/* smooth scroll handled via JS */

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 520px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-home {
  min-height: 100vh;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(10,30,61,.92) 0%, rgba(10,30,61,.65) 45%, rgba(14,116,144,.3) 100%);
  z-index: 1;
}
/* Floating particles */
.hero-particles {
  position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden;
}
.hero-particles span {
  position: absolute; width: 3px; height: 3px; border-radius: 50%;
  background: rgba(255,255,255,.25); animation: particleFloat linear infinite;
}
.hero-particles span:nth-child(1) { left: 10%; top: 80%; animation-duration: 12s; animation-delay: 0s; width: 4px; height: 4px; }
.hero-particles span:nth-child(2) { left: 30%; top: 90%; animation-duration: 15s; animation-delay: 2s; }
.hero-particles span:nth-child(3) { left: 55%; top: 85%; animation-duration: 10s; animation-delay: 4s; width: 5px; height: 5px; }
.hero-particles span:nth-child(4) { left: 75%; top: 95%; animation-duration: 14s; animation-delay: 1s; }
.hero-particles span:nth-child(5) { left: 90%; top: 88%; animation-duration: 11s; animation-delay: 3s; width: 2px; height: 2px; }
.hero-particles span:nth-child(6) { left: 45%; top: 92%; animation-duration: 16s; animation-delay: 5s; }
@keyframes particleFloat {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: .6; }
  90% { opacity: .6; }
  100% { transform: translateY(-100vh) translateX(30px); opacity: 0; }
}
.hero-content {
  position: relative; z-index: 3;
  max-width: var(--max-width); margin: 0 auto;
  padding: 5rem 2rem;
  color: var(--white);
}
.hero-content-center {
  text-align: center; display: flex; flex-direction: column; align-items: center;
  padding: 8rem 2rem 5rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .4rem 1rem; border-radius: 99px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.9);
  font-size: .78rem; font-weight: 500; letter-spacing: .5px;
  margin-bottom: 1.8rem; backdrop-filter: blur(8px);
}
.hero-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #34d399;
}
.hero-badge .dot-pulse {
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(52,211,153,.6); }
  50% { opacity: .7; box-shadow: 0 0 0 6px rgba(52,211,153,0); }
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700; line-height: 1.12;
  margin-bottom: 1.2rem; max-width: 750px;
  letter-spacing: -.02em;
}
.hero p {
  color: rgba(255,255,255,.75);
  font-size: 1.1rem; line-height: 1.8;
  margin-bottom: 2.2rem; max-width: 560px;
}
.hero-actions { display: flex; gap: .8rem; flex-wrap: wrap; justify-content: center; }
.btn-lg { padding: .85rem 2rem; font-size: .9rem; }
/* Hero mini stats */
.hero-mini-stats {
  display: flex; align-items: center; gap: 2rem;
  margin-top: 3.5rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-mini-stat strong {
  font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700;
  color: var(--white); display: block; line-height: 1;
}
.hero-mini-stat span {
  font-size: .7rem; color: rgba(255,255,255,.5);
  text-transform: uppercase; letter-spacing: 1.2px; margin-top: .25rem; display: block;
}
.hero-mini-divider {
  width: 1px; height: 36px; background: rgba(255,255,255,.15);
}
/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 3; animation: scrollBounce 2s ease-in-out infinite; opacity: .5;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
.hero-stats-bar {
  display: flex; gap: 3rem; margin-top: 3rem;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stat-num {
  font-family: var(--font-heading); font-size: 2.2rem;
  color: var(--white); font-weight: 700; line-height: 1;
}
.hero-stat-label {
  font-size: .72rem; color: rgba(255,255,255,.5);
  text-transform: uppercase; letter-spacing: 1.5px; margin-top: .2rem;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .8rem 1.8rem; border-radius: var(--radius);
  background: var(--blue); color: var(--white);
  font-size: .9rem; font-weight: 600; text-decoration: none;
  transition: all var(--transition); border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--blue-dark); color: var(--white); box-shadow: var(--shadow-md); }
.btn-white {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .8rem 1.8rem; border-radius: var(--radius);
  background: var(--white); color: var(--navy);
  font-size: .9rem; font-weight: 600; text-decoration: none;
  transition: all var(--transition); border: none; cursor: pointer;
}
.btn-white:hover { background: var(--gray-100); box-shadow: var(--shadow-md); }
.btn-outline {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .8rem 1.8rem; border-radius: var(--radius);
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--gray-300);
  font-size: .9rem; font-weight: 500; text-decoration: none;
  transition: all var(--transition); cursor: pointer;
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .8rem 1.8rem; border-radius: var(--radius);
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,.3);
  font-size: .9rem; font-weight: 500; text-decoration: none;
  transition: all var(--transition); cursor: pointer;
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.5); color: var(--white); }
.arrow-icon { width: 14px; height: 14px; }

/* ===== SECTIONS ===== */
.section { padding: 6rem 0; }
.section-alt { background: var(--gray-50); }
.section-label {
  font-size: .72rem; font-weight: 700;
  color: var(--blue); text-transform: uppercase;
  letter-spacing: 2.5px; margin-bottom: .6rem;
}
.section-title {
  font-family: var(--font-heading); font-size: 2.1rem;
  color: var(--navy); font-weight: 600; line-height: 1.2;
  margin-bottom: .8rem;
}
.section-title-lg {
  font-family: var(--font-heading); font-size: 2.5rem;
  color: var(--navy); font-weight: 600; line-height: 1.15;
  margin-bottom: .8rem;
}
.section-desc {
  color: var(--gray-500); max-width: 620px;
  margin-bottom: 3rem; font-size: 1rem; line-height: 1.8;
}
.section-header { margin-bottom: 3rem; }
.section-header-center { text-align: center; }
.section-header-center .section-desc { margin-left: auto; margin-right: auto; }

/* ===== PAGE HEADER ===== */
.page-header {
  background: var(--navy);
  padding: 4rem 0;
  position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy) 60%, var(--navy-light) 100%);
}
.page-header .container { position: relative; z-index: 1; }
.page-header .breadcrumb {
  font-size: .78rem; color: rgba(255,255,255,.4);
  margin-bottom: .8rem; display: flex; align-items: center; gap: .4rem;
}
.page-header .breadcrumb a { color: rgba(255,255,255,.6); }
.page-header .breadcrumb a:hover { color: var(--white); }
.page-header .breadcrumb svg { width: 12px; height: 12px; stroke: rgba(255,255,255,.4); }
.page-header h1 {
  font-family: var(--font-heading); font-size: 2.4rem;
  color: var(--white); font-weight: 600; line-height: 1.2;
}
.page-header p {
  color: rgba(255,255,255,.6); font-size: 1rem;
  margin-top: .5rem; max-width: 560px;
}

/* ===== CARDS ===== */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 2rem;
  transition: all .3s ease;
}
.card:hover { box-shadow: var(--shadow-md); border-color: var(--gray-300); transform: translateY(-2px); }
.card-icon {
  width: 48px; height: 48px; border-radius: 8px;
  background: var(--sky); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem; transition: all .3s;
}
.card:hover .card-icon { background: var(--blue); color: var(--white); }
.card h3 { font-size: 1.05rem; color: var(--navy); font-weight: 600; margin-bottom: .5rem; }
.card p { font-size: .9rem; color: var(--gray-500); line-height: 1.7; }
.card-link {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .85rem; font-weight: 600; color: var(--blue);
  margin-top: 1rem; transition: gap .2s;
}
.card-link:hover { gap: .5rem; }
.card-link svg { width: 14px; height: 14px; }

/* Service image cards */
.service-img {
  border-radius: 4px; overflow: hidden;
  margin-bottom: 1.2rem; aspect-ratio: 16/9;
}
.service-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.card:hover .service-img img { transform: scale(1.04); }

/* ===== IMAGE COMPONENTS ===== */
.img-rounded {
  border-radius: 8px; overflow: hidden;
  box-shadow: var(--shadow-md);
}
.img-rounded img { width: 100%; height: 100%; object-fit: cover; }
.content-with-img {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3.5rem; align-items: center;
}
.content-with-img .img-rounded { aspect-ratio: 4/3; }
.section-img-banner {
  border-radius: 8px; overflow: hidden;
  margin-bottom: 3rem; aspect-ratio: 21/7;
}
.section-img-banner img { width: 100%; height: 100%; object-fit: cover; }

/* ===== INFO TABLE ===== */
.info-table { width: 100%; border-collapse: collapse; }
.info-table tr { border-bottom: 1px solid var(--gray-100); }
.info-table td { padding: 1rem 0; font-size: .9rem; }
.info-table td:first-child {
  font-weight: 600; color: var(--gray-400);
  text-transform: uppercase; font-size: .72rem;
  letter-spacing: 1.5px; width: 180px;
  vertical-align: top; padding-top: 1.1rem;
  position: relative; padding-left: 1.5rem;
}
.info-table td:first-child::before {
  content: ''; position: absolute; left: 0; top: 1.2rem;
  width: 6px; height: 6px; border-radius: 2px;
  background: var(--sky); border: 1.5px solid var(--blue);
}
.info-table td:last-child { color: var(--navy); font-weight: 500; }

/* ===== TIMELINE ===== */
.timeline { position: relative; padding-left: 2.5rem; }
.timeline::before {
  content: ''; position: absolute; left: 7px; top: 4px; bottom: 4px;
  width: 2px; background: var(--gray-200);
}
.timeline-item { position: relative; margin-bottom: 2.4rem; }
.timeline-dot {
  position: absolute; left: -2.5rem; top: 4px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--blue);
}
.timeline-dot::after {
  content: ''; position: absolute; inset: 3px;
  border-radius: 50%; background: var(--blue);
}
.timeline-date {
  font-size: .75rem; font-weight: 700; color: var(--blue);
  letter-spacing: .5px; margin-bottom: .3rem;
}
.timeline-item h3 { font-size: 1rem; color: var(--navy); font-weight: 600; margin-bottom: .2rem; }
.timeline-item p { font-size: .88rem; color: var(--gray-500); line-height: 1.7; max-width: 600px; }

/* ===== COVERAGE GRID ===== */
.coverage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.coverage-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 1.5rem; text-align: center;
  transition: all .3s;
}
.coverage-card:hover { box-shadow: var(--shadow-sm); border-color: var(--gray-300); }
.coverage-num {
  font-family: var(--font-heading); font-size: 2rem;
  color: var(--navy); font-weight: 700; line-height: 1;
}
.coverage-state { font-size: .9rem; color: var(--gray-700); font-weight: 500; margin-top: .2rem; }
.coverage-label { font-size: .68rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: 1px; margin-top: .1rem; }
.coverage-bar {
  width: 100%; height: 3px; background: var(--gray-100);
  border-radius: 2px; margin-top: .8rem; overflow: hidden;
}
/* coverage-bar-fill styles moved to enhanced section below */

/* ===== PARTNERS ===== */
.partners-marquee {
  overflow: hidden; position: relative;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.partners-track {
  display: flex; gap: .8rem;
  animation: marquee-scroll 40s linear infinite;
  width: max-content;
}
.partners-track:hover { animation-play-state: paused; }
@keyframes marquee-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.partner-tag {
  padding: .55rem 1.3rem; border-radius: 99px;
  border: 1px solid var(--gray-200); background: var(--white);
  font-size: .85rem; color: var(--gray-600); font-weight: 500;
  white-space: nowrap; transition: all var(--transition);
}
.partner-tag:hover { border-color: var(--blue); color: var(--blue); }

/* ===== LEADER CARDS ===== */
.leader-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.leader-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 2rem; display: flex; gap: 1.5rem;
  transition: all .3s;
}
.leader-card:hover { box-shadow: var(--shadow-md); }
.leader-avatar {
  width: 68px; height: 68px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--sky), var(--sky-pale));
  color: var(--blue); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600;
  transition: all .3s;
}
.leader-card:hover .leader-avatar { background: linear-gradient(135deg, var(--blue), var(--navy)); color: var(--white); }
.leader-info h3 { font-size: 1rem; color: var(--navy); font-weight: 600; }
.leader-role {
  font-size: .72rem; color: var(--blue); text-transform: uppercase;
  letter-spacing: 1px; font-weight: 700; margin: .2rem 0 .6rem;
}
.leader-info p { font-size: .85rem; color: var(--gray-500); line-height: 1.7; }

/* ===== FEATURE BANNER ===== */
.feature-banner {
  background: var(--navy); color: var(--white);
  border-radius: 8px; padding: 3.5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  align-items: center; position: relative; overflow: hidden;
}
.feature-banner::before {
  content: ''; position: absolute; right: -60px; top: -60px;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(37,99,235,.12), transparent 70%);
  border-radius: 50%;
}
.feature-tag {
  display: inline-block; padding: .25rem .7rem;
  border-radius: 4px; background: rgba(255,255,255,.1);
  color: var(--gold-light); font-size: .7rem;
  font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 1rem;
}
.feature-banner h2 {
  font-family: var(--font-heading); font-size: 1.8rem;
  color: var(--white); font-weight: 600; line-height: 1.2;
  margin-bottom: .8rem;
}
.feature-banner p { color: rgba(255,255,255,.7); font-size: .92rem; line-height: 1.7; }
.feature-list { list-style: none; margin-top: 1.2rem; display: grid; gap: .5rem; }
.feature-list li {
  display: flex; align-items: center; gap: .6rem;
  font-size: .88rem; color: rgba(255,255,255,.85);
}
.feature-list li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold-light); flex-shrink: 0;
}
.feature-specs { display: grid; gap: .8rem; }
.feature-spec {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.2rem; background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08); border-radius: 6px;
  transition: background .2s;
}
.feature-spec:hover { background: rgba(255,255,255,.1); }
.feature-spec-icon {
  width: 36px; height: 36px; border-radius: 6px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; flex-shrink: 0;
}
.feature-spec h4 { font-size: .85rem; color: var(--white); font-weight: 500; }
.feature-spec p { font-size: .72rem; color: rgba(255,255,255,.5); }

/* ===== BADGES ===== */
.badge {
  display: inline-block; padding: .2rem .6rem;
  border-radius: 4px; font-size: .68rem;
  font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
}
.badge-blue { background: var(--sky); color: var(--blue); }
.badge-navy { background: rgba(10,30,61,.06); color: var(--navy); }
.badge-gold { background: rgba(184,146,46,.08); color: var(--gold); }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; }
.contact-info-card {
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 2rem;
}
.contact-info-item { margin-bottom: 1.5rem; }
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-item h4 {
  font-size: .72rem; color: var(--gray-400);
  text-transform: uppercase; letter-spacing: 1.5px;
  font-weight: 700; margin-bottom: .3rem;
}
.contact-info-item p { color: var(--navy); font-size: .9rem; font-weight: 500; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block; font-size: .85rem; font-weight: 600;
  color: var(--gray-700); margin-bottom: .4rem;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: .75rem 1rem; border-radius: var(--radius);
  border: 1.5px solid var(--gray-300); font-family: var(--font-body);
  font-size: .9rem; color: var(--navy); background: var(--white);
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ===== SOCIAL LINKS ===== */
.social-links { display: flex; gap: .5rem; margin-top: 1.2rem; }
.social-link {
  width: 36px; height: 36px; border-radius: 6px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); text-decoration: none;
}
.social-link:hover { background: var(--blue); }
.social-link svg { width: 16px; height: 16px; fill: rgba(255,255,255,.5); }
.social-link:hover svg { fill: var(--white); }
/* Brand colors on hover */
.social-link[aria-label="Facebook"]:hover { background: #1877f2; }
.social-link[aria-label="Instagram"]:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-link[aria-label="LinkedIn"]:hover { background: #0a66c2; }
/* Instagram icon needs stroke rendering (filled shapes overlap) */
.social-link[aria-label="Instagram"] svg { fill: none; stroke: rgba(255,255,255,.5); stroke-width: 2; }
.social-link[aria-label="Instagram"]:hover svg { fill: none; stroke: var(--white); }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy); color: rgba(255,255,255,.6);
  padding: 4.5rem 0 0;
}
.footer-inner {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
}
.footer-brand .nav-logo svg { height: 36px; }
.footer-brand p { font-size: .88rem; line-height: 1.7; margin-top: 1rem; color: rgba(255,255,255,.45); }
.footer-col h4 {
  font-size: .7rem; text-transform: uppercase; letter-spacing: 2px;
  color: rgba(255,255,255,.25); font-weight: 700; margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .5rem; }
.footer-col a { color: rgba(255,255,255,.5); font-size: .88rem; text-decoration: none; transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 1.5rem 0; display: flex;
  justify-content: space-between; align-items: center;
  font-size: .75rem; color: rgba(255,255,255,.25);
}

/* ===== VISUAL CARDS / GRADIENT BACKGROUNDS ===== */
/* 3. Visual cards with hover zoom */
.visual-card {
  border-radius: 14px; overflow: hidden; position: relative;
  color: var(--white); padding: 2rem 2rem 1.8rem;
  transition: transform .4s ease, box-shadow .4s ease;
  min-height: 260px; display: flex; flex-direction: column; justify-content: flex-end;
  text-decoration: none;
}
.visual-card-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
.visual-card:hover .visual-card-bg { transform: scale(1.08); }
.visual-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,30,61,.88) 0%, rgba(10,30,61,.35) 50%, rgba(10,30,61,.1) 100%);
  transition: background .4s ease;
}
.visual-card:hover .visual-card-overlay {
  background: linear-gradient(to top, rgba(14,116,144,.9) 0%, rgba(10,30,61,.4) 50%, rgba(10,30,61,.15) 100%);
}
.visual-card-content { position: relative; z-index: 1; }
.visual-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(10,30,61,.25); color: var(--white); }
/* Number badge */
.visual-card-num {
  position: absolute; top: 1.5rem; left: 1.8rem; z-index: 2;
  font-family: var(--font-heading); font-size: .7rem; font-weight: 700;
  letter-spacing: 1.5px; color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.1); backdrop-filter: blur(6px);
  padding: .3rem .7rem; border-radius: 4px;
  transition: all .3s ease;
}
.visual-card:hover .visual-card-num { background: rgba(14,116,144,.6); color: white; }
.visual-card h3 { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; margin-bottom: .4rem; }
.visual-card p {
  font-size: .85rem; color: rgba(255,255,255,.6); line-height: 1.6;
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height .4s ease, opacity .3s ease, margin .3s ease;
  margin-top: 0;
}
.visual-card:hover p { max-height: 100px; opacity: 1; margin-top: .2rem; }
.visual-card .card-link {
  display: inline-flex; align-items: center; gap: .4rem;
  color: rgba(255,255,255,.8); margin-top: .6rem;
  font-size: .82rem; font-weight: 600;
  transition: all .3s ease;
}
.visual-card .card-link svg { width: 14px; height: 14px; transition: transform .3s ease; }
.visual-card:hover .card-link { color: white; }
.visual-card:hover .card-link svg { transform: translateX(4px); }
/* Accent line at bottom */
.visual-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--teal); z-index: 2;
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.visual-card:hover::after { transform: scaleX(1); }

/* Gradient variants for visual cards */
.grad-tower { background: linear-gradient(135deg, #0e7490, #0a1e3d); }
.grad-tower::before { background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5v50M20 15h20M18 25h24M16 35h28' stroke='white' stroke-width='.5' fill='none'/%3E%3C/svg%3E") repeat; }
.grad-wireless { background: linear-gradient(135deg, #1d4ed8, #0e7490); }
.grad-wireless::before { background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='8' stroke='white' stroke-width='.5' fill='none'/%3E%3Ccircle cx='30' cy='30' r='16' stroke='white' stroke-width='.3' fill='none'/%3E%3Ccircle cx='30' cy='30' r='24' stroke='white' stroke-width='.2' fill='none'/%3E%3C/svg%3E") repeat; }
.grad-fiber { background: linear-gradient(135deg, #0a1e3d, #1d4ed8); }
.grad-fiber::before { background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 20h40M20 0v40' stroke='white' stroke-width='.3' fill='none'/%3E%3C/svg%3E") repeat; }
.grad-network { background: linear-gradient(135deg, #132d54, #0e7490); }
.grad-network::before { background: url("data:image/svg+xml,%3Csvg width='50' height='50' viewBox='0 0 50 50' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='25' cy='25' r='2' fill='white' opacity='.3'/%3E%3Cline x1='25' y1='25' x2='50' y2='0' stroke='white' stroke-width='.2'/%3E%3Cline x1='25' y1='25' x2='0' y2='50' stroke='white' stroke-width='.2'/%3E%3C/svg%3E") repeat; }
.grad-datacenter { background: linear-gradient(135deg, #1e293b, #1d4ed8); }
.grad-datacenter::before { background: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='5' y='5' width='20' height='20' rx='2' stroke='white' stroke-width='.3' fill='none'/%3E%3C/svg%3E") repeat; }
.grad-site { background: linear-gradient(135deg, #0e7490, #132d54); }
.grad-site::before { background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 8l8 14H12z' stroke='white' stroke-width='.3' fill='none'/%3E%3C/svg%3E") repeat; }

.visual-card-icon {
  width: 44px; height: 44px; border-radius: 8px;
  background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.visual-card-icon svg { stroke: var(--white); width: 22px; height: 22px; }

/* Hero gradient (no external image) */
.hero-gradient {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 40%, var(--teal) 100%);
  position: relative;
}
.hero-gradient::before {
  content: ''; position: absolute; inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='1.5' fill='white' opacity='.08'/%3E%3C/svg%3E") repeat,
    radial-gradient(ellipse 60% 50% at 80% 40%, rgba(37,99,235,.2), transparent 70%);
  pointer-events: none;
}
.hero-gradient::after {
  content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 50%;
  background:
    url("data:image/svg+xml,%3Csvg width='400' height='400' viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='200' y1='50' x2='200' y2='350' stroke='white' stroke-width='.8' opacity='.06'/%3E%3Cline x1='180' y1='120' x2='220' y2='120' stroke='white' stroke-width='.5' opacity='.06'/%3E%3Cline x1='175' y1='160' x2='225' y2='160' stroke='white' stroke-width='.5' opacity='.06'/%3E%3Cline x1='170' y1='200' x2='230' y2='200' stroke='white' stroke-width='.5' opacity='.06'/%3E%3Ccircle cx='200' cy='45' r='6' stroke='white' stroke-width='.5' fill='none' opacity='.1'/%3E%3Ccircle cx='200' cy='45' r='15' stroke='white' stroke-width='.3' fill='none' opacity='.06'/%3E%3Ccircle cx='200' cy='45' r='25' stroke='white' stroke-width='.2' fill='none' opacity='.04'/%3E%3Cline x1='80' y1='180' x2='180' y2='130' stroke='white' stroke-width='.3' stroke-dasharray='3 3' opacity='.05'/%3E%3Cline x1='220' y1='130' x2='320' y2='200' stroke='white' stroke-width='.3' stroke-dasharray='3 3' opacity='.05'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  pointer-events: none; opacity: .8;
}

/* Stats row (horizontal) */
.stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; background: var(--white); border-radius: 8px;
  border: 1px solid var(--gray-200); overflow: hidden;
  box-shadow: var(--shadow-md);
}
.stat-item {
  padding: 2rem; text-align: center;
  border-right: 1px solid var(--gray-200);
  transition: background .2s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--gray-50); }
.stat-item-num {
  font-family: var(--font-heading); font-size: 2.5rem;
  color: var(--navy); font-weight: 700; line-height: 1;
}
.stat-item-label {
  font-size: .72rem; color: var(--gray-400);
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-top: .4rem; font-weight: 600;
}

/* Bento grid layout for services */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(260px, auto);
  gap: 1.2rem;
}
.bento-grid .visual-card:nth-child(4) { grid-column: span 2; }

@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-grid .visual-card:nth-child(4) { grid-column: span 1; }
  .stats-row { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--gray-200); }
  .stat-item:last-child { border-bottom: none; }
}
@media (max-width: 768px) {
  .bento-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(3, 1fr); }
  .stat-item { padding: 1.2rem; border-right: 1px solid var(--gray-200); border-bottom: none; }
}

/* ===== TRUST BADGES ===== */
.trust-strip {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem;
}
.trust-badge {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 1.2rem 1rem;
  text-align: center; transition: all .3s;
}
.trust-badge:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.trust-badge-icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: var(--sky); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto .8rem; font-size: 1.1rem;
}
.trust-badge h4 { font-size: .82rem; color: var(--navy); font-weight: 600; margin-bottom: .2rem; }
.trust-badge p { font-size: .7rem; color: var(--gray-400); line-height: 1.4; }

/* Client highlight */
.client-highlight {
  background: var(--navy); border-radius: 8px;
  padding: 2.5rem; color: var(--white);
  display: flex; align-items: center; gap: 2.5rem;
}
.client-highlight-num {
  font-family: var(--font-heading); font-size: 3.5rem;
  font-weight: 700; line-height: 1; color: var(--white); flex-shrink: 0;
}
.client-highlight h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: .3rem; }
.client-highlight p { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.6; }

.client-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 1.5rem;
}
.client-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 1.2rem 1rem;
  text-align: center; transition: all .2s;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
}
.client-card:hover { border-color: var(--blue); }
.client-card img { height: 44px; width: auto; max-width: 100%; object-fit: contain; }
.client-card strong { font-size: .85rem; color: var(--navy); display: block; }
.client-card span { font-size: .7rem; color: var(--gray-400); }

@media (max-width: 1024px) {
  .trust-strip { grid-template-columns: repeat(3, 1fr); }
  .client-grid { grid-template-columns: repeat(2, 1fr); }
  .client-highlight { flex-direction: column; text-align: center; gap: 1rem; }
}
@media (max-width: 768px) {
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .client-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* About page — at a glance row */
.about-glance-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  background: var(--white); border-radius: var(--radius); padding: 2rem 2.5rem;
  box-shadow: 0 8px 30px rgba(10,30,61,.1); border: 1px solid var(--gray-100);
}
.about-glance-item { text-align: center; }
.about-glance-num {
  font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700;
  color: var(--blue); line-height: 1;
}
.about-glance-label {
  font-size: .7rem; color: var(--gray-400); text-transform: uppercase;
  letter-spacing: 1px; margin-top: .3rem;
}

/* 2. About counters */
.about-counters {
  display: flex; gap: 2rem; margin-bottom: .5rem;
}
.about-counter { text-align: center; }
.about-counter-num {
  font-family: var(--font-heading); font-size: 2rem; font-weight: 700;
  color: var(--blue); line-height: 1;
}
.about-counter-label {
  font-size: .7rem; color: var(--gray-400); text-transform: uppercase;
  letter-spacing: 1px; margin-top: .2rem;
}

/* 5. Feature visual with image */
.feature-visual {
  position: relative; border-radius: 8px; overflow: hidden;
}
.feature-visual img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 8px;
  min-height: 280px;
}
.feature-specs-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(0,0,0,.2);
}
.feature-spec-mini {
  padding: .8rem; text-align: center; backdrop-filter: blur(12px);
  background: rgba(10,30,61,.6);
}
.feature-spec-mini strong {
  display: block; font-size: 1rem; color: var(--white); font-weight: 700;
}
.feature-spec-mini span {
  font-size: .65rem; color: rgba(255,255,255,.6); text-transform: uppercase;
  letter-spacing: 1px;
}

/* 6. Coverage bar animation */
.coverage-bar-fill {
  height: 100%; border-radius: 2px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  transform: scaleX(0); transform-origin: left;
  transition: transform 1.2s cubic-bezier(.16,1,.3,1);
  width: var(--bar-width, 100%);
}

/* 7. Timeline animation */
.timeline::before {
  background: linear-gradient(to bottom, var(--blue), var(--gray-200));
}
.timeline-item { transition: opacity .5s, transform .5s; }
.timeline-dot {
  transition: transform .4s, box-shadow .4s;
}
.timeline-item.timeline-visible .timeline-dot {
  transform: scale(1.2);
  box-shadow: 0 0 0 4px rgba(37,99,235,.15);
}

/* 9. Partners logo marquee */
.partners-logo-marquee {
  overflow: hidden; position: relative;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.partners-logo-track {
  display: flex; gap: 1rem;
  animation: marquee-scroll 50s linear infinite;
  width: max-content;
}
.partners-logo-track:hover { animation-play-state: paused; }
.partner-logo-item {
  display: flex; align-items: center; gap: .8rem;
  padding: .6rem 1.4rem; border-radius: 99px;
  border: 1px solid var(--gray-200); background: var(--white);
  white-space: nowrap; transition: all var(--transition);
  min-width: max-content;
}
.partner-logo-item:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.partner-logo-item img { height: 28px; width: auto; object-fit: contain; }
.partner-logo-item span { font-size: .82rem; color: var(--gray-600); font-weight: 500; }

/* 12. Why Choose Us */
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.why-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 2rem 1.5rem; text-align: center;
  transition: all .3s;
}
.why-card:hover {
  box-shadow: var(--shadow-md); border-color: var(--blue);
  transform: translateY(-4px);
}
.why-icon {
  width: 56px; height: 56px; border-radius: 12px; margin: 0 auto 1.2rem;
  background: linear-gradient(135deg, var(--sky), var(--sky-pale));
  display: flex; align-items: center; justify-content: center;
  transition: all .3s;
}
.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--blue), var(--teal));
}
.why-icon svg { width: 26px; height: 26px; stroke: var(--blue); transition: stroke .3s; }
.why-card:hover .why-icon svg { stroke: var(--white); }
.why-card h3 {
  font-family: var(--font-heading); font-size: 1rem; color: var(--navy);
  font-weight: 600; margin-bottom: .5rem;
}
.why-card p { font-size: .82rem; color: var(--gray-500); line-height: 1.7; }

/* 13. News grid */
.news-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.news-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); overflow: hidden; transition: all .3s;
}
.news-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.news-img { aspect-ratio: 16/10; overflow: hidden; }
.news-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s;
}
.news-card:hover .news-img img { transform: scale(1.05); }
.news-body { padding: 1.5rem; }
.news-meta {
  display: flex; align-items: center; gap: .6rem;
  font-size: .72rem; color: var(--gray-400); margin-bottom: .6rem;
}
.news-tag {
  padding: .15rem .5rem; border-radius: 4px;
  background: var(--sky); color: var(--blue);
  font-weight: 700; font-size: .65rem; text-transform: uppercase;
  letter-spacing: .5px;
}
.news-card h3 {
  font-family: var(--font-heading); font-size: .95rem; color: var(--navy);
  font-weight: 600; margin-bottom: .4rem; line-height: 1.4;
}
.news-card p { font-size: .82rem; color: var(--gray-500); line-height: 1.7; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--navy); padding: 5rem 0;
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy) 50%, var(--navy-light) 100%);
}
/* 10. CTA with background image */
.cta-with-bg { padding: 6rem 0; }
.cta-bg {
  position: absolute; inset: 0; z-index: 0;
}
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-with-bg::before {
  background: linear-gradient(160deg, rgba(10,30,61,.92) 0%, rgba(10,30,61,.75) 50%, rgba(14,116,144,.5) 100%);
  z-index: 1;
}
.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 {
  font-family: var(--font-heading); font-size: 2.2rem;
  color: var(--white); font-weight: 600; margin-bottom: .8rem;
}
.cta-section p {
  color: rgba(255,255,255,.6); font-size: 1rem;
  max-width: 500px; margin: 0 auto 2rem; line-height: 1.8;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage-grid { grid-template-columns: repeat(2, 1fr); }
  .leader-grid { grid-template-columns: 1fr; }
  .feature-banner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .content-with-img { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-stats-bar { gap: 2rem; }
  .section-img-banner { aspect-ratio: 21/9; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-specs-overlay { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .utility-bar { display: none; }
  .mobile-toggle { display: block; }
  .nav-inner { height: 64px; }
  .hero { min-height: 420px; }
  .hero-home { min-height: 100vh; min-height: 100svh; }
  .hero h1 { font-size: 2rem; }
  .hero-content { padding: 3.5rem 2rem; }
  .hero-content-center { padding: 6rem 1.5rem 4rem; }
  .hero-stats-bar { flex-direction: column; gap: 1.2rem; }
  .hero-mini-stats { gap: 1.2rem; flex-wrap: wrap; justify-content: center; }
  .hero-mini-stat strong { font-size: 1.4rem; }
  .hero-mini-divider { display: none; }
  .hero-scroll-indicator { display: none; }
  .section { padding: 4rem 0; }
  .section-title { font-size: 1.7rem; }
  .page-header { padding: 3rem 0; }
  .page-header h1 { font-size: 1.8rem; }
  .card-grid { grid-template-columns: 1fr; }
  .coverage-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .3rem; text-align: center; }
  .hero-actions { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .section-img-banner { aspect-ratio: 16/9; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .about-counters { gap: 1.5rem; }
  .about-counter-num { font-size: 1.5rem; }
  .about-glance-row { grid-template-columns: repeat(2, 1fr); gap: 1rem; padding: 1.5rem; }
  .about-glance-num { font-size: 1.6rem; }
  .feature-specs-overlay { grid-template-columns: repeat(2, 1fr); }
  .feature-spec-mini { padding: .5rem; }
  .svc-block { grid-template-columns: 1fr; gap: 1.5rem; }
  .svc-block-img { max-height: 280px; }
  .svc-block-reverse .svc-block-img { order: 0; }

  /* News featured */
  .news-featured { grid-template-columns: 1fr; }
  .news-featured-body { padding: 1.5rem; }
  .news-featured-body h3 { font-size: 1.2rem; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }

  /* Corporate */
  .corp-info-grid { grid-template-columns: 1fr 1fr; }
  .corp-services-row { grid-template-columns: 1fr; }
  .license-grid { grid-template-columns: 1fr; }
  .org-chart { gap: 1.5rem; }
  .org-level { flex-direction: column; align-items: center; }
  .org-card { min-width: auto; width: 100%; max-width: 280px; }
  .advisor-grid { grid-template-columns: 1fr; }

  /* Project detail */
  .proj-detail-header { grid-template-columns: 1fr; }
  .proj-stats-row { grid-template-columns: repeat(2, 1fr); }
  .proj-gallery { grid-template-columns: 1fr; }
  .proj-gallery-item.proj-gallery-wide { grid-column: 1 / -1; aspect-ratio: 16/9; }
  .proj-grid { grid-template-columns: 1fr; }

  /* News filter */
  .news-filter { gap: .4rem; }
  .news-filter-btn { padding: .4rem .9rem; font-size: .78rem; }

  /* Nav CTA smaller on mobile */
  .nav-cta { padding: .5rem 1rem; font-size: .8rem; }

  /* Back to top */
  .back-to-top { bottom: 1.2rem; right: 1.2rem; width: 40px; height: 40px; }
}

/* ===== Service Blocks (alternating image + text) ===== */
.svc-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--gray-200);
}
.svc-block:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.svc-block-reverse .svc-block-img {
  order: 2;
}
.svc-block-reverse .svc-block-body {
  order: 1;
}

.svc-block-img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.svc-block-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.svc-block:hover .svc-block-img img {
  transform: scale(1.05);
}

.svc-block-body h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--navy);
  margin: .6rem 0 .6rem;
  font-weight: 700;
}
.svc-block-body p {
  color: var(--gray-500);
  font-size: .92rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.svc-features {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .45rem .8rem;
}
.svc-features li {
  font-size: .82rem;
  color: var(--gray-600);
  padding-left: 1.3rem;
  position: relative;
  line-height: 1.6;
}
.svc-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .45rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--blue));
}

/* ===== News & Media Page ===== */
.news-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}
.news-featured-img {
  height: 100%;
  min-height: 360px;
}
.news-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-featured-body {
  padding: 2.5rem 2.5rem 2.5rem 0;
}
.news-featured-body h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: .6rem;
}
.news-featured-body p {
  font-size: .88rem;
  color: var(--gray-500);
  line-height: 1.8;
}

.news-date {
  font-size: .72rem;
  color: var(--gray-400);
}

.news-year-label {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  margin: 2.5rem 0 1.2rem;
  padding-bottom: .6rem;
  border-bottom: 3px solid var(--blue);
  display: inline-block;
}

.news-timeline .news-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* ===== Corporate Info Page ===== */
.corp-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.corp-info-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 1.8rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
}
.corp-info-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--blue-light);
  transform: translateY(-2px);
}
.corp-info-icon {
  width: 48px;
  height: 48px;
  background: var(--sky);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.corp-info-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--blue);
}
.corp-info-card h4 {
  font-family: var(--font-heading);
  font-size: .85rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: .4rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.corp-info-card p {
  font-size: .82rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.corp-services-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.corp-service-item {
  background: var(--navy);
  border-radius: 12px;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
}
.corp-service-label {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,.5);
  margin-bottom: .3rem;
}
.corp-service-value {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: .4rem;
}
.corp-service-detail {
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  line-height: 1.5;
}

/* License Cards */
.license-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.license-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 1.8rem;
  text-align: center;
  transition: all var(--transition);
}
.license-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.license-logo {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.license-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.license-card h4 {
  font-family: var(--font-heading);
  font-size: .88rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: .3rem;
}
.license-card p {
  font-size: .78rem;
  color: var(--gray-500);
  line-height: 1.5;
}
.license-validity {
  display: inline-block;
  margin-top: .6rem;
  font-size: .7rem;
  color: var(--teal);
  background: rgba(14,116,144,.08);
  padding: .25rem .7rem;
  border-radius: 20px;
  font-weight: 500;
}

/* Project Cards */
.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.proj-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all .3s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.proj-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: var(--blue-light);
  color: inherit;
}
.proj-card-img {
  height: 200px;
  overflow: hidden;
}
.proj-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.proj-card:hover .proj-card-img img {
  transform: scale(1.08);
}
.proj-card-body {
  padding: 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.proj-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 700;
  margin: .5rem 0 .4rem;
  line-height: 1.3;
}
.proj-card-body p {
  font-size: .82rem;
  color: var(--gray-500);
  line-height: 1.7;
  flex: 1;
}
.proj-card-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--blue);
  margin-top: 1rem;
  transition: gap .2s ease;
}
.proj-card-link svg {
  width: 16px;
  height: 16px;
}
.proj-card:hover .proj-card-link {
  gap: .6rem;
}

/* Project Detail Page */
.proj-detail-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.proj-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1rem;
}
.proj-detail-header h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: .8rem;
  line-height: 1.3;
}
.proj-detail-header p {
  font-size: .9rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: .6rem;
}
.proj-detail-img {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.proj-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proj-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.proj-stat-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}
.proj-stat-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
}
.proj-stat-label {
  font-size: .72rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-top: .2rem;
}

.proj-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.proj-gallery-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.proj-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.proj-gallery-item:hover img {
  transform: scale(1.05);
}
.proj-gallery-item.proj-gallery-wide {
  grid-column: 1 / -1;
  aspect-ratio: 21/9;
}

/* News Filter */
.news-filter {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.news-filter-btn {
  padding: .5rem 1.2rem;
  border-radius: 50px;
  border: 1.5px solid var(--gray-200);
  background: white;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 500;
  color: var(--gray-500);
  cursor: pointer;
  transition: all .25s ease;
}
.news-filter-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
}
.news-filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
}
.news-card[data-category] {
  transition: opacity .3s ease, transform .3s ease;
}
.news-card.filter-hidden {
  display: none;
}

.proj-back-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--blue);
  margin-bottom: 1.5rem;
}
.proj-back-link svg {
  width: 18px;
  height: 18px;
}
.proj-back-link:hover {
  color: var(--navy);
}

/* Organization Chart */
.org-chart {
  max-width: 900px;
  margin: 0 auto;
}
.org-level {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.org-connector {
  width: 2px;
  height: 28px;
  background: var(--gray-300);
  margin: 0 auto;
}
.org-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  text-align: center;
  min-width: 200px;
  transition: all var(--transition);
}
.org-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--blue-light);
}
.org-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: .8rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: .2rem;
}
.org-card span {
  font-size: .75rem;
  color: var(--gray-500);
}
.org-card-primary {
  background: var(--navy);
  border-color: var(--navy);
}
.org-card-primary strong {
  color: var(--white);
}
.org-card-primary span {
  color: rgba(255,255,255,.6);
}
.org-card-sm {
  min-width: 160px;
  padding: .8rem 1rem;
}
.org-card-sm strong {
  font-size: .72rem;
}

/* Advisor Cards */
.advisor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.advisor-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 2rem;
  text-align: center;
  transition: all var(--transition);
}
.advisor-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.advisor-avatar {
  width: 64px;
  height: 64px;
  background: var(--sky);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.advisor-avatar svg {
  width: 32px;
  height: 32px;
  stroke: var(--blue);
}
.advisor-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: .2rem;
}
.advisor-title {
  font-size: .78rem;
  color: var(--teal);
  font-weight: 500;
  display: block;
  margin-bottom: .8rem;
}
.advisor-card p {
  font-size: .82rem;
  color: var(--gray-500);
  line-height: 1.7;
  text-align: left;
}

/* ===== Coverage Bar Animation Trigger ===== */
.visible .coverage-bar-fill,
.coverage-card.visible .coverage-bar-fill {
  transform: scaleX(1);
}

/* ===== Focus States (Accessibility) ===== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
  border-radius: 4px;
}
.nav-cta:focus-visible { outline-color: var(--teal); }
.btn-primary:focus-visible,
.btn-white:focus-visible { outline-offset: 3px; }
.visual-card:focus-visible { outline: 2px solid var(--teal); outline-offset: 4px; }
.news-card:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: var(--radius); }

/* ===== Gallery Alt / Image Polish ===== */
.proj-gallery-item img,
.news-img img {
  background: var(--gray-100);
}

/* ===== Tablet Refinements (768-1024px) ===== */
@media (min-width: 769px) and (max-width: 1024px) {
  .coverage-grid { grid-template-columns: repeat(3, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .corp-info-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-grid .visual-card { min-height: 220px; }
  .hero h1 { font-size: 2.2rem; }
  .section-title { font-size: 1.8rem; }
}

/* ===== Contact Page ===== */
.contact-strip {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  margin-top: -2px;
  position: relative;
  z-index: 2;
}
.contact-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.contact-strip-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.8rem;
  border-right: 1px solid var(--gray-200);
  text-decoration: none;
  color: inherit;
  transition: background var(--transition);
}
.contact-strip-item:last-child { border-right: none; }
.contact-strip-item:hover { background: var(--gray-50); color: inherit; }
.contact-strip-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--sky), var(--sky-pale));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}
.contact-strip-item:hover .contact-strip-icon {
  background: linear-gradient(135deg, var(--blue), var(--teal));
}
.contact-strip-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--blue);
  transition: stroke .3s;
}
.contact-strip-item:hover .contact-strip-icon svg { stroke: var(--white); }
.contact-strip-label {
  display: block;
  font-size: .7rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: .1rem;
}
.contact-strip-item strong {
  font-size: .88rem;
  color: var(--navy);
  font-weight: 600;
}

/* Contact Form Card */
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  align-self: start;
}
.contact-form-card label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .4rem;
  text-transform: uppercase;
  letter-spacing: .3px;
}
.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: .88rem;
  color: var(--gray-700);
  background: var(--gray-50);
  transition: all .25s;
}
.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
  color: var(--gray-300);
}
.contact-form-card select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.contact-form-card textarea { resize: vertical; min-height: 120px; }
.form-group { margin-bottom: 1.2rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

/* Contact Info Cards */
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.contact-card-header {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-100);
}
.contact-card-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--sky), var(--sky-pale));
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--blue);
}
.contact-card-header h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--navy);
  font-weight: 600;
}
.contact-info-item {
  margin-bottom: 1rem;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-item h4 {
  font-family: var(--font-heading);
  font-size: .78rem;
  color: var(--navy);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: .2rem;
}
.contact-info-item p {
  font-size: .85rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* Social Card */
.contact-social-card {
  background: var(--navy);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}
.contact-social-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: .4rem;
}
.contact-social-card p {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  line-height: 1.6;
  margin-bottom: 1.4rem;
}
.contact-social-links {
  display: flex;
  justify-content: center;
  gap: .8rem;
}
.contact-social-links a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all .3s;
  color: var(--white);
}
.contact-social-links svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
  flex-shrink: 0;
}
/* Brand colors always visible */
.contact-social-links .social-brand-fb { background: #1877f2; }
.contact-social-links .social-brand-ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.contact-social-links .social-brand-li { background: #0a66c2; }
.contact-social-links a:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,.3);
  color: var(--white);
}
/* Instagram icon stroke rendering */
.contact-social-links .social-brand-ig svg { fill: none; stroke: var(--white); stroke-width: 2; }

/* Map Wrapper */
.contact-map-wrapper {
  overflow: hidden;
}
.contact-map-wrapper iframe {
  border-radius: 0;
}

/* Contact page responsive */
@media (max-width: 1024px) {
  .contact-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .contact-strip-item:nth-child(2) { border-right: none; }
  .contact-strip-item:nth-child(1),
  .contact-strip-item:nth-child(2) { border-bottom: 1px solid var(--gray-200); }
}
@media (max-width: 768px) {
  .contact-strip-inner { grid-template-columns: 1fr; }
  .contact-strip-item { border-right: none; border-bottom: 1px solid var(--gray-200); }
  .contact-strip-item:last-child { border-bottom: none; }
  .contact-form-card { padding: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-map-wrapper iframe { height: 300px; }
}

/* (Responsive rules consolidated in main @media block above) */
