@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');

:root {
  --color-navy: #0b1622;
  --color-navy-light: #111d2e;
  --color-navy-mid: #162d45;
  --color-navy-lighter: #1a3552;
  --color-gold: #c9a96e;
  --color-gold-light: #d4b87a;
  --color-gold-dark: #b8953c;
  --color-white: #f0ece6;
  --color-white-bright: #ffffff;
  --color-gray-light: #aab4c0;
  --color-gray-mid: #6b7a8d;
  --color-gray-dark: #3a4655;
  --color-green: #2ecc71;
  --color-red: #e74c3c;
  --color-blue-accent: #3498db;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 4px 20px rgba(201, 169, 110, 0.15);
  --border-radius: 6px;
  --border-radius-lg: 12px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-navy);
  color: var(--color-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-white-bright);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

p {
  margin-bottom: 1.2rem;
  color: var(--color-white);
}

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-gold-light);
}

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

.container-narrow {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem;
}

.gold-text {
  color: var(--color-gold);
}

.gold-accent {
  display: inline-block;
  width: 60px;
  height: 3px;
  background: var(--color-gold);
  margin: 0.8rem 0 1.5rem;
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-navy);
}

.btn-primary:hover {
  background: var(--color-gold-light);
  color: var(--color-navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
}

.btn-outline:hover {
  background: var(--color-gold);
  color: var(--color-navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: all var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(11, 22, 34, 0.97);
  backdrop-filter: blur(12px);
  padding: 0.8rem 0;
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.navbar-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--color-gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--color-navy);
}

.navbar-brand-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-white-bright);
  letter-spacing: 0.03em;
}

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

.navbar-links a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-gray-light);
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition);
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--color-gold);
}

.navbar-links a:hover::after,
.navbar-links a.active::after {
  width: 100%;
}

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

.navbar-toggle span {
  width: 28px;
  height: 2px;
  background: var(--color-white);
  transition: all var(--transition);
  border-radius: 2px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 7rem 0 4rem;
  background: var(--color-navy);
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -30%;
  width: 80%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -20%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(52, 152, 219, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

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

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  margin-bottom: 1.2rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--color-white-bright);
}

.hero-title em {
  font-style: italic;
  color: var(--color-gold);
}

.hero-description {
  font-size: 1.15rem;
  color: var(--color-gray-light);
  margin-bottom: 2.5rem;
  max-width: 520px;
  line-height: 1.8;
}

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

.hero-visual {
  position: relative;
  animation: fadeInRight 0.8s ease-out 0.2s both;
}

.hero-card-stack {
  position: relative;
  width: 100%;
  height: 420px;
}

.hero-card {
  position: absolute;
  background: var(--color-navy-light);
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition);
}

.hero-card:nth-child(1) {
  top: 0;
  left: 0;
  width: 70%;
  height: 200px;
  z-index: 3;
  border-top: 3px solid var(--color-gold);
}

.hero-card:nth-child(2) {
  top: 80px;
  right: 0;
  width: 65%;
  height: 180px;
  z-index: 2;
  border-top: 3px solid var(--color-blue-accent);
}

.hero-card:nth-child(3) {
  bottom: 0;
  left: 40px;
  width: 60%;
  height: 160px;
  z-index: 1;
  border-top: 3px solid var(--color-green);
}

.hero-card-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  margin-bottom: 0.8rem;
}

.hero-card-value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-white-bright);
  margin-bottom: 0.3rem;
}

.hero-card-sub {
  font-size: 0.85rem;
  color: var(--color-green);
  font-weight: 500;
}

.hero-card .mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 50px;
  margin-top: 1rem;
}

.hero-card .mini-chart .bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: var(--color-gold);
  opacity: 0.7;
}

