﻿/* ============================================
   JSCOM SOLUTIONS – MAIN STYLESHEET
   ============================================ */

:root {
  --orange: #E85D04;
  --orange-dark: #C44E02;
  --orange-light: #FFF0E6;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-400: #9CA3AF;
  --gray-600: #6B7280;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --white: #FFFFFF;
  --font-head: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --transition: all 0.22s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
}

/* CONTAINER */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-lg { padding: 14px 30px; font-size: 16px; }
.btn-primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,93,4,0.3); }
.btn-outline { background: transparent; color: var(--orange); border-color: var(--orange); }
.btn-outline:hover { background: var(--orange); color: var(--white); transform: translateY(-1px); }
.btn-whatsapp { background: #25D366; color: var(--white); border-color: #25D366; }
.btn-whatsapp:hover { background: #1EBC5B; border-color: #1EBC5B; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,211,102,0.3); }
.btn-block { width: 100%; justify-content: center; }

/* SECTIONS */
.section { padding: 80px 0; }
.section-alt { background: var(--gray-50); }

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}

.section-eyebrow {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
}

.section-cta { text-align: center; margin-top: 48px; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 90px;   /* increased */
} 


.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 72px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-head);
  font-size: 25px;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.1;
}

.brand-tag {
  font-size: 10px;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-link {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--orange);
  background: var(--orange-light);
}

.header-cta { flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
  gap: 4px;
}

.mobile-nav.open { display: flex; }

.mobile-nav .nav-link {
  padding: 12px 16px;
  font-size: 15px;
}

.mobile-nav .btn {
  margin-top: 12px;
  width: 100%;
  justify-content: center;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  background: var(--gray-900);
  overflow: hidden;
  padding: 100px 0;
  min-height: 580px;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

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

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
}

.hero-orb-1 {
  width: 500px; height: 500px;
  background: var(--orange);
  top: -150px; right: -100px;
}

.hero-orb-2 {
  width: 300px; height: 300px;
  background: #F97316;
  bottom: -100px; left: 10%;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(232, 93, 4, 0.15);
  border: 1px solid rgba(232, 93, 4, 0.3);
  color: #FB923C;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-actions .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

.hero-actions .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

.hero-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-head);
  font-weight: 500;
}

.meta-icon { color: var(--orange); font-weight: 700; }

/* DATA CARD VISUAL */
.hero-visual { display: flex; justify-content: center; }

.data-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 28px;
  backdrop-filter: blur(20px);
  width: 100%;
  max-width: 340px;
  animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.dc-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.dc-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.dc-dot-orange { background: var(--orange); }
.dc-dot-gray { background: rgba(255,255,255,0.3); }

.dc-label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  margin-left: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.dc-rows { display: flex; flex-direction: column; gap: 14px; }

.dc-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dc-bar {
  height: 6px;
  background: linear-gradient(90deg, var(--orange), #FB923C);
  border-radius: 100px;
  transition: width 1s ease;
}

.dc-row span {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-head);
  white-space: nowrap;
}

.dc-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-family: var(--font-head);
  font-size: 12px;
  color: #4ADE80;
  font-weight: 600;
}

/* ============================================
   SERVICES OVERVIEW
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.service-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-card:hover::before { transform: scaleX(1); }

.sc-icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.service-card h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ============================================
   WHY SECTION
   ============================================ */
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-img-block {
  position: relative;
  height: 380px;
}

.why-img-bg {
  width:100%;
  height: 100%;
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 50%, #2D1B09 100%);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
} 

.why-stat-pill {
  position: absolute;
  background: var(--white);
  border-radius: 100px;
  padding: 10px 20px;
  box-shadow: var(--shadow-lg);
  font-family: var(--font-head);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.why-stat-pill strong { color: var(--orange); font-weight: 700; }

.pill-1 { bottom: 40px; left: -20px; }
.pill-2 { top: 40px; right: -20px; }

.why-content { display: flex; flex-direction: column; gap: 20px; }

.why-content h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.25;
}

.why-content p {
  color: var(--gray-600);
  line-height: 1.7;
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--gray-700, #374151);
}

.wl-icon {
  color: var(--orange);
  font-size: 10px;
  margin-top: 5px;
  flex-shrink: 0;
}

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  background: var(--gray-900);
  padding: 64px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.cta-text p { color: rgba(255,255,255,0.6); font-size: 15px; }

