/* ===== CSS VARIABLES ===== */
:root {
  --navy: #003F59;
  --navy-dark: #002a3d;
  --navy-light: #004d6e;
  --gold: #FFAA00;
  --gold-dark: #e09600;
  --gold-light: #ffbb33;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --light-bg: #f0f4f7;
  --text: #1a2332;
  --text-muted: #5a6a7a;
  --border: #dde4ea;
  --shadow: 0 4px 24px rgba(0,63,89,0.10);
  --shadow-lg: 0 8px 40px rgba(0,63,89,0.16);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.3s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }
@media (max-width: 480px) { .container { padding: 0 16px; } }
.section { padding: 90px 0; }
.bg-light { background: var(--light-bg); }
.gold { color: var(--gold); }

.section-label {
  display: inline-block;
  background: rgba(255,170,0,0.12);
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-header { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.section-header h2 { font-family: 'Poppins', sans-serif; font-size: 2.2rem; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.95rem; cursor: pointer;
  border: 2px solid transparent; transition: var(--transition);
}
.btn-primary { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,170,0,0.35); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-gold { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); font-weight: 700; }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); }
.btn-sm { padding: 9px 20px; font-size: 0.85rem; margin-top: 16px; }
.btn-full { width: 100%; justify-content: center; padding: 15px; font-size: 1rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent; transition: var(--transition);
  padding: 18px 0;
}
.navbar.scrolled {
  background: var(--navy-dark);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { width: 42px; height: 42px; border-radius: 8px; object-fit: cover; }
.nav-logo span { font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 700; color: var(--white); line-height: 1.2; }
.nav-logo span .gold { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-link {
  color: rgba(255,255,255,0.85); font-size: 0.9rem; font-weight: 500;
  padding: 8px 14px; border-radius: var(--radius-sm); transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-link.nav-cta {
  background: var(--gold); color: var(--navy-dark); font-weight: 700;
  padding: 9px 20px;
}
.nav-link.nav-cta:hover { background: var(--gold-dark); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; z-index: 1001; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile dropdown menu */
.mobile-menu {
  display: none;
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  animation: slideDown 0.25s ease;
}
.mobile-menu.open { display: block; }
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-nav-links { padding: 12px 0; margin: 0; list-style: none; }
.mobile-nav-links li { border-bottom: 1px solid rgba(255,255,255,0.06); }
.mobile-nav-links li:last-child { border-bottom: none; padding: 12px 0; }
.mobile-nav-link {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 8px; color: rgba(255,255,255,0.85);
  font-size: 0.95rem; font-weight: 500; transition: var(--transition);
}
.mobile-nav-link i { color: var(--gold); width: 18px; font-size: 0.9rem; }
.mobile-nav-link:hover { color: var(--white); padding-left: 14px; }
.mobile-nav-cta {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--gold); color: var(--navy-dark) !important;
  font-weight: 700; border-radius: var(--radius-sm);
  padding: 13px 20px; margin: 0 8px;
}
.mobile-nav-cta i { color: var(--navy-dark); }
.mobile-nav-cta:hover { background: var(--gold-dark); padding-left: 20px; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  position: relative; overflow: hidden; width: 100%;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 420px;
  gap: 60px; align-items: center;
  padding: 120px 24px 80px;
}
.hero-text { display: flex; flex-direction: column; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,170,0,0.15); border: 1px solid rgba(255,170,0,0.3);
  color: var(--gold-light); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 50px; margin-bottom: 24px;
  width: fit-content;
}
.hero h1 {
  font-family: 'Poppins', sans-serif; font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 22px;
}
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.75); max-width: 560px; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; align-items: center; gap: 32px; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 800; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

/* Hero image */
.hero-image {
  position: relative; display: flex; justify-content: center;
}
.hero-image img {
  width: 100%; height: auto; object-fit: contain;
  object-position: center top;
  border-radius: 20px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,170,0,0.2);
  border: 3px solid rgba(255,170,0,0.3);
  filter: brightness(1.05) contrast(1.05);
}
.hero-img-badge {
  position: absolute; bottom: -16px; left: 24px;
  background: var(--gold); color: var(--navy-dark);
  font-size: 0.82rem; font-weight: 700;
  padding: 10px 20px; border-radius: 50px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 16px rgba(255,170,0,0.4);
}
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.5); font-size: 1.2rem; animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ===== ABOUT VISUAL (IMAGE STACK) ===== */
.about-img-stack {
  position: relative; width: 100%; height: 420px;
}
.about-img-main {
  width: 85%; height: 360px; object-fit: cover;
  border-radius: 16px; box-shadow: var(--shadow-lg);
  position: absolute; top: 0; left: 0;
}
.about-img-secondary {
  width: 55%; height: 200px; object-fit: cover;
  border-radius: 12px; box-shadow: var(--shadow-lg);
  position: absolute; bottom: 0; right: 0;
  border: 4px solid var(--white);
}
.about-img-badge, .about-img-badge2 {
  position: absolute; background: var(--white); border-radius: 50px;
  padding: 10px 18px; font-size: 0.82rem; font-weight: 600; color: var(--navy);
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 8px;
  z-index: 2;
}
.about-img-badge i, .about-img-badge2 i { color: var(--gold); }
.about-img-badge  { bottom: 60px; left: -10px; }
.about-img-badge2 { top: 20px; right: -10px; }

