/* ═══════════════════════════════════════════════
   CONSULTANCY PAGE — STYLES
   Font: Inter throughout (no mixing)
═══════════════════════════════════════════════ */

:root {
  --orange: #FF5C00;
  --orange-dk: #e04e00;
  --bg: #0a0a0a;
  --bg-2: #111111;
  --bg-3: #161616;
  --border: rgba(255, 255, 255, 0.08);
  --gray: rgba(255, 255, 255, 0.55);
  --white: #ffffff;
  --radius: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.section {
  padding: 100px 20px;
}

.accent {
  color: var(--orange);
}

/* ── LABELS & HEADINGS ── */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255, 92, 0, 0.08);
  border: 1px solid rgba(255, 92, 0, 0.2);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */
.navbar {
  all: unset;
  display: block;
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1100px;
  z-index: 1000;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  border-radius: 16px;
  background: rgba(10, 10, 10, 0.65);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.3);
}

.navbar-logo {
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  white-space: nowrap;
  flex-shrink: 0;
}

.navbar-logo .logo-accent {
  color: var(--orange);
}

.navbar-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--white);
  font-weight: 600;
}

.nav-link--active {
  color: var(--white);
  font-weight: 700;
}

.navbar-cta {
  display: inline-block;
  padding: 9px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  background: var(--orange);
  color: var(--white);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}

.navbar-cta:hover {
  background: var(--orange-dk);
  transform: translateY(-1px);
}

/* ── Hamburger ── */
#menuBtn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 1200;
}

#menuBtn .bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.25s ease;
  transform-origin: center;
}

#menuBtn.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

#menuBtn.active .bar:nth-child(2) {
  opacity: 0;
}

#menuBtn.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ── Slide panel ── */
#mobileMenu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--bg);
  border-left: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.6);
  z-index: 1150;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 36px 48px;
  transition: right 0.4s cubic-bezier(0.77, 0, 0.18, 1);
}

#closeMenu {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

#closeMenu::before,
#closeMenu::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

#closeMenu::before {
  transform: rotate(45deg);
}

#closeMenu::after {
  transform: rotate(-45deg);
}

#mobileMenu a.mob-link {
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  padding: 14px 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.2s, padding-left 0.2s;
}

#mobileMenu a.mob-link:first-of-type {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

#mobileMenu a.mob-link:hover {
  color: var(--white);
  padding-left: 6px;
}

#mobileMenu a.mob-link.mob-active {
  color: var(--orange);
}

#mobileMenu .mob-cta {
  margin-top: 28px;
  display: inline-block;
  padding: 13px 28px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--orange);
  color: var(--white);
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s;
}

#mobileMenu .mob-cta:hover {
  background: var(--orange-dk);
}

#menuOverlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1100;
  backdrop-filter: blur(2px);
}

#menuOverlay.visible {
  display: block;
}

/* ── Navbar responsive ── */
@media (max-width: 960px) {
  .navbar-links {
    gap: 18px;
  }

  .nav-link {
    font-size: 0.82rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    top: 14px;
    width: 94%;
  }

  .navbar-inner {
    padding: 10px 16px;
    border-radius: 14px;
  }

  .navbar-links,
  .navbar-cta {
    display: none;
  }

  #menuBtn {
    display: flex;
  }
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 130px 0 80px;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -200px;
  right: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(255, 92, 0, 0.15) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  text-align: center;
  padding: 80px 20px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeDown 0.6s ease both;
}

.hero-headline {
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  animation: fadeDown 0.6s 0.1s ease both;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: rgba(255, 255, 255, 0.65);
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.7;
  font-weight: 400;
  animation: fadeDown 0.6s 0.2s ease both;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeDown 0.6s 0.3s ease both;
}

.hero-cta-primary {
  padding: 12px 26px;
  background: var(--orange);
  color: var(--white);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.2s;
}

.hero-cta-primary:hover {
  background: var(--orange-dk);
  transform: translateY(-2px);
}

