/* ============================================================
   DOKOMO INFRA CONSTRUCTION — Master Stylesheet
   Premium Infrastructure Company Website
   ============================================================ */

/* --- CSS Custom Properties --- */
:root {
  --primary: #1E2761;
  --primary-light: #2a3578;
  --primary-dark: #141b47;
  --accent: #C9A84C;
  --accent-light: #d4b96a;
  --accent-dark: #b08f3a;
  --bg-cream: #F5F0E8;
  --bg-white: #FFFFFF;
  --bg-light: #f8f6f2;
  --text-dark: #1A1A2E;
  --text-body: #333344;
  --text-muted: #6B7B8D;
  --success: #2D936C;
  --info: #3B82F6;
  --warning: #E8913A;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
  --shadow-xl: 0 16px 60px rgba(0,0,0,0.2);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --max-width: 1300px;
  --nav-height: 80px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-body);
  line-height: 1.7;
  background: var(--bg-white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', 'Inter', sans-serif;
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.text-accent { color: var(--accent); }
.text-white { color: #fff; }
.text-muted { color: var(--text-muted); }

.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 700px;
  line-height: 1.7;
}

.section-subtitle.centered {
  margin-left: auto;
  margin-right: auto;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header.centered {
  text-align: center;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 100px 0;
}

.bg-white { background: var(--bg-white); }
.bg-cream { background: var(--bg-cream); }
.bg-light { background: var(--bg-light); }

.bg-dark {
  background: var(--primary);
  color: #fff;
}

.bg-dark h2, .bg-dark h3, .bg-dark h4 {
  color: #fff;
}

.bg-dark .section-subtitle {
  color: rgba(255,255,255,0.7);
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}

.btn-outline:hover {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-dark:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
}

.btn svg {
  width: 18px;
  height: 18px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: rgba(0,0,0,0.06);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-text .company-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--primary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.logo-text .company-tagline {
  font-size: 0.6rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 600;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  padding: 0.5rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-body);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
  border-radius: 2px;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 60%;
}

.nav-links a.active {
  color: var(--primary);
  font-weight: 600;
}

/* Contact Nav Button */
.nav-contact-btn {
  margin-left: 0.5rem;
}

.nav-contact-btn .btn {
  padding: 0.55rem 1.3rem;
  font-size: 0.85rem;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity var(--transition);
}

.mobile-menu-overlay.active {
  opacity: 1;
}

/* Mobile Drawer */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: #fff;
  z-index: 999;
  padding: 100px 2rem 2rem;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-xl);
  overflow-y: auto;
}

.mobile-drawer.active {
  right: 0;
}

.mobile-drawer a {
  display: block;
  padding: 0.9rem 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-body);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all var(--transition);
}

.mobile-drawer a:hover,
.mobile-drawer a.active {
  color: var(--accent);
  padding-left: 0.5rem;
}

.mobile-drawer .btn {
  margin-top: 1.5rem;
  width: 100%;
  justify-content: center;
}

/* ============================================================
   HERO SECTION (Home)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #0f1740 0%, #1E2761 40%, #2a3578 70%, #1a2055 100%);
  overflow: hidden;
  padding: 0;
}

.hero-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-geometric {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.hero-geometric .shape {
  position: absolute;
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 2px;
}

.hero-geometric .shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: -50px;
  transform: rotate(45deg);
  animation: floatShape 20s ease-in-out infinite;
}

.hero-geometric .shape-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 5%;
  transform: rotate(30deg);
  animation: floatShape 15s ease-in-out infinite reverse;
}

.hero-geometric .shape-3 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: 15%;
  transform: rotate(60deg);
  border-color: rgba(201, 168, 76, 0.08);
  animation: floatShape 25s ease-in-out infinite;
}

.hero-geometric .shape-4 {
  width: 100px;
  height: 100px;
  top: 15%;
  left: 20%;
  transform: rotate(15deg);
  border-color: rgba(255,255,255,0.08);
  animation: floatShape 18s ease-in-out infinite reverse;
}

@keyframes floatShape {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(30px); }
}

.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-gradient-orb.orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(201, 168, 76, 0.08);
  top: -100px;
  right: -100px;
}

.hero-gradient-orb.orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(59, 130, 246, 0.06);
  bottom: -100px;
  left: -100px;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 900px;
}

.hero-content .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero-content h1 {
  color: #fff;
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

.hero-content h1 .accent {
  color: var(--accent);
  display: block;
  font-size: 0.55em;
  letter-spacing: 6px;
  margin-top: 0.25rem;
}

.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 1rem;
  font-weight: 300;
}

.hero-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-reg {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 1px;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.3);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll-indicator .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.6), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   PAGE HERO BANNER (Inner Pages)
   ============================================================ */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  background: linear-gradient(145deg, #0f1740 0%, #1E2761 60%, #2a3578 100%);
  overflow: hidden;
}

