/* ================================================================
   VVR Salt Traders – Main Stylesheet
   Design: Deep Navy + Electric Teal + Amber | Glassmorphism Cards
   ================================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  --navy:        #0B1F3A;
  --navy-mid:    #162d50;
  --navy-light:  #1e3d6b;
  --teal:        #00C4A7;
  --teal-dark:   #00a08a;
  --teal-glow:   rgba(0,196,167,.18);
  --amber:       #F5A623;
  --amber-dark:  #d98e12;
  --white:       #FFFFFF;
  --light:       #F8FAFB;
  --light-2:     #EEF2F7;
  --text-dark:   #0B1F3A;
  --text-body:   #2d3748;
  --text-muted:  #6b7a94;
  --border:      rgba(11,31,58,.09);
  --shadow-sm:   0 2px 10px rgba(11,31,58,.06);
  --shadow:      0 4px 24px rgba(11,31,58,.10);
  --shadow-lg:   0 12px 48px rgba(11,31,58,.16);
  --radius-sm:   8px;
  --radius:      16px;
  --radius-lg:   24px;
  --transition:  all .3s cubic-bezier(.4,0,.2,1);
  --font-head:   'Outfit', sans-serif;
  --font-body:   'Inter', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--light);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); color: var(--text-dark); line-height: 1.25; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 600; }
p  { font-size: .975rem; }

/* ── Container ── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section    { padding: 80px 0; }
.section-sm { padding: 56px 0; }

/* ─────────────────────────────────────────────────────────────────
   NAV
───────────────────────────────────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent;
  transition: var(--transition);
}
.site-nav.scrolled {
  background: rgba(11,31,58,.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; padding: 0 24px; max-width: 1200px; margin: 0 auto;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 800;
  font-size: 1.3rem; color: #fff;
}
.nav-logo .logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--teal), var(--amber));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.nav-links {
  display: flex; align-items: center; gap: 8px;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: .9rem; font-weight: 500;
  padding: 8px 16px; border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: #fff; background: rgba(255,255,255,.12); }
.nav-links .nav-cta {
  background: var(--teal); color: var(--navy) !important; font-weight: 700;
  padding: 8px 20px !important; border-radius: 50px;
}
.nav-links .nav-cta:hover { background: var(--amber); }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 768px) {
  .site-nav { background: rgba(11,31,58,.97) !important; }
  .nav-inner { padding: 0 16px; height: 60px; }
  .nav-logo  { font-size: 1.05rem; }
  .nav-toggle { display: flex; z-index: 1001; }

  .nav-links {
    display: flex;
    position: fixed; top: 60px; left: 0; right: 0;
    background: rgba(11,31,58,.99);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;          /* links fill full width */
    padding: 10px 14px 22px;
    gap: 2px;
    transform: translateY(-110%);
    opacity: 0;
    transition: transform .32s cubic-bezier(.4,0,.2,1), opacity .28s ease;
    border-bottom: 2px solid var(--teal);
    box-shadow: 0 12px 32px rgba(0,0,0,.35);
    z-index: 1000;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; }

  .nav-links li { width: 100%; }
  .nav-links a {
    display: block !important;
    width: 100% !important;
    padding: 13px 16px !important;
    font-size: .96rem !important;
    border-radius: var(--radius-sm) !important;
    color: rgba(255,255,255,.82) !important;
    background: transparent !important;
  }
  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(255,255,255,.1) !important;
    color: #fff !important;
  }
  .nav-links .nav-cta {
    background: var(--teal) !important;
    color: var(--navy) !important;
    font-weight: 700 !important;
    border-radius: var(--radius-sm) !important;
    margin-top: 8px !important;
    text-align: center !important;
  }
  .nav-links .nav-cta:hover { background: var(--amber) !important; }
}

