/* =============================================
   EmpowerTech Innovations — Professional Styles
   ============================================= */

:root {
  --primary: #0a2540;
  --accent: #0066cc;
  --accent-light: #1a80e0;
  --orange: #e8531a;
  --orange-light: #ff6b35;
  --white: #ffffff;
  --off-white: #f7f9fc;
  --grey-light: #eef1f6;
  --grey: #8a94a6;
  --text: #1a2236;
  --text-muted: #5a6478;
  --border: #dce3ed;
  --shadow-sm: 0 2px 8px rgba(10,37,64,0.08);
  --shadow-md: 0 6px 24px rgba(10,37,64,0.12);
  --shadow-lg: 0 16px 48px rgba(10,37,64,0.15);
  --radius: 12px;
  --radius-sm: 8px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 92%;
  max-width: 1180px;
  margin: 0 auto;
}

.section { padding: 90px 0; }

/* ── Section Labels & Titles ── */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,102,204,0.08);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-label.light {
  color: #7ab8ff;
  background: rgba(255,255,255,0.15);
}
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--primary);
  margin-bottom: 14px;
  line-height: 1.2;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 50px;
}

/* ── Top Bar ── */
.topbar {
  background: var(--primary);
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  padding: 8px 0;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}
.topbar-inner span { display: flex; align-items: center; gap: 6px; }
.topbar-inner i { color: var(--accent-light); }
.topbar-wa {
  color: #25d366;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: opacity 0.2s;
}
.topbar-wa:hover { opacity: 0.8; }

/* ── Navbar ── */
.navbar {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.navbar.scrolled {
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img { height: 38px; }
.logo span {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover { background: var(--grey-light); color: var(--accent); }
.nav-links a.nav-cta {
  background: var(--accent);
  color: #fff;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 600;
}
.nav-links a.nav-cta:hover { background: var(--accent-light); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: white;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, box-shadow 0.3s;
    box-shadow: none;
    gap: 0;
  }
  .nav-links.active {
    max-height: 400px;
    box-shadow: var(--shadow-md);
    padding: 10px 0 16px;
  }
  .nav-links li { padding: 0 20px; }
  .nav-links a { display: block; padding: 10px 0; border-radius: 0; }
  .nav-links a.nav-cta {
    margin-top: 6px;
    text-align: center;
    border-radius: 8px;
  }
}

/* ── Hero Section ── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('dist/img/headerlogo.jpeg') center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,37,64,0.92) 0%, rgba(0,70,140,0.8) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 80px 0;
  max-width: 700px;
}
.hero-badge {
  margin-bottom: 20px;
}
.hero-badge span {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #a8d4ff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
}
.hero-content h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-content h1 em { color: #7ab8ff; font-style: italic; }
.hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.btn-hero-primary {
  background: var(--orange);
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.25s, transform 0.2s;
}
.btn-hero-primary:hover { background: var(--orange-light); transform: translateY(-2px); }
.btn-hero-secondary {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.25s;
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.18); }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat strong { font-size: 1.5rem; font-weight: 800; color: #fff; }
.stat span { font-size: 0.75rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.08em; }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.2); }

/* ── About Section ── */
.about-section { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s, transform 0.6s;
}
.about-grid.visible { opacity: 1; transform: none; }
.about-text h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.2;
}
.about-text h2 em { color: var(--accent); font-style: italic; }
.about-text p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  text-align: justify;
  hyphens: auto;
}
.about-highlights {
  display: flex;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.ah-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--grey-light);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
}
.ah-item i { color: var(--accent); font-size: 1rem; }
.img-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.img-frame::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 2px solid var(--accent);
  border-radius: calc(var(--radius) + 6px);
  opacity: 0.2;
  pointer-events: none;
}
.img-frame img { width: 100%; display: block; }
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ── FBR Section ── */
.fbr-section {
  background: linear-gradient(135deg, var(--primary) 0%, #0a3a6e 100%);
  padding: 90px 0;
  color: #fff;
}
.fbr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s, transform 0.6s;
}
.fbr-grid.visible { opacity: 1; transform: none; }
.fbr-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.fbr-text h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}
.fbr-text p { color: rgba(255,255,255,0.75); margin-bottom: 24px; font-size: 1.02rem; }
.check-list { list-style: none; margin-bottom: 30px; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}
.check-list li i { color: #4daaff; font-size: 1rem; flex-shrink: 0; }
.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  padding: 13px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.25s, transform 0.2s;
}
.btn-accent:hover { background: var(--orange-light); transform: translateY(-2px); }
@media (max-width: 768px) {
  .fbr-grid { grid-template-columns: 1fr; gap: 36px; }
  .fbr-image { order: -1; }
}

