/* =========================================
   INTS Booking System — Professional Theme
   Supports: Arabic (RTL) + English (LTR)
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables (Premium Light Glass) ── */
:root {
  --ints-bg:         #f8fafc;       /* Light Slate */
  --ints-primary:    #0f172a;       /* Deep Slate Blue */
  --ints-primary-h:  #1e293b;       /* Hover Slate */
  --ints-accent:     #0ea5e9;       /* Cyber Blue */
  --ints-accent-alt: #6366f1;       /* Indigo */
  --ints-accent-glow: rgba(14, 165, 233, 0.3);
  --ints-gold:       #f59e0b;
  --ints-success:    #10b981;
  --ints-danger:     #ef4444;
  
  /* Light Glassmorphism */
  --ints-glass-bg:   rgba(255, 255, 255, 0.65);
  --ints-glass-border: rgba(255, 255, 255, 0.8);
  --ints-glass-blur: blur(30px);

  --ints-surface:    rgba(255, 255, 255, 0.8);
  --ints-border:     rgba(15, 23, 42, 0.05);
  --ints-text:       #0f172a;
  --ints-muted:      #64748b;
  
  --ints-radius:     18px;
  --ints-radius-lg:  28px;
  
  /* Clean Light Shadows */
  --ints-shadow-sm:  0 4px 15px rgba(15, 23, 42, 0.03);
  --ints-shadow:     0 12px 30px rgba(15, 23, 42, 0.06);
  --ints-shadow-lg:  0 20px 40px rgba(14, 165, 233, 0.12);
  
  --ints-font-ar:    'Cairo', sans-serif;
  --ints-font-en:    'Inter', sans-serif;
  --ints-navbar-h:   80px;
}