/* ─────────────────────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, #0d2444 40%, #112e54 70%, var(--navy-mid) 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
/* Decorative circles */
.hero::before {
  content: '';
  position: absolute; top: -150px; right: -150px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--teal-glow) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  padding: 120px 24px 80px; max-width: 1200px; margin: 0 auto; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,196,167,.15); border: 1px solid rgba(0,196,167,.3);
  color: var(--teal); font-size: .8rem; font-weight: 600;
  padding: 6px 14px; border-radius: 50px; margin-bottom: 20px;
  letter-spacing: .05em; text-transform: uppercase;
}
.hero-title {
  color: #fff; margin-bottom: 20px;
}
.hero-title span { color: var(--teal); }
.hero-subtitle {
  color: rgba(255,255,255,.7); font-size: 1.05rem;
  margin-bottom: 36px; max-width: 480px; line-height: 1.75;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  transition: var(--transition); cursor: pointer; border: none;
  text-decoration: none;
}
.btn-primary {
  background: var(--teal); color: var(--navy);
}
.btn-primary:hover {
  background: var(--teal-dark); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,196,167,.4);
}
.btn-outline {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.35);
}
.btn-outline:hover {
  border-color: var(--teal); color: var(--teal);
  transform: translateY(-2px);
}
.btn-amber {
  background: var(--amber); color: var(--navy);
}
.btn-amber:hover {
  background: var(--amber-dark); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,166,35,.4);
}

/* Hero visual */
.hero-visual {
  display: flex; justify-content: center; align-items: center;
}
.hero-card-wrap {
  position: relative; width: 320px; height: 320px;
}
.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 20px 24px;
  color: #fff;
}
.hero-float-card.c1 {
  top: 20px; left: 0; right: 0;
  animation: float1 4s ease-in-out infinite;
}
.hero-float-card.c2 {
  bottom: 20px; left: 20px; right: 20px;
  animation: float2 4.5s ease-in-out infinite;
}
.hero-float-card .stat-val {
  font-family: var(--font-head); font-size: 2rem; font-weight: 800;
  color: var(--teal);
}
.hero-float-card .stat-label { font-size: .8rem; color: rgba(255,255,255,.65); }
.hero-circle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 140px; height: 140px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--amber));
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  box-shadow: 0 0 60px rgba(0,196,167,.3);
  animation: pulse 3s ease-in-out infinite;
}
@keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(10px)}  }
@keyframes pulse  { 0%,100%{box-shadow:0 0 60px rgba(0,196,167,.3)} 50%{box-shadow:0 0 90px rgba(0,196,167,.5)} }

/* Hero wave */
.hero-wave {
  position: absolute; bottom: -2px; left: 0; right: 0;
}

@media (max-width:900px) {
  .hero-inner { grid-template-columns:1fr; text-align:center; }
  .hero-visual { display: none; }
  .hero-subtitle { max-width: 100%; }
  .hero-actions { justify-content: center; }
}

/* ─────────────────────────────────────────────────────────────────
   STATS BAR
───────────────────────────────────────────────────────────────── */
.stats-bar {
  background: var(--navy);
  padding: 40px 0;
}
.stats-bar .container {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-head); font-size: 2.2rem; font-weight: 800;
  color: var(--teal); display: block;
}
.stat-label { font-size: .85rem; color: rgba(255,255,255,.6); }

@media (max-width: 600px) {
  .stats-bar .container { grid-template-columns: repeat(2,1fr); }
}

/* ─────────────────────────────────────────────────────────────────
   SECTION HEADERS
───────────────────────────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block; background: var(--teal-glow);
  color: var(--teal); font-size: .78rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 50px;
  border: 1px solid rgba(0,196,167,.3); margin-bottom: 14px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p  { color: var(--text-muted); max-width: 560px; margin: 0 auto; font-size: 1rem; }

/* ─────────────────────────────────────────────────────────────────
   FEATURES / WHY US
───────────────────────────────────────────────────────────────── */
.features-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 28px;
}
.feature-card {
  background: var(--white); border-radius: var(--radius);
  padding: 36px 28px; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); transition: var(--transition);
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--amber));
  transform: scaleX(0); transform-origin: left; transition: var(--transition);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 60px; height: 60px; border-radius: 16px; margin-bottom: 20px;
  background: var(--teal-glow); display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
}
.feature-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.feature-card p  { color: var(--text-muted); font-size: .9rem; line-height: 1.65; }

