/* ==============================================
   JSLGA Enterprises - Complete Website Stylesheet
   Refrigeration & Dairy Solutions
   ============================================== */

/* ============ RESET & VARIABLES ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #E8710A;
  --orange-dark: #C75E00;
  --orange-light: #FFF3E8;
  --orange-glow: rgba(232,113,10,0.12);
  --green: #2D8F4E;
  --green-dark: #1E6B38;
  --green-light: #E8F5EC;
  --navy: #0F2B3C;
  --navy-light: #1A3D52;
  --navy-mid: #163347;
  --slate: #2C3E50;
  --gray-900: #1a1a2e;
  --gray-800: #2D3748;
  --gray-700: #4A5568;
  --gray-500: #718096;
  --gray-400: #A0AEC0;
  --gray-300: #CBD5E0;
  --gray-200: #E2E8F0;
  --gray-100: #F7FAFC;
  --gray-50: #FAFBFC;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.10);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--slate);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background: var(--white);
}

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 24px; }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: var(--navy); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { color: var(--gray-700); }

.section-label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  position: relative;
  padding-left: 40px;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 28px; height: 2px;
  background: var(--orange);
}
.section-label-center { padding-left: 0; }
.section-label-center::before { display: none; }

.section-title { margin-bottom: 20px; }
.section-desc { max-width: 640px; font-size: 1.05rem; line-height: 1.8; }

section { padding: 80px 0; }
@media (max-width: 768px) { section { padding: 56px 0; } }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.02em;
  text-align: center;
  justify-content: center;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(232,113,10,0.25);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,113,10,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--gray-300);
}
.btn-outline-dark:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.btn-green {
  background: var(--green);
  color: var(--white);
}
.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-lg { padding: 16px 40px; font-size: 1rem; }

/* ============ HEADER / NAV ============ */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
}
header.scrolled { box-shadow: var(--shadow-md); }

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 48px; height: 48px;
  object-fit: contain;
  border-radius: 6px;
  flex-shrink: 0;
}
.logo-text { line-height: 1.1; }
.logo-name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.15rem; color: var(--navy); }
.logo-tag { font-size: 0.65rem; color: var(--gray-500); letter-spacing: 1px; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 0.88rem; font-weight: 500;
  color: var(--gray-700); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--orange); transition: var(--transition);
}
.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--orange); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--orange-dark) !important; }

.hamburger {
  display: none; flex-direction: column;
  gap: 5px; cursor: pointer; padding: 8px; z-index: 1001;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--navy); transition: var(--transition);
}

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%;
    width: 280px; height: 100vh;
    flex-direction: column; background: var(--white);
    padding: 100px 32px 40px; gap: 24px;
    box-shadow: var(--shadow-lg); transition: var(--transition);
    align-items: flex-start;
  }
  .nav-links.open { right: 0; }
  .mobile-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.4); z-index: 999;
    opacity: 0; pointer-events: none; transition: var(--transition);
  }
  .mobile-overlay.open { opacity: 1; pointer-events: all; }
}

/* ============ PAGE HERO (inner pages) ============ */
.page-hero {
  padding: 140px 0 70px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #1B4D3E 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 75% 30%, var(--orange-glow) 0%, transparent 50%),
    radial-gradient(circle at 20% 70%, rgba(45,143,78,0.08) 0%, transparent 50%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 600px; }
.page-hero .section-label { color: rgba(255,255,255,0.5); }
.page-hero .section-label::before { background: rgba(255,255,255,0.3); }

.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 20px; font-size: 0.85rem;
}
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: rgba(255,255,255,0.3); }
.breadcrumb .current { color: rgba(255,255,255,0.8); }

/* ============ CARDS (reusable) ============ */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
  overflow: hidden;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.card-body { padding: 28px; }
.card-img {
  width: 100%; height: 220px;
  object-fit: cover; background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-400); font-size: 2.5rem;
}