.page-hero .hero-bg-pattern {
  opacity: 0.04;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}

.page-hero .breadcrumb a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.page-hero .breadcrumb a:hover {
  color: var(--accent);
}

.page-hero .breadcrumb .separator {
  color: rgba(255,255,255,0.3);
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin-bottom: 0.75rem;
}

.page-hero .page-hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
}

.page-hero .hero-geometric .shape {
  border-color: rgba(201, 168, 76, 0.08);
}

/* Gold accent bar at bottom of page hero */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

/* ============================================================
   STATS / METRICS SECTION
   ============================================================ */
.stats-section {
  background: linear-gradient(135deg, #0f1740, #1E2761);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201, 168, 76, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}

.stat-item:last-child::after {
  display: none;
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

/* ============================================================
   CARDS
   ============================================================ */

/* --- Base Card --- */
.card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* --- Service Card --- */
.service-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card .service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  background: var(--bg-cream);
  color: var(--primary);
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: var(--accent);
}

.service-card .service-icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* --- Project Card --- */
.project-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0,0,0,0.04);
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.project-card-header {
  position: relative;
  height: 200px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  overflow: hidden;
}

.project-card-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 30px 30px;
}

.project-card-header .project-icon {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.project-card-header .project-icon svg {
  width: 24px;
  height: 24px;
}

.project-card-badges {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.badge {
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-status {
  color: #fff;
}

.badge-completed { background: var(--success); }
.badge-ongoing { background: var(--info); }
.badge-in-progress { background: var(--warning); }

.badge-category {
  background: rgba(255,255,255,0.15);
  color: #fff;
  backdrop-filter: blur(4px);
}

.project-card-body {
  padding: 1.5rem;
}

.project-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.project-card-body .project-value {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.project-card-body .project-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.project-card-body .project-desc-short {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.project-card-body .read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  transition: all var(--transition);
}

.project-card-body .read-more-btn:hover {
  color: var(--accent);
  gap: 0.6rem;
}

.project-card-body .project-desc-full {
  display: none;
}

.project-card.expanded .project-desc-short {
  display: none;
}

.project-card.expanded .project-desc-full {
  display: block;
}

.project-card.expanded .read-more-btn .btn-text {
  display: none;
}

.project-card.expanded .read-more-btn .btn-text-less {
  display: inline;
}

.read-more-btn .btn-text-less {
  display: none;
}

/* --- Leadership Card --- */
.leader-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}

.leader-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
}

.leader-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.leader-card .avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  position: relative;
}

.leader-card .avatar::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(201, 168, 76, 0.3);
}