.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--gray-900);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 64px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand .brand-name {
  color: var(--white);
  font-size: 18px;
}
.footer-brand .brand-tag { color: var(--orange); }

.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
  line-height: 1.7;
  max-width: 280px;
}

.footer-links h4, .footer-contact h4 {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-links a, .footer-contact a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  margin-bottom: 8px;
  transition: var(--transition);
}

.footer-links a:hover, .footer-contact a:hover { color: var(--orange); }

.footer-contact p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--gray-900) 0%, #1A0A00 100%);
  padding: 72px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: var(--orange);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.12;
}

.page-hero-inner {
  max-width: 700px;
  position: relative;
  z-index: 2;
}

.page-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.page-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

.page-hero .section-eyebrow { margin-bottom: 12px; }

/* ============================================
   SERVICES DETAIL
   ============================================ */
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sd-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.sd-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.sd-icon-wrap {
  font-size: 36px;
  padding: 28px 28px 0;
}

.sd-body {
  padding: 20px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sd-body h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.sd-body p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
  flex: 1;
}

.sd-link {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  transition: var(--transition);
}

.sd-link:hover { color: var(--orange-dark); letter-spacing: 0.3px; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-main {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 72px;
  align-items: center;
}

.about-text h2 {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 20px;
}

.about-text p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-img-wrap {
  width: 100%;
}

.about-img-placeholder {
  background: linear-gradient(135deg, var(--gray-900) 0%, #1A0A00 100%);
  border-radius: 20px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(232,93,4,0.2);
}

.aip-inner {
  text-align: center;
  position: relative;
  z-index: 2;
} 

.approach-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
}

.ac-num {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 800;
  color: var(--orange-light);
  line-height: 1;
  margin-bottom: 16px;
}

.approach-card h3 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.approach-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* LOCAL SECTION */
.local-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.local-content h2 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.local-content p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 12px;
}

.local-address {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 15px;
  color: var(--gray-800);
}

.addr-icon { font-size: 18px; }

.local-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.lp-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lp-item strong {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.lp-item span {
  font-size: 13px;
  color: var(--gray-600);
  font-weight: 500;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-actions-col h2 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.contact-intro {
  font-size: 15px;
  color: var(--gray-600);
  margin-bottom: 28px;
  line-height: 1.65;
}

.contact-action-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 12px;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.contact-action-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

.cac-call:hover { border-color: var(--orange); }
.cac-wa:hover { border-color: #25D366; }

.cac-icon { font-size: 28px; flex-shrink: 0; }

.cac-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.cac-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-400);
  font-family: var(--font-head);
}

.cac-body strong {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
}

.cac-note {
  font-size: 12px;
  color: var(--gray-400);
}

.cac-arrow {
  font-size: 18px;
  color: var(--gray-400);
  flex-shrink: 0;
}

.contact-hours { margin-top: 20px; }

.ch-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  color: #166534;
  border-radius: 100px;
  padding: 10px 18px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
}

/* FORM */
.contact-form-card {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: 16px;
  padding: 40px;
}

.contact-form-card h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.contact-form-card > p {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 28px;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700, #374151);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gray-900);
  background: var(--white);
  transition: var(--transition);
  appearance: none;
}

.form-input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,93,4,0.1);
}

.form-textarea { resize: vertical; min-height: 100px; }

.form-note {
  font-size: 12px;
  color: var(--gray-400);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px 28px;
}

.faq-item h4 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-detail-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
  
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
  .about-main { grid-template-columns: 1fr; }
  
  .local-section { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout {
  display: grid;
  grid-template-columns: 1fr;
}
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .cta-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  .main-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .services-detail-grid { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
  .local-pillars { grid-template-columns: 1fr 1fr; }
  .contact-form-card { padding: 24px; }
  .hero { padding: 70px 0; }
  .section { padding: 56px 0; }
  .hero-meta { gap: 12px; }
}
 .why-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 20px;
}
.about-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 20px;
}
.icon-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.cac-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.wa-icon {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  vertical-align: middle;
}
.btn img {
  display: inline-block;
  vertical-align: middle;
}
.cac-icon {
  font-size: 26px;
}
.icon-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.btn-linkedin {
  background: #0077B5;
  border-color: #0077B5;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 8px;   /* space between icon & text */
}

.btn-linkedin:hover {
  background: #005f8d;
  border-color: #005f8d;
}

.li-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.btn-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn img {
  width: 16px;
  height: 16px;
}

.btn {
  font-size: 15px;
  display: inline-flex;
  align-items: center;
}