/* ===================================
   SHIMOGA LEGAL - Main Stylesheet
   =================================== */

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

/* ===================================
   CSS VARIABLES
   =================================== */
:root {
  --orange:        #F47920;
  --orange-dark:   #D9660E;
  --orange-light:  #FFF0E6;
  --teal:          #1B7B8A;
  --teal-dark:     #145F6B;
  --teal-light:    #E8F4F6;
  --dark:          #1A2332;
  --mid-dark:      #2C3E50;
  --gray:          #6B7280;
  --light-gray:    #F5F7FA;
  --border:        #E0E6ED;
  --white:         #FFFFFF;

  --shadow-sm:  0 2px 8px  rgba(26,35,50,0.07);
  --shadow-md:  0 4px 24px rgba(26,35,50,0.11);
  --shadow-lg:  0 8px 40px rgba(26,35,50,0.16);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;

  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

h1 { font-size: clamp(2rem,   5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p  { font-size: 0.97rem; color: var(--gray); line-height: 1.8; }

a  { text-decoration: none; color: inherit; transition: var(--transition); }

img { max-width: 100%; display: block; }
ul  { list-style: none; }

/* ===================================
   LAYOUT HELPERS
   =================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section      { padding: 88px 0; }
.section-sm   { padding: 56px 0; }
.section-lg   { padding: 110px 0; }
.bg-light     { background: var(--light-gray); }
.bg-dark      { background: var(--dark); }
.bg-white     { background: var(--white); }

/* ===================================
   SECTION HEADER
   =================================== */
.section-header { text-align: center; margin-bottom: 60px; }

.tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.tag-orange { color: var(--orange); background: var(--orange-light); }
.tag-teal   { color: var(--teal);   background: var(--teal-light);   }

.section-header h2 { margin-bottom: 14px; }
.section-header p  { max-width: 580px; margin: 0 auto; font-size: 1rem; }

.divider {
  width: 56px; height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--teal));
  border-radius: 2px;
  margin: 14px auto 0;
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(244,121,32,0.32);
}

.btn-secondary {
  background: var(--teal);
  color: var(--white);
}
.btn-secondary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(27,123,138,0.32);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

.btn-outline-orange {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.btn-outline-orange:hover {
  background: var(--orange);
  color: var(--white);
}

/* ===================================
   NAVBAR
   =================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo */
.navbar-logo { display: flex; align-items: center; gap: 10px; }
.navbar-logo img { height: 44px; width: auto; }

.logo-wordmark { line-height: 1; }
.logo-wordmark .name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.logo-wordmark .name .o  { color: var(--orange); }
.logo-wordmark .name .t  { color: var(--teal); }
.logo-wordmark .sub {
  display: block;
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-top: 2px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--mid-dark);
  letter-spacing: 0.3px;
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active        { color: var(--orange); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Navbar right */
.navbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.navbar-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal);
}
.navbar-phone i { font-size: 0.85rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile menu */
.mobile-menu {
  display: flex;
  flex-direction: column;
  background: var(--white);
  padding: 0 24px;
  border-top: 1px solid var(--border);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1), padding 0.38s ease;
}
.mobile-menu.open {
  max-height: 420px;
  padding: 16px 24px 24px;
}
.mobile-menu a {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--mid-dark);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--orange); }

/* ===================================
   PAGE HERO (inner pages)
   =================================== */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--mid-dark) 55%, var(--teal-dark) 100%);
  padding: 148px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(27,123,138,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,123,138,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1  { color: var(--white); margin-bottom: 14px; }
.page-hero > .container > p {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 0.83rem;
}
.breadcrumb a     { color: var(--orange); font-weight: 500; }
.breadcrumb span  { color: rgba(255,255,255,0.45); }
.breadcrumb .sep  { color: rgba(255,255,255,0.3); }

/* ===================================
   HERO (homepage)
   =================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark) 0%, #233040 45%, var(--teal-dark) 100%);
  padding-top: 72px;
}

/* Grid overlay */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(27,123,138,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,123,138,0.07) 1px, transparent 1px);
  background-size: 44px 44px;
}