.leader-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.leader-card .leader-role {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.leader-card .leader-bio {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Leader accent colors */
.leader-card:nth-child(1)::before { background: #C9A84C; }
.leader-card:nth-child(1) .avatar { background: linear-gradient(135deg, #C9A84C, #b08f3a); }

.leader-card:nth-child(2)::before { background: #3B82F6; }
.leader-card:nth-child(2) .avatar { background: linear-gradient(135deg, #3B82F6, #2563eb); }

.leader-card:nth-child(3)::before { background: #2D936C; }
.leader-card:nth-child(3) .avatar { background: linear-gradient(135deg, #2D936C, #228b5b); }

.leader-card:nth-child(4)::before { background: #E8913A; }
.leader-card:nth-child(4) .avatar { background: linear-gradient(135deg, #E8913A, #d07a28); }

/* --- Equipment Card --- */
.equipment-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
}

.equipment-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.equipment-card .equip-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--primary);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.equipment-card .equip-icon svg {
  width: 26px;
  height: 26px;
}

.equipment-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.equipment-card ul {
  list-style: none;
}

.equipment-card ul li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0.3rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.equipment-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* --- Value Card --- */
.value-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.value-card .value-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  background: var(--bg-cream);
  color: var(--accent);
}

.value-card .value-icon svg {
  width: 28px;
  height: 28px;
}

.value-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Why Choose Card --- */
.advantage-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
}

.advantage-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.advantage-card .advantage-number {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(30, 39, 97, 0.06);
  line-height: 1;
}

.advantage-card .advantage-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.advantage-card .advantage-icon svg {
  width: 24px;
  height: 24px;
}

.advantage-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

.advantage-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

.about-narrative p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 1.25rem;
}

.company-glance-card {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  position: sticky;
  top: 100px;
}

.company-glance-card h3 {
  color: var(--accent);
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.glance-item {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.88rem;
}

.glance-item:last-child {
  border-bottom: none;
}

.glance-label {
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

.glance-value {
  color: #fff;
  font-weight: 600;
  text-align: right;
  max-width: 55%;
}

/* ============================================================
   VISION / MISSION CARDS
   ============================================================ */
.vm-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.vm-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}

.vm-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
}

.vm-card .vm-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-cream);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.vm-card .vm-icon svg {
  width: 28px;
  height: 28px;
}

.vm-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.vm-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   PROJECT FILTERS
   ============================================================ */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  justify-content: center;
}

.filter-tab {
  padding: 0.55rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-cream);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-tab:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.filter-tab.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.project-card.hidden {
  display: none;
}

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--accent), var(--primary));
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-content {
  width: calc(50% - 40px);
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
}

.timeline-content h4 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--primary);
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px var(--accent);
  z-index: 1;
}

.timeline-year {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
  display: block;
  margin-bottom: 0.3rem;
}

/* ============================================================
   QUALITY / SAFETY
   ============================================================ */
.qs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.qs-column h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.qs-column h3 .qs-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-cream);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.qs-column h3 .qs-icon svg {
  width: 20px;
  height: 20px;
}

.qs-list li {
  padding: 0.65rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-body);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.qs-list li:last-child {
  border-bottom: none;
}

.qs-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 18px;
  height: 18px;
  background: var(--success);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white' width='12' height='12'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

/* Registration badges */
.reg-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.reg-badge {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.reg-badge .reg-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.15);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reg-badge .reg-icon svg {
  width: 20px;
  height: 20px;
}

.reg-badge .reg-info {
  font-size: 0.82rem;
}

.reg-badge .reg-info strong {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 0.15rem;
}

.reg-badge .reg-info span {
  color: rgba(255,255,255,0.6);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.address-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.address-card {
  background: var(--bg-cream);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.address-card .addr-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.address-card .addr-icon svg {
  width: 20px;
  height: 20px;
}

.address-card h4 {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.address-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.contact-email {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
}

.contact-email svg {
  color: var(--accent);
  flex-shrink: 0;
}

.contact-email a {
  color: #fff;
  font-weight: 600;
}

.contact-email a:hover {
  color: var(--accent);
}

/* Contact Form */
.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.contact-form-wrap h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--bg-light);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
  background: #fff;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.contact-form-wrap .btn {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: 1rem;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, #0f1740, #1E2761);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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: 40px 40px;
}

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

.cta-banner h2 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
}

.cta-banner p {
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   SERVICE PROCESS
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 12.5%;
  width: 75%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step .step-number {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
  border: 4px solid var(--bg-cream);
}

.process-step h4 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============================================================
   PORTFOLIO SUMMARY
   ============================================================ */
.portfolio-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.portfolio-stat {
  text-align: center;
}

.portfolio-stat .ps-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.portfolio-stat .ps-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ============================================================
   TEAM STRENGTH SECTION
   ============================================================ */
.team-strength {
  background: var(--primary);
  border-radius: var(--radius-xl);
  padding: 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.team-stat {
  text-align: center;
  color: #fff;
}

.team-stat .ts-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.team-stat .ts-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* ============================================================
   CAPACITY SECTION
   ============================================================ */
.capacity-section {
  background: var(--primary);
  border-radius: var(--radius-xl);
  padding: 3rem;
  text-align: center;
  margin-top: 4rem;
}

.capacity-section h3 {
  color: #fff;
  margin-bottom: 1rem;
}

.capacity-section p {
  color: rgba(255,255,255,0.7);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1rem;
}

/* ============================================================
   MAP / PRESENCE SECTION
   ============================================================ */
.presence-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.presence-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all var(--transition);
}

.presence-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.presence-card .presence-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-cream);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}

.presence-card .presence-icon svg {
  width: 22px;
  height: 22px;
}

.presence-card h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.presence-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================================
   COMMITMENT STATEMENT
   ============================================================ */
.commitment-section {
  background: linear-gradient(135deg, var(--bg-cream), #efe8da);
  border-radius: var(--radius-xl);
  padding: 3rem;
  text-align: center;
  margin-top: 3rem;
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.commitment-section h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.commitment-section p {
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0c1232;
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
}

.footer-about .footer-logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.footer-about .footer-logo-text span {
  color: var(--accent);
}

.footer-about p {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-reg {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
}

.footer-links a {
  display: block;
  padding: 0.35rem 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 0.25rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.88rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.7);
}

.footer-contact-item a:hover {
  color: var(--accent);
}

.footer-bottom {
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delay for grid children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.08s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.16s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.24s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.32s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.48s; }
.stagger-children.visible > *:nth-child(8) { transition-delay: 0.56s; }
.stagger-children.visible > *:nth-child(9) { transition-delay: 0.64s; }
.stagger-children.visible > *:nth-child(10) { transition-delay: 0.72s; }

.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   PAGE LOADING
   ============================================================ */
body {
  animation: pageLoad 0.6s ease;
}

@keyframes pageLoad {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ============================================================
   HOME PAGE SPECIFIC
   ============================================================ */
.home-about {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: center;
}

.home-about-text h2 {
  margin-bottom: 1rem;
}

.home-about-text p {
  font-size: 1.02rem;
  color: var(--text-body);
  margin-bottom: 1.25rem;
}

.home-glance-mini {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: #fff;
}

.home-glance-mini h4 {
  color: var(--accent);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.home-glance-mini .glance-item {
  padding: 0.5rem 0;
  font-size: 0.82rem;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 1200px) {
  .grid-4 { grid-template-columns: repeat(3, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .nav-links,
  .nav-contact-btn {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-drawer,
  .mobile-menu-overlay {
    display: block;
  }

  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-item:nth-child(3)::after { display: none; }

  .about-split {
    grid-template-columns: 1fr;
  }

  .company-glance-card {
    position: static;
  }

  .home-about {
    grid-template-columns: 1fr;
  }

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

  .presence-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-steps::before {
    display: none;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

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

  section {
    padding: 70px 0;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }

  section {
    padding: 60px 0;
  }

  .container {
    padding: 0 1.25rem;
  }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .stat-item::after { display: none; }
  .qs-grid { grid-template-columns: 1fr; }
  .vm-cards { grid-template-columns: 1fr; }
  .portfolio-summary { grid-template-columns: 1fr; gap: 1.5rem; }
  .process-steps { grid-template-columns: 1fr; gap: 1.5rem; }
  .team-strength { grid-template-columns: 1fr 1fr; }
  .presence-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .filter-tabs { gap: 0.35rem; }
  .filter-tab { padding: 0.45rem 1rem; font-size: 0.8rem; }

  .hero-content h1 {
    font-size: 2.2rem;
    letter-spacing: 1px;
  }

  .hero-content h1 .accent {
    letter-spacing: 3px;
  }

  .page-hero {
    padding: 130px 0 60px;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    flex-direction: row;
    padding-left: 50px;
  }

  .timeline-content {
    width: 100%;
  }

  .timeline-dot {
    left: 20px;
  }

  .cta-banner {
    padding: 60px 0;
  }

  .reg-badges {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .team-strength { grid-template-columns: 1fr; padding: 2rem; }
  .presence-grid { grid-template-columns: 1fr; }

  .hero {
    min-height: 100svh;
  }

  .hero-content {
    padding: 1rem;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .logo-text .company-name {
    font-size: 1rem;
  }
}