/* ── Solutions Section ── */
.solutions-section { background: var(--off-white); }
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
}
.solution-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s, transform 0.5s, box-shadow 0.3s;
}
.solution-card.visible { opacity: 1; transform: translateY(0); }
.solution-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.solution-card.featured { border-color: var(--accent); }
.solution-card.featured::before {
  content: 'Featured';
  position: absolute;
  top: 14px; right: 14px;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
}
.card-icon {
  width: 56px;
  height: 56px;
  background: rgba(0,102,204,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.card-icon i { font-size: 1.6rem; color: var(--accent); }
.solution-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.3;
}
.solution-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }
.card-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,102,204,0.08);
  padding: 3px 10px;
  border-radius: 50px;
}

/* ── Services Section ── */
.services-section { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  display: flex;
  gap: 20px;
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s, transform 0.5s, box-shadow 0.3s;
}
.service-card.visible { opacity: 1; transform: translateY(0); }
.service-card:hover { box-shadow: var(--shadow-md); }
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-icon i { font-size: 1.4rem; color: #fff; }
.service-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.service-body p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* ── Clients Marquee ── */
.clients-section { background: var(--off-white); padding-bottom: 70px; }
.clients-section .container { text-align: center; }
.clients-section .section-subtitle { margin: 0 auto 40px; }

.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-wrapper:hover .marquee-track { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.client-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  min-width: 180px;
  max-width: 200px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.client-item:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.client-logo-wrap {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
}
.client-logo-wrap.has-img { background: transparent; }
.client-logo-wrap.no-img {
  background: var(--grey-light);
  font-size: 1.8rem;
  color: var(--accent);
}
.client-logo-wrap img { width: 100%; height: 100%; object-fit: contain; }
.client-item span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.3;
}

/* ── Contact Section ── */
.contact-section { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.info-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
}
.info-card h3 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.info-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 4px; }
.info-card a { color: var(--accent); text-decoration: none; }
.info-card a:hover { text-decoration: underline; }
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  padding: 13px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.25s;
}
.btn-wa:hover { background: #1ebe5d; }
.contact-map { margin-top: 6px; border-radius: var(--radius); overflow: hidden; }

/* Contact Form */
.contact-form-wrap {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.contact-form-wrap h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
}
.input-group { margin-bottom: 18px; }
.input-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.input-group input,
.input-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--white);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.input-group input:focus,
.input-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,102,204,0.1);
}
.input-group textarea { resize: vertical; }
.btn-submit {
  background: var(--accent);
  color: #fff;
  padding: 13px 26px;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.25s, transform 0.2s;
}
.btn-submit:hover { background: var(--accent-light); transform: translateY(-2px); }
.btn-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }
.msg-success {
  color: #14825e;
  background: #e6f9f2;
  border: 1px solid #b0e8d4;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.msg-error {
  color: #c0392b;
  background: #fdecea;
  border: 1px solid #f5b7b1;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ── Footer ── */
.footer {
  background: var(--primary);
  color: rgba(255,255,255,0.65);
  padding: 28px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
}
.footer-copy { font-size: 0.82rem; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
  transition: background 0.2s;
  text-decoration: none;
}
.social-links a:hover { background: var(--accent); }

/* ── Animations ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content { animation: fadeInUp 0.8s ease-out both; }