/* Glow blobs */
.hero-blob-1 {
  position: absolute;
  top: -120px; right: -120px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,121,32,0.10) 0%, transparent 65%);
  pointer-events: none;
}
.hero-blob-2 {
  position: absolute;
  bottom: -80px; left: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27,123,138,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero .container { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244,121,32,0.14);
  border: 1px solid rgba(244,121,32,0.30);
  color: var(--orange);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-badge i { font-size: 0.8rem; }

.hero h1 {
  color: var(--white);
  max-width: 780px;
  margin-bottom: 22px;
}
.hero h1 .accent-orange { color: var(--orange); }
.hero h1 .accent-teal   { color: #5ECFDE; }

.hero-sub {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.10);
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.hero-stat .num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.hero-stat .lbl {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.58);
  margin-top: 4px;
  line-height: 1.4;
}

/* ===================================
   STATS BAR
   =================================== */
.stats-bar { background: var(--orange); padding: 22px 0; }
.stats-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
.sbar-item {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}
.sbar-icon {
  width: 46px; height: 46px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.sbar-text .num {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.sbar-text .lbl {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  margin-top: 2px;
}

/* ===================================
   ABOUT PREVIEW
   =================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Visual card */
.about-visual-card {
  background: linear-gradient(145deg, var(--dark) 0%, var(--teal-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.about-visual-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(244,121,32,0.10);
}
.about-visual-card::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(27,123,138,0.12);
}

.about-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
  position: relative; z-index: 1;
}
.about-visual-card h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 14px;
  position: relative; z-index: 1;
}
.about-visual-card p {
  color: rgba(255,255,255,0.72);
  font-size: 0.88rem;
  position: relative; z-index: 1;
}

.about-card-stats {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.13);
  display: flex;
  gap: 32px;
  position: relative; z-index: 1;
}
.about-card-stat .n {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.about-card-stat .l {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.60);
  margin-top: 3px;
}

/* About content */
.about-content h2 { margin-bottom: 18px; }
.about-content .lead {
  font-size: 1.02rem;
  color: var(--mid-dark);
  font-weight: 500;
  line-height: 1.75;
  margin-bottom: 18px;
}
.about-content p { margin-bottom: 14px; }

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 0 32px;
}
.hl-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.hl-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.hl-icon.orange { background: var(--orange-light); color: var(--orange); }
.hl-icon.teal   { background: var(--teal-light);   color: var(--teal);   }
.hl-text h5 {
  font-size: 0.83rem;
  font-family: var(--font-head);
  color: var(--dark);
  margin-bottom: 2px;
}
.hl-text p {
  font-size: 0.77rem;
  line-height: 1.4;
  margin: 0;
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 34px 26px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::after { transform: scaleX(1); }

.sc-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.sc-icon.orange { background: var(--orange-light); color: var(--orange); }
.sc-icon.teal   { background: var(--teal-light);   color: var(--teal);   }

.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--dark);
}
.service-card p  {
  font-size: 0.86rem;
  line-height: 1.7;
  margin-bottom: 18px;
}
.sc-count {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--teal);
  background: var(--teal-light);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.sc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--orange);
}
.sc-link:hover { gap: 10px; }

