/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Barlow', sans-serif;
  color: #1a1a2e;
  background: #ffffff;
  overflow-x: hidden;
}
body.nav-open,
body.sidebar-open {
  overflow: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== CSS VARIABLES ===== */
:root {
  --navy: #0a1628;
  --navy-mid: #132240;
  --navy-light: #1e3460;
  --red: #c8102e;
  --red-dark: #a00d24;
  --red-light: #e8192e;
  --white: #ffffff;
  --off-white: #f4f6fb;
  --gray: #6b7280;
  --light-gray: #e5e7eb;
  --section-pad: 100px 0;
}

/* ===== TYPOGRAPHY ===== */
.section-tag {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  border-left: 3px solid var(--red);
  padding-left: 10px;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-tag { border-left: none; padding-left: 0; }
.section-header.light .section-title { color: var(--white); }
.section-header.light .section-tag { color: #f87a8a; }

/* ===== CONTAINER ===== */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 2px solid var(--red);
  cursor: pointer;
  transition: all 0.25s ease;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
}
.btn-primary.full-width { width: 100%; justify-content: center; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 30px;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
#navbar.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.nav-container {
  width: 100%;
  max-width: 100%;        /* ← remove the 1240px cap */
  margin: 0;
  padding: 0 48px;        /* ← control spacing with padding only */
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.nav-logo img { height: 50px; width: auto; }
.logo-text-fallback {
  display: none;
  align-items: center;
  gap: 10px;
}
.logo-le {
  background: var(--red);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.logo-sub {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--navy);
  overflow: hidden;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(200, 16, 46, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(30, 52, 96, 0.8) 0%, transparent 50%),
    linear-gradient(135deg, #0a1628 0%, #132240 50%, #0d1e3a 100%);
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  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: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 120px;
}
.hero-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-badge::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--red);
}
.hero-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.hero-title .line1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 300;
  color: rgba(255,255,255,0.2);
  line-height: 0.9;
  letter-spacing: 0.05em;
  -webkit-text-stroke: 1px rgba(255,255,255,0.3);
}
.hero-title .line2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 800;
  color: var(--white);
  line-height: 0.9;
  letter-spacing: 0.02em;
}
.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.hero-desc {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-stats {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 40px 24px 60px;
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  padding: 0 40px;
}
.stat:first-child { padding-left: 0; }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* ===== ABOUT ===== */
.about {
  padding: var(--section-pad);
  background: var(--off-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-left p {
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1.05rem;
}
.about-left strong { color: var(--navy); font-weight: 600; }
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
}
.highlight-icon { color: var(--red); font-size: 0.7rem; }
.about-right { }
.about-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 460px;
  margin: 0 auto;
}
.visual-card {
  position: absolute;
  background: var(--white);
  border-radius: 2px;
  padding: 20px 24px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.3s ease;
  border-left: 3px solid var(--red);
}
.visual-card:hover { transform: scale(1.03); }
.vc-icon { font-size: 1.8rem; }
.vc-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
}
.vc1 { top: 0; left: 0; width: 48%; }
.vc2 { top: 0; right: 0; width: 48%; }
.vc3 { bottom: 0; left: 0; width: 48%; }
.vc4 { bottom: 0; right: 0; width: 48%; }
.about-center-badge {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 110px; height: 110px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--red);
  z-index: 5;
}
.acb-inner { text-align: center; }
.acb-year {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.acb-label {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ===== SERVICES ===== */
.services {
  padding: var(--section-pad);
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--off-white);
  padding: 36px 28px;
  position: relative;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--navy);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s ease;
  z-index: 0;
}
.service-card:hover::before { transform: scaleY(1); }
.service-card:hover { border-bottom-color: var(--red); }
.service-card:hover h3,
.service-card:hover p { color: var(--white); }
.service-card:hover .sc-icon-wrap { color: var(--red); background: rgba(200,16,46,0.15); }
.service-card > * { position: relative; z-index: 1; }
.service-card.featured { background: var(--navy); border-bottom: 3px solid var(--red); }
.service-card.featured::before { background: var(--navy-mid); }
.service-card.featured h3,
.service-card.featured p { color: var(--white); }
.service-card.featured .sc-icon-wrap { color: var(--red); background: rgba(200,16,46,0.2); }
.sc-icon-wrap {
  width: 56px; height: 56px;
  background: rgba(10,22,40,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--navy);
  transition: all 0.3s ease;
}
.sc-icon-wrap svg { width: 28px; height: 28px; }
.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--navy);
  margin-bottom: 12px;
  transition: color 0.3s ease;
}
.service-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gray);
  transition: color 0.3s ease;
}
.featured-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--red);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
}

