/* ==========================================================
   INEZGANE VOYAGES - Official Under Construction Page Stylesheet
   Brand Colors: Royal Navy (#0e386e) + Warm Gold (#c59b27) + Clean White
   Typography: Cairo (Arabic) & Outfit (French/English)
   ========================================================== */

:root {
  --primary: #0e386e;
  --primary-dark: #092347;
  --primary-light: #1a4f94;
  --primary-subtle: #f0f5fc;
  
  --gold: #c59b27;
  --gold-hover: #b3871d;
  --gold-subtle: #fbf7ee;
  --gold-border: #e6ce8a;

  --bg-white: #ffffff;
  --bg-slate: #f8fafc;
  --bg-muted: #f1f5f9;

  --text-headline: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;

  --whatsapp: #25d366;
  --border: #e2e8f0;
  --border-light: #edf2f7;

  --shadow-sm: 0 2px 8px rgba(14, 56, 110, 0.05);
  --shadow-md: 0 8px 24px rgba(14, 56, 110, 0.09);
  --shadow-lg: 0 16px 40px rgba(14, 56, 110, 0.14);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;

  --transition: all 0.25s ease-in-out;
}

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

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

body {
  font-family: 'Cairo', 'Outfit', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-slate);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
}

body.ltr-mode {
  direction: ltr;
  text-align: left;
  font-family: 'Outfit', 'Cairo', system-ui, -apple-system, sans-serif;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.text-gold { color: var(--gold); }
.text-primary { color: var(--primary); }
.text-whatsapp { color: var(--whatsapp); }

/* Topbar */
.uc-topbar {
  background: var(--primary-dark);
  color: #fff;
  padding: 8px 0;
  font-size: 0.84rem;
  border-bottom: 2px solid var(--gold);
}

.uc-topbar-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.uc-topbar-info {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.uc-topbar-info span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.uc-topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.iata-tag {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(197, 155, 39, 0.4);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  color: #f7d77b;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* 3-Language Selector */
.lang-switcher-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(197, 155, 39, 0.5);
  border-radius: var(--radius-pill);
  padding: 2px;
  gap: 2px;
}

.lang-pill-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.lang-pill-btn.active {
  background: var(--gold);
  color: var(--primary-dark);
  font-weight: 800;
}

.lang-pill-btn:hover:not(.active) {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
}

/* Header Brand */
.uc-header {
  background: var(--bg-white);
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 99;
}

.uc-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

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

.brand-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border: 2px solid var(--gold);
  color: var(--gold);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 14px rgba(14, 56, 110, 0.2);
}

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

.brand-ar {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.2;
}

.brand-fr {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold);
  text-transform: uppercase;
}

.uc-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-header-preview {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff !important;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(14, 56, 110, 0.15);
  transition: var(--transition);
}

.btn-header-preview:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(14, 56, 110, 0.25);
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.btn-header-wa {
  background: var(--whatsapp);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-header-wa:hover {
  background: #1eb956;
  transform: translateY(-2px);
}

/* ==========================================================
   Hero: Under Construction & Launch Announcement
   ========================================================== */
.uc-hero-section {
  padding: 48px 0 36px;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-slate) 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.uc-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 350px;
  background: radial-gradient(circle, rgba(197, 155, 39, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.uc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fef3c7;
  border: 1.5px solid var(--gold);
  color: #92400e;
  font-weight: 800;
  font-size: 0.88rem;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}

.uc-hero-title {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 900;
  color: var(--primary-dark);
  line-height: 1.3;
  margin-bottom: 16px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.uc-hero-title span.gold {
  color: var(--gold);
  position: relative;
}

.uc-hero-desc {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-body);
  max-width: 780px;
  margin: 0 auto 28px;
  text-align: center;
  line-height: 1.7;
}

/* Countdown Card in Hero */
.uc-countdown-card {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  max-width: 680px;
  margin: 0 auto 36px;
  color: #fff;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.uc-countdown-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 8px;
}

.uc-countdown-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
}

.uc-status-pill {
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid #10b981;
  color: #34d399;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

.uc-countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.uc-countdown-unit {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(197, 155, 39, 0.3);
  border-radius: var(--radius-md);
  padding: 12px 6px;
  text-align: center;
}

.uc-countdown-unit .val {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 900;
  font-family: 'Outfit', sans-serif;
  color: #ffffff;
  line-height: 1.1;
  display: block;
}

.uc-countdown-unit .lbl {
  font-size: 0.8rem;
  color: #f7d77b;
  font-weight: 600;
  margin-top: 4px;
}

/* ==========================================================
   Visitor Panel 1: Live Preview Callout Panel
   ========================================================== */
.uc-preview-callout {
  background: linear-gradient(135deg, #ffffff 0%, var(--primary-subtle) 100%);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 30px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.uc-preview-text {
  flex: 1;
  min-width: 280px;
}

.uc-preview-text-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 0.76rem;
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
}

.uc-preview-text h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.uc-preview-text p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.6;
}

.uc-preview-btn {
  background: linear-gradient(135deg, var(--gold) 0%, #dfa837 100%);
  color: var(--primary-dark) !important;
  font-size: 1.05rem;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(197, 155, 39, 0.35);
  white-space: nowrap;
  transition: var(--transition);
}

.uc-preview-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 28px rgba(197, 155, 39, 0.5);
  background: linear-gradient(135deg, #e5b84c 0%, var(--gold) 100%);
}

/* ==========================================================
   Section Styling for Visitor Panels
   ========================================================== */
.uc-section {
  padding: 56px 0;
}

.uc-section.bg-white {
  background: var(--bg-white);
}

.uc-section-head {
  text-align: center;
  margin-bottom: 38px;
}

.uc-section-tag {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: inline-block;
}

.uc-section-title {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.uc-section-desc {
  font-size: 0.96rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

/* ==========================================================
   Visitor Panel 2: Umrah Packages Cards
   ========================================================== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.pkg-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.pkg-card-img-wrap {
  height: 230px;
  position: relative;
  overflow: hidden;
  background: #000;
}

.pkg-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}

.pkg-card:hover .pkg-card-img-wrap img {
  transform: scale(1.05);
}

.pkg-airline-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--primary-dark);
  color: #fff;
  border: 1px solid var(--gold);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
}

body.ltr-mode .pkg-airline-tag {
  right: auto;
  left: 12px;
}

.pkg-card-body {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pkg-duration {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.pkg-title {
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 14px;
  line-height: 1.4;
}

.pkg-price-box {
  background: var(--primary-subtle);
  border: 1px solid rgba(14, 56, 110, 0.15);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.pkg-price-label {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.pkg-price-val {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--primary);
  font-family: 'Outfit', sans-serif;
}

.pkg-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.88rem;
  margin-bottom: 20px;
  flex: 1;
}

.pkg-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.btn-pkg-book {
  width: 100%;
  background: var(--primary);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-pkg-book:hover {
  background: var(--whatsapp);
  border-color: var(--whatsapp);
}

/* ==========================================================
   Visitor Panel 3: 21 Flights Schedule Preview
   ========================================================== */
.schedule-preview-box {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.schedule-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}

.schedule-header-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.schedule-search-input {
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-family: inherit;
  outline: none;
  min-width: 280px;
  transition: var(--transition);
}

.schedule-search-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14, 56, 110, 0.1);
}

.table-wrapper {
  overflow-x: auto;
}

.sched-table {
  width: 100%;
  border-collapse: collapse;
  text-align: right;
  font-size: 0.9rem;
}

body.ltr-mode .sched-table {
  text-align: left;
}

.sched-table th {
  background: var(--primary-subtle);
  color: var(--primary-dark);
  font-weight: 700;
  padding: 12px 14px;
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}

.sched-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
}

.sched-table tr:hover td {
  background: #f8fafc;
}

.sched-status-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  font-weight: 700;
  background: #dcfce7;
  color: #166534;
}

