/* ==========================================================================
   Nepcoms Edu Expo 2026 - Main Stylesheet
   Design Language: Premium, Vibrant, High-Conversion
   ========================================================================== */

:root {
  /* HSL Color System */
  --primary-green-h: 88;
  --primary-green-s: 70%;
  --primary-green-l: 45%;
  --primary-green: hsl(var(--primary-green-h), var(--primary-green-s), var(--primary-green-l)); /* #76C124 */
  --primary-green-dark: hsl(122, 60%, 24%); /* #0f4012 */
  --primary-green-light: hsl(88, 70%, 94%);
  
  --accent-gold-h: 42;
  --accent-gold-s: 100%;
  --accent-gold-l: 50%;
  --accent-gold: hsl(var(--accent-gold-h), var(--accent-gold-s), var(--accent-gold-l)); /* #FFB300 */
  --accent-gold-light: hsl(42, 100%, 94%);
  --accent-orange: #E65100;

  --bg-primary: #FCFDFB;
  --bg-secondary: #F4F8F2;
  --bg-card: #FFFFFF;
  
  --text-main: #232B20;
  --text-muted: #5C6757;
  --text-white: #FFFFFF;
  
  --border-light: rgba(118, 193, 36, 0.12);
  --border-focus: var(--primary-green);
  --card-shadow: 0 12px 30px rgba(35, 43, 32, 0.04), 0 2px 8px rgba(118, 193, 36, 0.03);
  --hover-shadow: 0 20px 40px rgba(118, 193, 36, 0.12), 0 4px 12px rgba(118, 193, 36, 0.06);

  --font-display: 'Outfit', 'Inter', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

/* ==========================================================================
   Header and Announcement Bar
   ========================================================================== */

.announcement-bar {
  background: linear-gradient(135deg, var(--primary-green-dark), #0d3810);
  color: var(--text-white);
  padding: 10px 20px;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
  z-index: 100;
}

.announcement-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-gold {
  background: linear-gradient(135deg, var(--accent-gold), #FFA500);
  color: #5D4037;
  box-shadow: 0 2px 6px rgba(255, 179, 0, 0.3);
}

.announcement-content .highlight {
  color: var(--accent-gold);
  font-weight: 700;
}

.main-header {
  background-color: rgba(252, 253, 251, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 90;
  transition: var(--transition-fast);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  height: 60px;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

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

.nav-link:hover {
  color: var(--primary-green);
}

.nav-btn {
  background-color: var(--primary-green-light);
  color: var(--primary-green-dark);
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid rgba(118, 193, 36, 0.3);
}

.nav-btn:hover {
  background-color: var(--primary-green);
  color: var(--text-white);
  box-shadow: 0 4px 12px rgba(118, 193, 36, 0.2);
}

.header-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.contact-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.contact-number {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-green-dark);
}

.contact-number:hover {
  color: var(--primary-green);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 30px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition-normal);
  gap: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-green), #5B9E16);
  color: var(--text-white);
  box-shadow: 0 6px 20px rgba(118, 193, 36, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(118, 193, 36, 0.4);
}

.btn-glow {
  position: relative;
  overflow: hidden;
}

.btn-glow::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(45deg);
  animation: shine 4s infinite linear;
}

@keyframes shine {
  0% { transform: translate(-30%, -30%) rotate(45deg); }
  100% { transform: translate(30%, 30%) rotate(45deg); }
}

.btn-secondary {
  background-color: var(--bg-card);
  color: var(--text-main);
  border: 1.5px solid var(--border-light);
}

.btn-secondary:hover {
  border-color: var(--primary-green);
  color: var(--primary-green);
  transform: translateY(-2px);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
  position: relative;
  padding: 50px 24px 60px;
  background: radial-gradient(circle at 80% 20%, var(--bg-secondary) 0%, var(--bg-primary) 70%);
  overflow: hidden;
}

.hero-bg-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.12;
}

.orb-1 {
  background-color: var(--primary-green);
  width: 400px;
  height: 400px;
  top: -100px;
  right: -50px;
}

.orb-2 {
  background-color: var(--accent-gold);
  width: 300px;
  height: 300px;
  bottom: -50px;
  left: -50px;
}

.flight-path {
  position: absolute;
  top: 10%;
  left: 0;
  width: 100%;
  height: 80%;
  opacity: 0.6;
}

.paper-plane {
  position: absolute;
  offset-path: path("M-100 450 C 200 300, 400 550, 700 250 C 900 100, 1100 150, 1200 50");
  offset-rotate: auto;
  animation: flyAround 15s infinite linear;
}

@keyframes flyAround {
  0% { offset-distance: 0%; opacity: 0; }
  5% { opacity: 1; }
  90% { opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.anniversary-celebration {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--accent-gold-light);
  border: 1px solid rgba(255, 179, 0, 0.25);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
  animation: bounce-subtle 3s infinite ease-in-out;
}

@keyframes bounce-subtle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.anniversary-text {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-orange);
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary-green-dark);
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 580px;
}