/* ===== PRODUCTS ===== */
.products {
  padding: var(--section-pad);
  background: var(--navy);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.product-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.product-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.product-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-4px);
}
.product-card:hover::after { transform: scaleX(1); }
.pc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.pc-icon { font-size: 1.6rem; }
.pc-header h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
}
.product-card ul { margin-bottom: 16px; }
.product-card ul li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-left: 14px;
  position: relative;
}
.product-card ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: bold;
}
.pc-brands {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  padding-top: 8px;
  border-top: 1px solid rgba(200,16,46,0.3);
}

/* ===== SPECS TABLE ===== */
.specs-section { margin-top: 20px; }
.specs-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 20px;
}
.table-subtitle {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  margin: 24px 0 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.table-wrap { overflow-x: auto; }
.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin-bottom: 8px;
}
.specs-table thead tr {
  background: var(--red);
}
.specs-table th {
  padding: 12px 16px;
  text-align: left;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
}
.specs-table td {
  padding: 11px 16px;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  white-space: nowrap;
}
.specs-table tbody tr:nth-child(even) {
  background: rgba(255,255,255,0.03);
}
.specs-table tbody tr:hover {
  background: rgba(200,16,46,0.1);
}

/* ===== CONTACT ===== */
.contact {
  padding: var(--section-pad);
  background: var(--off-white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}
.contact-info { }
.ci-block {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--light-gray);
}
.ci-icon { font-size: 1.4rem; margin-top: 2px; flex-shrink: 0; }
.ci-block h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}
.ci-block p {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.7;
}
.ci-block a { color: var(--navy); font-weight: 500; }
.ci-block a:hover { color: var(--red); }
.closed { color: var(--red) !important; font-weight: 500; }
.social-links h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.social-icons { display: flex; gap: 12px; }
.social-btn {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--light-gray);
  color: var(--gray);
  transition: all 0.25s ease;
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover { transform: translateY(-3px); }
.social-btn.fb:hover { background: #1877f2; border-color: #1877f2; color: white; }
.social-btn.ig:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); border-color: #cc2366; color: white; }
.social-btn.li:hover { background: #0077b5; border-color: #0077b5; color: white; }

/* ===== CONTACT FORM ===== */
.contact-form-wrap {
  background: var(--white);
  padding: 44px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.08);
  width: 100%;
}
.contact-form h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  letter-spacing: 0.05em;
  margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--light-gray);
  background: var(--off-white);
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  color: var(--navy);
  outline: none;
  transition: border-color 0.2s ease;
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  background: var(--white);
}
.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 12px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { height: 48px; width: auto; margin-bottom: 12px; }
.footer-logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all 0.2s ease;
}
.footer-social a svg { width: 16px; height: 16px; }
.footer-social a:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.footer-links h4,
.footer-contact h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s ease;
}
.footer-links ul li a:hover { color: var(--white); }
.footer-contact p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 10px;
}
.footer-contact a { color: rgba(255,255,255,0.6); }
.footer-contact a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ===== FLOATING BUTTONS ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: all 0.3s ease;
}
.whatsapp-btn svg { width: 28px; height: 28px; fill: white; }
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px; height: 44px;
  background: var(--red);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: all 0.3s ease;
}
.scroll-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.scroll-top svg { width: 18px; height: 18px; stroke: white; }
.scroll-top:hover { background: var(--red-dark); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-badge { animation: fadeUp 0.6s ease 0.2s both; }
.hero-title { animation: fadeUp 0.6s ease 0.4s both; }
.hero-tagline { animation: fadeUp 0.6s ease 0.55s both; }
.hero-desc { animation: fadeUp 0.6s ease 0.65s both; }
.hero-actions { animation: fadeUp 0.6s ease 0.75s both; }
.hero-stats { animation: fadeUp 0.6s ease 0.9s both; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-right { display: none; }
}

@media (max-width: 768px) {
  :root { --section-pad: 70px 0; }
  .container,
  .nav-container,
  .hero-content,
  .hero-stats { padding-left: 18px; padding-right: 18px; }
  .nav-container { height: 68px; }
  .nav-logo img { height: 42px; }
  .logo-name { font-size: 0.95rem; }
  .logo-sub { font-size: 0.65rem; }
  .nav-links {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    box-shadow: 0 16px 30px rgba(0,0,0,0.25);
  }
  .nav-links.open { max-height: 300px; }
  .nav-links a {
    display: block;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .contact-form-wrap { padding: 28px 20px; }
  .hero {
    min-height: auto;
    padding-bottom: 36px;
  }
  .hero-content {
    padding-top: 112px;
  }
  .hero-badge {
    letter-spacing: 0.18em;
    gap: 10px;
  }
  .hero-badge::before { width: 24px; }
  .hero-desc {
    line-height: 1.6;
    margin-bottom: 28px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
    padding-left: 18px;
    padding-right: 18px;
  }
  .hero-stats {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding-top: 28px;
    padding-bottom: 0;
  }
  .stat-divider { display: none; }
  .stat {
    padding: 0;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 16px 18px;
  }
  .about-highlights { grid-template-columns: 1fr; }
  .section-header { margin-bottom: 40px; }
  .service-card,
  .product-card { padding: 24px 20px; }
  .contact-grid { gap: 32px; }
  .ci-block {
    gap: 12px;
    margin-bottom: 22px;
    padding-bottom: 22px;
  }
  .footer { padding-top: 56px; }
}

@media (max-width: 480px) {
  :root { --section-pad: 56px 0; }
  .nav-container,
  .container,
  .hero-content,
  .hero-stats { padding-left: 14px; padding-right: 14px; }
  .logo-name { font-size: 0.88rem; }
  .logo-sub { display: none; }
  .hero-badge {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }
  .hero-title .line1,
  .hero-title .line2 {
    font-size: clamp(2.7rem, 14vw, 3.5rem);
    line-height: 0.95;
  }
  .hero-tagline { font-size: 1rem; line-height: 1.5; }
  .section-title { font-size: 1.8rem; }
  .about-left p,
  .ci-block p,
  .service-card p { font-size: 0.95rem; }
  .contact-form h3 { font-size: 1.35rem; }
  .whatsapp-btn {
    width: 52px;
    height: 52px;
    right: 16px;
    bottom: 82px;
  }
  .scroll-top {
    right: 16px;
    bottom: 18px;
  }
}


/* =====================================================
   HERO — IMAGE BACKGROUND MODE
   ===================================================== */
.hero-img-mode {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
}
/* The background image div — set background-image via inline style or replace herobg.png */
.hero-img-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/herobg.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
}
/* Dark overlay so text stays readable */
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.82) 0%,
    rgba(10, 22, 40, 0.65) 50%,
    rgba(200, 16, 46, 0.18) 100%
  );
  z-index: 1;
}
/* All hero children sit above overlay */
.hero-img-mode .hero-content,
.hero-img-mode .hero-stats {
  position: relative;
  z-index: 2;
}
/* Remove the old CSS-only overlay & grid (not needed when using image) */
.hero-img-mode .hero-bg-overlay,
.hero-img-mode .hero-grid-lines { display: none; }


