/* ============================================
   TGE FLIGHTS — Global Stylesheet
   tgeflights.com
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --blue-dark:       #1e0f5c;
  --blue-primary:    #5b21b6;
  --blue-mid:        #7c3aed;
  --blue-light:      #8b5cf6;
  --blue-pale:       #f5f3ff;
  --blue-glow:       rgba(139, 92, 246, 0.15);

  --gold:            #f59e0b;
  --gold-light:      #fef3c7;

  --whatsapp:        #25D366;
  --whatsapp-dark:   #128c5e;

  --dark:            #0a0f1e;
  --dark-card:       #111827;
  --grey-100:        #f9fafb;
  --grey-200:        #f3f4f6;
  --grey-300:        #e5e7eb;
  --grey-500:        #6b7280;
  --grey-700:        #374151;
  --white:           #ffffff;

  --font-display:    'Syne', sans-serif;
  --font-body:       'DM Sans', sans-serif;

  --radius-sm:       6px;
  --radius-md:       12px;
  --radius-lg:       20px;
  --radius-xl:       32px;

  --shadow-sm:       0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md:       0 4px 16px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.07);
  --shadow-lg:       0 10px 40px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.08);
  --shadow-blue:     0 8px 32px rgba(91, 33, 182, 0.25);

  --transition:      all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--grey-700);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--dark);
  line-height: 1.2;
  font-weight: 700;
}


/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 9px 0;
  text-align: center;
  letter-spacing: 0.02em;
}

.announcement-bar a {
  color: var(--gold);
  font-weight: 600;
}

.announcement-bar a:hover { color: #fde68a; }

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

.announcement-bar .bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.announcement-bar .bar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.25);
}


/* ============================================
   NAVBAR
   ============================================ */
.tge-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--grey-300);
  transition: var(--transition);
  padding: 0;
}

.tge-navbar.scrolled {
  box-shadow: var(--shadow-md);
  border-bottom-color: transparent;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 24px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.navbar-brand img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--blue-primary);
  letter-spacing: -0.02em;
}

.brand-tagline {
  font-size: 0.65rem;
  color: var(--grey-500);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 5px;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-link {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--grey-700);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.01em;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--blue-primary);
  border-radius: 1px;
  transform: scaleX(0);
  transition: var(--transition);
}

.nav-link:hover { color: var(--blue-primary); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--blue-primary); }

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

.btn-support {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--whatsapp);
  color: white !important;
  padding: 9px 18px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: var(--transition);
}

.btn-support:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.btn-support i { font-size: 1rem; }

/* Hamburger */
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--grey-300);
  padding: 12px 24px 20px;
}

.mobile-nav.open { display: flex; }

.mobile-nav .nav-link {
  padding: 12px 0;
  border-bottom: 1px solid var(--grey-200);
  border-radius: 0;
  font-size: 0.95rem;
}

.mobile-nav .nav-link::after { display: none; }
.mobile-nav .btn-support { margin-top: 12px; justify-content: center; }


/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.01em;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
  color: white;
  padding: 14px 28px;
  font-size: 0.9rem;
  box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(30, 64, 175, 0.35);
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--blue-primary);
  padding: 13px 28px;
  font-size: 0.9rem;
  border: 2px solid var(--blue-primary);
}

.btn-outline:hover {
  background: var(--blue-primary);
  color: white;
  transform: translateY(-2px);
}

.btn-white {
  background: white;
  color: var(--blue-primary);
  padding: 14px 28px;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--blue-dark);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

/* ============================================
   SECTION UTILITIES
   ============================================ */
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-lg { padding: 100px 0; }

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

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-mid);
  background: var(--blue-pale);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
  color: var(--dark);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--grey-500);
  max-width: 580px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }


/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-primary) 50%, var(--blue-light) 100%);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 14px;
}

.page-hero-label i { color: var(--gold); }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: white;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  line-height: 1.7;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}

.breadcrumb-nav a { color: rgba(255,255,255,0.8); }
.breadcrumb-nav a:hover { color: white; }
.breadcrumb-nav i { font-size: 0.6rem; }


/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--grey-300);
  border-bottom: 1px solid var(--grey-300);
  padding: 20px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 32px;
  position: relative;
}

.trust-item + .trust-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 30px;
  width: 1px;
  background: var(--grey-300);
}

.trust-item i {
  font-size: 1.3rem;
  color: var(--blue-primary);
  flex-shrink: 0;
}