/* Countdown Card */
.countdown-card {
  background-color: var(--bg-card);
  border: var(--border-light);
  box-shadow: var(--card-shadow);
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 36px;
  max-width: 500px;
}

.countdown-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  font-weight: 700;
}

.countdown-timer {
  display: flex;
  gap: 16px;
}

.timer-segment {
  flex: 1;
  background: var(--bg-secondary);
  border-radius: 10px;
  padding: 10px 6px;
  text-align: center;
  border: 1px solid rgba(118, 193, 36, 0.08);
}

.timer-val {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-green-dark);
  line-height: 1.1;
}

.timer-unit {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.hero-details {
  display: flex;
  gap: 30px;
  margin-bottom: 36px;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.detail-icon {
  font-size: 1.75rem;
  line-height: 1;
}

.detail-text strong {
  display: block;
  font-size: 1rem;
  color: var(--text-main);
  font-family: var(--font-display);
}

.detail-text span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

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

/* Hero Right Image Area */
.hero-image-area {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
}

.hero-student-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 30px rgba(35, 43, 32, 0.15));
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 10%;
  right: -5%;
  bottom: -5%;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--primary-green-light), var(--accent-gold-light));
  z-index: 1;
  transform: rotate(3deg);
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 12px 18px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}

.badge-1 {
  top: 15%;
  left: -20px;
}

.badge-2 {
  bottom: 15%;
  right: -20px;
}

.badge-icon {
  font-size: 1.5rem;
}

.badge-info h4 {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--primary-green-dark);
}

.badge-info span {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

.animate-float-slow {
  animation: floatSlow 6s infinite ease-in-out;
}

.animate-float-medium {
  animation: floatMedium 5s infinite ease-in-out;
}

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

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

/* ==========================================================================
   Schedule Section (Tabs)
   ========================================================================== */

.schedule-section {
  padding: 50px 24px;
  background-color: var(--bg-secondary);
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary-green);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  background-color: var(--primary-green-light);
  padding: 6px 14px;
  border-radius: 20px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-green-dark);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.schedule-session-group {
  background-color: var(--bg-card);
  border: var(--border-light);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--card-shadow);
  transition: var(--transition-normal);
}

.schedule-session-group:hover {
  box-shadow: var(--hover-shadow);
  border-color: rgba(118, 193, 36, 0.2);
}

.session-group-header {
  border-bottom: 1.5px dashed rgba(118, 193, 36, 0.15);
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.session-date-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--accent-orange);
  background-color: var(--accent-gold-light);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 179, 0, 0.2);
  margin-bottom: 12px;
}

.session-group-header h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-green-dark);
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.session-group-header p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.countries-grid.dual-grid {
  grid-template-columns: repeat(3, minmax(250px, 1fr));
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.country-card {
  background-color: var(--bg-card);
  border: var(--border-light);
  border-radius: 14px;
  padding: 24px;
  box-shadow: var(--card-shadow);
  transition: var(--transition-normal);
}

.country-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
  border-color: rgba(118, 193, 36, 0.3);
}