/* ── Base Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: hidden; }

/* ── Professional Grid Background ── */
body {
  background-color: var(--ints-bg);
  background-image: 
    linear-gradient(rgba(14, 165, 233, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  background-attachment: fixed;
  color: var(--ints-text);
  font-family: var(--ints-font-ar);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

[lang="en"] body { font-family: var(--ints-font-en); }

/* ── Global Animations ── */
@keyframes ints-bg-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes ints-fade-in-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Apply entry animation globally */
.ints-section, .ints-filters-card, .ints-hero-content {
  animation: ints-fade-in-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ── Floating Navbar (Ice Glass Gradient) ── */
.ints-navbar {
  position: fixed;
  top: 20px; left: 50%;
  transform: translateX(-50%);
  width: 95%; max-width: 1200px;
  border-radius: 50px;
  height: 70px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(224, 242, 254, 0.9) 100%);
  -webkit-backdrop-filter: blur(30px) saturate(200%);
  backdrop-filter: blur(30px) saturate(200%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  z-index: 1000;
  box-shadow: 0 10px 40px rgba(14, 165, 233, 0.15);
  border: 1px solid rgba(14, 165, 233, 0.3);
  gap: 16px;
  transition: all 0.3s ease;
}

.ints-navbar-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.ints-navbar-brand:hover {
  transform: scale(1.02);
}

.ints-navbar-logo {
  height: 42px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
}

.ints-navbar-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ints-primary);
  white-space: nowrap;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.ints-navbar-title span {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  color: var(--ints-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ints-navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0; padding: 0;
}

.ints-nav-link {
  color: var(--ints-primary);
  text-decoration: none;
  font-size: .95rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all .3s ease;
  white-space: nowrap;
}

.ints-nav-link:hover,
.ints-nav-link.active {
  background: #ffffff;
  color: var(--ints-accent);
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.1);
  transform: translateY(-1px);
}

.ints-navbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* ── Icon Button (Icons & Language Toggle) ── */
.ints-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(14, 165, 233, 0.2);
  box-shadow: 0 4px 10px rgba(14, 165, 233, 0.08);
  cursor: pointer;
  transition: all .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  color: var(--ints-primary); /* For text like Language AR/EN */
  font-weight: 800;
  font-size: 0.95rem;
}

.ints-icon-btn:hover {
  background: var(--ints-accent);
  border-color: var(--ints-accent);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.ints-icon-btn img { 
  width: 20px; height: 20px; 
  /* Professional Vibrant Sky Blue (#0ea5e9) */
  filter: invert(53%) sepia(61%) saturate(2850%) hue-rotate(167deg) brightness(98%) contrast(92%);
  transition: all .3s ease;
}

.ints-icon-btn:hover img {
  filter: brightness(0) invert(1); /* Pure White on Hover */
}

/* ── Language Button ── */
.ints-lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  color: blue;
  padding: 0 16px;
  border-radius: 20px !important;
  background: #ffffff;
  border: 1px solid rgba(14, 165, 233, 0.2);
  box-shadow: 0 4px 10px rgba(14, 165, 233, 0.08);
  cursor: pointer;
  transition: all .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  /* color: var(--ints-primary); */
  font-weight: 800;
  font-size: 0.95rem;
  gap: 8px;
}

.ints-lang-btn:hover {
  background: var(--ints-accent);
  border-color: var(--ints-accent);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

/* ── Profile Dropdown ── */
.ints-dropdown {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: -15px;
}

.ints-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  background: var(--ints-surface);
  border-radius: var(--ints-radius);
  box-shadow: var(--ints-shadow-lg);
  border: 1px solid var(--ints-border);
  min-width: 200px;
  overflow: hidden;
  z-index: 100;
}

[dir="rtl"] .ints-dropdown-menu { left: 0; right: auto; text-align: right; }
[dir="ltr"] .ints-dropdown-menu { right: 0; left: auto; text-align: left; }

.ints-dropdown:hover .ints-dropdown-menu { display: block; }

.ints-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  color: var(--ints-text);
  text-decoration: none;
  font-size: .9rem;
  transition: background .15s;
}

.ints-dropdown-item:hover { background: #f1f5f9; }
.ints-dropdown-item i { color: var(--ints-primary); width: 18px; }
.ints-dropdown-item hr { margin: 0; border-color: var(--ints-border); }

/* ── Hamburger (Mobile) ── */
.ints-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: rgba(15, 23, 42, 0.05);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
}

.ints-hamburger span {
  display: block;
  height: 2px;
  background: var(--ints-primary);
  border-radius: 2px;
  transition: all .3s;
}

/* ── Page wrapper offset for fixed navbar ── */
.ints-page {
  padding-top: var(--ints-navbar-h);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  max-width: 100%;
}

/* ── Hero Banner (Professional Light Glass) ── */
.ints-hero {
  background: radial-gradient(circle at top, rgba(14, 165, 233, 0.12) 0%, transparent 70%);
  padding: 140px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ints-hero-content {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  z-index: 2;
  animation: ints-fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes ints-fade-up {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.ints-hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(224, 242, 254, 0.8));
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  color: var(--ints-primary);
  font-size: 1.25rem;
  font-weight: 800;
  padding: 12px 36px;
  border-radius: 50px;
  margin-bottom: 28px;
  border: 1px solid rgba(14, 165, 233, 0.3);
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.15);
  position: relative;
  overflow: hidden;
}

.ints-hero-badge::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  transform: skewX(-20deg);
  animation: ints-badge-shine 3s infinite;
}

@keyframes ints-badge-shine {
  0% { left: -100%; }
  20% { left: 200%; }
  100% { left: 200%; }
}

.ints-hero h1, .ints-hero h2, .ints-hero h3 {
  font-size: clamp(3rem, 7vw, 4.5rem);
  font-weight: 900;
  color: var(--ints-primary);
  margin: 0 0 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.ints-hero-desc {
  color: var(--ints-text);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 auto;
  line-height: 1.6;
  max-width: 700px;
}

.ints-hero-alert {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  background: rgba(239, 68, 68, 0.08);
  color: #ef4444;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 800;
  border: 1px solid rgba(239, 68, 68, 0.2);
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.1);
  animation: ints-fade-up 0.5s ease-out forwards;
}

/* ── Filters Panel (Light Glass) ── */
.ints-filters-card {
  background: var(--ints-glass-bg);
  -webkit-backdrop-filter: var(--ints-glass-blur);
  backdrop-filter: var(--ints-glass-blur);
  border-radius: var(--ints-radius-lg);
  box-shadow: var(--ints-shadow-lg);
  padding: 32px;
  margin: -40px 24px 40px;
  position: relative;
  z-index: 10;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--ints-glass-border);
}