.hero-cta-secondary {
  padding: 12px 26px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.hero-cta-secondary:hover {
  border-color: rgba(255, 255, 255, 0.4);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeDown 0.6s 0.4s ease both;
}

.stat-pill {
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  display: flex;
  gap: 6px;
  align-items: center;
}

.stat-pill .stat-num {
  font-weight: 700;
  font-size: 1rem;
}

.stat-pill .stat-label {
  font-size: 0.85rem;
  color: var(--gray);
}

/* Floating visual */
.hero-visual {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  height: 320px;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.28;
}

.orb-1 {
  width: 260px;
  height: 260px;
  background: var(--orange);
  top: 10px;
  left: 30px;
  animation: float 7s ease-in-out infinite;
}

.orb-2 {
  width: 180px;
  height: 180px;
  background: #7b2fff;
  bottom: 0;
  right: 0;
  animation: float 9s ease-in-out infinite reverse;
}

.floating-card {
  position: absolute;
  background: rgba(20, 20, 20, 0.88);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  color: var(--white);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.fc-1 {
  top: 60px;
  left: -20px;
  animation: float 5s ease-in-out infinite;
}

.fc-2 {
  bottom: 80px;
  right: -30px;
  animation: float 6s ease-in-out infinite reverse;
}

/* ══════════════════════════════
   SERVICES / COURSES
══════════════════════════════ */
.services-overview {
  background: var(--bg-2);
}

.services-grid-flex {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* 4 cards in one row */
  gap: 30px;
}

.service-card-flex {
  flex: 1;
  min-width: 280px;
  max-width: 340px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  transition: border-color 0.3s, transform 0.3s;
}

.service-card-flex:hover {
  border-color: rgba(255, 92, 0, 0.3);
  transform: translateY(-4px);
}

.sc-icon {
  font-size: 2rem;
  line-height: 1;
}

.service-card-flex h3 {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}

.service-card-flex>p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.65;
}

/* Course list inside card */
.course-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.course-list li {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.course-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 700;
}

.sc-link {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  margin-top: 4px;
  transition: letter-spacing 0.2s;
}

.sc-link:hover {
  letter-spacing: 0.03em;
}

/* ══════════════════════════════
   WHY US
══════════════════════════════ */
.why-us {
  background: var(--bg);
}

.why-grid-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
}

.why-card-flex {
  flex: 1;
  min-width: 220px;
  max-width: 260px;
  padding: 24px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  transition: border-color 0.3s;
}

.why-card-flex:hover {
  border-color: rgba(255, 92, 0, 0.25);
}

.wc-icon {
  font-size: 1.6rem;
}

.why-card-flex h4 {
  font-weight: 700;
  font-size: 0.97rem;
  letter-spacing: -0.01em;
}

.why-card-flex p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.65;
}

/* ══════════════════════════════
   ERP & CRM SECTION
══════════════════════════════ */
.erp-section {
  background: var(--bg-2);
}

.erp-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 48px;
}

.erp-card {
  flex: 1;
  min-width: 220px;
  max-width: 260px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  transition: border-color 0.3s, transform 0.3s;
}

.erp-card:hover {
  border-color: rgba(255, 92, 0, 0.3);
  transform: translateY(-4px);
}

.erp-icon {
  font-size: 1.6rem;
  line-height: 1;
}

.erp-card h4 {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.erp-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.65;
  flex: 1;
}

/* ══════════════════════════════
   CONTACT SNIPPET
══════════════════════════════ */
.contact-snippet {
  background: var(--bg-2);
  text-align: center;
}

.contact-inner {
  max-width: 800px;
  margin: 0 auto;
}

.contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 36px 0 24px;
}

.contact-card {
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  padding: 24px 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: border-color 0.3s;
}

.contact-card:hover {
  border-color: rgba(255, 92, 0, 0.3);
}

.cc-icon {
  font-size: 22px;
}

.cc-title {
  font-weight: 600;
  font-size: 0.97rem;
}

.cc-detail {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 4px;
}

.cc-btn {
  display: inline-block;
  padding: 9px 20px;
  font-size: 0.87rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  background: var(--orange);
  color: var(--white);
  transition: background 0.2s;
}

.cc-btn:hover {
  background: var(--orange-dk);
}

.contact-location {
  font-size: 0.88rem;
  color: var(--gray);
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding-top: 64px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-logo {
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  color: var(--white);
  letter-spacing: -0.01em;
}

.footer-logo .accent {
  color: var(--orange);
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--gray);
  max-width: 250px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.social-links a:hover {
  background: rgba(255, 92, 0, 0.15);
  border-color: rgba(255, 92, 0, 0.3);
}

.footer-col h5 {
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  font-size: 0.88rem;
  color: var(--gray);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--gray);
}

/* ══════════════════════════════
   ANIMATIONS
══════════════════════════════ */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .services-grid-flex {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 120px 0 60px;
  }

  .services-grid-flex {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .services-grid-flex {
    flex-direction: column;
    align-items: center;
  }

  .service-card-flex {
    max-width: 100%;
  }

  .why-grid-flex {
    flex-direction: column;
    align-items: center;
  }

  .why-card-flex {
    max-width: 100%;
  }

  .erp-grid {
    flex-direction: column;
    align-items: center;
  }

  .erp-card {
    max-width: 100%;
  }

  .contact-cards {
    flex-direction: column;
    align-items: center;
  }

  .contact-card {
    max-width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}