/* ===== IMAGE STRIP ===== */
.img-strip { overflow: hidden; }
.img-strip-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); height: 260px;
}
.img-strip-item { position: relative; overflow: hidden; }
.img-strip-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.img-strip-item:hover img { transform: scale(1.08); }
.img-strip-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,42,61,0.85) 0%, transparent 60%);
  display: flex; align-items: flex-end; padding: 18px;
  transition: var(--transition);
}
.img-strip-overlay span {
  color: var(--white); font-weight: 700; font-size: 0.95rem;
  font-family: 'Poppins', sans-serif; letter-spacing: 0.02em;
}

/* ===== WHY US VISUAL ROW ===== */
.why-visual-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: stretch;
}
.why-visual-img { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 300px; }
.why-visual-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.why-visual-quote {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,42,61,0.95) 0%, transparent 100%);
  padding: 32px 24px 24px;
}
.why-visual-quote i { color: var(--gold); font-size: 1.2rem; margin-bottom: 8px; display: block; }
.why-visual-quote p { color: var(--white); font-size: 0.95rem; font-style: italic; line-height: 1.6; margin-bottom: 8px; }
.why-visual-quote span { color: var(--gold-light); font-size: 0.8rem; font-weight: 600; }
.why-visual-row .approach-strip { border-radius: var(--radius); display: flex; flex-direction: column; justify-content: center; }
.about-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 70px; align-items: center; }
.about-visual { position: relative; }
.about-card-main {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 20px; padding: 48px 36px; text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-logo { width: 120px; height: 120px; border-radius: 16px; object-fit: cover; margin: 0 auto 20px; border: 3px solid rgba(255,170,0,0.3); }
.about-tagline { color: rgba(255,255,255,0.8); font-style: italic; font-size: 0.95rem; }
.about-badge-float {
  position: absolute; background: var(--white); border-radius: 50px;
  padding: 10px 18px; font-size: 0.82rem; font-weight: 600; color: var(--navy);
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 8px;
}
.about-badge-float i { color: var(--gold); }
.badge-1 { bottom: -16px; left: -20px; }
.badge-2 { top: -16px; right: -20px; }
.about-text .section-label { margin-bottom: 10px; }
.about-text h2 { font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 700; color: var(--navy); margin-bottom: 18px; }
.about-text p { color: var(--text-muted); margin-bottom: 16px; }
.about-objective {
  display: flex; gap: 14px; align-items: flex-start;
  background: rgba(255,170,0,0.07); border-left: 3px solid var(--gold);
  padding: 16px 20px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 20px 0;
}
.about-objective i { font-size: 1.2rem; margin-top: 2px; flex-shrink: 0; }
.about-objective p { margin: 0; color: var(--text); }
.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 20px; }
.pillar { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 500; color: var(--navy); }
.pillar i { color: var(--gold); }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white); border-radius: var(--radius); padding: 32px 28px;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white); border-color: transparent;
}
.service-card.featured h3 { color: var(--white); }
.service-card.featured ul li { color: rgba(255,255,255,0.8); }
.service-card.featured ul li::before { color: var(--gold); }
.service-card.featured .service-desc { color: rgba(255,255,255,0.7); }
.service-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--gold); color: var(--navy-dark);
  font-size: 0.7rem; font-weight: 700; padding: 3px 10px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.service-icon {
  width: 52px; height: 52px; background: rgba(255,170,0,0.12);
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--gold); margin-bottom: 18px;
}
.service-card.featured .service-icon { background: rgba(255,170,0,0.2); }
.service-card h3 { font-family: 'Poppins', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.service-desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 14px; }
.service-card ul { display: flex; flex-direction: column; gap: 7px; }
.service-card ul li { font-size: 0.88rem; color: var(--text-muted); padding-left: 16px; position: relative; }
.service-card ul li::before { content: '•'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.cta-card {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-color: transparent; text-align: center; display: flex;
  flex-direction: column; align-items: center; justify-content: center; gap: 14px;
}
.cta-card h3 { color: var(--navy-dark); }
.cta-card p { color: var(--navy); font-size: 0.9rem; }
.cta-icon { font-size: 2.5rem; color: var(--navy-dark); }
.cta-card .btn-primary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.cta-card .btn-primary:hover { background: var(--navy-dark); }

/* ===== LABOUR CODES BANNER ===== */
.labour-codes-banner {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  padding: 48px 0;
}
.lcb-inner { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.lcb-icon { font-size: 2.8rem; color: var(--navy-dark); flex-shrink: 0; }
.lcb-text { flex: 1; min-width: 260px; }
.lcb-text h3 { font-family: 'Poppins', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--navy-dark); margin-bottom: 6px; }
.lcb-text p { color: var(--navy); font-size: 0.95rem; }
.lcb-inner .btn-gold { background: var(--navy); color: var(--white); border-color: var(--navy); flex-shrink: 0; }
.lcb-inner .btn-gold:hover { background: var(--navy-dark); }

/* ===== INDUSTRIES ===== */
.industries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.industry-card {
  background: var(--white); border-radius: var(--radius); padding: 28px 20px;
  text-align: center; box-shadow: var(--shadow); border: 1px solid var(--border);
  transition: var(--transition); display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.industry-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.industry-card i { font-size: 2rem; color: var(--navy); transition: var(--transition); }
.industry-card:hover i { color: var(--gold); }
.industry-card span { font-weight: 600; font-size: 0.95rem; color: var(--navy); }

/* ===== WHY US ===== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 50px; }
.why-card {
  background: var(--white); border-radius: var(--radius); padding: 28px 24px;
  box-shadow: var(--shadow); border: 1px solid var(--border); transition: var(--transition);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.why-icon {
  width: 48px; height: 48px; background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--gold); margin-bottom: 16px;
}
.why-card h4 { font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.why-card p { font-size: 0.88rem; color: var(--text-muted); }
.approach-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius); padding: 36px 40px;
}
.approach-strip h3 { font-family: 'Poppins', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 24px; text-align: center; }
.approach-items { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.approach-item {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); color: var(--white);
  padding: 10px 18px; border-radius: 50px; font-size: 0.88rem; font-weight: 500;
}
.approach-item i { color: var(--gold); }

/* ===== CONTACT ===== */
.contact { background: var(--navy-dark); }
.contact .section-label { background: rgba(255,170,0,0.15); color: var(--gold-light); }
.contact .section-header h2 { color: var(--white); }
.contact .section-header p { color: rgba(255,255,255,0.65); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.contact-icon {
  width: 44px; height: 44px; background: rgba(255,170,0,0.15);
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--gold); flex-shrink: 0;
}
.contact-item h4 { font-size: 0.85rem; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.contact-item p, .contact-item a { color: var(--white); font-size: 0.95rem; }
.contact-item a:hover { color: var(--gold); }
.contact-services h4 { font-size: 0.85rem; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
.contact-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.contact-tags span {
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.8);
  padding: 6px 14px; border-radius: 50px; font-size: 0.82rem; font-weight: 500;
  border: 1px solid rgba(255,255,255,0.12);
}

/* ===== CONTACT FORM ===== */
.contact-form {
  background: var(--white); border-radius: var(--radius);
  padding: 36px 32px; box-shadow: var(--shadow-lg);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--navy); text-transform: uppercase; letter-spacing: 0.05em; }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px; border: 2px solid var(--border); border-radius: var(--radius-sm);
  font-size: 0.95rem; font-family: 'Inter', sans-serif; color: var(--text);
  background: var(--white); transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--navy); box-shadow: 0 0 0 3px rgba(0,63,89,0.08);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-success {
  display: none; align-items: center; gap: 10px; margin-top: 14px;
  background: rgba(34,197,94,0.1); color: #16a34a;
  padding: 12px 16px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.9rem;
}
.form-success.show { display: flex; }

/* ===== FOOTER ===== */
.footer { background: #001e2d; padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 50px; }
.footer-logo { width: 60px; height: 60px; border-radius: 10px; object-fit: cover; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.7; margin-bottom: 8px; }
.footer-tagline { font-style: italic; font-size: 0.9rem !important; }
.footer h4 { font-family: 'Poppins', sans-serif; font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-links ul, .footer-services ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-services a { color: rgba(255,255,255,0.55); font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover, .footer-services a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact p { color: rgba(255,255,255,0.55); font-size: 0.9rem; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.footer-contact i { color: var(--gold); width: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.82rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-visual-row { grid-template-columns: 1fr; }
  .hero-content { grid-template-columns: 1fr 340px; gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .section-header { margin-bottom: 40px; }
  .section-header h2 { font-size: 1.65rem; }
  .section-header p { font-size: 0.95rem; }

  /* Navbar */
  .nav-logo span { font-size: 0.82rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero-content {
    grid-template-columns: 1fr !important;
    padding: 90px 20px 48px !important;
    gap: 0 !important;
  }
  .hero-image { display: none !important; }
  .hero-text { width: 100%; }
  .hero h1 { font-size: clamp(1.6rem, 6vw, 2.1rem) !important; margin-bottom: 14px; line-height: 1.25; }
  .hero-sub { font-size: 0.93rem; margin-bottom: 24px; max-width: 100%; }
  .hero-btns { flex-direction: column; gap: 10px; margin-bottom: 32px; }
  .hero-btns .btn { width: 100%; justify-content: center; padding: 13px 20px; }
  .hero-stats { gap: 14px; flex-wrap: nowrap; justify-content: flex-start; }
  .stat-num { font-size: 1.5rem; }
  .stat-label { font-size: 0.72rem; }
  .stat-divider { height: 32px; }
  .hero-badge { font-size: 0.7rem; padding: 6px 12px; margin-bottom: 18px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 0; }
  .about-visual { display: none; }
  .about-text h2 { font-size: 1.6rem; }
  .about-text p { font-size: 0.93rem; }
  .about-pillars { grid-template-columns: 1fr; gap: 8px; }
  .about-objective { padding: 14px 16px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Industries */
  .industries-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .industry-card { padding: 20px 14px; }

  /* Why us */
  .why-grid { grid-template-columns: 1fr; }
  .why-visual-row { grid-template-columns: 1fr; }
  .approach-strip { padding: 28px 20px; }

  /* Labour codes */
  .lcb-inner { flex-direction: column; text-align: center; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 18px; }

  /* Image strip */
  .img-strip-grid { grid-template-columns: repeat(2, 1fr); height: auto; }
  .img-strip-item { height: 160px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .section { padding: 48px 0; }

  /* Hero */
  .hero-content { padding: 85px 16px 40px !important; }
  .hero h1 { font-size: 1.45rem !important; line-height: 1.25; }
  .hero-sub { font-size: 0.88rem; }
  .hero-stats { gap: 10px; }
  .stat-num { font-size: 1.3rem; }
  .stat-divider { height: 24px; }
  .hero-badge { font-size: 0.65rem; padding: 5px 10px; }

  /* About */
  .about-text h2 { font-size: 1.4rem; }
  .about-pillars { grid-template-columns: 1fr; }

  /* Industries */
  .industries-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .industry-card { padding: 16px 10px; }
  .industry-card i { font-size: 1.5rem; }
  .industry-card span { font-size: 0.8rem; }

  /* Image strip */
  .img-strip-grid { grid-template-columns: 1fr 1fr; }
  .img-strip-item { height: 130px; }
  .img-strip-overlay span { font-size: 0.75rem; }
  .img-strip-overlay { padding: 12px; }

  /* Approach */
  .approach-items { gap: 8px; }
  .approach-item { font-size: 0.8rem; padding: 8px 12px; }

  /* Footer */
  .footer-grid { gap: 24px; }
  .footer-bottom p { font-size: 0.75rem; }

  /* WhatsApp */
  .whatsapp-float { width: 50px; height: 50px; font-size: 1.5rem; bottom: 20px; right: 20px; }
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px; background: #25D366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--white);
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: var(--transition);
}
.whatsapp-float:hover {
  background: #1ebe5d; transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.55);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }
.whatsapp-tooltip {
  position: absolute; right: 68px;
  background: var(--navy-dark); color: var(--white);
  font-size: 0.82rem; font-weight: 600; white-space: nowrap;
  padding: 8px 14px; border-radius: 8px;
  opacity: 0; transform: translateX(8px);
  transition: var(--transition); pointer-events: none;
}
.whatsapp-tooltip::after {
  content: ''; position: absolute; right: -6px; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--navy-dark); border-right: none;
}

/* ===== ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