.ints-filters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  align-items: start;
}

@media (min-width: 769px) {
  .ints-grid-1-1 { grid-template-columns: 1fr 1fr; }
  .ints-grid-1-2 { grid-template-columns: 1fr 2fr; }
}

.ints-field-label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--ints-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.ints-field-label .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  background: var(--ints-primary);
  color: #fff;
  border-radius: 50%;
  font-size: .7rem;
  margin-inline-end: 6px;
}

.ints-select {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid var(--ints-border);
  border-radius: 10px;
  background: #f8fafc;
  color: var(--ints-text);
  font-family: inherit;
  font-size: .95rem;
  transition: all .2s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 12px center;
}

[dir="rtl"] .ints-select { background-position: left 12px center; }

.ints-select:focus {
  outline: none;
  border-color: var(--ints-accent);
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(14,165,233,.12);
}

/* ── Section ── */
.ints-section {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 24px 60px;
}

.ints-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ints-text);
  margin-bottom: 20px;

    display: block;
  
    text-align: center;
  align-items: center;
  gap: 10px;
}

.ints-section-title::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, var(--ints-border), transparent);
}

/* ── Center Cards Grid ── */
.ints-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

/* ── Centered Grid specifically for FHome Centers ── */
.ints-fhome-centers-grid {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.ints-fhome-centers-grid .ints-card {
  flex: 0 1 350px; /* Allow shrinking but not growing past 350px */
  width: 100%;
}

/* ── Center Card (Premium Light Glass) ── */
.ints-card {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: var(--ints-radius-lg);
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.08);
  overflow: hidden;
  border: 1px solid rgba(14, 165, 233, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  max-width: 100%;
}

.ints-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(14, 165, 233, 0.15);
  border-color: rgba(14, 165, 233, 0.5);
}

.ints-card-header {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-bottom: 1px solid rgba(14, 165, 233, 0.15);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
}

.ints-card-icon {
  width: 56px; height: 56px;
  background: #ffffff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ints-primary);
  font-size: 1.6rem;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.15);
  border: 1px solid rgba(14, 165, 233, 0.1);
}

.ints-card-center-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ints-primary);
  margin: 0 0 6px;
  line-height: 1.4;
}

.ints-card-university {
  font-size: 0.9rem;
  color: var(--ints-accent);
  font-weight: 600;
  margin: 0;
}

.ints-card-body { padding: 24px; flex: 1; background: #ffffff; }

.ints-progress-wrap { margin-bottom: 16px; }

.ints-progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ints-muted);
  margin-bottom: 8px;
}

.ints-progress-bar {
  height: 10px;
  background: #f1f5f9;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

.ints-progress-fill {
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right, #38bdf8, #0284c7);
  box-shadow: 0 2px 10px rgba(14, 165, 233, 0.3);
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.ints-progress-fill.danger { background: linear-gradient(to right, #f87171, #ef4444); box-shadow: 0 2px 10px rgba(239, 68, 68, 0.3); }
.ints-progress-fill.warning { background: linear-gradient(to right, #fbbf24, #f59e0b); box-shadow: 0 2px 10px rgba(245, 158, 11, 0.3); }

.ints-stats-row {
  display: flex;
  gap: 12px;
}

.ints-stat-pill {
  flex: 1;
  background: #f8fafc;
  border: 1px solid rgba(14, 165, 233, 0.1);
  border-radius: 12px;
  padding: 10px 12px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--ints-muted);
  font-weight: 600;
  transition: all 0.3s ease;
}

.ints-stat-pill:hover {
  background: #f0f9ff;
  border-color: rgba(14, 165, 233, 0.3);
  transform: translateY(-2px);
}

.ints-stat-pill strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ints-primary);
  margin-bottom: 4px;
}

.ints-card-footer {
  padding: 16px 24px;
  background: #f8fafc;
  border-top: 1px solid rgba(14, 165, 233, 0.1);
  display: flex;
  gap: 12px;
  align-items: center;
}

/* ── Buttons (Glow and Animation) ── */
.ints-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--ints-radius);
  font-family: inherit;
  font-size: .95rem;
  font-weight: 800;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  white-space: nowrap;
}

.ints-btn-primary {
  background: linear-gradient(135deg, var(--ints-primary), var(--ints-accent));
  color: #fff;
  flex: 1;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.ints-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.5);
  background: linear-gradient(135deg, var(--ints-accent), var(--ints-primary));
}

