/* ===== CSS Variables ===== */
:root {
  --primary: #0f4c81;
  --primary-dark: #0a3560;
  --primary-light: #1a6bb5;
  --accent: #e8a838;
  --accent-dark: #d4952e;
  --text: #1e293b;
  --text-light: #64748b;
  --bg: #ffffff;
  --bg-alt: #f0f4f8;
  --bg-dark: #0c2d4a;
  --border: #e2e8f0;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== Top Bar ===== */
.top-bar {
  background: var(--bg-dark);
  color: #fff;
  font-size: 0.85rem;
  padding: 10px 0;
}

.top-bar-inner { display: flex; justify-content: space-between; align-items: center; }
.top-bar-contact { display: flex; gap: 24px; }
.top-bar-contact a { color: rgba(255,255,255,0.85); }
.top-bar-contact a:hover { color: var(--accent); }
.top-bar-contact i { margin-right: 6px; }
.top-bar-social { display: flex; gap: 6px; }
.top-bar-social a {
  color: rgba(255,255,255,0.7); font-size: 0.85rem;
  width: 30px; height: 30px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(255,255,255,0.08);
}
.top-bar-social a:hover { color: #fff; background: var(--accent); }

/* ===== Navbar ===== */
.navbar {
  background: var(--bg);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.1); }
.navbar-inner { display: flex; justify-content: space-between; align-items: center; height: 72px; }

.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff; font-weight: 800; font-size: 1.1rem;
  width: 42px; height: 42px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.logo-text { font-weight: 700; font-size: 1.15rem; color: var(--primary); line-height: 1.2; }
.logo-text small { display: block; font-size: 0.7rem; font-weight: 500; color: var(--text-light); }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-link { padding: 8px 16px; font-size: 0.92rem; font-weight: 500; color: var(--text); border-radius: var(--radius-sm); }
.nav-link:hover, .nav-link.active { color: var(--primary); background: rgba(15,76,129,0.06); }
.nav-link.cta-btn {
  background: var(--primary); color: #fff; padding: 10px 22px;
  border-radius: 50px; margin-left: 8px;
}
.nav-link.cta-btn:hover { background: var(--primary-dark); color: #fff; }
.nav-link i { font-size: 0.65rem; margin-left: 4px; }

.nav-dropdown { position: relative; }
.dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--bg); min-width: 220px; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 8px; z-index: 100; border: 1px solid var(--border);
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a { display: block; padding: 10px 16px; font-size: 0.88rem; border-radius: var(--radius-sm); color: var(--text); }
.dropdown-menu a:hover { background: rgba(15,76,129,0.06); color: var(--primary); }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; width: 32px; height: 24px; position: relative; }
.mobile-toggle span { display: block; width: 100%; height: 2.5px; background: var(--text); border-radius: 2px; transition: var(--transition); position: absolute; left: 0; }
.mobile-toggle span:nth-child(1) { top: 0; }
.mobile-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.mobile-toggle span:nth-child(3) { bottom: 0; }
.mobile-toggle.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  background: linear-gradient(160deg, #eaf2fa 0%, #f0f4f8 40%, #fef9f0 100%);
  padding: 0 0 0;
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-bg-shapes::before {
  content: ''; position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(15,76,129,0.06) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.hero-bg-shapes::after {
  content: ''; position: absolute; width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,168,56,0.08) 0%, transparent 70%);
  bottom: -50px; left: -80px;
}

.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: center;
  padding: 80px 0 40px;
  position: relative;
}

.hero-text { max-width: 540px; }

.hero-tag {
  display: inline-block;
  background: rgba(15,76,129,0.08); color: var(--primary);
  padding: 6px 16px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600; margin-bottom: 16px;
  letter-spacing: 0.5px; text-transform: uppercase;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.25; margin-bottom: 18px; color: var(--primary-dark);
}
.hero h1 span { color: var(--accent); }

.hero-sub {
  font-size: 1.05rem; color: var(--text-light);
  margin-bottom: 28px; line-height: 1.7;
}

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-illustration {
  display: flex; align-items: center; justify-content: center;
}
.hero-illustration svg { width: 100%; max-width: 420px; height: auto; }

/* Hero Stats Bar */
.hero-stats-bar {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  padding: 0;
  position: relative;
}

.hero-stats {
  display: flex; justify-content: center; gap: 0;
}

