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

:root {
  --gold: #C8A96E;
  --gold-light: #dfc08a;
  --navy: #0A1628;
  --navy-mid: #132244;
  --navy-light: #1a3a6b;
  --white: #ffffff;
  --off-white: #f5f3ef;
  --text: #1a2540;
  --text-muted: #5a6a82;
  --border: rgba(200,169,110,0.2);
  --card-bg: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(10,22,40,0.08);
  --shadow-lg: 0 12px 48px rgba(10,22,40,0.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--off-white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.3s ease;
  background: transparent;
}

header.scrolled {
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  white-space: nowrap;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  align-items: center;
}

nav a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--gold);
  color: var(--navy);
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 700;
}

.nav-cta:hover {
  background: var(--gold-light);
  color: var(--navy);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
}

.lang-btn {
  min-width: 44px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255,255,255,0.82);
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  padding: 8px 10px;
  cursor: pointer;
}

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

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

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  z-index: 999;
  padding: 80px 32px 40px;
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}

.mobile-nav.open { transform: translateY(0); }
.mobile-nav ul { list-style: none; }
.mobile-nav li { border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-nav a { display: block; padding: 16px 0; color: white; text-decoration: none; font-size: 1.1rem; font-weight: 500; }

.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0A1628 0%, #132244 60%, #0d1e3d 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 64px 80px;
  gap: 40px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-pattern {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content,
.hero-illustration {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,169,110,0.15);
  border: 1px solid rgba(200,169,110,0.3);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.hero-title-top {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero-title-main {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
}

.hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn-primary,
.btn-ghost {
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.2s;
}

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

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,169,110,0.3);
}

.btn-ghost {
  border: 1.5px solid rgba(255,255,255,0.3);
  color: white;
  font-weight: 600;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
}

.stat { display: flex; flex-direction: column; }

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

.hero-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-illustration svg {
  width: 100%;
  max-width: 400px;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.4));
  animation: float 6s ease-in-out infinite;
}

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

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

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

.section-title.light,
.section-header.light .section-title { color: var(--white); }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 16px auto 0;
  line-height: 1.7;
}

.section-header.light .section-desc { color: rgba(255,255,255,0.65); }

.about {
  padding: 100px 32px;
  background: var(--white);
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about-visual { position: relative; }

.about-portrait {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 320px;
}

.about-portrait svg {
  display: block;
  width: 100%;
}

.about-accent-card {
  position: absolute;
  bottom: -20px;
  right: 0;
  background: var(--navy);
  color: white;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.about-accent-card i {
  font-size: 1.5rem;
  color: var(--gold);
}

.about-accent-card strong {
  display: block;
  font-size: 0.9rem;
  color: white;
}

.about-accent-card span {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

.about-divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 20px 0;
}

.about-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.mt-16 { margin-top: 16px; }

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
}

.pillar i {
  font-size: 1.3rem;
  color: var(--gold);
  min-width: 28px;
}

.pillar strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text);
  font-weight: 700;
}

.pillar span {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.services {
  padding: 100px 32px;
  background: var(--off-white);
}

.services-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  border: 1px solid transparent;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border);
}

.service-card.featured {
  background: var(--navy);
  color: white;
  border-color: rgba(200,169,110,0.3);
}

.service-card.featured h3 { color: white; }
.service-card.featured p { color: rgba(255,255,255,0.65); }

.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-icon,
.exp-icon {
  width: 60px;
  height: 60px;
  background: rgba(200,169,110,0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon i,
.exp-icon i {
  color: var(--gold);
  font-size: 1.5rem;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--text);
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  margin-top: 20px;
}

.experience {
  background: var(--navy);
  padding: 100px 32px;
}

.experience-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.exp-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 36px 48px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 60px;
}

.exp-stat {
  display: flex;
  align-items: center;
  gap: 16px;
}

.exp-stat i {
  font-size: 1.8rem;
  color: var(--gold);
}

.exp-stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--white);
  line-height: 1;
}

.exp-stat span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
  display: block;
}

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

.exp-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 28px 24px;
  transition: all 0.3s ease;
}

.exp-card:hover {
  background: rgba(200,169,110,0.1);
  border-color: rgba(200,169,110,0.3);
  transform: translateY(-4px);
}

.exp-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.exp-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.exp-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.contact {
  padding: 100px 32px;
  background: linear-gradient(135deg, #0d1c38, #0A1628);
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-title { margin-bottom: 16px; }

.contact-info > p {
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  margin-bottom: 36px;
  line-height: 1.7;
}

.contact-ways {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-way {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.2s;
}

.contact-way:hover {
  background: rgba(200,169,110,0.1);
  border-color: rgba(200,169,110,0.3);
}

.way-icon {
  width: 44px;
  height: 44px;
  background: rgba(200,169,110,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.way-icon i {
  font-size: 1.1rem;
  color: var(--gold);
}

.whatsapp-way .way-icon i { color: #25D366; }

.contact-way strong {
  display: block;
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-way span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
  display: block;
}

.contact-form-wrap {
  background: white;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}

.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

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

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

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e8e8e8;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: #fafafa;
  transition: all 0.2s;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--gold);
  background: white;
  box-shadow: 0 0 0 3px rgba(200,169,110,0.1);
}

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

.submit-btn {
  width: 100%;
  background: var(--navy);
  color: white;
  border: none;
  padding: 16px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.2s;
}

.submit-btn:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10,22,40,0.3);
}

footer {
  background: #060f1e;
  padding: 40px 32px;
  text-align: center;
  border-top: 1px solid rgba(200,169,110,0.1);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.footer-tagline {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.footer-copy {
  color: rgba(255,255,255,0.25);
  font-size: 0.8rem;
}

@media (max-width: 1080px) {
  nav ul { gap: 18px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 120px 32px 72px;
  }
  .hero-illustration { display: none; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions,
  .hero-stats { justify-content: center; }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-portrait {
    max-width: 260px;
    margin: 0 auto;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .mobile-nav { display: block; }
  .header-inner { padding: 0 20px; }
  .logo span { font-size: 1rem; }
  .hero { padding: 108px 24px 64px; }
  .hero-actions { margin-bottom: 42px; }
  .hero-stats {
    gap: 16px;
    flex-wrap: wrap;
  }
  .stat-divider { display: none; }
  .services-grid,
  .exp-grid { grid-template-columns: 1fr; }
  .exp-stats {
    flex-direction: column;
    gap: 24px;
    padding: 28px 24px;
  }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .about,
  .services,
  .experience,
  .contact { padding: 72px 20px; }
}

@media (max-width: 480px) {
  .header-inner { gap: 10px; }
  .logo span { display: none; }
  .language-switch { transform: scale(0.95); transform-origin: right center; }
  .hero-title-main { font-size: 2.55rem; }
  .btn-primary,
  .btn-ghost {
    width: 100%;
    text-align: center;
  }
  .about-accent-card {
    left: 16px;
    right: 16px;
    bottom: -28px;
  }
}
