*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy-950: #060D15;
  --navy-900: #0B1622;
  --navy-800: #101F32;
  --navy-700: #162B45;
  --slate-600: #2E4058;
  --gold-500: #C4943A;
  --gold-400: #D4A84A;
  --gold-300: #E0BB66;
  --gold-100: #F5EBD0;
  --white: #FFFFFF;
  --gray-50: #F7F8FA;
  --gray-100: #EEF0F4;
  --gray-200: #DEE2E8;
  --gray-300: #C4CAD4;
  --gray-500: #6B7280;
  --gray-700: #3A3F47;
  --gray-800: #252A32;
  --gray-900: #16191F;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #252A32;
  background-color: #FFFFFF;
}

a {
  color: #C4943A;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #162B45;
}

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

h1, h2, h3, h4, h5, h6 {
  color: #0B1622;
  line-height: 1.25;
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background-color: #F7F8FA;
}

.section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #C4943A;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0B1622;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #6B7280;
  max-width: 640px;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header / Navbar */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #FFFFFF;
  border-bottom: 1px solid #EEF0F4;
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(11, 22, 34, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: #0B1622;
  text-decoration: none;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #0B1622 0%, #162B45 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C4943A;
  font-weight: 900;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.logo-accent {
  color: #C4943A;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: #3A3F47;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #C4943A;
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: #0B1622;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: inline-block;
  background-color: #0B1622;
  color: #FFFFFF;
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background-color 0.25s ease;
  text-decoration: none;
}

.nav-cta:hover {
  background-color: #162B45;
  color: #FFFFFF;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background-color: #0B1622;
  border-radius: 2px;
  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 {
  padding: 8rem 0 6rem;
  background-color: #0B1622;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -25%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(196, 148, 58, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #C4943A 0%, #E0BB66 50%, #162B45 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 580px;
}

.hero-badge {
  display: inline-block;
  background-color: rgba(196, 148, 58, 0.12);
  color: #D4A84A;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(196, 148, 58, 0.2);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-title-accent {
  color: #D4A84A;
}

.hero-text {
  font-size: 1.125rem;
  color: #C4CAD4;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: #C4943A;
  color: #FFFFFF;
  border-color: #C4943A;
}

.btn-primary:hover {
  background-color: #D4A84A;
  color: #FFFFFF;
}

.btn-outline {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #2E4058;
}

.btn-outline:hover {
  background-color: #FFFFFF;
  color: #0B1622;
  border-color: #FFFFFF;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-shield {
  width: 340px;
  height: 380px;
  background: #101F32;
  border-radius: 20px;
  border: 1px solid #2E4058;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-shield-icon {
  font-size: 4rem;
  color: #C4943A;
}

.hero-shield-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  text-align: center;
  line-height: 1.3;
}

.hero-shield-sub {
  font-size: 0.9rem;
  color: #C4CAD4;
  text-align: center;
  max-width: 240px;
}

.hero-float-card {
  position: absolute;
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  font-weight: 700;
  font-size: 0.85rem;
  color: #0B1622;
}

.hero-float-card.top {
  top: 10px;
  right: -10px;
  color: #C4943A;
}

.hero-float-card.bottom {
  bottom: 20px;
  left: -20px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-float-dot {
  width: 10px;
  height: 10px;
  background-color: #22C55E;
  border-radius: 50%;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.service-card {
  background-color: #FFFFFF;
  border: 1px solid #DEE2E8;
  border-radius: 12px;
  padding: 2.25rem 2rem;
  transition: all 0.35s ease;
  position: relative;
}

.service-card:hover {
  border-color: #C4943A;
  box-shadow: 0 8px 32px rgba(11, 22, 34, 0.08);
  transform: translateY(-4px);
}

.service-icon {
  width: 56px;
  height: 56px;
  background-color: #F5EBD0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #C4943A;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: #6B7280;
  font-size: 0.95rem;
  line-height: 1.65;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #0B1622 0%, #162B45 50%, #101F32 100%);
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-inner {
  text-align: center;
  padding: 3rem;
}

.about-image-icon {
  font-size: 5rem;
  color: #C4943A;
  margin-bottom: 1rem;
}

.about-image-year {
  font-size: 3.5rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1;
}

.about-image-label {
  font-size: 1rem;
  color: #D4A84A;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}

.about-image-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background-color: #C4943A;
  color: #FFFFFF;
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

.about-content p {
  color: #6B7280;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-stat {
  text-align: center;
  padding: 1.5rem 1rem;
  background-color: #F7F8FA;
  border-radius: 10px;
  border: 1px solid #EEF0F4;
}

.about-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #C4943A;
  display: block;
  line-height: 1;
}

.about-stat-label {
  font-size: 0.85rem;
  color: #6B7280;
  margin-top: 0.5rem;
  display: block;
}

/* Stats Counter Section */
.stats-section {
  background-color: #0B1622;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(196, 148, 58, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: #D4A84A;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #C4CAD4;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  position: relative;
}

.process-card {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}

.process-number {
  width: 52px;
  height: 52px;
  background-color: #0B1622;
  color: #D4A84A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 auto 1.25rem;
}

.process-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.process-card p {
  color: #6B7280;
  font-size: 0.9rem;
  line-height: 1.6;
}

.process-connector {
  display: none;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.testimonial-card {
  background-color: #FFFFFF;
  border: 1px solid #DEE2E8;
  border-radius: 12px;
  padding: 2rem 1.75rem;
  position: relative;
}

.testimonial-stars {
  color: #C4943A;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  color: #3A3F47;
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.testimonial-author {
  font-weight: 700;
  color: #0B1622;
  font-size: 0.95rem;
}

.testimonial-role {
  color: #6B7280;
  font-size: 0.8rem;
  margin-top: 0.15rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-info p {
  color: #6B7280;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background-color: #F5EBD0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #C4943A;
  flex-shrink: 0;
}

.contact-detail-label {
  font-size: 0.8rem;
  color: #6B7280;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.contact-detail-value {
  font-weight: 600;
  color: #0B1622;
  font-size: 0.95rem;
}

.contact-form {
  background-color: #FFFFFF;
  border: 1px solid #DEE2E8;
  border-radius: 12px;
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-weight: 600;
  color: #0B1622;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #DEE2E8;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #0B1622;
  background-color: #FFFFFF;
  transition: border-color 0.25s ease;
  font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #C4943A;
  box-shadow: 0 0 0 3px rgba(196, 148, 58, 0.1);
}

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

.form-error {
  color: #DC2626;
  font-size: 0.8rem;
  margin-top: 0.35rem;
  display: none;
}

.form-input.error,
.form-textarea.error {
  border-color: #DC2626;
}

.form-input.error + .form-error,
.form-textarea.error + .form-error {
  display: block;
}

.form-success {
  background-color: #ECFDF5;
  color: #065F46;
  padding: 1rem;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  display: none;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #0B1622 0%, #162B45 100%);
  padding: 4.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(196, 148, 58, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  font-size: 2.25rem;
  color: #FFFFFF;
  margin-bottom: 1rem;
  position: relative;
}

.cta-banner p {
  color: #C4CAD4;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-banner .btn-primary {
  position: relative;
  font-size: 1rem;
  padding: 0.9rem 2.5rem;
}

/* Footer */
.site-footer {
  background-color: #060D15;
  color: #C4CAD4;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  font-size: 1.35rem;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}

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

.footer-links h4 {
  font-size: 0.85rem;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a {
  color: #6B7280;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #D4A84A;
}

.footer-bottom {
  border-top: 1px solid #101F32;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: #6B7280;
}

.footer-bottom .footer-address {
  margin-top: 0.5rem;
  color: #6B7280;
}

/* Legal Pages */
.legal-hero {
  background-color: #0B1622;
  padding: 7rem 0 3rem;
  text-align: center;
}

.legal-hero h1 {
  font-size: 2.5rem;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}

.legal-hero p {
  color: #C4CAD4;
  font-size: 1rem;
}

.legal-content {
  padding: 4rem 0;
  background-color: #FFFFFF;
}

.legal-body {
  max-width: 800px;
  margin: 0 auto;
}

.legal-body h2 {
  font-size: 1.4rem;
  color: #0B1622;
  margin: 2.5rem 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #EEF0F4;
}

.legal-body h2:first-child {
  margin-top: 0;
}

.legal-body p {
  color: #3A3F47;
  margin-bottom: 1rem;
  line-height: 1.75;
}

.legal-body ul {
  margin: 0.75rem 0 1.25rem 1.5rem;
  color: #3A3F47;
}

.legal-body li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.legal-body strong {
  color: #0B1622;
}

.legal-date {
  color: #6B7280;
  font-size: 0.9rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #EEF0F4;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-visual {
    order: -1;
  }

  .hero-shield {
    width: 260px;
    height: 300px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

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

  .about-image {
    min-height: 320px;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: #FFFFFF;
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
    transition: right 0.35s ease;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 998;
  }

  .nav-overlay.active {
    display: block;
  }

  .section {
    padding: 3.5rem 0;
  }

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

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

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

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

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .cta-banner h2 {
    font-size: 1.75rem;
  }

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

@media (max-width: 480px) {
  .hero {
    padding: 6rem 0 4rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    text-align: center;
    justify-content: center;
  }

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

  .about-stats {
    grid-template-columns: 1fr;
  }

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

  .hero-shield {
    width: 220px;
    height: 250px;
  }
}