/* ===================================
   WHY CHOOSE US
   =================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.why-card {
  padding: 28px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--white);
  transition: var(--transition);
}
.why-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.why-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  margin-bottom: 14px;
  transition: var(--transition);
}
.why-card:hover .why-num { color: var(--orange-light); }

.why-icon {
  width: 46px; height: 46px;
  border-radius: var(--radius-sm);
  background: var(--orange-light);
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 14px;
}
.why-card h4 { font-size: 0.97rem; margin-bottom: 10px; }
.why-card p  { font-size: 0.83rem; line-height: 1.72; }

/* ===================================
   CTA BANNER
   =================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--dark) 100%);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(244,121,32,0.08);
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(27,123,138,0.10);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p  {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 36px;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 { margin-bottom: 8px; }
.contact-info > p { margin-bottom: 32px; font-size: 0.94rem; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}
.cd-icon {
  width: 46px; height: 46px;
  background: var(--white);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.cd-text h5 {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 4px;
}
.cd-text p,
.cd-text a {
  font-size: 0.93rem;
  color: var(--dark);
  font-weight: 500;
  line-height: 1.5;
}
.cd-text a:hover { color: var(--orange); }

.office-cards { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.office-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  border-left: 4px solid var(--teal);
  box-shadow: var(--shadow-sm);
}
.office-card.alt { border-left-color: var(--orange); }
.office-card h5 {
  font-family: var(--font-head);
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 6px;
}
.office-card.alt h5 { color: var(--orange); }
.office-card p    { font-size: 0.83rem; line-height: 1.65; color: var(--mid-dark); }
.office-card small {
  display: block;
  font-size: 0.73rem;
  color: var(--gray);
  margin-top: 5px;
  font-style: italic;
}

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.contact-form h3 { margin-bottom: 24px; font-size: 1.25rem; }

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--mid-dark);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--light-gray);
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(27,123,138,0.10);
}
.form-group textarea { resize: vertical; min-height: 116px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.btn-full { width: 100%; justify-content: center; padding: 15px; font-size: 0.94rem; }

/* ===================================
   SOCIAL LINKS
   =================================== */
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--orange); color: var(--white); }
.social-link.light {
  background: var(--light-gray);
  color: var(--gray);
}
.social-link.light:hover { background: var(--orange); color: var(--white); }

/* ===================================
   FOOTER
   =================================== */
.footer {
  background: var(--dark);
  padding: 68px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 52px;
}