.btn-sched-action {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.btn-sched-action:hover {
  background: var(--primary);
  color: #fff;
}

.schedule-footer-bar {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

/* ==========================================================
   Visitor Panel 4: Flights & Visas
   ========================================================== */
.services-twocol-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.srv-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.srv-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.srv-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-subtle);
  border: 1px solid rgba(14, 56, 110, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 18px;
}

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

.srv-card p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 16px;
}

.srv-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.86rem;
  margin-bottom: 22px;
}

.srv-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-srv-action {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff !important;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 11px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-srv-action:hover {
  background: var(--gold);
  color: var(--primary-dark) !important;
}

/* ==========================================================
   Visitor Panel 5: Official Flyers Gallery
   ========================================================== */
.flyers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.flyer-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.flyer-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.flyer-thumb {
  height: 260px;
  background: #000;
}

.flyer-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.flyer-info {
  padding: 14px 16px;
}

.flyer-info h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.flyer-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.btn-flyer-open {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-flyer-open:hover {
  color: var(--gold);
  text-decoration: underline;
}

/* ==========================================================
   Visitor Panel 6: Agency Branches & Direct Contacts
   ========================================================== */
.branches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.branch-box {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.branch-box.featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.branch-badge {
  background: var(--primary-subtle);
  color: var(--primary);
  border: 1px solid rgba(14, 56, 110, 0.2);
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 10px;
}

.branch-box h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.branch-addr {
  font-size: 0.88rem;
  color: var(--text-body);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 14px;
  line-height: 1.5;
}

.branch-phones {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.88rem;
  margin-bottom: 14px;
  padding: 10px 12px;
  background: var(--bg-slate);
  border-radius: var(--radius-sm);
}

.branch-hours {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
}

.btn-branch-contact {
  width: 100%;
  background: var(--whatsapp);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-branch-contact:hover {
  background: #1eb956;
}

/* Floating WhatsApp */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--whatsapp);
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  text-decoration: none;
  transition: var(--transition);
}

body:not(.ltr-mode) .wa-float {
  right: auto;
  left: 24px;
}

.wa-float:hover {
  transform: scale(1.1) rotate(8deg);
}

/* Footer */
.uc-footer {
  background: var(--primary-dark);
  color: #cbd5e1;
  padding: 36px 0 24px;
  border-top: 3px solid var(--gold);
}

.uc-footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}

.uc-footer-credits p {
  font-size: 0.88rem;
}

.uc-footer-license {
  font-size: 0.78rem;
  color: #94a3b8;
  margin-top: 4px;
}

.uc-footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.uc-footer-link {
  color: #f7d77b;
  font-size: 0.86rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.uc-footer-link:hover {
  color: #fff;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .uc-topbar-flex,
  .uc-header-flex,
  .uc-preview-callout,
  .schedule-header-row,
  .uc-footer-content {
    flex-direction: column;
    text-align: center;
  }

  .uc-topbar-info,
  .uc-topbar-right,
  .uc-header-actions,
  .uc-footer-links {
    justify-content: center;
  }

  .schedule-search-input {
    min-width: 100%;
  }

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