/*
 * Sri Sarveswara Infra & Logistics LLP (SSIL)
 * Brand: Deep Blue #0C2344 + Orange #F47C1E
 * Website Stylesheet v2.0
 */

/* Barlow — closest match to SSIL logotype (wide, bold geometric sans-serif) */
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;600;700;800;900&family=Barlow+Semi+Condensed:wght@600;700;800&display=swap');

/* ============================================================
   0. ROOT VARIABLES — SSIL BRAND
   ============================================================ */
:root {
  --navy:        #0C2344;   /* Deep brand blue */
  --navy-mid:    #0F2D58;
  --navy-light:  #1A5298;
  --gold:        #F47C1E;   /* Brand orange */
  --gold-light:  #F9A55A;
  --gold-dark:   #D06A10;
  --white:       #FFFFFF;
  --off-white:   #F8F6F2;
  --cream:       #F0EDE8;
  --grey-100:    #F5F5F5;
  --grey-200:    #E5E5E5;
  --grey-400:    #9A9A9A;
  --grey-700:    #4A4A4A;
  --text:        #1C1C1C;
  --text-light:  #5E6472;

  --font-h: 'Playfair Display', Georgia, serif;
  --font-b: 'Inter', system-ui, -apple-system, sans-serif;

  --nav-h:  80px;
  --pad:    100px;
  --max-w:  1280px;

  --ease:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-io:cubic-bezier(0.645, 0.045, 0.355, 1);
  --tr:     0.35s var(--ease);

  --sh-sm:  0 2px 8px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  --sh-md:  0 8px 32px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.05);
  --sh-lg:  0 20px 60px rgba(0,0,0,0.13), 0 8px 24px rgba(0,0,0,0.08);
  --sh-gold:0 8px 32px rgba(244,124,30,0.32);
}

/* ============================================================
   1. RESET & BASE
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-b);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--tr); }
ul { list-style: none; }
button { font-family: var(--font-b); }

/* ============================================================
   2. LAYOUT UTILITIES
   ============================================================ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 48px; }
.section { padding: var(--pad) 0; }

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

/* Section Tag */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-tag::before,
.section-tag::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.65;
}
.section-tag-light { color: rgba(244,124,30,0.9); }
.section-tag-light::before,
.section-tag-light::after { background: rgba(244,124,30,0.55); }