/* ============ TAGS / CHIPS ============ */
.tag {
  display: inline-block;
  font-size: 0.75rem; font-weight: 600;
  padding: 4px 12px; border-radius: 20px;
  letter-spacing: 0.3px;
}
.tag-orange { background: var(--orange-light); color: var(--orange-dark); }
.tag-green { background: var(--green-light); color: var(--green-dark); }
.tag-navy { background: #E8EDF5; color: var(--navy); }

/* ============ GRID HELPERS ============ */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .grid-4 { grid-template-columns: 1fr; }
}

/* ============ SERVICE CARDS ============ */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg); border-color: transparent;
}
.service-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--orange); transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 20px;
}
.service-card h3 { margin-bottom: 12px; font-size: 1.15rem; }
.service-card p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; }
.service-list { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; }
.service-list li {
  font-size: 0.76rem; background: var(--gray-100);
  padding: 4px 12px; border-radius: 20px;
  color: var(--gray-700); font-weight: 500;
}

/* ============ BRANDS SECTION ============ */
.brands-dark { background: var(--navy); padding: 60px 0; }
.brands-dark .section-label { color: rgba(255,255,255,0.5); }
.brands-dark .section-label::before { background: rgba(255,255,255,0.3); }
.brands-dark h2 { color: var(--white); }
.brands-subtitle { color: rgba(255,255,255,0.6); margin-bottom: 40px; }

.brands-grid { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.brand-chip {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 14px 28px; border-radius: var(--radius);
  color: rgba(255,255,255,0.9); font-weight: 600;
  font-size: 0.92rem; transition: var(--transition);
  letter-spacing: 0.4px;
}
.brand-chip:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-2px);
}

/* ============ FORM STYLES ============ */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: var(--navy); margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--gray-300); border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif; font-size: 0.92rem;
  transition: var(--transition); background: var(--gray-50);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(232,113,10,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
@media (max-width: 768px) { .form-row { grid-template-columns: 1fr; } }

/* ============ CTA BAND ============ */
.cta-band {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  padding: 60px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, var(--orange-glow) 0%, transparent 60%);
}
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { color: var(--white); margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,0.7); margin-bottom: 28px; font-size: 1.05rem; }
.cta-band .btn { margin: 0 8px; }

/* ============ FOOTER ============ */
footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.6);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-tag { color: rgba(255,255,255,0.4); }
.footer-brand > p { margin-top: 16px; font-size: 0.88rem; line-height: 1.7; }

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  color: var(--white); font-size: 0.88rem; font-weight: 600;
  margin-bottom: 20px; letter-spacing: 0.5px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.86rem; color: rgba(255,255,255,0.5); }
.footer-col ul li a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 16px;
  font-size: 0.82rem;
}

@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============ WHATSAPP FAB ============ */
.whatsapp-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 60px; height: 60px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: pulse-wa 2s infinite;
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.whatsapp-fab svg { width: 32px; height: 32px; fill: white; }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6); }
}

/* ============ BACK TO TOP ============ */
.back-to-top {
  position: fixed; bottom: 100px; right: 28px; z-index: 998;
  width: 44px; height: 44px;
  background: var(--navy); color: white;
  border: none; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: var(--transition);
  font-size: 1.1rem;
}
.back-to-top.show { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--orange); }

/* ============ SCROLL ANIMATIONS ============ */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============ BLOG STYLES ============ */
.blog-card { display: flex; flex-direction: column; }
.blog-card .card-img { height: 200px; font-size: 2rem; }
.blog-card .card-body { flex: 1; display: flex; flex-direction: column; }
.blog-card .tag { margin-bottom: 12px; }
.blog-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.blog-card h3 a { color: var(--navy); }
.blog-card h3 a:hover { color: var(--orange); }
.blog-card p { font-size: 0.88rem; line-height: 1.7; flex: 1; }
.blog-meta {
  display: flex; align-items: center; gap: 16px;
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--gray-200);
  font-size: 0.8rem; color: var(--gray-500);
}