@media (max-width: 900px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .features-grid { grid-template-columns: 1fr; } }

/* ─────────────────────────────────────────────────────────────────
   PRODUCT CARDS (shared – used on home + products page)
───────────────────────────────────────────────────────────────── */
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
  gap: 28px;
}
.product-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); transition: var(--transition);
  display: flex; flex-direction: column;
  cursor: pointer;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-img {
  width: 100%; height: 200px; object-fit: cover;
  background: linear-gradient(135deg, var(--light-2), var(--light));
}
.product-img-placeholder {
  width: 100%; height: 200px;
  background: linear-gradient(135deg, #e8f0fe, var(--light-2));
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
}
.product-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.product-category {
  display: inline-block; background: var(--teal-glow);
  color: var(--teal-dark); font-size: .72rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 50px; margin-bottom: 10px;
}
.product-name {
  font-family: var(--font-head); font-size: 1.08rem; font-weight: 700;
  color: var(--text-dark); margin-bottom: 8px; line-height: 1.35;
}
.product-desc {
  font-size: .875rem; color: var(--text-muted); line-height: 1.6;
  margin-bottom: 16px; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.product-footer {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--border); padding-top: 14px; margin-top: auto;
  gap: 8px; flex-wrap: wrap;
}
.product-rate {
  font-family: var(--font-head); font-size: 1.15rem; font-weight: 800;
  color: var(--amber-dark);
}
.product-rate small { font-size: .72rem; font-weight: 500; color: var(--text-muted); }
.product-updated { font-size: .72rem; color: var(--text-muted); }
.product-stock-badge {
  display: inline-block; font-size: .7rem; font-weight: 700;
  padding: 3px 9px; border-radius: 50px; letter-spacing: .04em;
  text-transform: uppercase;
}
.in-stock    { background: #f0fdf4; color: #166534; }
.out-of-stock{ background: #fef2f2; color: #991b1b; }
.btn-enquire {
  background: var(--navy); color: #fff;
  border: none; cursor: pointer;
  padding: 10px 18px; border-radius: 50px;
  font-family: var(--font-head); font-weight: 600; font-size: .85rem;
  transition: var(--transition); width: 100%; margin-top: 12px;
  text-align: center;
}
.btn-enquire:hover { background: var(--teal); color: var(--navy); }

/* ─────────────────────────────────────────────────────────────────
   PRODUCTS PAGE
───────────────────────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 130px 0 70px; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p  { color: rgba(255,255,255,.65); font-size: 1rem; }
.page-hero .breadcrumb {
  display: flex; justify-content: center; gap: 8px;
  font-size: .82rem; color: rgba(255,255,255,.5); margin-bottom: 16px;
}
.page-hero .breadcrumb a { color: var(--teal); }

/* Category filter */
.filter-bar {
  display: flex; gap: 10px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 44px;
}
.filter-btn {
  padding: 9px 20px; border-radius: 50px;
  border: 2px solid var(--border); background: var(--white);
  font-family: var(--font-head); font-weight: 600; font-size: .85rem;
  color: var(--text-muted); cursor: pointer; transition: var(--transition);
}
.filter-btn:hover  { border-color: var(--teal); color: var(--teal); }
.filter-btn.active { background: var(--navy); border-color: var(--navy); color: #fff; }

/* ─────────────────────────────────────────────────────────────────
   ENQUIRY MODAL
───────────────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(11,31,58,.6); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px; width: 100%; max-width: 520px;
  box-shadow: var(--shadow-lg);
  transform: scale(.9) translateY(20px);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  max-height: 90vh; overflow-y: auto;
}
.modal-overlay.open .modal-box { transform: scale(1) translateY(0); }
.modal-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 28px;
}
.modal-header h3 { font-size: 1.3rem; color: var(--navy); }
.modal-header p  { font-size: .85rem; color: var(--text-muted); margin-top: 4px; }
.modal-close {
  background: var(--light-2); border: none; cursor: pointer;
  width: 36px; height: 36px; border-radius: 50%;
  font-size: 1.1rem; color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); flex-shrink: 0; margin-left: 10px;
}
.modal-close:hover { background: var(--navy); color: #fff; }

/* ─────────────────────────────────────────────────────────────────
   FORM STYLES (public)
───────────────────────────────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block; font-size: .83rem; font-weight: 600;
  color: var(--text-dark); margin-bottom: 6px;
}
.form-control {
  width: 100%; padding: 12px 16px; border-radius: var(--radius-sm);
  border: 2px solid var(--light-2); background: var(--light);
  font-family: var(--font-body); font-size: .9rem; color: var(--text-dark);
  transition: var(--transition); outline: none;
}
.form-control:focus { border-color: var(--teal); background: #fff; box-shadow: 0 0 0 4px var(--teal-glow); }
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }

.btn-submit {
  width: 100%; padding: 14px; border-radius: 50px;
  background: var(--navy); color: #fff; border: none; cursor: pointer;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  transition: var(--transition); margin-top: 4px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-submit:hover { background: var(--teal); color: var(--navy); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; }
.form-msg {
  padding: 12px 16px; border-radius: var(--radius-sm);
  font-size: .875rem; margin-top: 12px; display: none;
}
.form-msg.success { background: #f0fdf4; border:1px solid #86efac; color:#166534; display:block; }
.form-msg.error   { background: #fef2f2; border:1px solid #fca5a5; color:#991b1b; display:block; }

/* ─────────────────────────────────────────────────────────────────
   PRODUCT DETAIL MODAL
───────────────────────────────────────────────────────────────── */
.product-detail-box { max-width: 820px; }
.product-detail-header { padding: 22px 28px; }
.product-detail-body {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.pd-img-section {
  position: relative; min-height: 320px;
  background: linear-gradient(135deg, var(--light-2), var(--light));
}
.pd-img-section img {
  width: 100%; height: 100%; min-height: 320px; object-fit: cover;
}
.pd-placeholder-big {
  width: 100%; height: 100%; min-height: 320px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; font-size: 6rem;
  background: linear-gradient(135deg, #e8f4fd, var(--light-2));
}
.pd-placeholder-big span { font-size: .9rem; color: var(--text-muted); font-family: var(--font-head); }
.pd-info-section {
  padding: 28px; display: flex; flex-direction: column; gap: 16px;
  border-left: 1px solid var(--border);
}
.pd-category { font-size: .78rem; }
.pd-title {
  font-family: var(--font-head); font-size: 1.5rem; font-weight: 800;
  color: var(--text-dark); line-height: 1.25; margin: 0;
}
.pd-rate {
  font-family: var(--font-head); font-size: 2.4rem; font-weight: 800;
  color: var(--amber-dark); line-height: 1;
}
.pd-rate small { font-size: .9rem; font-weight: 500; color: var(--text-muted); }
.pd-desc { color: var(--text-muted); line-height: 1.72; font-size: .925rem; }
.pd-meta-box {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--light); border-radius: var(--radius-sm);
  padding: 12px 14px; gap: 8px;
}
.pd-updated { font-size: .76rem; color: var(--text-muted); }
.pd-actions { display: flex; gap: 10px; margin-top: auto; }
.pd-actions .btn-enquire { flex: 1; }
.btn-view-close {
  padding: 10px 18px; border-radius: 50px; cursor: pointer;
  border: 2px solid var(--border); background: transparent;
  font-family: var(--font-head); font-weight: 600; font-size: .85rem;
  color: var(--text-muted); transition: var(--transition);
}
.btn-view-close:hover { border-color: var(--navy); color: var(--navy); }

@media (max-width: 680px) {
  .product-detail-body { grid-template-columns: 1fr; }
  .pd-img-section, .pd-img-section img { min-height: 220px; }
  .pd-info-section { border-left: none; border-top: 1px solid var(--border); padding: 20px 16px; }
  .pd-rate { font-size: 1.8rem; }
  .product-detail-header { padding: 16px 20px; }
}

/* ─────────────────────────────────────────────────────────────────
   ABOUT PAGE
───────────────────────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img-wrap {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-placeholder {
  width: 100%; height: 420px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: rgba(255,255,255,.8); font-size: 5rem; gap: 16px;
}
.about-img-placeholder span { font-family: var(--font-head); font-size: 1.1rem; font-weight: 600; }
.about-badge {
  position: absolute; bottom: 24px; right: 24px;
  background: var(--amber); color: var(--navy);
  border-radius: var(--radius); padding: 16px 20px; text-align: center;
}
.about-badge .year { font-family: var(--font-head); font-size: 2rem; font-weight: 800; display: block; line-height: 1; }
.about-badge .label{ font-size: .75rem; font-weight: 600; }
.about-text .section-tag { margin-bottom: 10px; }
.about-text h2 { margin-bottom: 16px; }
.about-text p  { color: var(--text-muted); margin-bottom: 16px; line-height: 1.75; }
.about-checks { margin: 20px 0; display: flex; flex-direction: column; gap: 10px; }
.about-check  { display: flex; align-items: center; gap: 10px; font-size: .9rem; }
.about-check::before {
  content: '✓'; width: 22px; height: 22px;
  background: var(--teal-glow); border-radius: 50%;
  color: var(--teal); font-size: .8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.team-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px 24px; text-align: center;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: #fff;
}
.team-card h4 { font-size: 1rem; margin-bottom: 4px; }
.team-card p  { font-size: .82rem; color: var(--text-muted); }

@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .team-grid { grid-template-columns: 1fr; } }

/* ─────────────────────────────────────────────────────────────────
   CONTACT PAGE
───────────────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 56px; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px; border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.contact-info-card .c-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--teal-glow); display: flex; align-items: center;
  justify-content: center; font-size: 1.4rem; margin-bottom: 14px;
}
.contact-info-card h4 { font-size: .95rem; margin-bottom: 6px; }
.contact-info-card p  { font-size: .875rem; color: var(--text-muted); }
.contact-form-card {
  background: var(--white); border-radius: var(--radius);
  padding: 40px; border: 1px solid var(--border); box-shadow: var(--shadow);
}
.contact-form-card h3 { margin-bottom: 24px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ─────────────────────────────────────────────────────────────────
   CTA BANNER
───────────────────────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, var(--teal-glow) 0%, transparent 70%);
}
.cta-section h2 { color: #fff; margin-bottom: 14px; }
.cta-section p  { color: rgba(255,255,255,.65); margin-bottom: 32px; font-size: 1rem; }

/* ─────────────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy); color: rgba(255,255,255,.7); padding: 64px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { font-size: .875rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-head); font-weight: 700;
  color: #fff; font-size: .95rem; margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: .875rem; color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--teal); }
.footer-contact-item { display: flex; gap: 10px; font-size: .875rem; margin-bottom: 12px; }
.footer-contact-item span:first-child { color: var(--teal); flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0; display: flex;
  justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: .82rem; }
.footer-bottom a { color: var(--teal); }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; text-align: center; } }

/* ─────────────────────────────────────────────────────────────────
   EMPTY STATE
───────────────────────────────────────────────────────────────── */
.empty-state {
  grid-column: 1/-1; text-align: center; padding: 80px 20px;
}
.empty-state .empty-icon { font-size: 4rem; margin-bottom: 16px; }
.empty-state h3 { color: var(--text-muted); font-weight: 500; font-size: 1.1rem; }

/* ─────────────────────────────────────────────────────────────────
   UTILITY
───────────────────────────────────────────────────────────────── */
.text-teal   { color: var(--teal); }
.text-amber  { color: var(--amber); }
.text-muted  { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-4  { margin-top: 16px; }
.mt-8  { margin-top: 32px; }
.mb-4  { margin-bottom: 16px; }
.mb-8  { margin-bottom: 32px; }
.hidden { display: none !important; }

/* ─────────────────────────────────────────────────────────────────
   SCROLL ANIMATIONS
───────────────────────────────────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
