/* ==============================================
   style.css – CLTA Egypt Landing Page (Redesign)
   Brand Colors: #742933 (primary red) / #0d5fa8 (secondary blue)
   ============================================== */

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

/* ── Root Variables ── */
:root {
  --clta-red: #742933;
  --clta-red-d: #5c1f28;
  --clta-red-l: #8c3340;
  --clta-blue: #0d5fa8;
  --clta-blue-d: #0a4d8a;
  --clta-blue-l: #1472c4;
  --navy: #0b1d40;
  --navy-light: #122354;
  --text-dark: #1a2742;
  --text-mid: #4a5568;
  --text-light: #718096;
  --border: #e2e8f0;
  --bg-light: #f7f9fc;
  --white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cairo', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--clta-red);
  color: #fff;
}

/* ─────────────────────────────────────────────
   NAVBAR
───────────────────────────────────────────── */
/* ─────────────────────────────────────────────
   NAVBAR (HotelHub Minimal Style)
───────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999;
  padding: 1.1rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(15, 23, 42, 0.96) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  padding: 0.75rem 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.header-logo img {
  height: 34px;
  width: auto;
}

.header-logo-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.header-nav .nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.header-nav .nav-link:hover {
  color: #ffffff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.btn-nav-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-nav-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-nav-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.35rem;
  border-radius: 9999px;
  background: #ffffff;
  color: #0f172a;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}

.btn-nav-solid:hover {
  background: #f8fafc;
  transform: translateY(-1px);
}

/* ─────────────────────────────────────────────
   HERO — HotelHub Dribbble Style
───────────────────────────────────────────── */
.hero-dribbble {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 4rem;
  background: #0f172a;
  background-image:
    linear-gradient(to right, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.65)),
    url('hero-bg.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 40%, rgba(13, 95, 168, 0.15), transparent 60%);
  pointer-events: none;
}

.hero-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 2rem 2rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ── Left Column ── */
.hero-left-col {
  color: #ffffff;
}

.promo-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.45rem 1.1rem;
  border-radius: 9999px;
  margin-bottom: 2rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.promo-badge-pill:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hero-main-title {
  font-size: clamp(2.4rem, 3.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.80;
  color: #ffffff;
  margin-bottom: 1.4rem;
}

.hero-main-desc {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
  margin-bottom: 2.2rem;
}

.hero-btn-wrap {
  margin-bottom: 3.5rem;
}

.btn-explore-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2.2rem;
  border-radius: 9999px;
  background: #ffffff;
  color: #0f172a;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn-explore-white:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* Trust Bar */
.hero-trust-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
}

.trust-title {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  margin-bottom: 1rem;
}

.trust-logos {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-brand {
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.trust-brand:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* ── Right Column: HotelHub White Form Card ── */
.hotelhub-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 2.25rem 2rem;
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.45);
}

.card-top-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.card-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #111827;
  line-height: 1.3;
}

.card-subtitle {
  font-size: 0.82rem;
  color: #6b7280;
  margin-top: 0.15rem;
}

.card-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #374151;
}

.field-input-box {
  position: relative;
  display: flex;
  align-items: center;
}

.field-icon {
  position: absolute;
  right: 14px;
  width: 18px;
  height: 18px;
  stroke: #9ca3af;
  fill: none;
  stroke-width: 2;
  pointer-events: none;
}

.field-control {
  width: 100%;
  background: #f3f4f6;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 0.78rem 2.6rem 0.78rem 1rem;
  font-family: 'Cairo', sans-serif;
  font-size: 0.92rem;
  color: #111827;
  outline: none;
  transition: all 0.2s ease;
}

.field-control:focus {
  background: #ffffff;
  border-color: #111827;
  box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.08);
}

.field-control-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%236b7280' d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 0.85rem center;
  background-size: 14px;
}

.fields-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

/* Dark Charcoal Full-Width Pill Button */
.btn-dribbble-submit {
  width: 100%;
  background: var(--clta-red);
  color: #ffffff;
  font-family: 'Cairo', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  padding: 0.95rem 1.5rem;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  margin-top: 0.5rem;
  box-shadow: 0 10px 20px rgba(17, 24, 39, 0.2);
}

