@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@600;700;800;900&display=swap');

:root {
  --bg-dark: #060B19;
  --bg-surface: #0B132B;
  --bg-card: rgba(15, 23, 42, 0.85);
  --bg-card-hover: rgba(30, 41, 59, 0.95);
  --blue-primary: #3B82F6;
  --blue-glow: rgba(59, 130, 246, 0.35);
  --red-accent: #EF4444;
  --gold-star: #F59E0B;
  --text-primary: #F8FAFC;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --border-color: rgba(59, 130, 246, 0.2);
  --border-glow: rgba(59, 130, 246, 0.5);
  --radius-lg: 20px;
  --radius-md: 14px;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* TOP ANNOUNCEMENT BAR */
.top-bar {
  background: #020617;
  color: #94A3B8;
  font-size: 0.825rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.top-bar-content {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* STICKY GLASS HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(6, 11, 25, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  padding: 1.1rem 0;
}

.header-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.5rem;
  font-weight: 900;
  font-family: 'Outfit', sans-serif;
  color: #FFFFFF;
}

.brand-logo span {
  color: var(--blue-primary);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-link:hover {
  color: #FFFFFF;
}

.btn-blue {
  background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.925rem;
  padding: 0.75rem 1.6rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35);
}

.btn-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.55);
}

/* HERO SECTION */
.hero-section {
  position: relative;
  padding: 5.5rem 0 4.5rem;
  background: radial-gradient(circle at 50% 20%, rgba(37, 99, 235, 0.18) 0%, rgba(6, 11, 25, 0) 70%),
              linear-gradient(180deg, #060B19 0%, #0B132B 100%);
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(30, 58, 138, 0.4);
  color: #93C5FD;
  font-size: 0.825rem;
  font-weight: 700;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(59, 130, 246, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-title span {
  background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 860px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* CONTAINER & CARDS */
.section-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 4.5rem 1.5rem;
}

.glass-box {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 3rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.glass-box-highlight {
  border-color: var(--border-glow);
  box-shadow: 0 0 40px rgba(37, 99, 235, 0.15);
}

/* GRID & CARDS */
.visa-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}

.visa-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.visa-card:hover {
  transform: translateY(-6px);
  border-color: var(--blue-primary);
  box-shadow: 0 12px 35px rgba(37, 99, 235, 0.25);
  background: var(--bg-card-hover);
}

/* BREADCRUMB */
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.breadcrumb-nav a {
  color: var(--text-secondary);
}

.breadcrumb-nav a:hover {
  color: var(--blue-primary);
}

/* FLOATING WA WIDGET */
.floating-wa-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #25D366;
  color: #FFFFFF;
  padding: 0.85rem 1.6rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  z-index: 99999;
  transition: transform 0.3s;
}

.floating-wa-widget:hover {
  transform: translateY(-4px) scale(1.03);
}

.floating-wa-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* FOOTER */
.site-footer {
  background: #020617;
  color: var(--text-muted);
  padding: 4.5rem 0 2rem;
  border-top: 1px solid var(--border-color);
  margin-top: 5rem;
}

.footer-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.3fr 1.3fr 1.1fr;
  gap: 3.5rem;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  margin-top: 3.5rem;
  font-size: 0.85rem;
}

@media (max-width: 992px) {
  .footer-container { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-title { font-size: 2.4rem; }
}
