.fblrohp-full {
  --fbl-navy: var(--primary);
  --fbl-orange: var(--accent);
  --fbl-text: var(--text-main);
  --fbl-muted: var(--text-muted);
  --fbl-line: rgba(20, 35, 71, 0.08);
  --fbl-bg: #fff;
  --fbl-chip-bg: #f8fafc;
  --fbl-r: var(--radius);
  /* 22px */

  font-family: 'Montserrat', sans-serif;
  padding: 80px 0;
  margin-top: 60px;
  background: transparent;
  /* Seamless blend */
}

.fblrohp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* 1. HEADER: Centered & Clean */
.fblrohp-head {
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.fblrohp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--fbl-orange);
  background: rgba(250, 140, 22, 0.1);
  border: 1px solid rgba(250, 140, 22, 0.2);
  border-radius: 99px;
  padding: 8px 16px;
}

.fblrohp-title {
  margin: 0;
  color: var(--fbl-navy);
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 800;
}

.fblrohp-lead {
  margin: 0;
  color: var(--fbl-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* 2. SERVICES: Cards with Shadow */
.fblrohp-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .fblrohp-services {
    grid-template-columns: 1fr;
  }
}

.fblrohp-svc {
  background: white;
  border-radius: var(--fbl-r);
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.fblrohp-svc:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.fblrohp-svc i {
  font-size: 20px;
  color: white;
  background: var(--fbl-orange);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(250, 140, 22, 0.3);
}

.fblrohp-svc h3 {
  margin: 0;
  font-size: 16px;
  color: var(--fbl-navy);
  font-weight: 800;
  line-height: 1.4;
}

.fblrohp-svc p {
  margin: 0;
  font-size: 13px;
  color: var(--fbl-muted);
  line-height: 1.6;
}

/* 3. CHIPS: Modern Pills */
.fblrohp-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.fblrohp-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 99px;
  color: var(--fbl-navy);
  background: white;
  border: 1px solid #e2e8f0;
  font-weight: 600;
  font-size: 12px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.fblrohp-chip:hover {
  border-color: var(--fbl-orange);
  color: white;
  background: var(--fbl-orange);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(250, 140, 22, 0.25);
}

.fblrohp-chip i {
  font-size: 12px;
  color: var(--fbl-orange);
  transition: color 0.2s;
}

.fblrohp-chip:hover i {
  color: white;
}

/* 4. CITIES: Clean Inline */
.fblrohp-cities {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  background: rgba(20, 35, 71, 0.03);
  padding: 20px;
  border-radius: 16px;
}

.fblrohp-cities i {
  color: var(--fbl-orange);
}

.fblrohp-cities strong {
  color: var(--fbl-navy);
  font-size: 14px;
  margin-right: 8px;
}

.fblrohp-pill {
  padding: 6px 14px;
  border-radius: 8px;
  background: white;
  color: var(--fbl-text);
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  transition: all 0.2s;
}

.fblrohp-pill:hover {
  color: var(--fbl-orange);
  transform: scale(1.05);
}

/* 5. CTA Banner: Premium Gradient */
.fblrohp-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(135deg, var(--accent) 0%, #e67e22 100%);
  color: white;
  border-radius: var(--fbl-r);
  padding: 32px 40px;
  box-shadow: 0 20px 40px -10px rgba(250, 140, 22, 0.4);
  position: relative;
  overflow: hidden;
}

.fblrohp-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://www.transparenttextures.com/patterns/cubes.png');
  opacity: 0.1;
}

@media (max-width: 768px) {
  .fblrohp-cta {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
}

.fblrohp-cta-content {
  position: relative;
  z-index: 1;
}

.fblrohp-cta-content strong {
  display: block;
  font-size: 20px;
  margin-bottom: 6px;
  font-weight: 800;
}

.fblrohp-cta-content small {
  font-size: 14px;
  opacity: 0.9;
  font-weight: 500;
}

/* 6. PROMO CARDS: Full Image Premium Style */
.fblrohp-promos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 10px;
}

@media (max-width: 600px) {
  .fblrohp-promos {
    grid-template-columns: 1fr;
  }
}

.fblrohp-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--fbl-r);
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fblrohp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(20, 35, 71, 0.25);
}

/* Background Image Layer */
.fblrohp-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: transform 0.6s ease;
}

.fblrohp-card:hover::after {
  transform: scale(1.1);
}

/* Overlay Layer */
.fblrohp-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 35, 71, 0.95) 0%, rgba(20, 35, 71, 0.4) 60%, transparent 100%);
  z-index: 1;
  opacity: 0.9;
}

/* Specific Images */
.fblrohp-card.hurghada::after {
  background-image: url(https://images.ctfassets.net/1i1co12z89xy/7yJeIhl0IWDn4OUG56uWXA/0721b12544583a71fae604ba97b76f57/hurghada-eb26-fibula.jpg);
}

.fblrohp-card.creta::after {
  background-image: url(https://images.ctfassets.net/1i1co12z89xy/v76oFqJF8WfahAl2swMdL/9d2bc9ccf4c6925f7ca07ece343f8ce5/creta-eb26-fibula.jpg);
}

.fblrohp-card.larnaca::after {
  background-image: url(https://images.ctfassets.net/1i1co12z89xy/2gnMo7fyqwQM0pInvBjgs/4b3a1338ee2a59e00f1642dd61151807/cipru-eb26-fibula.jpg);
}

.fblrohp-card.mallorca::after {
  background-image: url(https://images.ctfassets.net/1i1co12z89xy/2SVhm6pkENkSPBUSL6VqzW/076c2db3274804af08bf52b30a2412d5/mallorca-eb26-fibula.jpg);
}

.fblrohp-card.dubai::after {
  background-image: url(https://images.ctfassets.net/1i1co12z89xy/6kHH9hGWCVC7UYjvuHRdaW/ec32081509a8fb6e6ff47fa3207cd35d/dubai-eb26-fibula.jpg);
}

.fblrohp-card.travelexpert::after {
  background-image: url(https://images.ctfassets.net/1i1co12z89xy/7K4Au7T495BZQsnpQKv6Ew/325b3319cc29e28948028ce3d5e7e204/support_travelexpert-eb26-fibula.jpg);
}

/* Text Content */
.fblrohp-card h3 {
  position: relative;
  z-index: 2;
  font-size: 22px;
  font-weight: 800;
  color: white;
  margin: 0 0 8px 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.fblrohp-card p {
  position: relative;
  z-index: 2;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  max-width: 90%;
}

/* Expert Card Special Design */
.fblrohp-card.travelexpert {
  background: white;
  border: 2px solid var(--fbl-line);
  grid-column: 1 / -1;
}

.fblrohp-card.travelexpert::after {
  display: none;
}

.fblrohp-card.travelexpert::before {
  display: none;
}

.fblrohp-card.travelexpert h3 {
  color: var(--fbl-navy);
  text-shadow: none;
  font-size: 20px;
}

.fblrohp-card.travelexpert p {
  color: var(--fbl-muted);
  font-size: 14px;
}

.fblrohp-phone-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--fbl-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(250, 140, 22, 0.4);
  color: white;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.fblrohp-card.travelexpert:hover .fblrohp-phone-badge {
  transform: scale(1.1) rotate(15deg);
}

/* Footer Links */
.fblrohp-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid var(--fbl-line);
  padding-top: 30px;
  margin-top: 20px;
  color: var(--fbl-muted);
  font-size: 13px;
  text-align: center;
}

.fblrohp-iata {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: var(--fbl-navy);
  font-weight: 700;
  background: white;
}