@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Rajdhani:wght@600;700&display=swap');
:root {
  --blue: #0a1628;
  --blue-mid: #122a4a;
  --blue-soft: #1a3a5c;
  --orange: #f5a623;
  --orange-hot: #ff8c00;
  --orange-soft: #ffb84d;
  --white: #ffffff;
  --off: #f4f7fb;
  --muted: #8a9bb0;
  --line: rgba(255,255,255,0.1);
  --text: #e8eef6;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: Outfit, system-ui, sans-serif;
  background: var(--blue);
  color: var(--text);
  line-height: 1.65;
  font-weight: 400;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
h1,h2,h3,h4 {
  font-family: Rajdhani, Outfit, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

/* Header */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,22,40,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  max-width: 1120px; margin: 0 auto;
  padding: 10px 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
}
.logo img {
  height: 48px; width: auto; object-fit: contain;
}
.logo-text {
  font-family: Rajdhani, sans-serif;
  font-size: 1.05rem; font-weight: 700; color: var(--white);
  line-height: 1.1;
}
.logo-text span { color: var(--orange); display: block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 8px 12px; border-radius: 8px;
  font-size: 0.88rem; font-weight: 500; color: var(--muted);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-cta {
  background: var(--orange) !important; color: var(--blue) !important;
  font-weight: 600 !important; padding: 9px 16px !important; border-radius: 999px !important;
}
.nav-cta:hover { background: var(--orange-soft) !important; }

.hamburger {
  display: none; width: 44px; height: 44px;
  border: 1px solid var(--line); border-radius: 10px;
  background: rgba(255,255,255,0.04); cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.hamburger span {
  display: block; width: 18px; height: 2px;
  background: var(--orange); border-radius: 2px; transition: 0.25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none !important; flex-direction: column;
  background: var(--blue-mid); border-top: 1px solid var(--line);
  padding: 8px 16px 14px;
}
.mobile-menu.open { display: flex !important; }
.mobile-menu a {
  padding: 14px 10px; font-weight: 500; color: var(--text);
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:last-child { border: none; color: var(--orange); }
@media (max-width: 820px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .logo-text { font-size: 0.92rem; }
  .logo img { height: 40px; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(115deg, rgba(10,22,40,0.94) 0%, rgba(10,22,40,0.75) 45%, rgba(10,22,40,0.55) 100%),
    url('flyer-bg.jpg') right center / cover no-repeat;
  opacity: 0.95;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.95) 0%, transparent 50%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  padding: 40px 16px 56px;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.hero-content {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 560px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 14px;
  padding: 6px 12px;
  border: 1px solid rgba(245,166,35,0.35);
  border-radius: 999px;
  background: rgba(245,166,35,0.08);
}

.hero-name {
  font-family: Rajdhani, Outfit, sans-serif;
  font-size: clamp(2.6rem, 10vw, 5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
  max-width: 12ch;
  text-shadow: 0 4px 28px rgba(0,0,0,0.45);
}
.hero-name span {
  color: var(--orange);
  display: block;
}
.hero-tag {
  font-family: Outfit, sans-serif;
  font-size: clamp(1rem, 2.8vw, 1.25rem);
  font-weight: 400;
  color: rgba(232,238,246,0.92);
  margin-bottom: 14px;
  max-width: 28ch;
  line-height: 1.4;
}
.hero-tag em {
  font-style: normal;
  color: var(--orange-soft);
  font-weight: 600;
}
.hero .lead {
  font-size: 1.02rem; color: var(--muted); max-width: 42ch;
  margin-bottom: 12px; font-weight: 300;
}
.hero h1 {
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  color: var(--white); max-width: 16ch; margin-bottom: 14px;
}
.hero h1 em { font-style: normal; color: var(--orange); }
.hero-tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px;
}
.hero-tags span {
  font-size: 0.78rem; padding: 6px 12px; border-radius: 6px;
  background: rgba(255,255,255,0.06); border: 1px solid var(--line);
  color: var(--text); font-weight: 500;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* CEO photo in hero */
.hero-ceo {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.ceo-frame {
  position: relative;
  width: 200px;
  height: 240px;
  border-radius: 16px;
  overflow: hidden;
  border: 3px solid rgba(245,166,35,0.55);
  box-shadow: 0 16px 40px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.08);
  background: #0a1628;
}
.ceo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.ceo-badge {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--blue);
  font-family: Rajdhani, sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.ceo-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--orange-soft);
  letter-spacing: 0.04em;
  text-align: center;
  margin: 0;
}

/* Mobile adjustments for CEO photo */
@media (max-width: 820px) {
  .hero {
    min-height: auto;
    padding-bottom: 20px;
  }
  .hero-inner {
    flex-direction: column;
    align-items: center;
    padding-top: 28px;
    padding-bottom: 40px;
    gap: 20px;
  }
  .hero-content {
    max-width: 100%;
    text-align: left;
    order: 2;
  }
  .hero-ceo {
    order: 1;
    margin-bottom: 0;
  }
  .ceo-frame {
    width: 160px;
    height: 190px;
    border-radius: 14px;
  }
  .ceo-badge {
    font-size: 0.78rem;
    padding: 5px 14px;
  }
  .hero-name {
    font-size: clamp(2.4rem, 11vw, 3.6rem);
  }
}

@media (min-width: 821px) and (max-width: 980px) {
  .ceo-frame {
    width: 170px;
    height: 205px;
  }
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px; border-radius: 999px;
  font-size: 0.92rem; font-weight: 600; border: none; cursor: pointer;
  font-family: inherit; transition: 0.2s;
}
.btn-orange { background: var(--orange); color: var(--blue); }
.btn-orange:hover { background: var(--orange-soft); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: var(--orange); }
.btn-wa { background: #128c7e; color: #fff; }
.btn-wa:hover { background: #0e6f64; }

/* Sections */
.section { max-width: 1120px; margin: 0 auto; padding: 56px 16px; }
.section-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 8px;
}
.section h2 {
  font-size: clamp(1.7rem, 4vw, 2.4rem); color: var(--white); margin-bottom: 10px;
}
.section .sub { color: var(--muted); max-width: 50ch; margin-bottom: 28px; font-weight: 300; }

/* Stats strip */
.stats {
  display: grid; gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  margin-top: -40px; position: relative; z-index: 5;
  max-width: 1120px; margin-left: auto; margin-right: auto;
}
@media (min-width: 700px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat {
  background: var(--blue-mid); padding: 22px 16px; text-align: center;
}
.stat strong {
  display: block; font-family: Rajdhani, sans-serif;
  font-size: 1.5rem; color: var(--orange); margin-bottom: 4px;
}
.stat span { font-size: 0.82rem; color: var(--muted); font-weight: 500; }

/* Services grid */
.svc-grid {
  display: grid; gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .svc-grid { grid-template-columns: 1fr 1fr 1fr; } }
.svc-card {
  background: var(--blue-mid);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 18px;
  transition: 0.25s;
}
.svc-card:hover {
  border-color: rgba(245,166,35,0.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}
.svc-card .ico {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(245,166,35,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 12px;
}
.svc-card h3 {
  font-size: 1.2rem; color: var(--white); margin-bottom: 6px;
}
.svc-card p { font-size: 0.88rem; color: var(--muted); font-weight: 300; }

/* About */
.about-grid {
  display: grid; gap: 28px; align-items: center;
}
@media (min-width: 800px) { .about-grid { grid-template-columns: 0.9fr 1.1fr; } }
.about-photo {
  border-radius: 16px; overflow: hidden;
  border: 2px solid rgba(245,166,35,0.3);
  position: relative;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/4; max-height: 480px; }
.about-photo .badge {
  position: absolute; bottom: 16px; left: 16px;
  background: var(--orange); color: var(--blue);
  font-weight: 700; font-size: 0.78rem;
  padding: 8px 14px; border-radius: 8px;
  font-family: Rajdhani, sans-serif; letter-spacing: 0.04em;
}
.about-copy p { color: var(--muted); font-weight: 300; margin-bottom: 12px; }
.about-copy ul { list-style: none; margin: 16px 0; }
.about-copy li {
  padding: 8px 0; padding-left: 28px; position: relative;
  color: var(--text); font-size: 0.95rem;
}
.about-copy li::before {
  content: '✓';
  position: absolute; left: 0; color: var(--orange); font-weight: 700;
}

/* Project strip */
.proj-strip {
  display: grid; gap: 10px;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 800px) { .proj-strip { grid-template-columns: repeat(4, 1fr); } }
.proj-strip figure {
  border-radius: 12px; overflow: hidden;
  aspect-ratio: 4/3; background: var(--blue-mid);
  border: 1px solid var(--line);
}
.proj-strip img { width: 100%; height: 100%; object-fit: cover; }

/* CTA */
.cta-band {
  margin: 0 16px 56px;
  max-width: 1120px; margin-left: auto; margin-right: auto;
  background: linear-gradient(135deg, var(--blue-mid) 0%, var(--blue-soft) 100%);
  border: 1px solid var(--line);
  border-radius: 20px; padding: 40px 24px; text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 8px; }
.cta-band p { color: var(--muted); margin-bottom: 20px; font-weight: 300; max-width: 42ch; margin-left: auto; margin-right: auto; }
.cta-band .btns { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

/* Page hero */
.page-hero {
  background: var(--blue-mid);
  padding: 48px 16px 40px; text-align: center;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.5rem); }
.page-hero p { color: var(--muted); margin-top: 8px; font-weight: 300; }

/* Contact */
.contact-grid { display: grid; gap: 16px; }
@media (min-width: 700px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-card {
  background: var(--blue-mid); border: 1px solid var(--line);
  border-radius: 16px; padding: 24px;
}
.contact-card h2 { color: var(--white); font-size: 1.35rem; margin-bottom: 14px; }
.info-row { padding: 12px 0; border-bottom: 1px solid var(--line); }
.info-row:last-of-type { border-bottom: none; }
.info-row strong {
  display: block; font-size: 0.68rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 4px; font-weight: 600;
}
.info-row a { color: var(--white); font-weight: 500; }
.contact-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.contact-actions .btn { width: 100%; }

/* Footer */
.footer {
  background: #060e18; border-top: 1px solid var(--line);
  padding: 40px 16px 24px; color: var(--muted);
}
.footer-inner {
  max-width: 1120px; margin: 0 auto;
  display: grid; gap: 28px;
}
@media (min-width: 700px) { .footer-inner { grid-template-columns: 1.5fr 1fr 1fr; } }
.footer strong { color: var(--white); font-family: Rajdhani, sans-serif; font-size: 1.2rem; }
.footer p { margin-top: 8px; font-size: 0.9rem; font-weight: 300; }
.footer h4 {
  font-family: Outfit, sans-serif; font-size: 0.7rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 12px; font-weight: 600;
}
.footer a { color: var(--muted); display: block; padding: 4px 0; font-size: 0.9rem; }
.footer a:hover { color: var(--orange); }
.footer-bottom {
  max-width: 1120px; margin: 28px auto 0; padding-top: 18px;
  border-top: 1px solid var(--line); text-align: center; font-size: 0.8rem;
}

.wa-float {
  position: fixed; bottom: 20px; right: 16px; z-index: 90;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}
