/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #0a0f1f;
  color: #e8e6e1;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; }

/* ===== CUSTOM PROPERTIES ===== */
:root {
  --navy-deep: #0a0f1f;
  --navy-mid: #0f1c3f;
  --navy-light: #162550;
  --gold: #c8a44e;
  --gold-light: #e2c06e;
  --gold-dim: #a07830;
  --cream: #f5f0e8;
  --cream-dim: #e8e2d6;
  --text-primary: #f0ece4;
  --text-secondary: #b8b4ac;
  --text-muted: #7a7670;
  --surface: rgba(15, 28, 63, 0.6);
  --surface-solid: #0f1c3f;
  --border: rgba(200, 164, 78, 0.15);
  --border-light: rgba(200, 164, 78, 0.08);
  --shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.5);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== UTILITY ===== */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.section-title--gold { color: var(--gold); }
.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
}

/* ===== BACKGROUND GLOWS ===== */
.bg-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.bg-glow--top {
  top: -200px;
  right: -100px;
  background: rgba(200, 164, 78, 0.06);
}
.bg-glow--bottom {
  bottom: -200px;
  left: -100px;
  background: rgba(22, 37, 80, 0.5);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(10, 15, 31, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  padding: 12px 0;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.logo__text { color: var(--cream); }
.nav__list {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__link {
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 8px;
  transition: var(--transition);
}
.nav__link:hover { color: var(--gold); background: rgba(200, 164, 78, 0.06); }
.nav__link--cta {
  background: rgba(200, 164, 78, 0.12);
  color: var(--gold);
  border: 1px solid rgba(200, 164, 78, 0.2);
}
.nav__link--cta:hover {
  background: rgba(200, 164, 78, 0.18);
  color: var(--gold-light);
}
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-right: -8px;
}
.nav__burger {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__toggle[aria-expanded="true"] .nav__burger:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] .nav__burger:nth-child(2) {
  opacity: 0;
}
.nav__toggle[aria-expanded="true"] .nav__burger:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0f1f 0%, #1a2a5e 40%, #0f1c3f 70%, #0a0f1f 100%);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 15, 31, 0.7) 0%,
    rgba(15, 28, 63, 0.5) 50%,
    rgba(10, 15, 31, 0.95) 100%
  );
}
.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(200, 164, 78, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(22, 37, 80, 0.6) 0%, transparent 60%);
}
.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 800px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(200, 164, 78, 0.1);
  border: 1px solid rgba(200, 164, 78, 0.25);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 32px;
}
.hero__headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero__headline--gold {
  color: var(--gold);
  font-style: italic;
}
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 40px;
}
.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.hero__stat { text-align: center; }
.hero__stat-num {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.hero__stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: var(--text-muted);
  animation: heroScroll 2s ease-in-out infinite;
}
@keyframes heroScroll {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50% { transform: translateX(-50%) translateY(6px); opacity: 1; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 10px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy-deep);
  border: none;
  box-shadow: 0 4px 20px rgba(200, 164, 78, 0.3);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200, 164, 78, 0.4);
}
.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(240, 236, 228, 0.2);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200, 164, 78, 0.06);
}
.btn--outline-light {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(240, 236, 228, 0.2);
}
.btn--outline-light:hover {
  border-color: var(--cream);
  background: rgba(240, 236, 228, 0.06);
}
.btn--lg { padding: 18px 36px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ===== SERVICES ===== */
.services {
  position: relative;
  z-index: 1;
  padding: 120px 0;
}
.services .section-label,
.services .section-title,
.services .section-desc { text-align: center; }
.services .section-desc { margin: 0 auto 64px; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}
.card:hover {
  border-color: rgba(200, 164, 78, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.card:hover::before { opacity: 1; }
.card--service .card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 164, 78, 0.08);
  border: 1px solid rgba(200, 164, 78, 0.15);
  border-radius: var(--radius);
  margin-bottom: 24px;
}
.card--service .card__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
}
.card--service .card__body {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  transition: var(--transition);
}
.card__link:hover { gap: 10px; color: var(--gold-light); }
.card--testimonial {
  display: flex;
  flex-direction: column;
}
.card__quote-mark {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: -8px;
}
.card__quote {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  flex: 1;
  margin-bottom: 24px;
  font-style: italic;
}
.card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.card__author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-light), var(--gold-dim));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold);
  flex-shrink: 0;
}
.card__author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--cream);
}
.card__author-detail {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== ABOUT ===== */
.about {
  position: relative;
  z-index: 1;
  padding: 120px 0;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about__media { position: relative; }
.about__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about__img-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}
.about__img-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  opacity: 0.3;
  z-index: -1;
}
.about__floating-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 28px;
  box-shadow: var(--shadow-lg);
}
.about__floating-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.about__floating-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.about__body {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.about__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
}
.about__feature-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 164, 78, 0.08);
  border: 1px solid rgba(200, 164, 78, 0.15);
  border-radius: 8px;
  flex-shrink: 0;
}

