/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #1a1a2e;
  background: #FAFAF8;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== VARIABLES ===== */
:root {
  --navy: #0A1F3F;
  --navy-light: #132D54;
  --gold: #D4A017;
  --gold-light: #F0C040;
  --gold-pale: #FFF8E7;
  --white: #FAFAF8;
  --off-white: #F3F0E8;
  --dark: #1a1a2e;
  --gray: #6B7280;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(10,31,63,0.08);
  --shadow-lg: 0 12px 48px rgba(10,31,63,0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 800; line-height: 1.15; }
.text-gold { color: var(--gold); }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
  background: var(--gold-pale); padding: 8px 16px; border-radius: 100px;
}
.section-tag--light { background: rgba(212,160,23,0.15); color: var(--gold-light); }
.section-title { font-size: clamp(2rem, 4vw, 3rem); color: var(--navy); margin-bottom: 16px; }
.section-title--light { color: var(--white); }
.section-desc { font-size: 1.1rem; color: var(--gray); line-height: 1.7; }
.section-desc--light { color: rgba(255,255,255,0.7); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 100px; font-weight: 600; font-size: 0.95rem;
  transition: var(--transition); white-space: nowrap;
}
.btn--gold { background: var(--gold); color: var(--navy); }
.btn--gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,160,23,0.35); }
.btn--outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.4); }
.btn--outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn--white { background: var(--white); color: var(--navy); }
.btn--white:hover { background: var(--gold-pale); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--full { width: 100%; justify-content: center; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,31,63,0.92); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212,160,23,0.15);
  transition: var(--transition);
}
.nav__inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; height: 72px; }
.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__logo-text { font-family: 'Playfair Display', serif; font-weight: 800; font-size: 1.1rem; color: var(--white); }
.nav__logo-dot { color: var(--gold); }
.nav__menu { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.nav__link { padding: 8px 16px; border-radius: 8px; font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.75); transition: var(--transition); }
.nav__link:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav__link--cta { background: var(--gold); color: var(--navy); font-weight: 700; margin-left: 8px; }
.nav__link--cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.nav__toggle { display: none; margin-left: auto; padding: 8px; color: var(--white); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden; background: var(--navy);
}
.hero__bg { position: absolute; inset: 0; z-index: 1; }
.hero__img { width: 100%; height: 100%; object-fit: cover; opacity: 0.45; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,31,63,0.92) 0%, rgba(10,31,63,0.7) 50%, rgba(10,31,63,0.5) 100%); }
.hero__shape { position: absolute; z-index: 2; pointer-events: none; }
.hero__shape--circle {
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,23,0.2) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.hero__shape--triangle {
  width: 0; height: 0;
  border-left: 120px solid transparent; border-right: 120px solid transparent; border-bottom: 200px solid rgba(212,160,23,0.08);
  bottom: 15%; left: 5%;
  transform: rotate(-15deg);
}
.hero__shape--stripes {
  width: 200px; height: 100%; top: 0; right: 15%;
  background: repeating-linear-gradient(180deg, transparent, transparent 40px, rgba(212,160,23,0.04) 40px, rgba(212,160,23,0.04) 80px);
}
.hero__content {
  position: relative; z-index: 3; max-width: 1200px; margin: 0 auto; padding: 120px 24px 80px;
  width: 100%;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,160,23,0.15); border: 1px solid rgba(212,160,23,0.3);
  color: var(--gold-light); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em;
  padding: 8px 16px; border-radius: 100px; margin-bottom: 32px;
}
.hero__headline { margin-bottom: 24px; }
.hero__headline-line {
  display: block; font-size: clamp(2.8rem, 7vw, 5.5rem); color: var(--white);
  letter-spacing: -0.02em;
}
.hero__headline-line--gold { color: var(--gold); }
.hero__sub { font-size: clamp(1.1rem, 2vw, 1.35rem); color: rgba(255,255,255,0.7); margin-bottom: 40px; line-height: 1.7; max-width: 500px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 64px; }
.hero__stats { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.hero__stat { display: flex; flex-direction: column; gap: 4px; }
.hero__stat-num { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 800; color: var(--gold); }
.hero__stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; }
.hero__stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }
.hero__scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 3; color: rgba(255,255,255,0.4); animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ===== SERVICES ===== */
.services { padding: 120px 0; background: var(--white); position: relative; }
.services::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--gold) 50%, var(--navy) 100%);
}
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  position: relative; background: var(--white); border-radius: var(--radius-lg);
  padding: 40px 32px; border: 1px solid rgba(10,31,63,0.08);
  transition: var(--transition); overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--gold); transform: scaleX(0); transition: var(--transition); transform-origin: left;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card--featured {
  background: var(--navy); border-color: var(--navy);
}
.service-card--featured::before { background: var(--gold); transform: scaleX(1); }
.service-card--featured:hover { box-shadow: 0 12px 48px rgba(10,31,63,0.3); }
.service-card__accent {
  position: absolute; top: -40px; right: -40px;
  width: 120px; height: 120px; border-radius: 50%;
  background: rgba(212,160,23,0.08); transition: var(--transition);
}
.service-card:hover .service-card__accent { transform: scale(1.5); background: rgba(212,160,23,0.12); }
.service-card--featured .service-card__accent { background: rgba(212,160,23,0.15); }
.service-card__badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--gold); color: var(--navy); font-size: 0.7rem; font-weight: 700;
  padding: 4px 12px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.06em;
}
.service-card__icon { position: relative; z-index: 1; margin-bottom: 24px; }
.service-card--featured .service-card__icon svg { stroke: var(--gold-light) !important; fill: none !important; }
.service-card__title {
  font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 12px;
  color: var(--navy); position: relative; z-index: 1;
}
.service-card--featured .service-card__title { color: var(--white); }
.service-card__desc { font-size: 0.95rem; color: var(--gray); line-height: 1.7; margin-bottom: 20px; position: relative; z-index: 1; }
.service-card--featured .service-card__desc { color: rgba(255,255,255,0.65); }
.service-card__list { display: flex; flex-direction: column; gap: 10px; position: relative; z-index: 1; }
.service-card__list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; color: var(--navy); font-weight: 500;
}
.service-card--featured .service-card__list li { color: rgba(255,255,255,0.8); }
.service-card__list li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0;
}