.country-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  border-bottom: 1.5px solid var(--bg-secondary);
  padding-bottom: 12px;
}

.country-header h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary-green-dark);
}

/* Pure CSS Flag SVGs encoded via data URI */
.flag-icon {
  width: 32px;
  height: 22px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background-size: cover;
  background-position: center;
  display: inline-block;
  flex-shrink: 0;
}

.uk-flag {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 30'%3E%3CclipPath id='s'%3E%3Cpath d='M0,0 v30 h50 v-30 z'/%3E%3C/clipPath%3E%3Cpath d='M0,0 L50,30 M50,0 L0,30' stroke='%23fff' stroke-width='6'/%3E%3Cpath d='M0,0 L50,30 M50,0 L0,30' stroke='%23012169' stroke-width='4'/%3E%3Cpath d='M0,15 H50 M25,0 V30' stroke='%23fff' stroke-width='10'/%3E%3Cpath d='M0,15 H50 M25,0 V30' stroke='%23c8102e' stroke-width='6'/%3E%3Cpath d='M0,0 L50,30 M50,0 L0,30' stroke='%23c8102e' stroke-width='2' clip-path='url(%23s)'/%3E%3C/svg%3E");
}

.usa-flag {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 74 39'%3E%3Crect width='74' height='39' fill='%23b22234'/%3E%3Cpath d='M0,3 h74 M0,9 h74 M0,15 h74 M0,21 h74 M0,27 h74 M0,33 h74' stroke='%23fff' stroke-width='3'/%3E%3Crect width='30' height='21' fill='%233c3b6e'/%3E%3C!-- Simplified stars grid --%3E%3Ccircle cx='3' cy='3' r='0.6' fill='%23fff'/%3E%3Ccircle cx='9' cy='3' r='0.6' fill='%23fff'/%3E%3Ccircle cx='15' cy='3' r='0.6' fill='%23fff'/%3E%3Ccircle cx='21' cy='3' r='0.6' fill='%23fff'/%3E%3Ccircle cx='27' cy='3' r='0.6' fill='%23fff'/%3E%3Ccircle cx='6' cy='6' r='0.6' fill='%23fff'/%3E%3Ccircle cx='12' cy='6' r='0.6' fill='%23fff'/%3E%3Ccircle cx='18' cy='6' r='0.6' fill='%23fff'/%3E%3Ccircle cx='24' cy='6' r='0.6' fill='%23fff'/%3E%3Ccircle cx='3' cy='9' r='0.6' fill='%23fff'/%3E%3Ccircle cx='9' cy='9' r='0.6' fill='%23fff'/%3E%3Ccircle cx='15' cy='9' r='0.6' fill='%23fff'/%3E%3Ccircle cx='21' cy='9' r='0.6' fill='%23fff'/%3E%3Ccircle cx='27' cy='9' r='0.6' fill='%23fff'/%3E%3Ccircle cx='6' cy='12' r='0.6' fill='%23fff'/%3E%3Ccircle cx='12' cy='12' r='0.6' fill='%23fff'/%3E%3Ccircle cx='18' cy='12' r='0.6' fill='%23fff'/%3E%3Ccircle cx='24' cy='12' r='0.6' fill='%23fff'/%3E%3Ccircle cx='3' cy='15' r='0.6' fill='%23fff'/%3E%3Ccircle cx='9' cy='15' r='0.6' fill='%23fff'/%3E%3Ccircle cx='15' cy='15' r='0.6' fill='%23fff'/%3E%3Ccircle cx='21' cy='15' r='0.6' fill='%23fff'/%3E%3Ccircle cx='27' cy='15' r='0.6' fill='%23fff'/%3E%3Ccircle cx='6' cy='18' r='0.6' fill='%23fff'/%3E%3Ccircle cx='12' cy='18' r='0.6' fill='%23fff'/%3E%3Ccircle cx='18' cy='18' r='0.6' fill='%23fff'/%3E%3Ccircle cx='24' cy='18' r='0.6' fill='%23fff'/%3E%3C/svg%3E");
}