/* ===== PROCESS ===== */
.process {
  position: relative;
  z-index: 1;
  padding: 120px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 28, 63, 0.4) 50%, transparent 100%);
}
.process .section-label,
.process .section-title,
.process .section-desc { text-align: center; }
.process .section-desc { margin: 0 auto 64px; }
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process__step { position: relative; text-align: center; }
.process__step-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 16px;
}
.process__step-line {
  display: none;
}
.process__step-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
}
.process__step-body {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.process__step-body a {
  color: var(--gold);
  border-bottom: 1px solid rgba(200, 164, 78, 0.3);
  transition: var(--transition);
}
.process__step-body a:hover { color: var(--gold-light); border-color: var(--gold); }

/* ===== TESTIMONIALS ===== */
.testimonials {
  position: relative;
  z-index: 1;
  padding: 120px 0;
}
.testimonials .section-label,
.testimonials .section-title { text-align: center; }
.testimonials .section-desc { display: none; }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

/* ===== CTA ===== */
.cta {
  position: relative;
  z-index: 1;
  padding: 120px 0;
}
.cta__inner {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 80px 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta__inner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200, 164, 78, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta__content { position: relative; z-index: 1; }
.cta__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 20px;
}
.cta__body {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 440px;
}
.cta__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}

/* ===== CONTACT ===== */
.contact {
  position: relative;
  z-index: 1;
  padding: 120px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 28, 63, 0.3) 100%);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact__body {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
}
.contact__details { display: flex; flex-direction: column; gap: 24px; }
.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact__detail-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 164, 78, 0.08);
  border: 1px solid rgba(200, 164, 78, 0.15);
  border-radius: var(--radius);
  flex-shrink: 0;
}
.contact__detail-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact__detail-value {
  font-size: 0.95rem;
  color: var(--cream);
  line-height: 1.6;
}
.contact__detail-value a {
  color: var(--gold);
  transition: var(--transition);
}
.contact__detail-value a:hover { color: var(--gold-light); }
.contact__form-wrap {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form__group { margin-bottom: 20px; }
.form__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form__input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(10, 15, 31, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--cream);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
}
.form__input::placeholder { color: var(--text-muted); }
.form__input:focus {
  border-color: var(--gold);
  background: rgba(10, 15, 31, 0.8);
  box-shadow: 0 0 0 3px rgba(200, 164, 78, 0.1);
}
.form__select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 5l3 3 3-3' stroke='%237a7670' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; cursor: pointer; }
.form__select option { background: var(--navy-mid); color: var(--cream); }
.form__textarea { resize: vertical; min-height: 120px; }
.form__success {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: var(--radius);
  color: #4ade80;
  font-size: 0.9rem;
  margin-top: 16px;
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border-light);
  padding: 64px 0 32px;
}
.footer__top { margin-bottom: 40px; }
.footer__tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 360px;
  line-height: 1.7;
  margin-top: 16px;
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}
.footer__copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer__address {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer__address a {
  color: var(--gold-dim);
  transition: var(--transition);
}
.footer__address a:hover { color: var(--gold); }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .process__steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .cta__inner { grid-template-columns: 1fr; padding: 64px 48px; }
  .cta__actions { flex-direction: row; }
}

@media (max-width: 768px) {
  .nav__toggle { display: flex; }
  .nav__list {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    align-items: stretch;
    background: rgba(10, 15, 31, 0.98);
    backdrop-filter: blur(20px);
    padding: 80px 24px 32px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid var(--border);
    z-index: 99;
  }
  .nav__list.open { transform: translateX(0); }
  .nav__link { padding: 14px 16px; font-size: 1rem; }
  .nav__link--cta { text-align: center; margin-top: 8px; }
  .hero__stats { gap: 20px; }
  .hero__stat-num { font-size: 1.5rem; }
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__img-wrap img { height: 300px; }
  .about__floating-card { bottom: -16px; left: 16px; }
  .about__features { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr; gap: 32px; }
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .contact__form-wrap { padding: 28px; }
  .cta__inner { padding: 48px 28px; }
  .cta__actions { flex-direction: column; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__stats { flex-direction: column; gap: 16px; }
  .hero__stat-divider { width: 40px; height: 1px; }
}

@media (prefers-reduced-motion: no-preference) {
  .hero__scroll { animation: heroScroll 2s ease-in-out infinite; }
}