.hero-card .mini-chart .bar:nth-child(odd) {
  opacity: 0.5;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-gold);
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-gray-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section-alt {
  background: var(--color-navy-light);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .gold-accent {
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  color: var(--color-gray-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

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

.service-card {
  background: var(--color-navy-light);
  border: 1px solid rgba(201, 169, 110, 0.08);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-dark));
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 169, 110, 0.2);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.service-icon-gold {
  background: rgba(201, 169, 110, 0.12);
  color: var(--color-gold);
}

.service-icon-blue {
  background: rgba(52, 152, 219, 0.12);
  color: var(--color-blue-accent);
}

.service-icon-green {
  background: rgba(46, 204, 113, 0.12);
  color: var(--color-green);
}

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

.service-card p {
  color: var(--color-gray-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.about-image-placeholder {
  width: 100%;
  height: 380px;
  background: linear-gradient(135deg, var(--color-navy-mid), var(--color-navy-lighter));
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(201, 169, 110, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-image-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(201, 169, 110, 0.03) 10px,
    rgba(201, 169, 110, 0.03) 20px
  );
}

.about-emblem {
  font-family: var(--font-heading);
  font-size: 8rem;
  font-weight: 900;
  color: rgba(201, 169, 110, 0.06);
  text-align: center;
  line-height: 1;
}

.about-text h2 {
  margin-bottom: 1rem;
}

.about-text .lead {
  font-size: 1.15rem;
  color: var(--color-gold);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
}

.about-stat-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-gold);
}

.about-stat-label {
  font-size: 0.8rem;
  color: var(--color-gray-mid);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.insight-card {
  background: var(--color-navy-light);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, 0.08);
  transition: all var(--transition);
}

.insight-card:hover {
  border-color: rgba(201, 169, 110, 0.2);
  box-shadow: var(--shadow-lg);
}

.insight-image {
  width: 100%;
  height: 180px;
  background: var(--color-navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  opacity: 0.4;
}

.insight-image-1 { background: linear-gradient(135deg, #1a3a5c, #0d2137); }
.insight-image-2 { background: linear-gradient(135deg, #1a4a3c, #0d2820); }
.insight-image-3 { background: linear-gradient(135deg, #1a355c, #0d1e37); }

.insight-body {
  padding: 1.8rem;
}

.insight-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-bottom: 0.8rem;
}

.insight-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.insight-body p {
  font-size: 0.9rem;
  color: var(--color-gray-light);
  margin-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

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

.contact-details {
  margin-top: 2.5rem;
}

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

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(201, 169, 110, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-item-text h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-bottom: 0.3rem;
}

.contact-item-text p {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: var(--color-white);
}

.contact-form-card {
  background: var(--color-navy-light);
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
  margin-bottom: 1.8rem;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-gray-light);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--color-navy);
  border: 1px solid var(--color-navy-mid);
  border-radius: var(--border-radius);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-gold);
}

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

.footer {
  background: var(--color-navy);
  border-top: 1px solid rgba(201, 169, 110, 0.08);
  padding: 4rem 0 2rem;
}

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

.footer-brand p {
  font-size: 0.9rem;
  color: var(--color-gray-mid);
  margin-top: 1rem;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-bottom: 1.2rem;
}

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

.footer-col ul li {
  margin-bottom: 0.7rem;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--color-gray-light);
  text-decoration: none;
  transition: color var(--transition);
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 169, 110, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--color-gray-mid);
  margin-bottom: 0;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.85rem;
  color: var(--color-gray-mid);
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--color-gold);
}

.page-hero {
  padding: 8rem 0 3rem;
  background: var(--color-navy);
  border-bottom: 1px solid rgba(201, 169, 110, 0.08);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 60%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(201, 169, 110, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  margin-bottom: 0.8rem;
}

.page-hero p {
  color: var(--color-gray-light);
  font-size: 1.1rem;
}

.page-content {
  padding: 4rem 0 6rem;
  background: var(--color-navy-light);
}

.page-content-inner {
  background: var(--color-navy);
  border: 1px solid rgba(201, 169, 110, 0.08);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
}

.policy-section {
  margin-bottom: 2.5rem;
}

.policy-section:last-child {
  margin-bottom: 0;
}

.policy-section h2 {
  font-size: 1.4rem;
  color: var(--color-gold);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.policy-section h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-white-bright);
  margin-bottom: 0.6rem;
  margin-top: 1.2rem;
}

.policy-section p,
.policy-section ul,
.policy-section ol {
  font-size: 0.95rem;
  color: var(--color-gray-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.policy-section ul,
.policy-section ol {
  padding-left: 1.5rem;
}

.policy-section ul li,
.policy-section ol li {
  margin-bottom: 0.5rem;
}

.policy-date {
  font-size: 0.85rem;
  color: var(--color-gray-mid);
  margin-bottom: 2rem;
  font-style: italic;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--color-green);
  color: var(--color-navy);
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-visual {
    order: -1;
  }

  .hero-card-stack {
    height: 320px;
  }

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

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

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

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

@media (max-width: 768px) {
  .navbar-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-navy-light);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transition: right var(--transition);
    box-shadow: var(--shadow-lg);
    border-left: 1px solid rgba(201, 169, 110, 0.1);
  }

  .navbar-links.open {
    right: 0;
  }

  .navbar-toggle {
    display: flex;
  }

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

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

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

  .page-content-inner {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .container,
  .container-narrow {
    padding: 0 1.2rem;
  }

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

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

  .hero-card-stack {
    height: 260px;
  }
}