.canada-flag {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 20'%3E%3Crect width='40' height='20' fill='%23d80621'/%3E%3Crect x='10' width='20' height='20' fill='%23fff'/%3E%3C!-- Maple Leaf Representation --%3E%3Cpath d='M18,13 L17,10 L15,11 L16,8 L13,9 L14,7 L12,5 L15,5 L17,2 L19,5 L22,2 L24,5 L27,5 L25,7 L26,9 L23,8 L24,11 L22,10 L21,13 Z' fill='%23d80621'/%3E%3Crect x='19.5' y='12' width='1' height='4' fill='%23d80621'/%3E%3C/svg%3E");
}

.germany-flag {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 5 3'%3E%3Crect width='5' height='3' fill='%23ffce00'/%3E%3Crect width='5' height='2' fill='%23dd0000'/%3E%3Crect width='5' height='1' fill='%23000'/%3E%3C/svg%3E");
}

.ireland-flag {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 3'%3E%3Crect width='6' height='3' fill='%23ff883e'/%3E%3Crect width='4' height='3' fill='%23fff'/%3E%3Crect width='2' height='3' fill='%23169b62'/%3E%3C/svg%3E");
}

.australia-flag {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 20'%3E%3Crect width='40' height='20' fill='%23012169'/%3E%3C!-- Union Jack Corner --%3E%3Cpath d='M0,0 L20,10 M20,0 L0,10' stroke='%23fff' stroke-width='2'/%3E%3Cpath d='M0,5 H20 M10,0 V10' stroke='%23fff' stroke-width='3'/%3E%3Cpath d='M0,5 H20 M10,0 V10' stroke='%23c8102e' stroke-width='1.8'/%3E%3C!-- Federation Star --%3E%3Cpolygon points='10,13.5 11,15.5 13,15.5 11.5,17 12.5,19 10,17.5 7.5,19 8.5,17 7,15.5 9,15.5' fill='%23fff'/%3E%3C!-- Southern Cross Stars --%3E%3Ccircle cx='30' cy='4' r='0.8' fill='%23fff'/%3E%3Ccircle cx='35' cy='7' r='0.8' fill='%23fff'/%3E%3Ccircle cx='30' cy='15' r='0.8' fill='%23fff'/%3E%3Ccircle cx='25' cy='11' r='0.8' fill='%23fff'/%3E%3Ccircle cx='32' cy='11' r='0.5' fill='%23fff'/%3E%3C/svg%3E");
}

.nz-flag {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 20'%3E%3Crect width='40' height='20' fill='%23012169'/%3E%3C!-- Union Jack Corner --%3E%3Cpath d='M0,0 L20,10 M20,0 L0,10' stroke='%23fff' stroke-width='2'/%3E%3Cpath d='M0,5 H20 M10,0 V10' stroke='%23fff' stroke-width='3'/%3E%3Cpath d='M0,5 H20 M10,0 V10' stroke='%23c8102e' stroke-width='1.8'/%3E%3C!-- Southern Cross Stars (Red with white border) --%3E%3Cg fill='%23c8102e' stroke='%23fff' stroke-width='0.4' %3E%3Cpolygon points='30,3 30.5,4.5 32,4.5 30.8,5.5 31.3,7 30,6 28.7,7 29.2,5.5 28,4.5 29.5,4.5' /%3E%3Cpolygon points='35,6 35.5,7 36.5,7 35.7,8 36.1,9 35,8.3 33.9,9 34.3,8 33.5,7 34.5,7' /%3E%3Cpolygon points='30,14 30.5,15.5 32,15.5 30.8,16.5 31.3,18 30,17 28.7,18 29.2,16.5 28,15.5 29.5,15.5' /%3E%3Cpolygon points='25,10 25.5,11 26.5,11 25.7,12 26.1,13 25,12.3 23.9,13 24.3,12 23.5,11 24.5,11' /%3E%3C/g%3E%3C/svg%3E");
}