.ints-btn-map {
  background: #ffffff;
  color: var(--ints-primary);
  border: 1px solid rgba(14, 165, 233, 0.3);
  padding: 10px 14px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(14, 165, 233, 0.05);
}

.ints-btn-map:hover {
  background: var(--ints-primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(14, 165, 233, 0.2);
}

.ints-btn-outline {
  background: transparent;
  color: var(--ints-primary);
  border: 1px solid var(--ints-primary);
}

.ints-btn-outline:hover {
  background: rgba(14, 165, 233, 0.05);
  transform: translateY(-1px);
}

/* ── Badge Full ── */
.ints-badge-full {
  flex: 1;
  background: #fef2f2;
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: var(--ints-danger);
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  font-size: .95rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 10px rgba(239, 68, 68, 0.05);
}

/* ── State Boxes ── */
.ints-state-box {
  text-align: center;
  padding: 60px 24px;
  background: var(--ints-surface);
  border-radius: var(--ints-radius-lg);
  border: 2px dashed var(--ints-border);
}

.ints-state-box i {
  font-size: 3rem;
  color: var(--ints-muted);
  margin-bottom: 20px;
  display: block;
}

.ints-state-box h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ints-text);
  margin: 0 0 8px;
}

.ints-state-box p {
  color: var(--ints-muted);
  margin: 0;
}

/* ── Loader ── */
.ints-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 60px;
}

.ints-spinner {
  width: 50px; height: 50px;
  border: 4px solid #e2e8f0;
  border-top-color: var(--ints-primary);
  border-radius: 50%;
  animation: ints-spin .8s linear infinite;
}

@keyframes ints-spin { to { transform: rotate(360deg); } }

/* ── Timer / Countdown (Professional Glass & Motion) ── */
.ints-countdown {
  background: var(--ints-glass-bg);
  -webkit-backdrop-filter: var(--ints-glass-blur);
  backdrop-filter: var(--ints-glass-blur);
  border-radius: var(--ints-radius-lg);
  box-shadow: 0 10px 40px rgba(14, 165, 233, 0.1);
  padding: 60px 40px;
  text-align: center;
  border: 1px solid var(--ints-glass-border);
  border-top: 1px solid rgba(255, 255, 255, 1);
  position: relative;
  overflow: hidden;
}

.ints-countdown::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ints-accent), var(--ints-accent-alt));
}

.ints-countdown-num {
  font-size: clamp(5rem, 15vw, 9rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--ints-primary), var(--ints-accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  display: inline-block;
  margin: 16px 0;
  animation: ints-timer-pop 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) infinite;
}

@keyframes ints-timer-pop {
  0% { transform: scale(1); filter: drop-shadow(0 4px 15px rgba(14, 165, 233, 0.2)); }
  20% { transform: scale(1.1); filter: drop-shadow(0 15px 40px rgba(14, 165, 233, 0.6)); }
  50% { transform: scale(1); filter: drop-shadow(0 4px 15px rgba(14, 165, 233, 0.2)); }
  100% { transform: scale(1); filter: drop-shadow(0 4px 15px rgba(14, 165, 233, 0.2)); }
}

.ints-countdown-label {
  font-size: 1.2rem;
  color: var(--ints-muted);
  font-weight: 600;
  margin-top: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ints-countdown-btn {
  margin-top: 32px;
  padding: 16px 48px;
  font-size: 1.15rem;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3); /* Success glow */
}

/* ── Alert Note ── */
.ints-alert-note {
  display: flex;
  gap: 16px;
  background: #fffbeb;
  border: 1.5px solid #fcd34d;
  border-radius: var(--ints-radius);
  padding: 18px 22px;
  margin-bottom: 28px;
}