/* Blog post single */
.blog-content { padding: 60px 0; }
.blog-content article { max-width: 760px; margin: 0 auto; }
.blog-content article h2 { font-size: 1.6rem; margin: 40px 0 16px; }
.blog-content article h3 { font-size: 1.3rem; margin: 32px 0 12px; }
.blog-content article p { font-size: 1.02rem; line-height: 1.9; margin-bottom: 20px; }
.blog-content article ul, .blog-content article ol {
  margin: 16px 0 20px 24px; color: var(--gray-700);
}
.blog-content article li { margin-bottom: 8px; line-height: 1.7; }
.blog-content article blockquote {
  border-left: 4px solid var(--orange);
  padding: 20px 24px; margin: 24px 0;
  background: var(--orange-light); border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic; color: var(--slate);
}
.blog-author {
  display: flex; align-items: center; gap: 16px;
  padding: 24px; background: var(--gray-100);
  border-radius: var(--radius-lg); margin-top: 48px;
}
.blog-author-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy); color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem; flex-shrink: 0;
}
.blog-author-name { font-weight: 600; color: var(--navy); }
.blog-author-role { font-size: 0.85rem; color: var(--gray-500); }

/* Blog sidebar */
.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; }
.blog-sidebar-widget {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 24px; border: 1px solid rgba(0,0,0,0.05);
  margin-bottom: 24px;
}
.blog-sidebar-widget h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; font-weight: 700;
  margin-bottom: 16px; color: var(--navy);
  padding-bottom: 12px; border-bottom: 2px solid var(--orange);
}
.blog-sidebar-widget ul { list-style: none; }
.blog-sidebar-widget ul li { padding: 10px 0; border-bottom: 1px solid var(--gray-100); }
.blog-sidebar-widget ul li:last-child { border-bottom: none; }
.blog-sidebar-widget ul li a { font-size: 0.88rem; color: var(--gray-700); }
.blog-sidebar-widget ul li a:hover { color: var(--orange); }

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

/* ============ PROJECTS ============ */
.project-card .card-img { height: 240px; }
.project-card .card-body h3 { margin-bottom: 8px; }
.project-details {
  display: flex; gap: 20px; flex-wrap: wrap;
  margin-top: 12px;
}
.project-detail {
  font-size: 0.82rem; color: var(--gray-500);
  display: flex; align-items: center; gap: 6px;
}

/* Project filter tabs */
.filter-tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center; margin: 32px 0 40px;
}
.filter-tab {
  padding: 8px 20px; border-radius: 40px;
  font-size: 0.85rem; font-weight: 600;
  border: 1px solid var(--gray-300);
  background: var(--white); color: var(--gray-700);
  cursor: pointer; transition: var(--transition);
  font-family: 'DM Sans', sans-serif;
}
.filter-tab:hover, .filter-tab.active {
  background: var(--orange); color: var(--white);
  border-color: var(--orange);
}

/* ============ CONTACT PAGE ============ */
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px; color: var(--white);
}
.contact-info-card h3 { color: var(--white); margin-bottom: 8px; }
.contact-info-card > p { color: rgba(255,255,255,0.6); margin-bottom: 32px; }

.contact-item {
  display: flex; gap: 16px;
  margin-bottom: 24px; align-items: flex-start;
}
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.1rem;
}
.contact-label {
  font-size: 0.76rem; color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 1px;
}
.contact-value { font-size: 0.95rem; font-weight: 500; margin-top: 2px; }
.contact-value a { color: var(--white); }
.contact-value a:hover { color: var(--orange); }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow-md);
}
.contact-form-card h3 { margin-bottom: 24px; }

/* Map embed */
.map-wrapper {
  border-radius: var(--radius-lg); overflow: hidden;
  height: 360px; margin-top: 48px;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-400); font-size: 1rem;
  border: 1px solid var(--gray-200);
}
.map-wrapper iframe { width: 100%; height: 100%; border: 0; }