.trust-item-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}

.trust-item-text span {
  font-size: 0.72rem;
  color: var(--grey-500);
}


/* ============================================
   FEATURE CARDS
   ============================================ */
.feature-card {
  background: var(--white);
  border: 1px solid var(--grey-300);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  height: 100%;
}

.feature-card:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow-blue);
  transform: translateY(-4px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon i {
  font-size: 1.4rem;
  color: var(--blue-primary);
}

.feature-card h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--grey-500);
  line-height: 1.7;
}


/* ============================================
   STATS STRIP
   ============================================ */
.stats-strip {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-primary));
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 20px;
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.15);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-number span { color: var(--gold); }

.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}


/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--blue-pale);
  border-top: 1px solid var(--grey-300);
  border-bottom: 1px solid var(--grey-300);
  padding: 70px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 14px;
}

.cta-section p {
  color: var(--grey-500);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto 28px;
}


/* ============================================
   FOOTER
   ============================================ */
.tge-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 50px;
}

.footer-brand img {
  height: 36px;
  width: auto;
  margin-bottom: 14px;
  opacity: 0.9;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.footer-about {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}

.footer-nata {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover { color: var(--blue-light); }
.footer-links a i { font-size: 0.6rem; color: var(--blue-light); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact-item i {
  color: var(--blue-light);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item a, .footer-contact-item span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.footer-contact-item a:hover { color: white; }

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--blue-primary);
  border-color: var(--blue-primary);
  color: white;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--blue-light); }

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

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links a:hover { color: var(--blue-light); }


/* ============================================
   FLOATING WHATSAPP FAB
   ============================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
}

.whatsapp-fab a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--whatsapp);
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
  position: relative;
}

.whatsapp-fab a:hover {
  background: var(--whatsapp-dark);
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
  color: white;
}

/* Pulse ring */
.whatsapp-fab a::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--whatsapp);
  animation: fabPulse 2s ease-out infinite;
  opacity: 0;
}

@keyframes fabPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Tooltip */
.fab-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark);
  color: white;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  pointer-events: none;
  opacity: 0;
  transition: var(--transition);
}

.fab-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--dark);
}

.whatsapp-fab a:hover .fab-tooltip { opacity: 1; }


/* ============================================
   AOS OVERRIDES
   ============================================ */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(3)::before { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .section-lg { padding: 70px 0; }

  .navbar-nav, .navbar-cta { display: none; }
  .navbar-toggle { display: flex; }

  .announcement-bar .bar-divider { display: none; }
  .announcement-bar .bar-inner { gap: 10px; }

  .trust-bar-inner { justify-content: flex-start; overflow-x: auto; padding: 0 24px; flex-wrap: nowrap; }
  .trust-item { flex-shrink: 0; padding: 10px 20px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }

  .whatsapp-fab { bottom: 20px; right: 20px; }
  .whatsapp-fab a { width: 50px; height: 50px; font-size: 1.3rem; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); }

  .page-hero { padding: 60px 0 60px; }
}

@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-item::before { display: none !important; }
}

@media (max-width: 440px) {
  .trust-bar-inner {
    display: flex;
    flex-direction: column;
    overflow-x: visible;
    flex-wrap: nowrap;
    align-items: flex-start;
    padding: 0 20px;
    gap: 0;
  }
  .trust-item {
    width: 100%;
    padding: 10px 0;
    justify-content: flex-start;
  }
  .trust-item + .trust-item::before { display: none; }

  .stats-inner { grid-template-columns: 1fr; }
  .stat-item::before { display: none !important; }
}


/* ============================================
   WORDPRESS ADMIN BAR OFFSETS
   WP adds body.admin-bar + margin-top to <body>
   automatically. We only need to shift the
   sticky navbar's top value so it docks below
   the fixed admin bar instead of behind it.
   ============================================ */

/* Desktop: admin bar is 32px, fixed position */
.admin-bar .tge-navbar {
  top: 32px;
}

/* Tablet (≤782px): admin bar grows to 46px */
@media screen and (max-width: 782px) {
  .admin-bar .tge-navbar {
    top: 46px;
  }
}

/* Mobile (≤600px): WP admin bar is no longer
   fixed — it scrolls with the page — so our
   navbar reverts to top: 0, no offset needed. */
@media screen and (max-width: 600px) {
  .admin-bar .tge-navbar {
    top: 0;
  }
}