.glob-flag {
  font-size: 1.5rem;
  line-height: 1;
}

.country-benefits {
  list-style: none;
}

.country-benefits li {
  position: relative;
  padding-left: 20px;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.4;
}

.country-benefits li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: 700;
}

.provider-section {
  margin-top: 16px;
  border-top: 1px dashed rgba(118, 193, 36, 0.15);
  padding-top: 12px;
}

.provider-title {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary-green-dark);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.provider-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.provider-tag {
  background-color: var(--primary-green-light);
  color: var(--primary-green-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 6px;
  border: 1px solid rgba(118, 193, 36, 0.1);
  transition: var(--transition-fast);
  cursor: default;
}

.provider-tag:hover {
  background-color: var(--primary-green);
  color: var(--text-white);
  border-color: var(--primary-green);
}

.schedule-cta {
  text-align: center;
  margin-top: 30px;
}

.schedule-cta p {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 16px;
}

/* ==========================================================================
   Highlights Section (Value Props)
   ========================================================================== */

.highlights-section {
  padding: 50px 24px;
  background-color: var(--bg-primary);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.glass-card {
  background: var(--bg-card);
  border: var(--border-light);
  border-radius: 20px;
  padding: 36px 30px;
  box-shadow: var(--card-shadow);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: transparent;
  transition: var(--transition-normal);
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--hover-shadow);
}

.card-glow-green:hover::before { background: var(--primary-green); }
.card-glow-blue:hover::before { background: #2196F3; }
.card-glow-orange:hover::before { background: #FF9800; }
.card-glow-purple:hover::before { background: #9C27B0; }

.highlight-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.bg-green-light { background-color: var(--primary-green-light); }
.bg-blue-light { background-color: #E3F2FD; }
.bg-orange-light { background-color: #FFF3E0; }
.bg-purple-light { background-color: #F3E5F5; }

.glass-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-green-dark);
  margin-bottom: 12px;
}

.glass-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   Lead Registration Form
   ========================================================================== */

.register-section {
  position: relative;
  padding: 50px 24px;
  background-color: var(--bg-primary);
  overflow: hidden;
}

.form-bg-decor {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.confetti-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 10% 20%, rgba(118,193,36,0.03) 0%, transparent 40%),
                    radial-gradient(circle at 90% 80%, rgba(255,179,0,0.03) 0%, transparent 40%);
}

.register-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.950fr 1.05fr;
  gap: 50px;
  position: relative;
  z-index: 2;
  align-items: center;
}

.register-info-panel h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-green-dark);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.register-info-panel p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.gift-banner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: linear-gradient(135deg, var(--accent-gold-light) 0%, rgba(255, 255, 255, 0.9) 100%);
  border: 1.5px dashed var(--accent-gold);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 36px;
  box-shadow: var(--card-shadow);
}

.gift-icon {
  font-size: 2.2rem;
  line-height: 1;
}

.gift-text h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--accent-orange);
  margin-bottom: 4px;
}

.gift-text p {
  font-size: 0.85rem;
  color: #5D4037;
  margin-bottom: 0;
}

.form-bullets {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.bullet-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--primary-green);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 900;
  box-shadow: 0 4px 10px rgba(118, 193, 36, 0.2);
  flex-shrink: 0;
}

.bullet span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
}

/* Right Panel: Form Styling */
.register-form-panel {
  background-color: var(--bg-card);
  border: var(--border-light);
  box-shadow: 0 20px 50px rgba(35, 43, 32, 0.08);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  flex-direction: column;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: opacity 0.3s ease;
}

.form-header {
  margin-bottom: 10px;
}

.form-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-green-dark);
}

.form-header p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
}

.required {
  color: #D32F2F;
}

.input-wrapper {
  position: relative;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--border-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-main);
  background-color: var(--bg-primary);
  transition: var(--transition-fast);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus {
  outline: none;
  border-color: var(--border-focus);
  background-color: var(--bg-card);
  box-shadow: 0 0 0 4px var(--primary-green-light);
}