.btn-dribbble-submit:hover {
  background: var(--clta-red);
  transform: translateY(-1px);
  box-shadow: 0 14px 25px rgba(17, 24, 39, 0.3);
}

.btn-dribbble-submit:active {
  transform: translateY(0);
}

/* ─────────────────────────────────────────────
   FORM VALIDATION UX & ALERTS
───────────────────────────────────────────── */
.form-alert-box {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 10px;
  padding: 0.65rem 0.85rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  animation: slideDownAlert 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.06);
}

@keyframes slideDownAlert {
  0% {
    opacity: 0;
    transform: translateY(-6px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.alert-icon {
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.alert-content {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.76rem;
  color: #991b1b;
  line-height: 1.4;
}

.alert-title {
  font-weight: 800;
  color: #7f1d1d;
  font-size: 0.78rem;
}

.alert-message {
  color: #991b1b;
  font-size: 0.76rem;
}

/* Field level error state */
.field-control.is-invalid {
  border-color: #ef4444 !important;
  background: #fff5f5 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12) !important;
}

.field-input-box.is-invalid .field-icon {
  stroke: #ef4444 !important;
}

.field-error-text {
  font-size: 0.72rem;
  font-weight: 700;
  color: #dc2626;
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  line-height: 1.35;
}

.field-error-text::before {
  content: '⚠';
  font-size: 0.74rem;
}

/* Honeypot */
.hp-field {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none !important;
  height: 0 !important;
  overflow: hidden !important;
}

/* ─────────────────────────────────────────────
   SUCCESS SCREEN
───────────────────────────────────────────── */
.success-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1.5rem;
}

.success-card {
  background: #fff;
  border-radius: 20px;
  padding: 3rem 2.5rem 2.5rem;
  text-align: center;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  animation: cardIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes cardIn {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}

.success-check {
  width: 72px;
  height: 72px;
  background: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  animation: popIn 0.45s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0.1s both;
}

@keyframes popIn {
  from { transform: scale(0); opacity: 0; }
  70%  { transform: scale(1.12); }
  to   { transform: scale(1);   opacity: 1; }
}

.success-check svg {
  width: 34px;
  height: 34px;
  stroke: #fff;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.success-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.65rem;
}

.success-msg {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 1.8rem;
}

.success-msg strong {
  color: #0f172a;
  font-weight: 700;
}

.btn-back-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: #0f172a;
  color: #fff;
  font-family: 'Cairo', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.75rem 2rem;
  width: 100%;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-back-home:hover {
  background: #1e293b;
  transform: translateY(-1px);
}




/* ─────────────────────────────────────────────
   SECTION COMMONS
───────────────────────────────────────────── */
.section-wrap {
  padding: 5rem 2rem;
}

.section-wrap.bg-light {
  background: var(--bg-light);
}

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

.section-wrap.bg-dark {
  background: var(--navy);
}

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

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-block;
  border: 1.5px solid var(--clta-red);
  color: var(--clta-red);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.9rem;
  border-radius: 3px;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.section-title.on-dark {
  color: #fff;
}

.section-desc {
  font-size: 0.95rem;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-desc.on-dark {
  color: rgba(255, 255, 255, 0.65);
}

/* Divider line */
.section-divider {
  width: 48px;
  height: 3px;
  background: var(--clta-red);
  margin: 0.8rem auto 0;
  border-radius: 2px;
}

/* ─────────────────────────────────────────────
   FEATURES (WHY CLTA)
───────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.75rem 1.5rem;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.feature-card:hover {
  border-color: var(--clta-blue);
  box-shadow: 0 10px 40px rgba(13, 95, 168, 0.1);
  transform: translateY(-4px);
}

.feature-icon-wrap {
  width: 52px;
  height: 52px;
  background: #eef4fd;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: background 0.25s;
}

.feature-card:hover .feature-icon-wrap {
  background: var(--clta-blue);
}

.feature-icon-wrap svg {
  width: 26px;
  height: 26px;
  stroke: var(--clta-blue);
  fill: none;
  stroke-width: 1.75;
  transition: stroke 0.25s;
}

.feature-card:hover .feature-icon-wrap svg {
  stroke: #fff;
}

.feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.feature-desc {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ─────────────────────────────────────────────
   COURSE LEVELS
───────────────────────────────────────────── */
.levels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.level-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  position: relative;
}

.level-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--clta-red);
  transform: translateY(-4px);
}

.level-tag {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--clta-red);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.level-num {
  font-size: 2.25rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: 'Cairo', sans-serif;
}

.level-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.25rem;
}

.level-en {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
  margin-bottom: 1rem;
}

.level-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.level-points li {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  padding-right: 0.9rem;
  position: relative;
}

.level-points li::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0.45em;
  width: 5px;
  height: 5px;
  background: var(--clta-red);
  border-radius: 50%;
}