/* =====================================================
   ABOUT — HERO-STYLE DARK PANEL (right side)
   ===================================================== */
.about-hero-panel {
  position: relative;
  background: var(--navy);
  height: 100%;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ahp-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.ahp-red-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--red);
}
.ahp-inner {
  position: relative;
  z-index: 2;
  padding: 44px 40px;
}
.ahp-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.ahp-badge::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--red);
}
.ahp-title-block {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}
.ahp-big {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 0.92;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.18);
  -webkit-text-stroke: 1px rgba(255,255,255,0.25);
}
.ahp-big.bold {
  color: var(--white);
  -webkit-text-stroke: 0;
  font-weight: 800;
}
.ahp-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
  line-height: 1.5;
}
.ahp-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 28px;
}
.ahp-stat {
  display: flex;
  flex-direction: column;
  padding: 0 20px;
}
.ahp-stat:first-child { padding-left: 0; }
.ahp-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.ahp-lbl {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 3px;
}
.ahp-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.12);
}
.ahp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ahp-tags span {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.65);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
}
/* =====================================================
   CEO FULL IMAGE SECTION
   ===================================================== */
.ceo-section {
  padding: 80px 0;
  background: #f4f5f8;
  border-top: 1px solid #e8eaef;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ceo-full-image {
  width: 100%;
  max-width: 1100px;
  padding: 0 40px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.ceo-full-image img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 6px;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.06),
    0 8px 32px rgba(0, 0, 0, 0.10),
    0 24px 64px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(0, 0, 0, 0.06);
}