.ints-alert-note .icon { font-size: 1.5rem; color: #f59e0b; flex-shrink: 0; }

.ints-alert-note .title {
  font-weight: 700;
  font-size: 1rem;
  color: #92400e;
  margin-bottom: 6px;
}

.ints-alert-note .body {
  font-size: .9rem;
  color: #78350f;
  line-height: 1.8;
}

/* ── Blacklist Box ── */
.ints-blacklist-box {
  background: #fef2f2;
  border: 2px solid #fca5a5;
  border-radius: var(--ints-radius-lg);
  padding: 36px;
  text-align: center;
}

.ints-blacklist-box h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ints-danger);
}

/* ── Footer (Premium Light Glass & Centered) ── */
.ints-footer {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(241, 245, 249, 0.95) 50%, rgba(224, 242, 254, 0.95) 100%);
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  color: var(--ints-muted);
  padding: 60px 24px 0;
  margin-top: auto;
  border-top: 1px solid rgba(14, 165, 233, 0.2);
  box-shadow: 0 -10px 40px rgba(14, 165, 233, 0.05);
  position: relative;
  overflow: hidden;
}

.ints-footer-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  padding-bottom: 40px;
  text-align: center;
}

.ints-footer-center-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.ints-footer-logo {
  display: inline-flex;
  align-items: center; 
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  padding: 2px 2px;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.15), 
              inset 0 2px 5px rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(14, 165, 233, 0.2);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  margin-bottom: 24px;
}

.ints-footer-logo:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 15px 40px rgba(14, 165, 233, 0.25), 
              inset 0 2px 5px rgba(255, 255, 255, 0.8);
  border-color: rgba(14, 165, 233, 0.4);
}

.ints-footer-logo img {
  height: 125px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.08));
  transition: transform 0.4s ease;
}

.ints-footer-logo:hover img {
  transform: scale(1.05);
}

.ints-footer-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ints-muted);
  font-weight: 500;
  max-width: 500px;
  margin-bottom: 12px;
}

.ints-footer-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.ints-footer-links-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ffffff;
  color: var(--ints-primary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 50px;
  border: 1px solid rgba(14, 165, 233, 0.15);
  box-shadow: 0 4px 10px rgba(14, 165, 233, 0.05);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ints-footer-links-row a:hover { 
  color: #ffffff;
  background: linear-gradient(135deg, var(--ints-primary), var(--ints-accent));
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.2);
  transform: translateY(-2px);
  border-color: transparent;
}

.ints-footer-bottom {
  border-top: 1px solid rgba(14, 165, 233, 0.1);
  padding: 24px 0;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ints-muted);
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Language Chooser ── */
.ints-lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(255,255,255,.1);
  color: #e0e7ff;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  transition: .2s;
  text-decoration: none;
}

.ints-lang-btn:hover { background: rgba(14, 165, 233, 0.1); color: var(--ints-primary); }

/* ── Mobile Nav Overlay (Premium Light Glass) ── */
.ints-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  z-index: 999;
  flex-direction: column;
  padding: 60px 24px 32px;
  gap: 8px;
}

.ints-mobile-nav.open { display: flex; }

.ints-mobile-nav .ints-nav-link {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ints-primary);
  padding: 16px 24px;
  background: #f8fafc;
  border: 1px solid rgba(14, 165, 233, 0.15);
  border-radius: 16px;
  text-decoration: none;
  margin-bottom: 12px;
  box-shadow: 0 4px 10px rgba(14, 165, 233, 0.05);
}