/* Brand col */
.footer-brand .f-logo {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
}
.footer-brand .f-logo .o { color: var(--orange); }
.footer-brand .f-logo .t { color: #5ECFDE; }
.footer-brand .f-logo-sub {
  display: block;
  font-family: var(--font-head);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 2px;
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  margin-bottom: 22px;
}

.footer-heading {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
}
.footer-links a:hover { color: var(--orange); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-contact-item i {
  color: var(--teal);
  font-size: 0.88rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact-item span,
.footer-contact-item a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.footer-contact-item a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom p, .footer-bottom a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a:hover { color: var(--orange); }

/* ===================================
   SERVICES PAGE — ACCORDION
   =================================== */
.services-accordion { display: flex; flex-direction: column; gap: 20px; }

.acc-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.acc-item.open { box-shadow: var(--shadow-md); border-color: transparent; }

.acc-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
  cursor: pointer;
  background: var(--white);
  transition: var(--transition);
  user-select: none;
}
.acc-header:hover { background: var(--light-gray); }
.acc-item.open .acc-header { background: var(--white); }

.acc-icon {
  width: 58px; height: 58px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.acc-icon.orange { background: var(--orange-light); color: var(--orange); }
.acc-icon.teal   { background: var(--teal-light);   color: var(--teal);   }

.acc-meta { flex: 1; }
.acc-meta h3 { font-size: 1.12rem; margin-bottom: 3px; }
.acc-meta p  { font-size: 0.83rem; color: var(--gray); }

.acc-toggle {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--light-gray);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  font-size: 0.95rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.acc-item.open .acc-toggle {
  background: var(--teal);
  color: var(--white);
  transform: rotate(180deg);
}

.acc-body {
  display: none;
  padding: 0 32px 32px;
  border-top: 1px solid var(--border);
}
.acc-item.open .acc-body { display: block; }

.sub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.sub-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius-sm);
  background: var(--light-gray);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.sub-item:hover {
  border-color: var(--teal);
  background: var(--teal-light);
}
.sub-bullet {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 6px;
}
.sub-item h5 {
  font-size: 0.86rem;
  font-family: var(--font-head);
  color: var(--dark);
  margin-bottom: 4px;
}
.sub-item p { font-size: 0.78rem; line-height: 1.55; }

/* Nested removal groups */
.nested-group { margin-top: 24px; }
.nested-title {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  padding-bottom: 7px;
  border-bottom: 2px solid var(--teal-light);
}

/* ===================================
   ABOUT PAGE
   =================================== */
.timeline {
  position: relative;
  padding-left: 44px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 9px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--orange), var(--teal));
}
.timeline-item { position: relative; margin-bottom: 40px; }
.tl-dot {
  position: absolute;
  left: -39px; top: 5px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--orange);
}
.tl-year {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 1px;
  margin-bottom: 5px;
}
.timeline-item h4 { margin-bottom: 7px; }
.timeline-item p  { font-size: 0.87rem; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.value-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.vc-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.vc-icon.orange { background: var(--orange-light); color: var(--orange); }
.vc-icon.teal   { background: var(--teal-light);   color: var(--teal);   }
.value-card h4  { margin-bottom: 10px; }

/* Mission / Vision */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.mv-card {
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.mv-card.mission {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
}
.mv-card.vision  {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
}
.mv-card i {
  font-size: 2.5rem;
  color: rgba(255,255,255,0.25);
  margin-bottom: 18px;
  display: block;
}
.mv-card h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.mv-card p {
  color: rgba(255,255,255,0.82);
  font-size: 0.93rem;
  line-height: 1.8;
}

/* ===================================
   WHATSAPP FLOAT BUTTON
   =================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
  .about-grid    { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid      { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 36px; }
  .values-grid   { grid-template-columns: repeat(2, 1fr); }
  .mv-grid       { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section    { padding: 60px 0; }
  .section-lg { padding: 72px 0; }

  .nav-links, .navbar-phone { display: none; }
  .hamburger { display: flex; }

  .hero-stats { gap: 24px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }

  .stats-bar-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

  .services-grid    { grid-template-columns: 1fr; }
  .why-grid         { grid-template-columns: 1fr; }
  .contact-grid     { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid      { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom    { flex-direction: column; text-align: center; }
  .about-highlights { grid-template-columns: 1fr; }
  .sub-grid         { grid-template-columns: 1fr; }
  .form-row         { grid-template-columns: 1fr; }
  .values-grid      { grid-template-columns: 1fr; }
  .cta-actions      { flex-direction: column; align-items: center; }

  .acc-header { padding: 20px 22px; }
  .acc-body   { padding: 0 22px 24px; }

  .contact-form { padding: 28px 22px; }
  .page-hero    { padding: 130px 0 64px; }
}

@media (max-width: 480px) {
  .stats-bar-inner { grid-template-columns: 1fr; }
  .hero-stats      { flex-direction: column; gap: 20px; }
  .acc-icon        { width: 44px; height: 44px; font-size: 1.1rem; }
}

/* ===================================
   HERO 2-COLUMN LAYOUT
   =================================== */
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  width: 100%;
}
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-svg {
  width: 100%;
  max-width: 500px;
  height: auto;
  filter: drop-shadow(0 0 48px rgba(27,123,138,0.25));
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 400px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .hero-visual { display: none; }
}

/* ===================================
   SECTION VISUAL BACKGROUNDS
   =================================== */
.bg-grid {
  position: relative;
  overflow: hidden;
}
.bg-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(27,123,138,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,123,138,0.045) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  z-index: 0;
}
.bg-grid > .container { position: relative; z-index: 1; }

/* ===================================
   SERVICES VISUAL ROW
   =================================== */
.services-visual-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.svr-card {
  background: linear-gradient(135deg, var(--dark) 0%, #1e3a4a 100%);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  border: 1px solid rgba(27,123,138,0.25);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.svr-card:hover { transform: translateY(-4px); border-color: var(--teal); }
.svr-card::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(244,121,32,0.08);
}
.svr-card i {
  font-size: 2rem;
  color: var(--orange);
  display: block;
  margin-bottom: 10px;
}
.svr-card p {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.5px;
  margin: 0;
}
.svr-card:hover i { color: #5ECFDE; }

/* ===================================
   SECTION ILLUSTRATION STRIP
   =================================== */
.illustration-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 40px 0 0;
  flex-wrap: wrap;
}
.illus-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.illus-icon-wrap {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  position: relative;
}
.illus-icon-wrap.orange { background: var(--orange-light); color: var(--orange); }
.illus-icon-wrap.teal   { background: var(--teal-light);   color: var(--teal);   }
.illus-icon-wrap::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px dashed;
  opacity: 0.3;
  animation: spin-slow 12s linear infinite;
}
.illus-icon-wrap.orange::after { border-color: var(--orange); }
.illus-icon-wrap.teal::after   { border-color: var(--teal); }
.illus-item span {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 0.5px;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }

/* ===================================
   ANIMATED PROCESS FLOW
   =================================== */
.process-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 48px 0 0;
  flex-wrap: wrap;
}
.pf-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  flex: 1;
  min-width: 120px;
}
.pf-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
}
.pf-num.orange { background: var(--orange); color: var(--white); box-shadow: 0 4px 16px rgba(244,121,32,0.35); }
.pf-num.teal   { background: var(--teal);   color: var(--white); box-shadow: 0 4px 16px rgba(27,123,138,0.35); }
.pf-num::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid;
  opacity: 0.3;
  animation: pulse-border 2s ease-in-out infinite;
}
.pf-num.orange::after { border-color: var(--orange); }
.pf-num.teal::after   { border-color: var(--teal); }
@keyframes pulse-border {
  0%,100% { transform: scale(1); opacity: 0.3; }
  50%      { transform: scale(1.15); opacity: 0.6; }
}
.pf-step h5 {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.pf-step p { font-size: 0.76rem; line-height: 1.5; margin: 0; }

.pf-arrow {
  color: var(--border);
  font-size: 1.2rem;
  flex-shrink: 0;
  animation: arrow-pulse 1.8s ease-in-out infinite;
}
@keyframes arrow-pulse {
  0%,100% { color: var(--border); transform: translateX(0); }
  50%      { color: var(--orange); transform: translateX(4px); }
}

/* ===================================
   ANIMATED METRIC CARDS
   =================================== */
.metric-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.metric-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.metric-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--teal));
  transform: scaleX(0);
  transition: var(--transition);
}
.metric-card:hover::before { transform: scaleX(1); }
.metric-card:hover { box-shadow: var(--shadow-md); }
.metric-card .m-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
  display: block;
}
.metric-card .m-num {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 4px;
}
.metric-card .m-lbl {
  font-size: 0.78rem;
  color: var(--gray);
  font-weight: 500;
}

/* ===================================
   FLOATING TECH BADGES (hero area)
   =================================== */
.tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(27,123,138,0.15);
  border: 1px solid rgba(27,123,138,0.3);
  color: #5ECFDE;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 100px;
  margin: 4px;
}

/* ===================================
   ICON FLOAT ANIMATION
   =================================== */
@keyframes icon-float {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-6px) rotate(4deg); }
}
.service-card:hover .sc-icon { animation: icon-float 1.5s ease-in-out infinite; }
.why-card:hover .why-icon    { animation: icon-float 1.5s ease-in-out infinite; }

/* ===================================
   ABOUT PAGE VISUAL GRID
   =================================== */
.about-visual-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 16px;
  margin-top: 28px;
}
.avg-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.avg-item i {
  font-size: 1.4rem;
  color: var(--orange);
  flex-shrink: 0;
}
.avg-item p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
}

/* ===================================
   VISUAL DIVIDER WITH ICON
   =================================== */
.icon-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 52px 0;
}
.icon-divider::before,
.icon-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.icon-divider i {
  font-size: 1.2rem;
  color: var(--orange);
  opacity: 0.6;
}

/* ===================================
   OFFICES GRID
   =================================== */
.offices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 768px) { .offices-grid { grid-template-columns: 1fr; } }

/* ===================================
   QUICK CONTACT CARDS GRID
   =================================== */
.quick-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.quick-cards-grid a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--white);
  transition: var(--transition);
  text-decoration: none;
}
.quick-cards-grid a:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.quick-cards-grid .qc-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.quick-cards-grid h4 { font-size: 0.9rem; margin-bottom: 6px; color: var(--dark); }
.quick-cards-grid p  { font-size: 0.83rem; color: var(--gray); margin: 0; }
@media (max-width: 768px) { .quick-cards-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 400px) { .quick-cards-grid { grid-template-columns: 1fr 1fr; } }