.section-title {
  font-family: var(--font-h);
  font-size: clamp(1.875rem, 3.5vw, 2.875rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 18px;
}
.section-title.light { color: var(--white); }

.section-desc { font-size: 1.0625rem; color: var(--text-light); line-height: 1.75; }
.section-desc.light { color: rgba(255,255,255,0.65); }

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

/* Helpers */
.gold-text  { color: var(--gold); }
.white-text { color: var(--white); }
.navy-text  { color: var(--navy); }

/* ============================================================
   3. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--tr);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity 0.25s;
}
.btn:hover::after { opacity: 1; }

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  font-weight: 700;
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  box-shadow: var(--sh-gold);
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--white); }
.btn-sm { padding: 10px 22px; font-size: 0.84rem; }

/* ============================================================
   4. NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.navbar.is-transparent { background: transparent; }
.navbar.is-dark {
  background: var(--off-white);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 40px rgba(0,0,0,0.28);
}
.navbar.is-white {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  line-height: 1;
  flex-shrink: 0;
  gap: 12px;
  text-decoration: none;
}
.nav-logo {
  background: #ffffff00;
  border-radius: 10px;
  padding: 0px 0px;
  box-shadow: 0 2px 10px rgba(0,0,0,0);
}
.logo-img {
  height: 150px;
  width: auto;
  display: block;
  flex-shrink: 0;
  transition: opacity 0.3s, transform 0.3s;
  filter: none;
}
.logo-img:hover { opacity: 0.88; transform: scale(1.03); }
.logo-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.logo-main {
  font-family: 'Montserrat', var(--font-b);
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.3s;
  line-height: 1;
}
.logo-sub {
  font-family: 'Montserrat', var(--font-b);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  line-height: 1;
  margin-top: 4px;
}
.is-white .logo-main { color: var(--navy); }

/* Footer logo — white pill badge so brand colours stay visible on dark footer */
.footer-brand .nav-logo {
  background: #ffffff;
  border-radius: 10px;
  padding: 6px 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
  display: inline-flex;
}
.footer-brand .logo-img {
  height: 52px;
  width: auto;
  filter: none;
}
.footer-brand .logo-main { color: var(--white); }

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  padding: 8px 14px;
  border-radius: 4px;
  position: relative;
  letter-spacing: 0.02em;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px; right: 14px;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
  transform-origin: center;
}
.nav-link:hover,
.nav-link.active { color: var(--white); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.is-white .nav-link { color: var(--grey-700); }
.is-white .nav-link:hover,
.is-white .nav-link.active { color: var(--navy); }
.is-dark .nav-link { color: var(--navy-light); }
.is-dark .nav-link:hover,is-dark .nav-link:active {color: var(--navy);}
.nav-cta { margin-left: 12px; 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(--white);
  transition: var(--tr);
  border-radius: 2px;
}
.is-white .hamburger span { background: var(--navy); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   5. HERO — HOME
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(12,35,68,0.5) 0%, rgba(26,82,152,0.3) 40%, rgba(12,35,68,0.1) 100%),
    url('../images/ssil_back.png') center/cover no-repeat;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 20% 60%, rgba(244,124,30,0.09) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--nav-h) + 60px) 48px 80px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244,124,30,0.12);
  border: 1px solid rgba(244,124,30,0.38);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeInDown 0.9s var(--ease) both;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-h);
  font-size: clamp(2.5rem, 6vw, 5.25rem);
  color: var(--white);
  font-weight: 800;
  line-height: 1.08;
  max-width: 820px;
  margin-bottom: 26px;
  animation: fadeInUp 0.9s 0.18s var(--ease) both;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.175rem);
  color: rgba(255,255,255,0.72);
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: 44px;
  animation: fadeInUp 0.9s 0.32s var(--ease) both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 72px;
  animation: fadeInUp 0.9s 0.46s var(--ease) both;
}

.hero-stats {
  display: flex;
  gap: 52px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeInUp 0.9s 0.6s var(--ease) both;
}
.hero-stat { display: flex; flex-direction: column; }
.stat-num-wrap {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-family: var(--font-h);
  font-size: 2.625rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-suffix { font-size: 1.75rem; }
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 8px;
  font-weight: 500;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  right: 52px; bottom: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.hero-scroll span {
  font-size: 0.625rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 72px;
  background: linear-gradient(to bottom, rgba(244,124,30,0.8), transparent);
  animation: scrollBob 2.2s ease-in-out infinite;
}

/* Ribbon strip below hero */
.hero-ribbon {
  background: var(--gold);
  padding: 18px 0;
}
.hero-ribbon-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.ribbon-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.ribbon-item i { font-size: 1rem; }
.ribbon-divider { width: 1px; height: 22px; background: rgba(255,255,255,0.35); }

/* ============================================================
   6. PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 88px) 0 88px;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(12,35,68,0.96) 0%, rgba(15,45,88,0.93) 100%),
    url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1920&q=80') center/cover no-repeat;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.page-hero h1 {
  font-family: var(--font-h);
  font-size: clamp(2.125rem, 5vw, 3.875rem);
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.15;
}
.page-hero p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.78;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.42);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { color: var(--gold-light); }

/* ============================================================
   7. SERVICES OVERVIEW CARDS
   ============================================================ */
.services-overview { background: var(--off-white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  padding: 48px 38px 40px;
  border-radius: 8px;
  box-shadow: var(--sh-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  cursor: pointer;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--navy-light), var(--gold));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s var(--ease);
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--sh-lg); }
.service-card:hover::after { transform: scaleX(1); }

.service-card.featured {
  background: var(--navy);
}
.service-card.featured::after { transform: scaleX(1); }
.service-card.featured .svc-num { color: rgba(244,124,30,0.15); }
.service-card.featured h3,
.service-card.featured .svc-icon i { color: var(--white); }
.service-card.featured p { color: rgba(255,255,255,0.66); }
.service-card.featured .svc-link { color: var(--gold); }
.service-card.featured:hover { transform: translateY(-10px); }