.ints-mobile-nav .ints-icon-btn {
  background: #f8fafc !important;
  color: var(--ints-danger) !important;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .ints-navbar-actions > *:not(.ints-hamburger) {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .ints-navbar-nav { display: none; }
  .ints-hamburger { display: flex; }
  .ints-filters-card { margin: -20px 12px 24px; padding: 18px; }
  .ints-filters-grid { grid-template-columns: 1fr; }
  .ints-cards-grid { grid-template-columns: 1fr; }
  .ints-hero { padding: 36px 16px 28px; }
  .ints-section { padding: 0 12px 40px; }
}

@media (max-width: 480px) {
  .ints-navbar { padding: 0 14px; }
  .ints-card-header { padding: 16px; }
  .ints-card-body, .ints-card-footer { padding: 14px 16px; }
}

/* ── RTL Tweaks ── */
[dir="rtl"] .ints-footer-links-row a:hover { transform: translateY(-2px); }
[dir="ltr"] .ints-footer-links-row a:hover { transform: translateY(-2px); }

/* ── User Profile & Print Modal ── */
.ints-profile-header {
  padding: 40px;
  text-align: center;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #0284c7, #1e3a8a);
  color: white;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(2, 132, 199, 0.3);
}

.ints-profile-card {
  padding: 24px;
  height: 100%;
}

.ints-step-panel {
  padding: 30px;
  background: #f8fafc;
  border-radius: 16px;
  text-align: center;
  direction: rtl;
  border: 1px solid var(--ints-border);
}

.ints-print-header {
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  padding: 24px;
  text-align: center;
  border-bottom: 1px solid rgba(14, 165, 233, 0.1);
}

.ints-print-body {
  padding: 24px;
  background: white;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.ints-print-details {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ints-print-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ints-primary);
}

.ints-print-title {
  font-size: 0.85rem;
  color: var(--ints-muted);
  font-weight: 700;
  margin-bottom: 4px;
}

/* ── Booking Card Header ── */
.ints-booking-header {
  padding: 24px;
  background: rgba(14, 165, 233, 0.03);
  border-bottom: 1px solid var(--ints-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.ints-booking-info {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.ints-booking-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: white;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
  color: var(--ints-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.ints-booking-text {
  flex: 1;
}

.ints-booking-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ints-text);
  margin: 0 0 6px 0;
  line-height: 1.4;
  word-break: break-word;
  overflow-wrap: break-word;
}

.ints-booking-meta {
  color: var(--ints-muted);
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.ints-booking-meta i {
  margin-inline-end: 6px;
  color: var(--ints-primary);
}

.ints-booking-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ints-booking-code {
  background: white;
  padding: 10px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
  border: 1px solid var(--ints-border);
  text-align: center;
  min-width: 140px;
}

.ints-booking-code-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ints-muted);
  display: block;
  margin-bottom: 2px;
}

.ints-booking-code-val {
  font-size: 1.25rem;
  color: var(--ints-primary);
  letter-spacing: 1px;
  word-break: break-all;
}

.ints-booking-btn {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ints-booking-btn i {
  margin-inline-end: 10px;
  font-size: 1.25rem;
}

/* ── Mobile Overrides for Profile & Modal ── */
@media (max-width: 768px) {
  .ints-section { max-width: 100vw !important; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .ints-card { max-width: 100% !important; overflow-x: auto; -webkit-overflow-scrolling: touch; box-sizing: border-box; }
  
  .ints-booking-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    gap: 16px;
  }
  .ints-booking-info {
    width: 100%;
    align-items: flex-start;
  }
  .ints-booking-icon {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
  .ints-booking-title {
    font-size: 1.1rem;
  }
  .ints-booking-actions {
    width: 100%;
    flex-direction: row;
    gap: 12px;
  }
  .ints-booking-code {
    flex: 1;
    padding: 8px 12px;
    min-width: 0;
  }
  .ints-booking-btn {
    flex: 1;
    padding: 10px 16px;
    font-size: 1rem;
  }
  
  .ints-profile-header { padding: 24px 16px; margin-bottom: 20px; }
  .ints-profile-header h2 { font-size: 1.8rem !important; }
  .ints-profile-card { padding: 16px; }
  
  .ints-step-panel { padding: 16px; }
  
  /* Fix Blazorise Steps Overflow (Scroll tabs only) */
  .ints-booking-steps .nav, 
  .ints-booking-steps ul, 
  .ints-booking-steps .steps,
  .ints-booking-steps .nav-pills {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    margin-bottom: 16px;
    display: flex !important;
  }
  
  .ints-booking-steps .nav .nav-item, 
  .ints-booking-steps ul li, 
  .ints-booking-steps .steps .step-item {
    flex: 0 0 auto !important;
    min-width: 140px;
  }

  .step-panel {
    width: 100% !important;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .ints-print-header { padding: 16px; }
  .ints-print-header h2 { font-size: 1.2rem !important; }
  .ints-print-header h1 { font-size: 1rem !important; }
  
  .ints-print-body { padding: 16px; flex-direction: column; }
  .ints-print-details { width: 100%; min-width: 100%; }
  .ints-print-value { font-size: 1.1rem !important; }
}