.level-card.highlighted {
  border-color: var(--clta-red);
  background: rgba(116, 41, 51, 0.1);
}

.level-badge {
  position: absolute;
  top: -1px;
  left: -1px;
  background: var(--clta-red);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 0 0 6px 0;
}

/* ─────────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.75rem;
  position: relative;
  transition: box-shadow 0.25s, transform 0.25s;
}

.testimonial-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.quote-mark {
  font-size: 3.5rem;
  line-height: 1;
  color: var(--clta-red);
  opacity: 0.15;
  font-family: Georgia, serif;
  margin-bottom: -0.5rem;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
}

.author-note {
  font-size: 0.76rem;
  color: var(--text-light);
  margin-top: 0.1rem;
}

/* ─────────────────────────────────────────────
   CTA STRIP
───────────────────────────────────────────── */
.cta-strip {
  background: var(--clta-red);
  padding: 3rem 2rem;
  text-align: center;
}

.cta-strip-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}

.cta-strip-sub {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.btn-cta-strip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #fff;
  color: var(--clta-red);
  font-family: 'Cairo', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}

.btn-cta-strip:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.site-footer {
  background: #070f1e;
  padding: 2rem;
  text-align: center;
}

.footer-logo {
  height: 32px;
  margin-bottom: 0.75rem;
}

.footer-text {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-link {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

.footer-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* ─────────────────────────────────────────────
   UTILITIES
───────────────────────────────────────────── */
.hidden {
  display: none !important;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ─────────────────────────────────────────────
   RESPONSIVE (HotelHub Form-First Mobile Layout)
───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .levels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .site-header {
    padding: 0.85rem 1.5rem;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
  }

  .header-nav {
    display: none;
    /* Hide nav links on tablet/mobile to keep header clean */
  }

  .hero-dribbble {
    padding-top: 85px;
    padding-bottom: 3rem;
    min-height: auto;
  }

  .hero-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding: 1rem 1.25rem;
  }

  /* ⚡️ FORM WIDGET CARD FIRST ON MOBILE ⚡️ */
  .hero-right-col {
    order: 1;
    width: 100%;
  }

  /* Text Content Second */
  .hero-left-col {
    order: 2;
    width: 100%;
    text-align: center;
  }

  .promo-badge-pill {
    margin: 0 auto 1.5rem auto;
  }

  .hero-main-title {
    font-size: 2.1rem;
    line-height: 1.25;
  }

  .hero-main-desc {
    margin: 0 auto 1.5rem auto;
    font-size: 1rem;
  }

  .hero-btn-wrap {
    margin-bottom: 2.5rem;
  }

  .trust-logos {
    justify-content: center;
    gap: 1.25rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .site-header {
    padding: 0.75rem 1rem;
  }

  .header-logo-name {
    font-size: 1rem;
  }

  .btn-nav-outline {
    padding: 0.4rem 0.85rem;
    font-size: 0.8rem;
  }

  .btn-nav-solid {
    padding: 0.4rem 0.95rem;
    font-size: 0.8rem;
  }

  .hotelhub-card {
    padding: 1.5rem 1.15rem;
    border-radius: 20px;
  }

  .card-title {
    font-size: 1.15rem;
  }

  .card-subtitle {
    font-size: 0.78rem;
  }

  .fields-grid-2 {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .hero-main-title {
    font-size: 1.8rem;
  }

  .levels-grid {
    grid-template-columns: 1fr;
  }

  .section-wrap {
    padding: 3rem 1rem;
  }
}