/* ===== ABOUT ===== */
.about { padding: 120px 0; background: var(--off-white); position: relative; overflow: hidden; }
.about__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about__images { position: relative; }
.about__img-main { border-radius: var(--radius-lg) 0 var(--radius-lg) var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about__img-main img { width: 100%; height: 100%; object-fit: cover; }
.about__img-secondary {
  position: absolute; bottom: -40px; right: -40px;
  width: 55%; border-radius: var(--radius-lg); overflow: hidden;
  border: 6px solid var(--off-white); box-shadow: var(--shadow);
}
.about__img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about__shape {
  position: absolute; top: -30px; left: -30px;
  width: 120px; height: 120px; border-radius: 50%;
  background: var(--gold); opacity: 0.15; z-index: -1;
}
.about__content { position: relative; z-index: 1; }
.about__text { font-size: 1.05rem; color: var(--gray); line-height: 1.8; margin-bottom: 20px; }
.about__values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.about__value { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 0.95rem; color: var(--navy); }
.about__value svg { flex-shrink: 0; }

/* ===== WHY US ===== */
.why-us { padding: 120px 0; background: var(--navy); position: relative; overflow: hidden; }
.why-us__bg-shape {
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,23,0.1) 0%, transparent 70%);
}
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; position: relative; z-index: 1; }
.why-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); padding: 40px 32px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.why-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transition: var(--transition); transform-origin: left;
}
.why-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-4px); }
.why-card:hover::after { transform: scaleX(1); }
.why-card__num { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 900; color: rgba(212,160,23,0.2); line-height: 1; margin-bottom: 16px; }
.why-card__title { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: var(--white); margin-bottom: 12px; }
.why-card__text { font-size: 0.95rem; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 100px 0; background: var(--gold);
  position: relative; overflow: hidden;
}
.cta-banner__shape-left {
  position: absolute; top: -80px; left: -80px;
  width: 250px; height: 250px; border-radius: 50%; background: rgba(10,31,63,0.08);
}
.cta-banner__shape-right {
  position: absolute; bottom: -60px; right: -60px;
  width: 180px; height: 180px; border-radius: 50%; background: rgba(10,31,63,0.06);
}
.cta-banner__content { text-align: center; position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-banner__title { font-size: clamp(2rem, 4vw, 2.8rem); color: var(--navy); margin-bottom: 16px; }
.cta-banner__text { font-size: 1.1rem; color: rgba(10,31,63,0.7); margin-bottom: 32px; line-height: 1.7; }
.cta-banner__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }

/* ===== CONTACT ===== */
.contact { padding: 120px 0; background: var(--white); }
.contact__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact__detail { display: flex; gap: 16px; margin-bottom: 24px; }
.contact__detail-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--gold-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact__detail strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--navy); margin-bottom: 4px; }
.contact__detail p { font-size: 0.95rem; color: var(--gray); line-height: 1.6; }
.contact__detail a { color: var(--navy); font-weight: 600; transition: var(--transition); }
.contact__detail a:hover { color: var(--gold); }
.contact__map { border-radius: var(--radius); overflow: hidden; margin-top: 32px; box-shadow: var(--shadow); }
.contact__text { font-size: 1.05rem; color: var(--gray); line-height: 1.8; margin-bottom: 32px; }
.contact__form-wrap { position: relative; }
.contact__form-deco {
  position: absolute; top: -20px; right: -20px;
  width: 100px; height: 100px; border-radius: 50%;
  background: var(--gold); opacity: 0.1; z-index: 0;
}
.contact__form-title { font-size: 1.5rem; color: var(--navy); margin-bottom: 24px; position: relative; z-index: 1; }
.contact__form { position: relative; z-index: 1; background: var(--off-white); border-radius: var(--radius-lg); padding: 36px; border: 1px solid rgba(10,31,63,0.06); }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--navy); margin-bottom: 8px; }
.form-input {
  width: 100%; padding: 12px 16px; border-radius: 10px;
  border: 1.5px solid rgba(10,31,63,0.12); background: var(--white);
  font-family: inherit; font-size: 0.95rem; color: var(--dark);
  transition: var(--transition); outline: none;
}
.form-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,160,23,0.15); }
.form-input::placeholder { color: #B0B0B0; }
.form-select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230A1F3F' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: flex; align-items: center; gap: 10px;
  margin-top: 16px; padding: 14px 18px; border-radius: 10px;
  background: #E8F5E9; color: #1A7A3A; font-size: 0.9rem; font-weight: 500;
}

/* ===== FOOTER ===== */
.footer { background: var(--navy); padding: 64px 0 0; }
.footer__top { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer__logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer__logo-text { font-family: 'Playfair Display', serif; font-weight: 800; font-size: 1rem; color: var(--white); }
.footer__tagline { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 300px; }
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links a { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer__links a:hover { color: var(--gold); padding-left: 4px; }
.footer__contact { display: flex; flex-direction: column; gap: 12px; }
.footer__contact a { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer__contact a:hover { color: var(--gold); }
.footer__contact span { font-size: 0.9rem; color: rgba(255,255,255,0.5); }
.footer__bottom { padding: 24px 0; text-align: center; }
.footer__bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); }

/* ===== REVEAL ANIMATION ===== */
[data-reveal] { opacity: 0; transform: translateY(32px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: var(--navy); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu__close { position: absolute; top: 20px; right: 24px; color: var(--white); padding: 8px; }
.mobile-menu__link {
  font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700;
  color: var(--white); padding: 12px 24px; border-radius: 8px; transition: var(--transition);
}
.mobile-menu__link:hover { color: var(--gold); }
.mobile-menu__link--cta { color: var(--navy); background: var(--gold); border-radius: 100px; padding: 14px 32px; font-family: 'Inter', sans-serif; font-size: 1rem; margin-top: 16px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:last-child { grid-column: span 2; max-width: 50%; margin: 0 auto; }
}
@media (max-width: 768px) {
  .nav__menu { display: none; }
  .nav__toggle { display: flex; }
  .hero__headline-line { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .hero__stats { gap: 20px; }
  .hero__stat-num { font-size: 1.4rem; }
  .services__grid { grid-template-columns: 1fr; }
  .service-card:last-child { grid-column: span 1; max-width: 100%; }
  .about__layout { grid-template-columns: 1fr; gap: 80px; }
  .about__img-secondary { position: relative; bottom: auto; right: auto; width: 70%; margin-top: -40px; margin-left: auto; }
  .why-grid { grid-template-columns: 1fr; }
  .contact__layout { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .cta-banner__actions { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .about__values { grid-template-columns: 1fr; }
  .contact__form { padding: 24px; }
}