.svc-num {
  position: absolute;
  top: 20px; right: 28px;
  font-family: var(--font-h);
  font-size: 4.5rem;
  font-weight: 800;
  color: rgba(12,35,68,0.05);
  line-height: 1;
  user-select: none;
}
.svc-icon {
  width: 60px; height: 60px;
  background: rgba(244,124,30,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
}
.svc-icon i { font-size: 1.4rem; color: var(--gold); }
.service-card h3 {
  font-family: var(--font-h);
  font-size: 1.3125rem;
  color: var(--navy);
  margin-bottom: 14px;
}
.service-card p { color: var(--text-light); font-size: 0.9375rem; line-height: 1.72; }
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 24px;
  letter-spacing: 0.02em;
}
.svc-link i { font-size: 0.75rem; transition: transform 0.3s; }
.svc-link:hover i { transform: translateX(4px); }

/* ============================================================
   8. ABOUT TEASER
   ============================================================ */
.about-teaser { background: var(--white); }
.about-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.img-wrap { position: relative; }
.img-wrap img {
  width: 100%; height: 540px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--sh-lg);
}
.img-badge {
  position: absolute;
  bottom: -28px; right: -28px;
  background: var(--gold);
  color: var(--white);
  padding: 28px 32px;
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--sh-md);
}
.img-badge-num {
  display: block;
  font-family: var(--font-h);
  font-size: 2.625rem;
  font-weight: 800;
  line-height: 1;
}
.img-badge-text { font-size: 0.8rem; font-weight: 600; line-height: 1.45; opacity: 0.9; }
.about-content { padding-right: 24px; }
.about-content .section-tag { padding: 0; text-align: left; }
.about-content .section-tag::before { display: none; }
.about-content .section-title { text-align: left; margin-top: 10px; }
.about-content p { color: var(--text-light); line-height: 1.78; margin-bottom: 16px; }

.about-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0 36px;
}
.about-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
}
.about-check i { color: var(--gold); font-size: 1rem; flex-shrink: 0; }

/* Edge tag for new company */
.edge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244,124,30,0.1);
  border: 1px solid rgba(244,124,30,0.3);
  color: var(--gold-dark);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
  margin-bottom: 24px;
}

/* ============================================================
   9. FEATURED PROJECTS (HOME)
   ============================================================ */
.projects-teaser { background: var(--cream); }
.feat-projects-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  grid-template-rows: auto auto;
  gap: 22px;
}
.feat-project-card { border-radius: 8px; overflow: hidden; position: relative; }
.feat-project-card.span-2 { grid-row: span 2; }

.feat-proj-img {
  position: relative;
  width: 100%; height: 100%;
  min-height: 256px;
}
.feat-project-card.span-2 .feat-proj-img { min-height: 548px; }
.feat-proj-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}
.feat-project-card:hover .feat-proj-img img { transform: scale(1.05); }

.feat-proj-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,35,68,0.92) 0%, rgba(12,35,68,0.25) 55%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 30px;
}
.feat-proj-info { color: var(--white); }
.proj-cat-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(244,124,30,0.15);
  border: 1px solid rgba(244,124,30,0.35);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.feat-proj-info h3 {
  font-family: var(--font-h);
  font-size: 1.3125rem;
  margin-bottom: 6px;
}
.feat-proj-info p { font-size: 0.875rem; color: rgba(255,255,255,0.65); margin-bottom: 16px; }

/* ============================================================
   10. WHY US
   ============================================================ */