/* Responsive */
@media (max-width: 900px) {
  .ceo-section {
    padding: 60px 0;
  }
  .ceo-full-image {
    padding: 0 24px;
  }
  .ceo-full-image img {
    max-height: 480px;
  }
}

@media (max-width: 480px) {
  .ceo-section {
    padding: 40px 0;
  }
  .ceo-full-image {
    padding: 0 16px;
  }
  .ceo-full-image img {
    max-height: 360px;
    border-radius: 4px;
  }
}
/* =====================================================
   TEAM SECTION — WHITE BACKGROUND
   ===================================================== */
.team-section {
  padding: 100px 0;
  background: #f4f6fb;
}
.team-section .section-title { color: var(--navy); }
.team-section .section-tag { color: var(--red); border-left-color: var(--red); }
.section-desc {
  font-size: 1rem;
  color: var(--gray);
  margin-top: 10px;
}

/* 2-column grid for employees */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.team-card {
  background: #ffffff;
  border: 1.5px solid #e8eaef;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(10,22,40,0.1);
  border-color: var(--red);
}

/* Image area */
.team-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  background: #e8eaef;
  overflow: hidden;
}
.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  position: relative;
  z-index: 2;
}
.team-img-placeholder {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #e8eaef;
}
.team-img-placeholder svg {
  width: 56px;
  height: 56px;
  stroke: #aab0be;
}
.team-img-placeholder small {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #aab0be;
  font-weight: 600;
}
.team-badge-role {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  background: var(--red);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  text-align: center;
}
/* Info */
.team-info { padding: 22px 22px 24px; }
.team-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 4px;
}
.team-role {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.team-bio {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 16px;
}
.team-cta {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  background: transparent;
  border: 1.5px solid var(--navy);
  padding: 8px 18px;
  transition: all 0.2s ease;
}
.team-cta:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* Team message strip */
.team-msgs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
  max-width: 780px;                         /* ← add this to center nicely */
  margin-left: auto;                        /* ← add this */
  margin-right: auto;
}
.team-msg-card {
  background: #ffffff;
  border: 1.5px solid #e8eaef;
  border-top: 3px solid var(--red);
  padding: 24px 22px 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.team-msg-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(10,22,40,0.08);
}
.tmsg-quote {
  font-family: Georgia, serif;
  font-size: 2.4rem;
  color: var(--red);
  line-height: 0.6;
  margin-bottom: 12px;
  opacity: 0.6;
}
.team-msg-card p {
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.75;
  margin-bottom: 16px;
  font-style: normal;
}
.tmsg-author {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.tmsg-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}
.tmsg-dot { color: #d1d5db; font-size: 0.8rem; }
.tmsg-dept {
  font-size: 0.72rem;
  color: var(--gray);
  letter-spacing: 0.04em;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .team-grid { grid-template-columns: 1fr 1fr; gap: 20px; max-width: 100%; }
  .team-msgs { grid-template-columns: 1fr; gap: 14px; }
  .ahp-inner { padding: 32px 28px; }
}
@media (max-width: 600px) {
  .team-grid { grid-template-columns: 1fr; }
  .team-msgs { grid-template-columns: 1fr; }
  .ahp-big { font-size: 2rem; }
  .ahp-stat { padding: 0 12px; }
  .ahp-num { font-size: 1.5rem; }
  .ahp-inner { padding: 24px 20px; }
}