.stat {
  text-align: center; flex: 1; padding: 24px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat:last-child { border-right: none; }
.stat-num { display: block; font-size: 2rem; font-weight: 800; color: var(--accent); }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.75); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; font-size: 0.92rem; font-weight: 600;
  border-radius: 50px; border: 2px solid transparent; cursor: pointer;
  transition: var(--transition);
}
.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { background: rgba(255,255,255,0.9); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.btn-full { width: 100%; justify-content: center; }

/* ===== Sections ===== */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }

/* Unique backgrounds per section */
#npra { background: linear-gradient(135deg, #f8fbff 0%, #eef4fb 50%, #f5f0e8 100%); }
#why { background: linear-gradient(160deg, #e8eef5 0%, #f0f4f8 50%, #eef2e8 100%); }
#services { background: linear-gradient(135deg, #fefcf8 0%, #fff9f0 50%, #f8fbff 100%); }
#process { background: linear-gradient(160deg, #edf2f8 0%, #f0f4f8 40%, #f5f0ea 100%); }
#fees { background: linear-gradient(135deg, #f8fbff 0%, #f0f7ff 50%, #faf8f5 100%); }
#licensing { background: linear-gradient(160deg, #e8edf5 0%, #eef3f9 50%, #f5f2ea 100%); }
#foreign { background: linear-gradient(135deg, #faf9f5 0%, #f5f0e8 30%, #eef4fb 100%); }
#post-market { background: linear-gradient(160deg, #edf3f9 0%, #f0f4f8 50%, #eef2ea 100%); }
#about { background: linear-gradient(135deg, #f8fbff 0%, #f0f0ff 50%, #faf8f5 100%); }

.section-header { text-align: center; max-width: 660px; margin: 0 auto 48px; }
.section-tag {
  display: inline-block;
  background: rgba(15,76,129,0.08); color: var(--primary);
  padding: 5px 14px; border-radius: 50px; font-size: 0.8rem;
  font-weight: 600; margin-bottom: 12px; letter-spacing: 0.5px;
  text-transform: uppercase;
}
.section-header h2, .section-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  color: var(--primary-dark); margin-bottom: 12px; line-height: 1.3;
}
.section-header p { color: var(--text-light); font-size: 1rem; }

/* Section Grid */
.section-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.section-grid.reverse { direction: rtl; }
.section-grid.reverse > * { direction: ltr; }
.section-text p { color: var(--text-light); margin-bottom: 14px; }
.section-text p strong { color: var(--text); }

.section-illustration {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(15,76,129,0.04), rgba(232,168,56,0.04));
  border-radius: 20px; padding: 20px;
}
.section-illustration svg { width: 100%; max-width: 380px; height: auto; }

.highlight-box {
  display: flex; gap: 16px;
  background: rgba(15,76,129,0.04);
  border-left: 4px solid var(--primary);
  padding: 18px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 18px;
}
.highlight-box > i { font-size: 1.4rem; color: var(--primary); margin-top: 2px; }
.highlight-box strong { display: block; margin-bottom: 4px; color: var(--primary-dark); }
.highlight-box p { margin: 0; font-size: 0.88rem; }

/* ===== Cards Grid ===== */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.card {
  background: var(--bg); padding: 28px; border-radius: var(--radius);
  box-shadow: var(--shadow); transition: var(--transition);
  border: 1px solid transparent;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary); }