.why-us {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(244,124,30,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.why-us::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.016) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.why-us-content .section-tag { padding: 0; text-align: left; }
.why-us-content .section-tag::before { display: none; }
.why-us-content .section-title { text-align: left; margin-top: 10px; color: var(--white); }
.why-us-content > p { color: rgba(255,255,255,0.62); margin-bottom: 44px; line-height: 1.78; }

.advantages { display: flex; flex-direction: column; gap: 28px; }
.adv-item { display: flex; gap: 20px; align-items: flex-start; }
.adv-icon {
  width: 50px; height: 50px;
  background: rgba(244,124,30,0.1);
  border: 1px solid rgba(244,124,30,0.22);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.adv-icon i { color: var(--gold); font-size: 1.125rem; }
.adv-item h4 { font-size: 1rem; color: var(--white); margin-bottom: 6px; font-weight: 600; }
.adv-item p { font-size: 0.9rem; color: rgba(255,255,255,0.56); line-height: 1.62; }

/* Stat boxes */
.stat-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: var(--tr);
}
.stat-box:hover {
  background: rgba(244,124,30,0.08);
  border-color: rgba(244,124,30,0.25);
  transform: translateY(-4px);
}
.stat-big {
  font-family: var(--font-h);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-box > span:not(.stat-big) {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.45;
}

/* ============================================================
   11. CLIENTS
   ============================================================ */
.clients-section { background: var(--white); }
.clients-wrap {
  border: 1px solid var(--grey-200);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
}
.client-logo {
  flex: 1;
  padding: 44px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--grey-400);
  border-right: 1px solid var(--grey-200);
  letter-spacing: 0.05em;
  transition: var(--tr);
  text-align: center;
}
.client-logo:last-child { border-right: none; }
.client-logo:hover { background: var(--navy); color: var(--gold); border-color: transparent; }

/* ============================================================
   12. CTA BANNER
   ============================================================ */
.cta-banner {
  background:
    linear-gradient(140deg, rgba(12,35,68,0.97) 0%, rgba(15,45,88,0.96) 100%),
    url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?w=1920&q=80') center/cover;
  padding: 112px 0;
  text-align: center;
}
.cta-content h2 {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.22;
}
.cta-content p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.62);
  margin-bottom: 44px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   13. FOOTER
   ============================================================ */
.footer { background: #050D1C; padding: 88px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.9fr 1fr 1fr 1.6fr;
  gap: 52px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand .nav-logo { margin-bottom: 20px; }
.footer-brand p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.46);
  line-height: 1.72;
  max-width: 290px;
}
.socials { display: flex; gap: 10px; margin-top: 26px; }
.socials a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  transition: var(--tr);
}
.socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.46);
  transition: var(--tr);
}
.footer-col a:hover { color: var(--gold); padding-left: 5px; }

.footer-contact-items { display: flex; flex-direction: column; gap: 18px; }
.fci { display: flex; gap: 14px; align-items: flex-start; }
.fci i { color: var(--gold); font-size: 0.875rem; margin-top: 3px; flex-shrink: 0; width: 16px; }
.fci span { font-size: 0.9375rem; color: rgba(255,255,255,0.46); line-height: 1.58; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
}
.footer-bottom p { font-size: 0.875rem; color: rgba(255,255,255,0.28); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.875rem; color: rgba(255,255,255,0.28); }
.footer-legal a:hover { color: var(--gold); }

/* ============================================================
   14. SERVICES PAGE — DETAIL BLOCKS
   ============================================================ */
.svc-detail-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--grey-200);
}
.svc-detail-block:last-of-type { border-bottom: none; }
.svc-detail-block.reverse .svc-detail-content { order: -1; }

.svc-detail-media { position: relative; }
.svc-detail-media img {
  width: 100%; height: 480px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--sh-lg);
}
.svc-media-label {
  position: absolute;
  top: 24px; left: 24px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 4px;
}

.svc-detail-content .section-title { text-align: left; }
.svc-detail-content .section-tag { padding: 0; text-align: left; }
.svc-detail-content .section-tag::before { display: none; }
.svc-detail-content p { color: var(--text-light); line-height: 1.78; margin-bottom: 16px; }

.svc-sub-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 22px 0 32px;
}
.svc-sub-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
}
.svc-sub-item::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* PMC Digital Feature Cards */
.pmc-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 22px 0 32px;
}
.pmc-feat {
  padding: 18px 20px;
  background: var(--off-white);
  border-radius: 7px;
  border-left: 3px solid var(--gold);
}
.pmc-feat h5 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
  font-family: var(--font-b);
}
.pmc-feat p { font-size: 0.825rem; color: var(--text-light); margin: 0; line-height: 1.55; }