/* ============ STATS ROW ============ */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 48px;
}
.stat-box {
  text-align: center; padding: 32px 20px;
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.stat-box .stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; font-weight: 700;
  color: var(--orange); line-height: 1;
}
.stat-box .stat-label {
  font-size: 0.85rem; color: var(--gray-500);
  margin-top: 8px;
}
@media (max-width: 768px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
}

/* ============ TIMELINE ============ */
.timeline { position: relative; padding: 20px 0; }
.timeline::before {
  content: ''; position: absolute;
  left: 24px; top: 0; bottom: 0;
  width: 2px; background: var(--gray-200);
}
.timeline-item {
  position: relative; padding-left: 64px;
  margin-bottom: 36px;
}
.timeline-dot {
  position: absolute; left: 14px; top: 4px;
  width: 22px; height: 22px;
  background: var(--white); border: 3px solid var(--orange);
  border-radius: 50%; z-index: 1;
}
.timeline-item h4 { margin-bottom: 6px; }
.timeline-item p { font-size: 0.92rem; }
.timeline-year {
  font-size: 0.78rem; font-weight: 600;
  color: var(--orange); letter-spacing: 0.5px;
  margin-bottom: 4px;
}

/* ============ INDUSTRY CARDS ============ */
.industry-card {
  text-align: center; padding: 32px 20px;
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.05); transition: var(--transition);
}
.industry-card:hover { border-color: var(--orange); box-shadow: var(--shadow-md); }
.industry-icon { font-size: 2.2rem; margin-bottom: 14px; }
.industry-card h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; font-weight: 600; color: var(--navy);
}

/* ============ COVERAGE CHIPS ============ */
.coverage-chips { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; justify-content: center; }
.coverage-chip {
  background: var(--orange-light); color: var(--orange-dark);
  padding: 10px 24px; border-radius: 40px;
  font-weight: 600; font-size: 0.88rem;
}

/* ============ ABOUT PAGE SPECIFICS ============ */
.team-card {
  text-align: center; padding: 36px 24px;
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--green));
  color: white; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 1.6rem; font-weight: 700;
}
.team-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.team-card .role { font-size: 0.85rem; color: var(--gray-500); }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.value-card {
  padding: 32px; background: var(--white);
  border-radius: var(--radius-lg); text-align: center;
  border: 1px solid rgba(0,0,0,0.05); transition: var(--transition);
}
.value-card:hover { box-shadow: var(--shadow-md); }
.value-icon { font-size: 2rem; margin-bottom: 16px; }
.value-card h4 { margin-bottom: 8px; }
.value-card p { font-size: 0.88rem; }

@media (max-width: 768px) { .values-grid { grid-template-columns: 1fr; } }

/* ============ SOCIAL MEDIA ICONS ============ */
.social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.social-icon {
  width: 38px; height: 38px;
  min-width: 38px; min-height: 38px;
  max-width: 38px; max-height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  overflow: hidden;
  flex-shrink: 0;
}
.social-icon svg {
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  max-width: 18px; max-height: 18px;
  flex-shrink: 0;
}
.social-icon:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.14);
  color: var(--white);
}
.social-icon:hover svg { fill: var(--white); }

/* Platform-specific hover colours */
.social-icon[aria-label="Facebook"]:hover { background: #1877F2; border-color: #1877F2; }
.social-icon[aria-label="Instagram"]:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); border-color: #dc2743; }
.social-icon[aria-label="LinkedIn"]:hover { background: #0A66C2; border-color: #0A66C2; }
.social-icon[aria-label="YouTube"]:hover { background: #FF0000; border-color: #FF0000; }
.social-icon[aria-label="X (Twitter)"]:hover { background: #000000; border-color: #333; }
.social-icon-wa:hover { background: #25D366 !important; border-color: #25D366 !important; }

.social-icon[aria-label="Google Business"]:hover { background: #4285F4; border-color: #4285F4; }
