@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&display=swap');

:root {
  --primary: #0f2b46;
  --primary-light: #1a3d5c;
  --accent: #c9a84c;
  --accent-light: #e8d48b;
  --accent-glow: rgba(201,168,76,0.3);
  --teal: #0ea5a0;
  --teal-light: #14cfc8;
  --surface: #f8f9fc;
  --surface-dark: #0b1e30;
  --text: #1a1a2e;
  --text-light: #6b7280;
  --white: #ffffff;
  --gradient-gold: linear-gradient(135deg, #c9a84c, #e8d48b, #c9a84c);
  --gradient-dark: linear-gradient(180deg, #0f2b46 0%, #0b1e30 100%);
  --gradient-hero: linear-gradient(135deg, rgba(15,43,70,0.92) 0%, rgba(11,30,48,0.85) 50%, rgba(14,165,160,0.7) 100%);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --shadow-gold: 0 8px 30px rgba(201,168,76,0.25);
  --radius: 16px;
  --radius-sm: 8px;
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.pamphlet { max-width: 100%; overflow: hidden; }

/* ===== HEADER / NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 60px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(15,43,70,0.6);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: all 0.4s ease;
}
.nav.scrolled { background: rgba(15,43,70,0.95); padding: 14px 60px; }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-icon {
  width: 44px; height: 44px; background: var(--gradient-gold);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 800; color: var(--primary);
}
.nav-logo-text { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--white); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.8); text-decoration: none; font-size: 14px;
  font-weight: 500; letter-spacing: 0.5px; transition: color 0.3s;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  background: var(--gradient-gold); color: var(--primary); border: none;
  padding: 10px 28px; border-radius: 50px; font-weight: 600; font-size: 14px;
  cursor: pointer; transition: all 0.3s; letter-spacing: 0.5px;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  justify-content: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('hero-bg.jpg') center/cover no-repeat;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: var(--gradient-hero);
}
.hero-particles {
  position: absolute; inset: 0; overflow: hidden;
}
.hero-particles span {
  position: absolute; width: 4px; height: 4px;
  background: var(--accent); border-radius: 50%; opacity: 0;
  animation: particleFloat 6s infinite;
}
.hero-particles span:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.hero-particles span:nth-child(2) { left: 30%; top: 60%; animation-delay: 1s; }
.hero-particles span:nth-child(3) { left: 50%; top: 30%; animation-delay: 2s; }
.hero-particles span:nth-child(4) { left: 70%; top: 70%; animation-delay: 3s; }
.hero-particles span:nth-child(5) { left: 90%; top: 40%; animation-delay: 4s; }
.hero-particles span:nth-child(6) { left: 20%; top: 80%; animation-delay: 1.5s; }
.hero-particles span:nth-child(7) { left: 80%; top: 15%; animation-delay: 2.5s; }
.hero-particles span:nth-child(8) { left: 60%; top: 50%; animation-delay: 3.5s; }

@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  20% { opacity: 1; transform: translateY(-20px) scale(1); }
  80% { opacity: 0.5; }
  100% { opacity: 0; transform: translateY(-120px) scale(0); }
}

.hero-content {
  position: relative; z-index: 2; text-align: center;
  max-width: 900px; padding: 0 24px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3);
  padding: 8px 20px; border-radius: 50px; margin-bottom: 28px;
  color: var(--accent-light); font-size: 13px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
}
.hero-badge-dot {
  width: 8px; height: 8px; background: var(--accent);
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
.hero h1 {
  font-family: 'Playfair Display', serif; font-size: clamp(42px, 6vw, 72px);
  font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 8px;
}
.hero h1 .gold { color: var(--accent); }
.hero-sub {
  font-size: clamp(16px, 2vw, 20px); color: rgba(255,255,255,0.7);
  line-height: 1.7; margin-bottom: 40px; max-width: 650px; margin-inline: auto;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--gradient-gold); color: var(--primary); border: none;
  padding: 16px 40px; border-radius: 50px; font-weight: 700; font-size: 15px;
  cursor: pointer; transition: all 0.3s; letter-spacing: 0.5px;
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-gold); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
  padding: 14px 36px; border-radius: 50px; font-weight: 600; font-size: 15px;
  cursor: pointer; transition: all 0.3s; letter-spacing: 0.5px;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.hero-stats-row {
  display: flex; justify-content: center; gap: 48px; margin-top: 60px;
  padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-item { text-align: center; }
.hero-stat-num {
  font-family: 'Playfair Display', serif; font-size: 36px;
  font-weight: 700; color: var(--accent);
}
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 4px; letter-spacing: 1px; text-transform: uppercase; }

/* ===== SECTION COMMON ===== */
.section { padding: 100px 60px; }
.section-dark { background: var(--gradient-dark); color: var(--white); }
.section-light { background: var(--surface); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-label {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Playfair Display', serif; font-size: clamp(30px, 4vw, 48px);
  font-weight: 700; line-height: 1.2; margin-bottom: 16px;
}
.section-desc {
  font-size: 17px; color: var(--text-light); max-width: 600px;
  margin-inline: auto; line-height: 1.7;
}
.section-dark .section-desc { color: rgba(255,255,255,0.65); }

/* ===== MODULES GRID ===== */
.modules-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; max-width: 1200px; margin: 0 auto;
}
.module-card {
  background: var(--white); border-radius: var(--radius);
  padding: 36px 30px; border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.4s ease; position: relative; overflow: hidden;
}
.module-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-gold); transform: scaleX(0);
  transform-origin: left; transition: transform 0.4s ease;
}
.module-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.module-card:hover::before { transform: scaleX(1); }
.module-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 20px;
}
.module-icon.fo { background: rgba(14,165,160,0.12); color: var(--teal); }
.module-icon.pos { background: rgba(201,168,76,0.12); color: var(--accent); }
.module-icon.bq { background: rgba(139,92,246,0.12); color: #8b5cf6; }
.module-icon.hk { background: rgba(59,130,246,0.12); color: #3b82f6; }
.module-icon.ac { background: rgba(16,185,129,0.12); color: #10b981; }
.module-icon.st { background: rgba(244,63,94,0.12); color: #f43f5e; }
.module-icon.rp { background: rgba(245,158,11,0.12); color: #f59e0b; }
.module-icon.em { background: rgba(99,102,241,0.12); color: #6366f1; }
.module-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; color: var(--primary); }
.module-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; }
.module-features { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; }
.module-features li {
  font-size: 11px; padding: 4px 10px; border-radius: 20px;
  background: var(--surface); color: var(--text-light); font-weight: 500;
}

/* ===== FEATURES SHOWCASE ===== */
.features-showcase {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.features-showcase.reverse { direction: rtl; }
.features-showcase.reverse > * { direction: ltr; }
.feature-visual {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3; position: relative;
}
.feature-visual img { width: 100%; height: 100%; object-fit: cover; }
.feature-visual::after {
  content: ''; position: absolute; inset: 0;
  border-radius: var(--radius);
  border: 1px solid rgba(201,168,76,0.2);
}
.feature-text h3 {
  font-family: 'Playfair Display', serif; font-size: 34px;
  font-weight: 700; margin-bottom: 20px; color: var(--primary);
}
.feature-text p { font-size: 16px; color: var(--text-light); line-height: 1.8; margin-bottom: 28px; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.feature-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; color: var(--text); font-weight: 500;
}
.feature-check {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(14,165,160,0.12); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; flex-shrink: 0;
}

/* ===== STATS BAR ===== */
.stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; max-width: 1200px; margin: 0 auto;
  background: rgba(255,255,255,0.05); border-radius: var(--radius);
  border: 1px solid rgba(201,168,76,0.15); overflow: hidden;
}
.stat-item {
  padding: 40px 30px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Playfair Display', serif; font-size: 48px;
  font-weight: 700; color: var(--accent); margin-bottom: 8px;
}
.stat-label { font-size: 14px; color: rgba(255,255,255,0.6); letter-spacing: 1px; }

/* ===== WHY CHOOSE US ===== */
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; max-width: 1100px; margin: 0 auto;
}
.why-card {
  text-align: center; padding: 40px 28px;
  border-radius: var(--radius); background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08); transition: all 0.4s;
}
.why-card:hover { background: rgba(201,168,76,0.06); border-color: rgba(201,168,76,0.2); transform: translateY(-4px); }
.why-icon {
  width: 64px; height: 64px; margin: 0 auto 20px;
  background: rgba(201,168,76,0.1); border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--accent);
}
.why-card h3 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.why-card p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* ===== CTA ===== */
.cta-section {
  padding: 100px 60px; text-align: center;
  background: linear-gradient(135deg, var(--primary) 0%, #0b1e30 50%, var(--teal) 150%);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-content { position: relative; z-index: 2; }
.cta-content h2 {
  font-family: 'Playfair Display', serif; font-size: clamp(30px, 4vw, 48px);
  font-weight: 700; color: var(--white); margin-bottom: 16px;
}
.cta-content p { font-size: 18px; color: rgba(255,255,255,0.7); margin-bottom: 36px; max-width: 550px; margin-inline: auto; line-height: 1.7; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-contact {
  display: flex; justify-content: center; gap: 40px; margin-top: 48px;
  flex-wrap: wrap;
}
.cta-contact-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.7); font-size: 14px;
}
.cta-contact-item span.icon { font-size: 18px; color: var(--accent); }

/* ===== FOOTER ===== */
.footer {
  background: #07141f; padding: 40px 60px; text-align: center;
  color: rgba(255,255,255,0.4); font-size: 13px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer a { color: var(--accent); text-decoration: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-showcase { grid-template-columns: 1fr; gap: 40px; }
  .features-showcase.reverse { direction: ltr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .why-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav { padding: 14px 24px; }
  .nav-links { display: none; }
  .section { padding: 60px 24px; }
  .hero-stats-row { gap: 24px; flex-wrap: wrap; }
  .modules-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .why-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 60px 24px; }
  .footer { padding: 30px 24px; }
}

/* ===== PRINT ===== */
@media print {
  .nav { display: none; }
  .hero { min-height: auto; padding: 60px 40px; }
  .section { padding: 40px; page-break-inside: avoid; }
  .module-card, .why-card { break-inside: avoid; }
  body { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== ENQUIRY MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(11,30,48,0.7);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.modal-overlay.active { opacity: 1; pointer-events: auto; }

.modal-container {
  background: var(--white); border-radius: var(--radius);
  width: 90%; max-width: 680px; max-height: 90vh; overflow-y: auto;
  padding: 40px 36px; position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  transform: translateY(30px) scale(0.97);
  transition: transform 0.35s ease;
}
.modal-overlay.active .modal-container { transform: translateY(0) scale(1); }

.modal-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none; font-size: 28px; color: var(--text-light);
  cursor: pointer; line-height: 1; transition: color 0.2s;
}
.modal-close:hover { color: var(--primary); }

.modal-header { text-align: center; margin-bottom: 28px; }
.modal-logo {
  width: 48px; height: 48px; background: var(--gradient-gold);
  border-radius: 12px; display: inline-flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 800; color: var(--primary); margin-bottom: 12px;
}
.modal-header h2 {
  font-family: 'Playfair Display', serif; font-size: 26px;
  font-weight: 700; color: var(--primary); margin-bottom: 6px;
}
.modal-header p { font-size: 14px; color: var(--text-light); }

.modal-form { display: flex; flex-direction: column; gap: 14px; }

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

.form-group { display: flex; flex-direction: column; gap: 4px; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group label {
  font-size: 13px; font-weight: 600; color: var(--primary);
}
.form-group .req { color: #ef4444; }
.form-group input, .form-group textarea, .form-group select {
  padding: 10px 14px; border: 1.5px solid #e2e8f0; border-radius: var(--radius-sm);
  font-size: 14px; font-family: 'Inter', sans-serif; color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
  background: #fafbfc;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-group textarea { resize: vertical; min-height: 70px; }

.modules-check-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px 16px;
}
.check-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text); cursor: pointer; font-weight: 400;
}
.check-label input[type="checkbox"] {
  width: 16px; height: 16px; accent-color: var(--accent); cursor: pointer;
}

.form-message {
  font-size: 13px; padding: 8px 12px; border-radius: var(--radius-sm);
  display: none; text-align: center;
}
.form-message.success {
  display: block; background: #ecfdf5; color: #059669; border: 1px solid #a7f3d0;
}
.form-message.error {
  display: block; background: #fef2f2; color: #dc2626; border: 1px solid #fecaca;
}

.modal-submit {
  width: 100%; justify-content: center; margin-top: 4px;
}

@media (max-width: 600px) {
  .modal-container { padding: 28px 20px; width: 96%; }
  .form-row { grid-template-columns: 1fr; }
  .modules-check-grid { grid-template-columns: 1fr; }
}