/* Process Timeline */
.process-section { background: var(--navy); padding: 100px 0; }
.process-section .section-title { color: var(--white); }
.process-track {
  display: flex;
  gap: 0;
  position: relative;
  margin-top: 68px;
}
.process-track::before {
  content: '';
  position: absolute;
  top: 35px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(to right, rgba(244,124,30,0.45), rgba(244,124,30,0.12), rgba(244,124,30,0.45));
}
.process-step { flex: 1; text-align: center; padding: 0 16px; position: relative; }
.proc-num {
  width: 70px; height: 70px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 10px rgba(244,124,30,0.1);
}
.process-step h4 { font-size: 0.9375rem; color: var(--white); margin-bottom: 10px; font-weight: 600; }
.process-step p { font-size: 0.85rem; color: rgba(255,255,255,0.48); line-height: 1.62; }

/* ============================================================
   15. PROJECTS PAGE
   ============================================================ */
.filter-bar {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.filter-btn {
  padding: 10px 24px;
  background: transparent;
  border: 1.5px solid var(--grey-200);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--grey-700);
  cursor: pointer;
  transition: var(--tr);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.projects-grid-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.proj-card {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--sh-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  cursor: pointer;
}
.proj-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }
.proj-card img {
  width: 100%; height: 280px;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
  display: block;
}
.proj-card:hover img { transform: scale(1.06); }
.proj-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,35,68,0.9) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  color: var(--white);
}
.proj-card-info h3 { font-family: var(--font-h); font-size: 1.0625rem; margin-bottom: 4px; }
.proj-card-info span { font-size: 0.8125rem; color: rgba(255,255,255,0.58); }

/* ============================================================
   16. ABOUT PAGE
   ============================================================ */
.story-section { background: var(--white); }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 88px;
  align-items: center;
}
.story-media img {
  width: 100%; height: 580px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--sh-lg);
}
.story-content .section-tag { padding: 0; text-align: left; }
.story-content .section-tag::before { display: none; }
.story-content .section-title { text-align: left; margin-top: 10px; }
.story-content p { color: var(--text-light); line-height: 1.78; margin-bottom: 16px; }

.milestones {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--grey-200);
}
.milestone-year {
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.milestone-label { font-size: 0.8rem; color: var(--text-light); margin-top: 5px; display: block; }

/* Values */
.values-section { background: var(--off-white); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.value-card {
  background: var(--white);
  padding: 48px 36px;
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--sh-sm);
  transition: var(--tr);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.val-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 26px;
}
.val-icon i { font-size: 1.875rem; color: var(--gold); }
.value-card h3 { font-family: var(--font-h); font-size: 1.25rem; color: var(--navy); margin-bottom: 14px; }
.value-card p { color: var(--text-light); line-height: 1.72; font-size: 0.9375rem; }

/* Team */
.team-section { background: var(--white); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.team-card { text-align: center; transition: transform 0.35s var(--ease); }
.team-card:hover { transform: translateY(-6px); }
.team-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--grey-100);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-size: 1.0625rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.team-role { font-size: 0.875rem; color: var(--gold); font-weight: 500; margin-bottom: 10px; }
.team-card p { font-size: 0.875rem; color: var(--text-light); line-height: 1.6; }

/* Certifications */
.certs-section { background: var(--navy); padding: 80px 0; }
.certs-wrap {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 56px;
}
.cert-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 8px;
  padding: 32px 36px;
  text-align: center;
  min-width: 156px;
  transition: var(--tr);
}
.cert-item:hover {
  background: rgba(244,124,30,0.1);
  border-color: rgba(244,124,30,0.28);
  transform: translateY(-4px);
}
.cert-item i { font-size: 2rem; color: var(--gold); margin-bottom: 12px; display: block; }
.cert-item span { font-size: 0.875rem; color: rgba(255,255,255,0.68); font-weight: 600; line-height: 1.4; display: block; }

/* ============================================================
   17. CONTACT PAGE
   ============================================================ */
.contact-section { background: var(--off-white); padding: 100px 0; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 56px;
  align-items: start;
}

.contact-info-card {
  background: var(--navy);
  border-radius: 12px;
  padding: 52px 44px;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  overflow: hidden;
}
.contact-info-card::before {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 220px; height: 220px;
  background: rgba(244,124,30,0.07);
  border-radius: 50%;
  pointer-events: none;
}
.contact-info-card h2 { font-family: var(--font-h); font-size: 1.875rem; color: var(--white); margin-bottom: 12px; }
.contact-info-card > p { color: rgba(255,255,255,0.58); line-height: 1.75; margin-bottom: 40px; }