/* Button Submit and Loader */
.btn-submit {
  width: 100%;
  padding: 16px;
  margin-top: 10px;
  position: relative;
}

.btn-submit.loading .btn-text {
  opacity: 0;
}

.btn-submit.loading .btn-loader {
  display: block;
}

.btn-loader {
  display: none;
  width: 24px;
  height: 24px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #FFFFFF;
  border-radius: 50%;
  position: absolute;
  animation: spin 1s infinite linear;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Validation Errors */
.error-msg {
  display: none;
  font-size: 0.75rem;
  color: #D32F2F;
  margin-top: 4px;
  font-weight: 600;
}

.form-group.has-error input,
.form-group.has-error select {
  border-color: #D32F2F;
  background-color: #FFEBEE;
}

.form-group.has-error .error-msg {
  display: block;
}

/* Success Card Boarding Pass Ticket */
.form-success-card {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.success-icon {
  margin-bottom: 20px;
  animation: pulse-success 2s infinite;
}

@keyframes pulse-success {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

.form-success-card h3 {
  font-size: 1.8rem;
  color: var(--primary-green-dark);
  margin-bottom: 12px;
}

.form-success-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 380px;
  margin-bottom: 24px;
}

.ticket-details {
  width: 100%;
  background-color: var(--bg-secondary);
  border: 2px dashed rgba(118, 193, 36, 0.3);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 24px;
  text-align: left;
  position: relative;
}

/* Boarding ticket side circles */
.ticket-details::before,
.ticket-details::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: var(--bg-card);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.ticket-details::before { left: -9px; }
.ticket-details::after { right: -9px; }

.ticket-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(118, 193, 36, 0.08);
  padding-bottom: 8px;
}

.ticket-row:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.ticket-row strong {
  color: var(--text-muted);
}

.ticket-row span {
  font-weight: 700;
  color: var(--text-main);
}

.success-instructions {
  background-color: var(--accent-gold-light);
  border: 1px solid rgba(255, 179, 0, 0.2);
  border-radius: 10px;
  padding: 14px;
  font-size: 0.85rem;
  text-align: left;
  margin-bottom: 24px;
}

.success-instructions p {
  color: #5D4037;
  max-width: 100%;
  margin-bottom: 0;
  line-height: 1.4;
}

/* ==========================================================================
   Location & Contact Map Section
   ========================================================================== */

.location-section {
  padding: 50px 24px;
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-light);
}

.location-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.location-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent-orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  background-color: var(--accent-gold-light);
  padding: 6px 14px;
  border-radius: 20px;
}

.location-details-card h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary-green-dark);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.venue-address {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-link-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--primary-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-link-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-link-item a {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-green-dark);
}

.contact-link-item a:hover {
  color: var(--primary-green);
}

.map-container {
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: var(--border-light);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.main-footer {
  background-color: var(--primary-green-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.9rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
  color: var(--text-white);
}

/* ==========================================================================
   Back to Top Button
   ========================================================================== */

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: var(--primary-green-dark);
  color: var(--text-white);
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 80;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-green);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(118, 193, 36, 0.3);
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .countdown-card {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-details {
    justify-content: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-image-area {
    order: -1;
  }
  
  .register-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .location-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  
  .header-container {
    padding: 10px 16px;
  }
  
  .nav-menu {
    display: none; /* Can toggle via JS, kept simple for landing page conversion */
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .countries-grid.dual-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .session-selector {
    grid-template-columns: 1fr;
  }
  
  .register-form-panel {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .countdown-timer {
    gap: 8px;
  }
  
  .timer-val {
    font-size: 1.5rem;
  }
  
  .hero-details {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}

/* Custom width override for Ireland card to match standard layout */
.Ireland-card-width-override {
  grid-column: span 1;
}

@media (min-width: 1025px) {
  .Ireland-card-width-override {
    grid-column: span 2;
    max-width: 48%;
    margin: 0 auto;
  }
}
