:root {
  --navy: #0a1628;
  --navy2: #112240;
  --blue: #1a3a6e;
  --accent: #e63c28;
  --accent2: #f5a623;
  --light: #f4f6f9;
  --white: #ffffff;
  --gray: #6b7a8d;
  --border: #dde3ec;
  --text: #2c3547;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }

/* ─── NAVBAR ─── */
nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--accent);
  padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  transition: background .3s;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; min-width: 0; }
.logo-badge {
  width: 44px; height: 44px; background: var(--accent); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Orbitron', sans-serif; font-weight: 900; font-size: 20px;
  color: #fff; letter-spacing: -1px; flex-shrink: 0;
}
.logo-badge img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.logo-text { line-height: 1.1; }
.logo-text .brand { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 20px; color: #fff; letter-spacing: 1px; }
.logo-text .sub { font-size: 10px; color: var(--accent2); letter-spacing: 2px; font-weight: 600; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a { color: #b0bec5; text-decoration: none; font-size: 13.5px; font-weight: 500; padding: 6px 14px; border-radius: 4px; letter-spacing: .5px; transition: all .2s; position: relative; }
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(230,60,40,.15); }
.nav-links .dropdown { position: relative; }
.nav-links .dropdown > a::after { content: ' ▾'; font-size: 10px; opacity: .7; }
.nav-links .dropdown-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--navy2); border: 1px solid rgba(255,255,255,.08);
  border-top: 2px solid var(--accent); border-radius: 0 0 8px 8px;
  min-width: 200px; padding: 8px 0; box-shadow: 0 12px 40px rgba(0,0,0,.4);
  z-index: 100;
}
.nav-links .dropdown:hover .dropdown-menu { display: block; }
.nav-links .dropdown-menu a { display: block; color: #b0bec5; padding: 9px 18px; font-size: 13px; background: none; }
.nav-links .dropdown-menu a:hover { color: #fff; background: rgba(230,60,40,.12); border-radius: 0; }
.nav-cta { background: var(--accent); color: #fff !important; padding: 8px 20px !important; border-radius: 4px; font-weight: 600 !important; }
.nav-cta:hover { background: #c72e1a !important; color: #fff !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px 4px; flex-shrink: 0; }
.hamburger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; display: block; }

/* ─── PAGE HEADER ─── */
.page-header {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0; opacity: .05;
  background-image: repeating-linear-gradient(45deg, #fff 0, #fff 1px, transparent 0, transparent 40px);
}
.page-header .container { position: relative; z-index: 1; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 16px; letter-spacing: 1px; }
.page-header h1 {
  font-family: 'Orbitron', sans-serif; font-weight: 900;
  font-size: clamp(24px, 5vw, 56px); color: #fff; text-transform: uppercase;
  letter-spacing: clamp(1px, 1vw, 4px); margin-bottom: 16px; line-height: 1.1;
}
.page-header h1 span { color: var(--accent); }
.page-header p { color: rgba(255,255,255,.65); font-size: clamp(14px, 2vw, 17px); max-width: 600px; line-height: 1.7; }

/* ─── LAYOUT ─── */
section { padding: 90px 0; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 40px; }
.section-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px; display: flex; align-items: center; gap: 10px;
}
.section-tag::before { content: ''; width: 32px; height: 2px; background: var(--accent); border-radius: 2px; flex-shrink: 0; }
.section-title {
  font-family: 'Rajdhani', sans-serif; font-weight: 800; font-size: clamp(24px, 4vw, 48px);
  color: var(--navy); text-transform: uppercase; line-height: 1.05; margin-bottom: 16px; letter-spacing: -.5px;
}
.section-title span { color: var(--accent); }
.lead { font-size: clamp(15px, 2vw, 17px); color: var(--gray); line-height: 1.8; margin-bottom: 20px; font-weight: 400; }
section p { font-size: 15px; color: var(--gray); line-height: 1.75; margin-bottom: 16px; }

/* ─── ABOUT PAGE ─── */
.about-content { background: var(--light); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-bottom: 80px; }
.about-img-wrap { position: relative; }
.about-img-placeholder {
  width: 100%; aspect-ratio: 4/3; border-radius: 8px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  position: relative; overflow: hidden;
}
.about-img-placeholder::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,.02) 0, rgba(255,255,255,.02) 1px, transparent 0, transparent 40px);
}
.about-img-placeholder .big-icon { font-size: 80px; opacity: .4; }
.about-img-placeholder p { color: rgba(255,255,255,.5); font-size: 14px; letter-spacing: 2px; text-transform: uppercase; }
.about-badge {
  position: absolute; top: 18px; left: 18px;
  background: var(--accent); color: #fff; padding: 20px 24px; border-radius: 8px;
  text-align: center; box-shadow: 0 8px 32px rgba(230,60,40,.4);
}
.about-badge .big { font-family: 'Orbitron', sans-serif; font-weight: 900; font-size: 44px; line-height: 1; }
.about-badge small { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; opacity: .9; color: #fff; }

.company-details { margin: 80px 0; }
.details-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.detail-card {
  background: #fff; border: 1px solid var(--border); border-radius: 10px;
  padding: 28px; text-align: center; transition: all .3s;
}
.detail-card:hover { border-color: var(--accent); box-shadow: 0 8px 32px rgba(10,22,40,.08); }
.detail-icon { font-size: 42px; margin-bottom: 14px; }
.detail-card h4 { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 16px; color: var(--navy); text-transform: uppercase; margin-bottom: 8px; }
.detail-card p { font-size: 14px; color: var(--gray); margin: 0; }

.vision-mission { margin: 80px 0; }
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 40px; }
.vm-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  border-radius: 12px; padding: 40px; position: relative; overflow: hidden;
}
.vm-card::before {
  content: ''; position: absolute; inset: 0; opacity: .04;
  background-image: repeating-linear-gradient(45deg, #fff 0, #fff 1px, transparent 0, transparent 40px);
}
.vm-icon { font-size: 54px; margin-bottom: 20px; }
.vm-card h3 { font-family: 'Rajdhani', sans-serif; font-weight: 800; font-size: 26px; color: #fff; text-transform: uppercase; margin-bottom: 16px; }
.vm-card p { color: rgba(255,255,255,.7); font-size: 15px; line-height: 1.8; margin: 0; }

.why-choose { margin: 80px 0; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 40px; }
.feature-box {
  background: #fff; border: 1px solid var(--border); border-radius: 10px;
  padding: 32px 28px; position: relative; transition: all .3s;
}
.feature-box:hover { border-color: var(--accent); box-shadow: 0 12px 40px rgba(10,22,40,.1); transform: translateY(-4px); }
.feat-num {
  width: 52px; height: 52px; background: var(--navy); color: #fff; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Orbitron', sans-serif; font-weight: 900; font-size: 20px; margin-bottom: 18px;
}
.feature-box h4 { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 18px; color: var(--navy); text-transform: uppercase; margin-bottom: 12px; }
.feature-box p { font-size: 14px; color: var(--gray); line-height: 1.7; margin: 0; }

/* ─── CAPABILITIES ─── */
.caps-hero { background: var(--light); padding: 60px 0; }
.caps-intro { max-width: 800px; margin: 0 auto; text-align: center; }
.caps-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 60px; }
.cap-card-large {
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 44px 40px; transition: all .3s; cursor: pointer; position: relative; overflow: hidden;
}
.cap-card-large::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 4px;
  background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.cap-card-large:hover { border-color: transparent; box-shadow: 0 20px 60px rgba(10,22,40,.15); transform: translateY(-6px); }
.cap-card-large:hover::after { transform: scaleX(1); }
.cap-icon-lg { font-size: 56px; margin-bottom: 24px; display: block; }
.cap-card-large h3 { font-family: 'Rajdhani', sans-serif; font-weight: 800; font-size: 28px; color: var(--navy); text-transform: uppercase; margin-bottom: 16px; }
.cap-card-large p { font-size: 15px; color: var(--gray); line-height: 1.8; margin-bottom: 24px; }
.read-more-btn {
  display: inline-flex; align-items: center; gap: 8px; background: var(--accent);
  color: #fff; padding: 10px 24px; border-radius: 6px; font-weight: 700;
  font-size: 13px; letter-spacing: .5px; text-transform: uppercase; text-decoration: none; transition: all .25s;
}
.read-more-btn:hover { background: #c72e1a; gap: 12px; }

/* ─── MODAL ─── */
.modal {
  display: none; position: fixed; inset: 0; z-index: 10000;
  background: rgba(10,22,40,.95); backdrop-filter: blur(8px);
  align-items: center; justify-content: center; padding: 40px; animation: fadeIn .3s;
}
.modal.open { display: flex; }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
.modal-content {
  background: var(--white); border-radius: 12px; max-width: 900px; width: 100%;
  max-height: 85vh; overflow-y: auto; position: relative; box-shadow: 0 20px 80px rgba(0,0,0,.5);
}
.modal-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 36px 44px; border-radius: 12px 12px 0 0; position: relative;
}
.modal-header h2 { font-family: 'Orbitron', sans-serif; font-weight: 800; font-size: 34px; color: #fff; text-transform: uppercase; margin-bottom: 8px; }
.modal-header p { color: rgba(255,255,255,.6); font-size: 15px; }
.modal-close {
  position: absolute; top: 24px; right: 24px; background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2); color: #fff; width: 40px; height: 40px;
  border-radius: 50%; font-size: 22px; cursor: pointer; display: flex;
  align-items: center; justify-content: center; transition: all .2s;
}
.modal-close:hover { background: var(--accent); border-color: var(--accent); transform: rotate(90deg); }
.modal-body { padding: 44px; }
.modal-body h3 {
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 24px;
  color: var(--navy); text-transform: uppercase; margin: 28px 0 14px; padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
}
.modal-body h3:first-child { margin-top: 0; }
.modal-body p { color: var(--gray); line-height: 1.85; font-size: 15px; margin-bottom: 16px; }
.modal-body ul { margin-left: 24px; margin-bottom: 16px; }
.modal-body ul li { color: var(--gray); line-height: 1.8; font-size: 15px; margin-bottom: 10px; }

/* ─── CTA STRIP ─── */
.cta-strip { background: var(--accent); padding: 70px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-strip h2 { font-family: 'Rajdhani', sans-serif; font-weight: 900; font-size: clamp(20px,3vw,42px); color: #fff; text-transform: uppercase; line-height: 1.1; }
.cta-strip p { color: rgba(255,255,255,.8); font-size: 16px; margin-top: 8px; }
.btn-white { background: #fff; color: var(--accent); padding: 14px 36px; font-weight: 800; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; border-radius: 4px; text-decoration: none; transition: all .25s; white-space: nowrap; display: inline-block; }
.btn-white:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }

/* ─── FOOTER ─── */
footer { background: var(--navy); padding: 70px 0 0; border-top: 3px solid var(--accent); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand .logo-badge-lg {
  width: 54px; height: 54px; background: var(--accent); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Orbitron', sans-serif; font-weight: 900; font-size: 26px; color: #fff; margin-bottom: 16px;
}
.footer-brand h3 { font-family: 'Rajdhani', sans-serif; font-weight: 900; font-size: 24px; color: #fff; text-transform: uppercase; }
.footer-brand .tagline { font-size: 11px; color: var(--accent2); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.footer-brand p { font-size: 13.5px; color: rgba(255,255,255,.45); line-height: 1.7; max-width: 280px; }
.footer-brand .iso-tag { margin-top: 20px; display: inline-block; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.5); font-size: 11px; letter-spacing: 1px; padding: 6px 14px; border-radius: 4px; text-transform: uppercase; }
footer h4 { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 16px; color: #fff; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
footer h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 28px; height: 2px; background: var(--accent); }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
footer ul li a { color: rgba(255,255,255,.45); text-decoration: none; font-size: 13.5px; transition: color .2s; display: flex; align-items: center; gap: 8px; }
footer ul li a:hover { color: #fff; }
footer ul li a::before { content: '›'; color: var(--accent); font-size: 16px; font-weight: 700; }
.footer-bottom {
  margin-top: 60px; border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 40px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.3); }
.footer-bottom a { color: var(--accent2); text-decoration: none; }

/* ─── SCROLL TOP ─── */
#scrollTop {
  position: fixed; bottom: 96px; right: 30px; z-index: 999;
  width: 44px; height: 44px; background: var(--accent); color: #fff;
  border: none; border-radius: 6px; cursor: pointer; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(20px); transition: all .3s;
  box-shadow: 0 4px 16px rgba(230,60,40,.5);
}
#scrollTop.visible { opacity: 1; transform: none; }
#scrollTop:hover { background: #c72e1a; transform: translateY(-3px); }

.whatsapp-float {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 1000;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
  transition: transform .25s, box-shadow .25s, background .25s;
}
.whatsapp-float:hover {
  background: #1ebe5b;
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.42);
}
.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* ─── HERO STATS (used in index.html inline styles too) ─── */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  padding: 22px 28px;
  transition: background .3s;
}
.stat-card:hover { background: rgba(255,255,255,.09); }
.stat-card .num { font-family: 'Orbitron', sans-serif; font-weight: 900; font-size: 38px; color: #fff; line-height: 1; }
.stat-card .num span { color: var(--accent2); }
.stat-card .lbl { font-size: 12px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 4px; }

/* ═══════════════════════════════
   RESPONSIVE BREAKPOINTS
   ═══════════════════════════════ */

/* ─── 1920px & Above: Ultra-wide (4K/5K) ─── */
@media (min-width: 1920px) {
  .container { max-width: 1400px; }
  nav { padding: 0 60px; }
  section { padding: 120px 0; }
  .page-header { padding: 160px 0 100px; }
}

/* ─── 1440px - 1919px: Large Desktop ─── */
@media (max-width: 1919px) and (min-width: 1440px) {
  .container { max-width: 1300px; }
  nav { padding: 0 50px; }
  section { padding: 100px 0; }
}

/* ─── 1200px - 1439px: Desktop ─── */
@media (max-width: 1439px) and (min-width: 1200px) {
  section { padding: 90px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { max-width: 100%; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .stat-card .num { font-size: 32px; }
}

/* ─── 1024px - 1199px: Large Tablet/Small Desktop ─── */
@media (max-width: 1199px) and (min-width: 1024px) {
  nav { padding: 0 24px; }
  .container { padding: 0 28px; }
  section { padding: 75px 0; }
  .details-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .caps-grid { grid-template-columns: 1fr; }
  .cap-card-large { padding: 36px 32px; }
  .about-grid { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .page-header { padding: 120px 0 70px; }
  .section-title { font-size: 36px; }
}

/* ─── 768px - 1023px: Tablet ─── */
@media (max-width: 1023px) and (min-width: 768px) {
  nav { padding: 0 20px; }
  .container { padding: 0 24px; }
  section { padding: 60px 0; }
  .page-header { padding: 110px 0 60px; }
  .details-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .detail-card { padding: 20px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-box { padding: 24px 20px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-badge { right: -10px; bottom: -10px; padding: 14px 18px; }
  .about-badge .big { font-size: 32px; }
  .vm-grid { grid-template-columns: 1fr; }
  .vm-card { padding: 32px 28px; }
  .caps-grid { grid-template-columns: 1fr; }
  .cap-card-large { padding: 32px 28px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-card .num { font-size: 28px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ─── 600px - 767px: Mobile (Large) ─── */
@media (max-width: 767px) and (min-width: 600px) {
  /* Navbar */
  nav { padding: 0 16px; height: 58px; }
  .logo-text .brand { font-size: 18px; }
  .logo-text .sub { font-size: 9px; }
  .logo-badge { width: 40px; height: 40px; font-size: 18px; }
  .hamburger { display: flex; }
  
  .nav-links {
    display: none;
    position: fixed;
    top: 58px; left: 0;
    width: 100%; height: calc(100vh - 58px);
    background: var(--navy2);
    flex-direction: column;
    padding: 16px 16px 60px;
    gap: 0;
    border-top: 2px solid var(--accent);
    overflow-y: auto;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 14px; padding: 10px 14px; }
  .nav-links .dropdown-menu {
    position: static;
    display: none;
    background: rgba(255,255,255,.03);
    border: none;
    border-left: 3px solid var(--accent);
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 14px;
    box-shadow: none;
    min-width: unset;
  }
  .nav-links .dropdown.open .dropdown-menu { display: block; }
  .nav-links .dropdown-menu a { padding: 8px 14px; font-size: 13px; }

  /* Page header */
  .container { padding: 0 18px; }
  .page-header { padding: 90px 0 50px; }
  .page-header h1 { font-size: 28px; }
  .page-header p { font-size: 14px; }
  section { padding: 50px 0; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-badge { right: 0; bottom: -12px; padding: 12px 16px; }
  .about-badge .big { font-size: 28px; }
  .details-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .detail-card { padding: 16px 12px; }
  .company-details, .vision-mission, .why-choose { margin: 40px 0; }
  .vm-grid { grid-template-columns: 1fr; }
  .vm-card { padding: 24px 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-box { padding: 24px 20px; }

  /* Capabilities */
  .caps-grid { grid-template-columns: 1fr; gap: 16px; }
  .cap-card-large { padding: 24px 20px; }
  .cap-icon-lg { font-size: 40px; margin-bottom: 14px; }
  .cap-card-large h3 { font-size: 20px; }

  /* Modal */
  .modal { padding: 10px; }
  .modal-content { max-height: 90vh; }
  .modal-header { padding: 20px 16px; }
  .modal-header h2 { font-size: 22px; }
  .modal-close { top: 12px; right: 12px; width: 32px; height: 32px; font-size: 16px; }
  .modal-body { padding: 18px 14px; }
  .modal-body h3 { font-size: 18px; }

  /* CTA */
  .cta-strip { padding: 45px 0; }
  .cta-inner { flex-direction: column; text-align: center; gap: 18px; }
  .cta-strip h2 { font-size: 24px; }
  .btn-white { width: 100%; text-align: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-brand { grid-column: auto; }
  footer { padding: 40px 0 0; }
  .footer-bottom { flex-direction: column; text-align: center; padding: 14px 16px; gap: 6px; }

  /* Hero stats */
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .stat-card { padding: 16px 12px; }
  .stat-card .num { font-size: 24px; }
  .stat-card .lbl { font-size: 10px; }

  /* Scroll btn */
  #scrollTop { bottom: 76px; right: 16px; width: 40px; height: 40px; }
  .whatsapp-float { right: 16px; bottom: 16px; width: 48px; height: 48px; }
  .whatsapp-float svg { width: 25px; height: 25px; }
}

/* ─── 480px - 599px: Mobile (Medium) ─── */
@media (max-width: 599px) and (min-width: 480px) {
  /* Navbar */
  nav { padding: 0 14px; height: 56px; }
  .logo-text .brand { font-size: 16px; }
  .logo-text .sub { font-size: 8px; }
  .logo-badge { width: 38px; height: 38px; font-size: 16px; }
  .hamburger { display: flex; }
  
  .nav-links {
    display: none;
    position: fixed;
    top: 56px; left: 0;
    width: 100%; height: calc(100vh - 56px);
    background: var(--navy2);
    flex-direction: column;
    padding: 12px 14px 60px;
    gap: 0;
    border-top: 2px solid var(--accent);
    overflow-y: auto;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 13px; padding: 9px 12px; }
  .nav-links .dropdown-menu {
    position: static;
    display: none;
    background: rgba(255,255,255,.02);
    border-left: 3px solid var(--accent);
    padding: 0;
    margin: 0 0 0 12px;
  }
  .nav-links .dropdown.open .dropdown-menu { display: block; }
  .nav-links .dropdown-menu a { padding: 7px 12px; font-size: 12px; }

  .container { padding: 0 16px; }
  .page-header { padding: 80px 0 45px; }
  .page-header h1 { font-size: 24px; letter-spacing: 0; }
  .page-header p { font-size: 13px; }
  section { padding: 45px 0; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 35px; }
  .about-badge { padding: 10px 14px; }
  .about-badge .big { font-size: 24px; }
  .details-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .detail-card { padding: 14px 10px; }
  .detail-icon { font-size: 32px; }
  .detail-card h4 { font-size: 14px; }
  .detail-card p { font-size: 12px; }
  .vm-grid { grid-template-columns: 1fr; }
  .vm-card { padding: 20px 16px; }
  .vm-icon { font-size: 44px; }
  .vm-card h3 { font-size: 18px; }
  .vm-card p { font-size: 14px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-box { padding: 20px 16px; }
  .feat-num { width: 44px; height: 44px; font-size: 18px; }
  .feature-box h4 { font-size: 16px; }
  .feature-box p { font-size: 13px; }

  /* Modal */
  .modal { padding: 8px; }
  .modal-header { padding: 18px 14px; }
  .modal-header h2 { font-size: 20px; }
  .modal-close { width: 30px; height: 30px; font-size: 15px; }
  .modal-body { padding: 16px 12px; }
  .modal-body h3 { font-size: 17px; margin: 20px 0 12px; }

  /* CTA */
  .cta-strip { padding: 40px 0; }
  .cta-inner { gap: 16px; }
  .cta-strip h2 { font-size: 20px; }
  .btn-white { font-size: 12px; padding: 12px 28px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  footer { padding: 36px 0 0; }
  .footer-bottom { padding: 12px 14px; }
  .footer-bottom p { font-size: 11px; }

  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .stat-card { padding: 14px 10px; }
  .stat-card .num { font-size: 22px; }
  .stat-card .lbl { font-size: 9px; }

  #scrollTop { bottom: 74px; right: 14px; width: 36px; height: 36px; font-size: 18px; }
  .whatsapp-float { right: 14px; bottom: 14px; width: 46px; height: 46px; }
  .whatsapp-float svg { width: 24px; height: 24px; }
}

/* ─── Below 480px: Mobile (Small/Extra Small) ─── */
@media (max-width: 479px) {
  /* Navbar */
  nav { padding: 0 12px; height: 54px; }
  .logo-text .brand { font-size: 13px; letter-spacing: 0; }
  .logo-text .sub { display: none; }
  .logo-badge { width: 36px; height: 36px; font-size: 15px; }
  .hamburger { display: flex; }
  
  .nav-links {
    display: none;
    position: fixed;
    top: 54px; left: 0;
    width: 100%; height: calc(100vh - 54px);
    background: var(--navy2);
    flex-direction: column;
    padding: 10px 12px 50px;
    gap: 0;
    border-top: 2px solid var(--accent);
    overflow-y: auto;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 12px; padding: 8px 10px; }
  .nav-links .dropdown > a::after { font-size: 9px; }
  .nav-links .dropdown-menu {
    position: static;
    display: none;
    background: rgba(255,255,255,.02);
    border-left: 2px solid var(--accent);
    padding: 0;
    margin: 0 0 0 10px;
  }
  .nav-links .dropdown.open .dropdown-menu { display: block; }
  .nav-links .dropdown-menu a { padding: 6px 10px; font-size: 11px; }

  .container { padding: 0 14px; }
  .page-header { padding: 70px 0 40px; }
  .page-header h1 { font-size: 20px; letter-spacing: 0; }
  .breadcrumb { font-size: 11px; }
  .page-header p { font-size: 12px; line-height: 1.6; }
  section { padding: 40px 0; }

  /* Layout */
  .section-tag { font-size: 10px; gap: 6px; margin-bottom: 8px; }
  .section-tag::before { width: 24px; }
  .section-title { font-size: 18px; margin-bottom: 12px; letter-spacing: 0; }
  .lead { font-size: 13px; line-height: 1.7; }
  section p { font-size: 13px; line-height: 1.7; margin-bottom: 12px; }

  /* About */
  .about-content { padding: 40px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .about-img-placeholder { aspect-ratio: 3/2; }
  .about-img-placeholder .big-icon { font-size: 60px; }
  .about-img-placeholder p { font-size: 12px; }
  .about-badge { padding: 8px 12px; right: -8px; bottom: -8px; }
  .about-badge .big { font-size: 20px; }
  .about-badge small { font-size: 9px; }
  
  .company-details, .vision-mission, .why-choose { margin: 35px 0; }
  .details-grid { grid-template-columns: 1fr; gap: 12px; }
  .detail-card { padding: 12px 10px; }
  .detail-icon { font-size: 28px; margin-bottom: 10px; }
  .detail-card h4 { font-size: 13px; }
  .detail-card p { font-size: 11px; }

  .vm-grid { grid-template-columns: 1fr; gap: 14px; }
  .vm-card { padding: 18px 14px; }
  .vm-icon { font-size: 40px; margin-bottom: 14px; }
  .vm-card h3 { font-size: 16px; margin-bottom: 12px; }
  .vm-card p { font-size: 13px; line-height: 1.7; }

  .features-grid { grid-template-columns: 1fr; gap: 14px; }
  .feature-box { padding: 18px 14px; }
  .feat-num { width: 40px; height: 40px; font-size: 16px; margin-bottom: 12px; }
  .feature-box h4 { font-size: 14px; margin-bottom: 8px; }
  .feature-box p { font-size: 12px; line-height: 1.6; }

  /* Capabilities */
  .caps-hero { padding: 40px 0; }
  .caps-grid { grid-template-columns: 1fr; gap: 14px; }
  .cap-card-large { padding: 18px 14px; }
  .cap-icon-lg { font-size: 36px; margin-bottom: 12px; }
  .cap-card-large h3 { font-size: 18px; }
  .cap-card-large p { font-size: 13px; margin-bottom: 14px; }
  .read-more-btn { font-size: 11px; padding: 9px 18px; }

  /* Modal */
  .modal { padding: 6px; }
  .modal-content { max-height: 92vh; border-radius: 8px; }
  .modal-header { padding: 16px 12px; border-radius: 8px 8px 0 0; }
  .modal-header h2 { font-size: 18px; margin-bottom: 6px; }
  .modal-header p { font-size: 12px; }
  .modal-close { top: 10px; right: 10px; width: 28px; height: 28px; font-size: 14px; }
  .modal-body { padding: 14px 12px; }
  .modal-body h3 { font-size: 15px; margin: 16px 0 10px; padding-bottom: 8px; }
  .modal-body h3:first-child { margin-top: 0; }
  .modal-body p { font-size: 12px; line-height: 1.7; margin-bottom: 12px; }
  .modal-body ul { margin-left: 18px; margin-bottom: 12px; }
  .modal-body ul li { font-size: 12px; line-height: 1.7; margin-bottom: 8px; }

  /* CTA */
  .cta-strip { padding: 35px 0; }
  .cta-inner { gap: 14px; }
  .cta-strip h2 { font-size: 16px; }
  .cta-strip p { font-size: 13px; margin-top: 6px; }
  .btn-white { font-size: 11px; padding: 11px 22px; }

  /* Footer */
  footer { padding: 32px 0 0; border-top: 2px solid var(--accent); }
  .footer-grid { grid-template-columns: 1fr; gap: 18px; }
  .footer-brand .logo-badge-lg { width: 46px; height: 46px; font-size: 22px; }
  .footer-brand h3 { font-size: 18px; }
  .footer-brand .tagline { font-size: 9px; margin-bottom: 12px; }
  .footer-brand p { font-size: 12px; max-width: 100%; line-height: 1.6; }
  .footer-brand .iso-tag { font-size: 10px; padding: 4px 10px; }
  footer h4 { font-size: 14px; margin-bottom: 12px; padding-bottom: 8px; }
  footer h4::after { width: 20px; }
  footer ul li a { font-size: 12px; gap: 6px; }
  footer ul li a::before { font-size: 14px; }
  .footer-bottom { padding: 12px 12px; gap: 4px; }
  .footer-bottom p { font-size: 10px; }

  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .stat-card { padding: 12px 8px; }
  .stat-card .num { font-size: 18px; }
  .stat-card .num span { color: var(--accent2); }
  .stat-card .lbl { font-size: 8px; margin-top: 3px; }

  #scrollTop { bottom: 70px; right: 12px; width: 34px; height: 34px; font-size: 16px; }
  .whatsapp-float { right: 12px; bottom: 12px; width: 44px; height: 44px; }
  .whatsapp-float svg { width: 22px; height: 22px; }
}
