/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #0f1b3d;
  --navy-dark: #0a1229;
  --navy-light: #1a2d5a;
  --accent: #c9a84c;
  --accent-hover: #b8953e;
  --white: #ffffff;
  --gray-light: #f5f6fa;
  --gray: #e0e2ea;
  --text-dark: #1a1a2e;
  --text-muted: #5a5a6e;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER / NAV ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(15, 27, 61, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}

.logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
  letter-spacing: 0.3px;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links .btn-nav {
  background: var(--accent);
  color: var(--navy-dark);
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: background 0.2s;
}

.nav-links .btn-nav:hover {
  background: var(--accent-hover);
  color: var(--navy-dark);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.mobile-toggle span {
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy-dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15,27,61,0.88) 0%, rgba(10,18,41,0.75) 100%),
    url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(201,168,76,0.3) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(201,168,76,0.15) 0%, transparent 50%);
}

.hero-geometric {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 700px;
  height: 700px;
  opacity: 0.07;
  border: 2px solid var(--accent);
  transform: rotate(45deg);
  border-radius: 60px;
}

.hero-geometric-2 {
  position: absolute;
  bottom: -15%;
  left: -10%;
  width: 500px;
  height: 500px;
  opacity: 0.04;
  border: 2px solid var(--white);
  transform: rotate(30deg);
  border-radius: 40px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding-top: 100px;
}

.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--navy-dark);
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid rgba(255,255,255,0.3);
  transition: all 0.25s;
  cursor: pointer;
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== SECTION COMMON ===== */
section {
  padding: 100px 0;
}

.section-label {
  display: inline-block;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}

/* ===== ABOUT SECTION ===== */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content .section-title {
  color: var(--navy);
}

.about-text {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  padding: 24px 12px;
  background: var(--gray-light);
  border-radius: 8px;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.about-visual {
  position: relative;
}

.about-image-block {
  position: relative;
  background: var(--navy);
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-block .placeholder-icon {
  color: rgba(255,255,255,0.15);
  font-size: 4rem;
}

.about-accent-box {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  padding: 24px;
  background: var(--accent);
  border-radius: 8px;
  color: var(--navy-dark);
}

.about-accent-box .accent-number {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.about-accent-box .accent-text {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* ===== SERVICES SECTION (NAVY BG) ===== */
.services {
  background: var(--navy);
  color: var(--white);
}

.services .section-title {
  color: var(--white);
  text-align: center;
}

.services .section-subtitle {
  color: rgba(255,255,255,0.6);
  text-align: center;
  margin: 0 auto 60px;
}

.services .section-label {
  text-align: center;
  display: block;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 40px 32px;
  transition: all 0.3s;
}

.service-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.3);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(201,168,76,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent);
  font-size: 1.5rem;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--white);
}

.service-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== WHY US / APPROACH ===== */
.approach {
  background: var(--gray-light);
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.approach-content .section-title {
  color: var(--navy);
}

.approach-list {
  margin-top: 32px;
}

.approach-item {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
}

.approach-item-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 700;
}

.approach-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.approach-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.approach-visual {
  position: relative;
}

.approach-image-block {
  background: var(--navy);
  border-radius: 12px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.approach-image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.approach-image-block::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.1), transparent);
}

.approach-image-block .placeholder-icon {
  color: rgba(255,255,255,0.12);
  font-size: 4rem;
  z-index: 1;
}

/* ===== MISSION / CTA BANNER ===== */
.mission-banner {
  background: var(--navy-dark);
  color: var(--white);
  text-align: center;
  padding: 80px 0;
}

.mission-banner .section-title {
  color: var(--white);
  max-width: 800px;
  margin: 0 auto 20px;
}

.mission-banner p {
  color: rgba(255,255,255,0.65);
  max-width: 650px;
  margin: 0 auto 36px;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ===== CONSULTING FEATURE ===== */
.consulting-feature {
  background: var(--white);
}

.consulting-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.consulting-visual {
  position: relative;
}

.consulting-image-block {
  background: var(--navy-light);
  border-radius: 12px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.consulting-image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.consulting-image-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(201,168,76,0.08), transparent);
}

.consulting-image-block .placeholder-icon {
  color: rgba(255,255,255,0.12);
  font-size: 4rem;
  z-index: 1;
}

.consulting-content .section-title {
  color: var(--navy);
}

.consulting-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background: var(--gray-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-section .section-title {
  color: var(--navy);
}

.contact-info-list {
  margin-top: 32px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
}

.contact-info-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.contact-info-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray);
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: var(--navy-dark);
  border: none;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-submit:hover {
  background: var(--accent-hover);
  box-shadow: 0 6px 20px rgba(201,168,76,0.3);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.6);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo {
  margin-bottom: 16px;
  display: block;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer ul li a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.8rem;
}

.footer-bottom a {
  color: rgba(255,255,255,0.55);
  margin-left: 20px;
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: var(--accent);
}

/* ===== CONTACT PAGE HERO ===== */
.page-hero {
  background:
    linear-gradient(135deg, rgba(15,27,61,0.92) 0%, rgba(10,18,41,0.82) 100%),
    url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image:
    radial-gradient(circle at 30% 50%, rgba(201,168,76,0.4) 0%, transparent 50%);
}

.page-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}

.page-hero p {
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}

/* ===== CONTACT PAGE FULL ===== */
.contact-page-section {
  background: var(--gray-light);
  padding: 80px 0;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-card {
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.contact-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-card h3 .icon {
  color: var(--accent);
}

.contact-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.contact-card a {
  color: var(--accent);
  font-weight: 600;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-page-form {
  background: var(--white);
  padding: 48px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.contact-page-form h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-page-form > p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 0.95rem;
}

/* ===== LICENSE BADGE ===== */
.license-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 10px 18px;
  border-radius: 6px;
  margin-top: 24px;
}

.license-badge span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

.license-badge .badge-label {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3rem;
  }

  .about-grid,
  .approach-grid,
  .consulting-grid,
  .contact-grid,
  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--navy-dark);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-toggle {
    display: flex;
    z-index: 1001;
  }

  .hero {
    min-height: auto;
    padding: 140px 0 80px;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  section {
    padding: 64px 0;
  }

  .section-title {
    font-size: 2rem;
  }

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

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-hero {
    padding: 130px 0 60px;
  }

  .page-hero h1 {
    font-size: 2.2rem;
  }

  .contact-page-form {
    padding: 28px;
  }
}