.card-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #dbeafe, #eff6ff);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--primary); margin-bottom: 16px;
}
.card:nth-child(2) .card-icon { background: linear-gradient(135deg, #fef3c7, #fffbeb); color: var(--accent-dark); }
.card:nth-child(3) .card-icon { background: linear-gradient(135deg, #dcfce7, #f0fdf4); color: #16a34a; }
.card:nth-child(4) .card-icon { background: linear-gradient(135deg, #e0e7ff, #eef2ff); color: #4f46e5; }
.card:nth-child(5) .card-icon { background: linear-gradient(135deg, #fce7f3, #fdf2f8); color: #db2777; }
.card:nth-child(6) .card-icon { background: linear-gradient(135deg, #fed7aa, #fff7ed); color: #ea580c; }
.card h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--primary-dark); }
.card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }

/* ===== Product Grid ===== */
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.product-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: var(--transition);
}
.product-card:hover { border-color: var(--primary); box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.product-card-illust {
  height: 180px; display: flex; align-items: center; justify-content: center;
  padding: 10px;
}
.product-card:nth-child(1) .product-card-illust { background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%); }
.product-card:nth-child(2) .product-card-illust { background: linear-gradient(135deg, #dcfce7 0%, #f0fdf4 100%); }
.product-card:nth-child(3) .product-card-illust { background: linear-gradient(135deg, #fef3c7 0%, #fffbeb 100%); }
.product-card:nth-child(4) .product-card-illust { background: linear-gradient(135deg, #fce7f3 0%, #fdf2f8 100%); }
.product-card-illust svg { max-height: 160px; width: auto; }

.product-card-body { padding: 22px; }
.product-card h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--primary-dark); }
.product-card p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 12px; }
.product-card ul { display: flex; flex-wrap: wrap; gap: 6px; }
.product-card li {
  background: rgba(15,76,129,0.06); color: var(--primary);
  font-size: 0.78rem; font-weight: 500; padding: 3px 10px; border-radius: 50px;
}

/* ===== Card More Link ===== */
.card-more {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px; font-size: 0.82rem; font-weight: 600;
  color: var(--primary); transition: var(--transition);
}
.product-card:hover .card-more { color: var(--accent); gap: 10px; }

/* ===== Product Modal ===== */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
  justify-content: center; align-items: center; padding: 24px;
}
.modal-overlay.active { display: flex; }

.modal-content {
  background: var(--bg); border-radius: var(--radius);
  max-width: 640px; width: 100%; max-height: 85vh; overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2); position: relative;
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 10;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,0.06); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--text-light); transition: var(--transition);
}
.modal-close:hover { background: rgba(0,0,0,0.12); color: var(--text); }

.modal-header {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  color: #fff; padding: 32px 32px 28px; border-radius: var(--radius) var(--radius) 0 0;
}
.modal-header h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 6px; }
.modal-header p { font-size: 0.9rem; color: rgba(255,255,255,0.8); }

.modal-body { padding: 28px 32px; }
.modal-body h3 { font-size: 1rem; color: var(--primary-dark); margin-bottom: 12px; }
.modal-body p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 16px; line-height: 1.7; }

.modal-list { margin-bottom: 20px; }
.modal-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.85rem; color: var(--text-light); margin-bottom: 10px; line-height: 1.5;
}
.modal-list li i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }

.modal-info {
  background: linear-gradient(135deg, rgba(15,76,129,0.04), rgba(232,168,56,0.04));
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 18px; display: flex; gap: 20px; margin-bottom: 20px;
}
.modal-info-item { text-align: center; flex: 1; }
.modal-info-item .label { display: block; font-size: 0.72rem; color: var(--text-light); text-transform: uppercase; font-weight: 600; letter-spacing: 0.5px; }
.modal-info-item .value { display: block; font-size: 1.2rem; font-weight: 800; color: var(--accent); margin-top: 4px; }

.modal-footer { padding: 0 32px 28px; display: flex; gap: 12px; }

@media (max-width: 768px) {
  .modal-content { max-height: 90vh; margin: 10px; }
  .modal-header, .modal-body { padding-left: 22px; padding-right: 22px; }
  .modal-footer { padding-left: 22px; padding-right: 22px; flex-direction: column; }
  .modal-info { flex-direction: column; gap: 12px; }
}

/* ===== Timeline ===== */
.timeline { max-width: 680px; margin: 0 auto; position: relative; }
.timeline::before {
  content: ''; position: absolute; left: 24px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(180deg, var(--primary), var(--accent));
}
.timeline-item { display: flex; gap: 22px; margin-bottom: 28px; position: relative; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-number {
  flex-shrink: 0; width: 50px; height: 50px;
  background: var(--primary); color: #fff;
  font-weight: 700; font-size: 1.1rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; z-index: 1;
}
.timeline-content {
  background: var(--bg); padding: 22px; border-radius: var(--radius);
  box-shadow: var(--shadow); flex: 1;
}
.timeline-content h3 { font-size: 1rem; color: var(--primary-dark); margin-bottom: 6px; }
.timeline-content p { font-size: 0.88rem; color: var(--text-light); }

/* ===== Info Grid ===== */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.info-card {
  text-align: center; background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 22px; transition: var(--transition);
  position: relative; overflow: hidden;
}
.info-card:nth-child(1)::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: linear-gradient(90deg, #0f4c81, #1a6bb5);
}
.info-card:nth-child(2)::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: linear-gradient(90deg, #e8a838, #f0c060);
}
.info-card:nth-child(3)::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: linear-gradient(90deg, #16a34a, #4ade80);
}
.info-card:hover { border-color: var(--primary); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.info-icon { font-size: 1.8rem; color: var(--primary); margin-bottom: 14px; }
.info-card h3 { font-size: 1rem; color: var(--primary-dark); margin-bottom: 10px; }
.info-highlight { font-size: 1.7rem; font-weight: 800; color: var(--accent); margin-bottom: 12px; }
.info-card p { font-size: 0.85rem; color: var(--text-light); }

/* Fee Table */
.fee-table-wrapper {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow);
}
.fee-table-wrapper h3 { font-size: 1.15rem; color: var(--primary-dark); margin-bottom: 18px; }
.fee-table { width: 100%; border-collapse: collapse; }
.fee-table th, .fee-table td { text-align: left; padding: 12px 16px; font-size: 0.88rem; }
.fee-table thead { background: var(--primary); color: #fff; }
.fee-table thead th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.fee-table thead th:last-child { border-radius: 0 var(--radius-sm) 0 0; }
.fee-table tbody tr { border-bottom: 1px solid var(--border); }
.fee-table tbody tr:nth-child(even) { background: rgba(15,76,129,0.02); }
.fee-table tbody tr:hover { background: rgba(15,76,129,0.05); }
.fee-table tbody td:first-child { font-weight: 500; color: var(--text); }
.table-note { margin-top: 14px; font-size: 0.82rem; color: var(--text-light); }
.table-note i { color: var(--accent); margin-right: 6px; }

/* ===== Check List ===== */
.check-list { margin: 14px 0; }
.check-list li { display: flex; gap: 10px; margin-bottom: 12px; font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }
.check-list li i { color: var(--primary); margin-top: 4px; flex-shrink: 0; }
.check-list li strong { color: var(--text); }

/* ===== Foreign Grid ===== */
.foreign-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.foreign-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; transition: var(--transition);
  border-left: 4px solid var(--primary);
}
.foreign-card:nth-child(2) { border-left-color: var(--accent); }
.foreign-card:nth-child(3) { border-left-color: #16a34a; }
.foreign-card:nth-child(4) { border-left-color: #4f46e5; }
.foreign-card:hover { border-color: var(--primary); border-left-width: 4px; box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.foreign-icon { font-size: 1.8rem; font-weight: 800; color: var(--accent); margin-bottom: 12px; }
.foreign-card h3 { font-size: 1rem; color: var(--primary-dark); margin-bottom: 8px; }
.foreign-card p { font-size: 0.88rem; color: var(--text-light); }

/* ===== About Grid ===== */
.about-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.about-card {
  text-align: center; padding: 30px 18px; background: var(--bg);
  border: 1px solid var(--border); border-radius: var(--radius); transition: var(--transition);
}
.about-card:hover { border-color: var(--primary); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.about-card > i {
  font-size: 2rem; color: var(--primary); margin-bottom: 14px;
  width: 64px; height: 64px; display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #dbeafe, #eff6ff); border-radius: 50%;
}
.about-card:nth-child(2) > i { background: linear-gradient(135deg, #fef3c7, #fffbeb); color: var(--accent-dark); }
.about-card:nth-child(3) > i { background: linear-gradient(135deg, #dcfce7, #f0fdf4); color: #16a34a; }
.about-card:nth-child(4) > i { background: linear-gradient(135deg, #e0e7ff, #eef2ff); color: #4f46e5; }
.about-card h3 { font-size: 0.95rem; color: var(--primary-dark); margin-bottom: 8px; }
.about-card p { font-size: 0.82rem; color: var(--text-light); }

/* ===== CTA Banner ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  color: #fff; padding: 60px 0; text-align: center;
}
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem); margin-bottom: 10px;
}
.cta-banner p { color: rgba(255,255,255,0.8); margin-bottom: 24px; font-size: 1rem; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===== Contact ===== */
#contact { background: linear-gradient(160deg, #faf9f5 0%, #f0f7ff 50%, #f8f5ff 100%); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; align-items: start; }
.contact-item { display: flex; gap: 14px; margin-bottom: 22px; }
.contact-item > i {
  width: 44px; height: 44px; background: rgba(15,76,129,0.07); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 1rem; flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 0.85rem; color: var(--text); margin-bottom: 2px; }
.contact-item p { font-size: 0.85rem; color: var(--text-light); }
.contact-item a { color: var(--primary); }
.contact-item a:hover { text-decoration: underline; }

.contact-social { display: flex; gap: 10px; margin-top: 8px; }
.contact-social a {
  width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light); font-size: 0.95rem;
}
.contact-social a:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

.contact-form {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { margin-bottom: 14px; }
.form-row .form-group { margin-bottom: 0; }
.form-group label { display: block; font-size: 0.83rem; font-weight: 600; margin-bottom: 5px; color: var(--text); }
.form-group label span { color: #ef4444; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px 14px; border: 1px solid var(--border);
  border-radius: var(--radius-sm); font-family: inherit; font-size: 0.88rem;
  color: var(--text); transition: var(--transition); background: var(--bg);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(15,76,129,0.08);
}
.form-group textarea { resize: vertical; }
.form-status { margin-top: 10px; font-size: 0.88rem; text-align: center; }
.form-status.success { color: #16a34a; }
.form-status.error { color: #ef4444; }

/* ===== Footer ===== */
.footer { background: var(--bg-dark); color: rgba(255,255,255,0.75); padding: 50px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo .logo-icon { background: var(--accent); }
.footer-logo .logo-text { color: #fff; }
.footer-logo .logo-text small { color: rgba(255,255,255,0.6); }
.footer-col p { font-size: 0.85rem; line-height: 1.7; }
.footer-col h4 { color: #fff; font-size: 0.92rem; margin-bottom: 16px; padding-bottom: 8px; position: relative; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 28px; height: 2px; background: var(--accent); }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.65); }
.footer-col ul li a:hover { color: var(--accent); }
.footer-col ul li i { margin-right: 8px; color: var(--accent); width: 14px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0; text-align: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
}

/* ===== Floating Buttons ===== */
.back-to-top {
  position: fixed; bottom: 105px; right: 28px;
  width: 42px; height: 42px; background: var(--primary);
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transition: var(--transition); z-index: 99;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px;
  width: 76px; height: 76px; background: #25d366;
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem; box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  z-index: 99; transition: var(--transition);
  animation: pulse-wa 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 8px 32px rgba(37,211,102,0.6); animation: none; }

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 6px 32px rgba(37,211,102,0.7), 0 0 0 14px rgba(37,211,102,0.1); }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { opacity: 0; transform: translateY(24px); }
.fade-in.visible { animation: fadeInUp 0.6s ease forwards; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .top-bar-contact { flex-direction: column; gap: 4px; }
  .top-bar-inner { flex-direction: column; gap: 6px; padding: 8px 24px; }
  .mobile-toggle { display: block; }
  .nav-menu {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg); flex-direction: column; padding: 16px;
    box-shadow: var(--shadow-lg); gap: 4px;
  }
  .nav-menu.open { display: flex; }
  .nav-link.cta-btn { margin-left: 0; text-align: center; margin-top: 8px; }
  .nav-dropdown .dropdown-menu { position: static; box-shadow: none; padding-left: 16px; display: none; border: none; }
  .nav-dropdown:hover .dropdown-menu, .nav-dropdown.open .dropdown-menu { display: block; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; padding: 50px 0 30px; }
  .hero-text { max-width: 100%; }
  .hero-btns { justify-content: center; }
  .hero-illustration svg { max-width: 280px; }

  .section { padding: 60px 0; }
  .section-grid { grid-template-columns: 1fr; gap: 30px; }
  .section-grid.reverse { direction: ltr; }
  .section-illustration svg { max-width: 280px; }

  .cards-grid, .product-grid, .info-grid, .foreign-grid, .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .fee-table-wrapper { overflow-x: auto; }
  .fee-table { min-width: 540px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-stats { flex-direction: column; }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 16px; }
  .stat:last-child { border-bottom: none; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.6rem; }
  .btn { padding: 11px 20px; font-size: 0.85rem; }
  .product-card-illust { height: 150px; }
}