.ci-items { display: flex; flex-direction: column; gap: 26px; margin-bottom: 36px; }
.ci-item { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon {
  width: 46px; height: 46px;
  background: rgba(244,124,30,0.12);
  border: 1px solid rgba(244,124,30,0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-icon i { color: var(--gold); font-size: 1rem; }
.ci-text h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
  font-family: var(--font-b);
}
.ci-text p { font-size: 0.9375rem; color: rgba(255,255,255,0.72); line-height: 1.52; }
.ci-text a { color: rgba(255,255,255,0.72); }
.ci-text a:hover { color: var(--gold); }
.ci-divider { height: 1px; background: rgba(255,255,255,0.09); margin: 8px 0; }

/* Form Card */
.contact-form-card {
  background: var(--white);
  border-radius: 12px;
  padding: 52px 48px;
  box-shadow: var(--sh-md);
}
.contact-form-card h2 { font-family: var(--font-h); font-size: 1.875rem; color: var(--navy); margin-bottom: 8px; }
.contact-form-card > p { color: var(--text-light); margin-bottom: 36px; line-height: 1.7; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 17px;
  border: 1.5px solid var(--grey-200);
  border-radius: 6px;
  font-family: var(--font-b);
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(244,124,30,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--grey-400); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239A9A9A' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 44px;
  cursor: pointer;
}

.form-footer { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 8px; }
.form-footer .btn { min-width: 192px; justify-content: center; }
.form-note { font-size: 0.8125rem; color: var(--grey-400); }
.form-note i { color: var(--gold); margin-right: 5px; }

/* Map area */
.map-section {
  height: 420px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.map-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-placeholder { text-align: center; position: relative; z-index: 1; }
.map-placeholder i { font-size: 3.5rem; color: var(--gold); margin-bottom: 18px; display: block; }
.map-placeholder h3 { font-family: var(--font-h); font-size: 1.5rem; color: var(--white); margin-bottom: 10px; }
.map-placeholder p { color: rgba(255,255,255,0.52); font-size: 0.9375rem; max-width: 360px; margin: 0 auto; }

/* FAQ */
.faq-section { background: var(--off-white); padding: 80px 0; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 960px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: 8px;
  padding: 28px 32px;
  box-shadow: var(--sh-sm);
  border-left: 3px solid transparent;
  transition: var(--tr);
}
.faq-item:hover { border-left-color: var(--gold); transform: translateX(4px); }
.faq-item h4 { font-size: 1rem; color: var(--navy); margin-bottom: 10px; font-weight: 600; }
.faq-item p { font-size: 0.9rem; color: var(--text-light); line-height: 1.65; }

/* ============================================================
   18. ANIMATIONS
   ============================================================ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollBob {
  0%, 100% { opacity: 0.35; transform: scaleY(0.8); }
  50%       { opacity: 1;    transform: scaleY(1.2); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.5); opacity: 0.6; }
}

.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.22s; }
.delay-3 { transition-delay: 0.34s; }
.delay-4 { transition-delay: 0.46s; }

/* ============================================================
   19. RESPONSIVE — TABLET (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root { --pad: 80px; }
  .container { padding: 0 32px; }
  .nav-container { padding: 0 32px; }

  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 20px 0;
    gap: 0;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ease), opacity 0.4s;
    box-shadow: var(--sh-lg);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-link {
    width: 100%; padding: 15px 32px;
    border-radius: 0;
    color: rgba(255,255,255,0.8);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-link::after { display: none; }
  .nav-link.active { color: var(--gold); }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card:last-child { grid-column: span 2; max-width: 520px; margin: 0 auto; width: 100%; }

  .about-teaser-grid,
  .story-grid { grid-template-columns: 1fr; gap: 52px; }
  .about-teaser-grid .img-wrap { order: -1; }
  .img-wrap img { height: 380px; }
  .img-badge { right: 0; bottom: -20px; }
  .about-content { padding-right: 0; }

  .feat-projects-grid { grid-template-columns: 1fr; }
  .feat-project-card.span-2 { grid-row: span 1; }
  .feat-project-card.span-2 .feat-proj-img { min-height: 380px; }
  .feat-proj-img { min-height: 220px; }

  .why-us-grid { grid-template-columns: 1fr; gap: 60px; }
  .stat-boxes { grid-template-columns: repeat(4, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }

  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid-main { grid-template-columns: repeat(2, 1fr); }

  .svc-detail-block { grid-template-columns: 1fr; gap: 44px; }
  .svc-detail-block.reverse .svc-detail-content { order: 0; }
  .svc-detail-media img { height: 360px; }

  .process-track { flex-direction: column; align-items: center; }
  .process-track::before { display: none; }
  .process-step { max-width: 400px; width: 100%; }

  .clients-wrap { flex-wrap: wrap; }
  .client-logo { flex: calc(33.333% - 1px); border-bottom: 1px solid var(--grey-200); }

  .faq-grid { grid-template-columns: 1fr; }

  .hero-ribbon-inner { gap: 28px; }
  .ribbon-divider { display: none; }
}

/* ============================================================
   20. RESPONSIVE — MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --pad: 60px; --nav-h: 68px; }
  .container { padding: 0 20px; }
  .nav-container { padding: 0 20px; }

  .hero-content { padding: calc(var(--nav-h) + 44px) 20px 64px; }
  .hero-stats { gap: 28px; }
  .hero-scroll { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-ribbon-inner { padding: 0 20px; }
  .ribbon-item { font-size: 0.8rem; }

  .section-header { margin-bottom: 48px; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card:last-child { grid-column: span 1; max-width: 100%; }

  .about-checks { grid-template-columns: 1fr; }
  .stat-boxes { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }

  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .values-grid { grid-template-columns: 1fr; }
  .projects-grid-main { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 32px 22px; }
  .contact-info-card { padding: 36px 26px; }

  .clients-wrap { flex-direction: column; }
  .client-logo { flex: 1; border-right: none; }

  .svc-sub-list { grid-template-columns: 1fr; }
  .pmc-features-grid { grid-template-columns: 1fr; }

  .milestones { flex-wrap: wrap; gap: 20px; }
  .certs-wrap { gap: 14px; }
  .cert-item { min-width: 130px; padding: 24px; }

  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .cta-banner { padding: 72px 0; }

  .page-hero { padding: calc(var(--nav-h) + 52px) 0 64px; }
  .page-hero h1 { font-size: clamp(1.875rem, 6vw, 3rem); }
}

/* ============================================================
   21. RESPONSIVE — SMALL MOBILE (≤480px)
   ============================================================ */
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .stat-boxes { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 18px; }
  .form-footer { flex-direction: column; align-items: flex-start; }
  .form-footer .btn { width: 100%; }
  .logo-sub { letter-spacing: 0.1em; }
}

/* ============================================================
   22. AI BOQ & BBS TOOL CARD — PMC Section
   ============================================================ */
.ssil-ai-tool-card {
  background: linear-gradient(135deg, #0C2344 0%, #0F2D58 100%);
  border-radius: 16px;
  padding: 36px 40px;
  margin: 40px 0 32px;
  border: 1px solid rgba(244,124,30,0.25);
  box-shadow: 0 12px 48px rgba(12,35,68,0.25);
  position: relative;
  overflow: hidden;
}
.ssil-ai-tool-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(244,124,30,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.ssil-ai-tool-header { margin-bottom: 24px; }

.ssil-ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(244,124,30,0.18);
  color: #F9A55A;
  border: 1px solid rgba(244,124,30,0.35);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.ssil-ai-tool-header h4 {
  font-family: var(--font-h);
  font-size: 1.35rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
  line-height: 1.3;
}

.ssil-ai-tool-header p {
  color: #94B8D8;
  font-size: 0.93rem;
  line-height: 1.65;
  margin: 0;
}
.ssil-ai-tool-header p strong { color: #F9A55A; font-weight: 600; }

.ssil-ai-tool-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.ssil-ai-feat {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #CBD5E1;
}
.ssil-ai-feat i { color: #F47C1E; font-size: 0.85rem; }

.ssil-ai-launch-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 9px;
  font-size: 0.95rem !important;
  padding: 13px 28px !important;
}
.ssil-ai-launch-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(244,124,30,0.45) !important; }

@media (max-width: 640px) {
  .ssil-ai-tool-card { padding: 28px 24px; }
  .ssil-ai-tool-features { gap: 8px; }
}