/* ===================================
   CONTACT PAGE VISUAL BADGES
   =================================== */
.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.cb-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 16px;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--mid-dark);
  box-shadow: var(--shadow-sm);
}
.cb-badge i { color: var(--teal); font-size: 0.85rem; }

/* ===================================
   SCROLLING MARQUEE
   =================================== */
.marquee-wrap {
  overflow: hidden;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  flex-shrink: 0;
}
.marquee-item i { color: var(--orange); font-size: 0.7rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===================================
   SERVICE ICON SVG BG
   =================================== */
.sc-svg-bg {
  position: absolute;
  bottom: -20px;
  right: -20px;
  opacity: 0.04;
  font-size: 7rem;
  line-height: 1;
  pointer-events: none;
  transition: var(--transition);
}
.service-card:hover .sc-svg-bg { opacity: 0.07; transform: scale(1.1) rotate(5deg); }

@media (max-width: 768px) {
  .services-visual-row { grid-template-columns: repeat(2,1fr); }
  .metric-row { grid-template-columns: repeat(2,1fr); }
  .process-flow { gap: 8px; flex-wrap: wrap; }
  .pf-arrow { display: none; }
  .pf-step { min-width: 140px; flex: none; }
  .illustration-strip { gap: 24px; }
  .illus-icon-wrap { width: 58px; height: 58px; font-size: 1.3rem; }

  /* Contact quick cards: 2 cols on mobile */
  .contact-grid > div:first-child [style*="repeat(4,1fr)"],
  [style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: repeat(2,1fr) !important;
  }

  /* About offices: 1 col on mobile */
  [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* Mission/Vision 1 col */
  .mv-grid { grid-template-columns: 1fr; }

  /* Navbar phone hide on small */
  .navbar-phone { display: none; }

  /* Hero stats tighter */
  .hero-stats { gap: 20px; }

  /* Marquee smaller text */
  .marquee-item { font-size: 0.68rem; }

  /* Process flow 2-col grid on mobile */
  .process-flow {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Metric row */
  .metric-row { gap: 12px; }
  .metric-card { padding: 18px 14px; }

  /* Footer bottom */
  .footer-bottom { text-align: center; }

  /* Page hero padding */
  .page-hero { padding: 120px 0 56px; }

  /* Contact badges wrap */
  .contact-badges { gap: 8px; }
  .cb-badge { font-size: 0.7rem; padding: 6px 12px; }

  /* Acc header mobile */
  .acc-header { padding: 18px 20px; gap: 14px; }
  .acc-body { padding: 0 20px 22px; }
  .acc-meta h3 { font-size: 0.98rem; }
  .acc-meta p { font-size: 0.76rem; }
}

/* Footer bottom — stack on mobile */
@media (max-width: 768px) {
  .footer-bottom .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-bottom .container p { text-align: center; }
}

@media (max-width: 480px) {
  .services-visual-row { grid-template-columns: 1fr; }
  .metric-row { grid-template-columns: 1fr 1fr; }
  .process-flow { grid-template-columns: 1fr 1fr; gap: 16px; }
  .illustration-strip { gap: 16px; }
  .illus-item span { font-size: 0.68rem; }

  /* Contact cards single col */
  [style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: 1fr 1fr !important;
  }

  /* Section padding */
  .section { padding: 48px 0; }
  .container { padding: 0 16px; }

  /* Hero badge smaller */
  .hero-badge { font-size: 0.65rem; padding: 6px 12px; }

  /* Tech badges wrapping */
  .tech-badge { font-size: 0.63rem; padding: 4px 10px; }

  /* Btn full width on very small */
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Sbar 1 col */
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }

  /* Footer */
  .footer { padding: 48px 0 0; }
  .footer-grid { gap: 24px; }

  /* About visual grid: 1 col on very small */
  .about-visual-grid { grid-template-columns: 1fr; }

  /* Quick cards: 1 col on very small */
  .quick-cards-grid { grid-template-columns: 1fr 1fr; }
}
