@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

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

body {
  font-family: 'Montserrat', sans-serif;
  min-height: 100vh;
  background: #090E17;
  color: #FFFFFF;
  overflow-x: hidden;
  width: 100%;
}

/* ==========================================================================
   1. HERO SECTION (YOUR EXACT CODE UNTOUCHED)
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 14, 23, 0.72) 0%, rgba(15, 23, 42, 0.88) 100%),
    url('./assets/dubai_business_hero.jpg') center/cover no-repeat,
    url('./assets/dubai_skyline.jpg') center/cover no-repeat;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 24px 70px;
  display: grid;
  grid-template-columns: 1fr 420px;
  grid-template-areas:
      "header header"
      "left form";
  gap: 50px;
  align-items: center;
}

.hero-header {
  grid-area: header;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.hero-left {
  grid-area: left;
}

.hero-form-container {
  grid-area: form;
}



/* ==========================================================================
   MISSING HERO LEFT-SIDE STYLES
   Add this block after .hero-form-container styles, before the media queries
   ========================================================================== */

/* --- Logo + Call button row --- */
.hero-logo img {
  height: 44px;
  width: auto;
  display: block;
}

.hero-call {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  border-radius: 50px;
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-call:hover {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.1);
}

.hero-call i {
  color: var(--gold-primary);
  font-size: 1rem;
}

.hero-call div {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.hero-call span {
  font-size: 0.7rem;
  color: #94A3B8;
  font-weight: 500;
}

.hero-call strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: #FFFFFF;
}

/* --- Glass panel wrapping the headline/checklist --- */
.glass-panel {
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 40px;
  max-width: 694px;

}

.hero-left h1 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  font-weight: 800;
  line-height: 1.25;
  color: #FFFFFF;
  margin-bottom: 18px;
}

.hero-price {
  font-size: 1rem;
  color: #CBD5E1;
  margin-bottom: 22px;
}

.hero-price strong {
  color: var(--gold-primary);
  font-size: 1.15rem;
  font-weight: 800;
}

/* --- Checklist --- */
.hero-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.hero-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #E2E8F0;
  font-weight: 500;
}

.chk {
  flex-shrink: 0;
  width: 21px;
  height: 21px;
}

/* Tabby inline logo */
.tabby-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.tabby-logo-wrap {
  display: inline-flex;
  align-items: center;
}

.tabby-logo {
  height: 25px;
  width: auto;
  display: block;
}

/* --- Disclaimer --- */
.disclaimer {
  font-size: 0.72rem;
  color: #64748B;
  line-height: 1.5;
}







/* --- HERO GLASS FORM DESIGN (MATCHING PAGE PALETTE) --- */
.hero-glass-card {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-gold);
  border-radius: 28px;
  padding: 30px 26px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.15);
  position: relative;
  overflow: hidden;
}

.hero-glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold-gradient);
}

.hero-form-header {
  text-align: center;
  margin-bottom: 22px;
}

.hero-badge-pill {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  color: var(--gold-primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.hero-form-header h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.hero-form-header p {
  font-size: 0.82rem;
  color: #94A3B8;
  line-height: 1.4;
}

.hero-form-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-field {
  position: relative;
}

.hero-field-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-primary);
  font-size: 0.9rem;
  pointer-events: none;
  z-index: 2;
}

.hero-field input,
.hero-field select {
  width: 100%;
  padding: 12px 14px 12px 42px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.86rem;
  outline: none;
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
}

.hero-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 4.5L6 8L9.5 4.5' stroke='%2394A3B8' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.hero-field select option {
  background: #0F172A;
  color: #FFFFFF;
  padding: 10px;
}

.hero-field input::placeholder {
  color: #64748B;
}

.hero-field input:focus,
.hero-field select:focus {
  border-color: var(--gold-primary);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.hero-phone-row {
  display: flex;
  gap: 8px;
}

.hero-flag-box {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  color: #E2E8F0;
  font-size: 0.82rem;
  font-weight: 600;
  flex-shrink: 0;
}

.hero-phone-row input {
  flex: 1;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.86rem;
  outline: none;
  transition: all 0.3s ease;
}

.hero-phone-row input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.btn-hero-cta {
  width: 100%;
  padding: 15px;
  border-radius: 50px;
  background: linear-gradient(135deg, #F5C542, #D4AF37, #997A15);
  color: #0B0F19;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  margin-top: 6px;
  transition: all 0.35s ease;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.35);
}

.btn-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.5);
}

.hero-privacy-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 0.74rem;
  color: #64748B;
  font-weight: 500;
}

@media(max-width: 991px){
  .hero-inner{
    grid-template-columns: 1fr;
    grid-template-areas: "header" "left" "form";
    gap: 40px;
    padding: 60px 24px;
  }
  .hero-header{
    flex-direction: column;
    gap: 18px;
    margin-bottom: 20px;
  }
  .hero-logo img{ height: 52px; }
  .hero-call{ width: 100%; justify-content: center; }
  .glass-panel{ width: 100%; max-width: 100%; }
  .form-stack{ max-width: 420px; width: 100%; margin: 0 auto; }
}

@media(max-width: 768px){
  .hero-inner{ padding: 40px 20px; gap: 30px; }
  .glass-panel{ padding: 28px 22px; }
  .hero-left h1{ font-size: 1.9rem; }
  .form-red{ border-radius: 24px; padding: 22px 20px 100px; width: 100%; height: auto; }
  .form-white{ margin-top: -80px; width: 100%; height: auto; transform: none; }
  .form-innerwhite{ transform: none; width: 100%; }
}

/* ==========================================================================
   2. REWORKED ATTENTION-SEEKING POST-HERO SECTIONS
   ========================================================================== */

:root {
  --gold-primary: #D4AF37;
  --gold-gradient: linear-gradient(135deg, #FFF 0%, #F5C542 50%, #B8860B 100%);
  --blue-glow: #008DC2;
  --bg-dark-card: rgba(15, 23, 42, 0.75);
  --border-glass: rgba(255, 255, 255, 0.12);
  --border-gold: rgba(212, 175, 55, 0.35);
}

.section-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(0, 141, 194, 0.15);
  border: 1px solid rgba(0, 141, 194, 0.4);
  border-radius: 50px;
  color: #38BDF8;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-head-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 14px;
}

.section-head-title span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-sub-desc {
  font-size: 1.05rem;
  color: #94A3B8;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- UAE EXPANSION PACKAGES --- */
.uae-pricing {
  padding: 100px 24px;
  background: linear-gradient(180deg, #090E17 0%, #0F172A 100%);
  position: relative;
}

.filter-tab-wrap {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 36px 0 50px;
  flex-wrap: wrap;
}

.filter-tab-btn {
  padding: 12px 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: 50px;
  color: #94A3B8;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-tab-btn.active, .filter-tab-btn:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold-primary);
  color: #F8FAFC;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
}

.uae-pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1320px;
  margin: 0 auto;
}

.uae-card {
  background: var(--bg-dark-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 34px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.35s ease;
}

.uae-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold-primary);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 25px rgba(212, 175, 55, 0.2);
}

.uae-card.featured-gold {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.15) 0%, rgba(15, 23, 42, 0.9) 100%);
  border-color: var(--gold-primary);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.25);
}

.badge-glow {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #D4AF37, #997A15);
  color: #000;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 5px 18px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.uae-card__title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.uae-card__price-tag {
  margin: 18px 0 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-glass);
}

.price-sub {
  font-size: 0.78rem;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-val {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold-primary);
  line-height: 1.1;
}

.uae-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
  flex-grow: 1;
}

.uae-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: #E2E8F0;
  line-height: 1.45;
}

.uae-card__features li i {
  color: #10B981;
  font-size: 1rem;
  margin-top: 2px;
}

.card-btn-action {
  width: 100%;
  padding: 14px 20px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn-gold-action {
  background: linear-gradient(135deg, #F5C542, #D4AF37, #997A15);
  color: #0B0F19;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
}

.btn-gold-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.5);
}

.btn-dark-action {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  border: 1px solid var(--border-glass);
}

.btn-dark-action:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--gold-primary);
}

/* --- SERVICES SECTION --- */
.services-section {
  padding: 100px 24px;
  background: #090E17;
}

.services-grid-wrapper {
  max-width: 1280px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 20px rgba(212, 175, 55, 0.2);
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(0, 141, 194, 0.15);
  border: 1px solid rgba(0, 141, 194, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38BDF8;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.service-card-desc {
  font-size: 0.88rem;
  color: #94A3B8;
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}

.service-card-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* --- ABOUT US SECTION --- */
.about-section {
  padding: 100px 24px;
  background: #0E1526;
  border-top: 1px solid var(--border-glass);
}

.about-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.video-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: 0 25px 60px rgba(0,0,0,0.7);
}

.video-thumbnail {
  width: 100%;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  font-size: 1.8rem;
  cursor: pointer;
  box-shadow: 0 0 35px rgba(212, 175, 55, 0.8);
  transition: all 0.3s ease;
}

.play-button:hover { transform: translate(-50%, -50%) scale(1.1); }

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 30px 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  text-align: center;
}

.stat-val-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold-primary);
}

.stat-val-lbl {
  font-size: 0.75rem;
  color: #94A3B8;
  text-transform: uppercase;
}

/* --- BENEFITS SECTION --- */
.benefits-section {
  padding: 100px 24px;
  background: #090E17;
}

.benefits-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: all 0.35s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.benefit-card i {
  font-size: 1.8rem;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.benefit-card span {
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
}

/* ==========================================================================
   RESPONSIVE: PACKAGES / SERVICES / ABOUT / WHY-CHOOSE-US
   ========================================================================== */

/* ---------- TABLET (<=1100px): 4-col -> 2-col ---------- */
@media (max-width: 1100px) {
  .uae-pricing,
  .services-section,
  .about-section,
  .benefits-section {
    padding: 70px 20px;
  }

  .uae-pricing__grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-video { max-width: 560px; margin: 0 auto; width: 100%; }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

/* ---------- MOBILE (<=768px): 2-col -> 1-col, tighten spacing ---------- */
@media (max-width: 768px) {
  .uae-pricing,
  .services-section,
  .about-section,
  .benefits-section {
    padding: 56px 16px;
  }

  .section-head-title { font-size: clamp(1.7rem, 7vw, 2.2rem); }
  .section-sub-desc { font-size: 0.95rem; padding: 0 8px; }

  .filter-tab-wrap { gap: 10px; margin: 24px 0 32px; }
  .filter-tab-btn { padding: 10px 18px; font-size: 0.82rem; }

  .uae-pricing__grid,
  .services-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .uae-card { padding: 28px 22px; }
  .price-val { font-size: 2rem; }

  .service-card { padding: 26px 20px; }

  .about-container { gap: 30px; }
  .about-content h2 { font-size: 1.8rem !important; }
  .about-stats-grid { padding: 16px; gap: 10px; }
  .stat-val-num { font-size: 1.4rem; }
  .stat-val-lbl { font-size: 0.68rem; }

  .benefit-card { padding: 22px 18px; gap: 14px; }
  .benefit-card i { font-size: 1.5rem; }
  .benefit-card span { font-size: 0.9rem; }
}

/* ---------- SMALL MOBILE (<=480px): fine-tune ---------- */
@media (max-width: 480px) {
  .section-tag-pill { font-size: 0.72rem; padding: 5px 14px; }

  .filter-tab-wrap { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; padding-bottom: 4px; }
  .filter-tab-btn { flex-shrink: 0; }

  .uae-card__title { font-size: 1.25rem; }
  .price-val { font-size: 1.8rem; }

  .about-stats-grid { grid-template-columns: repeat(3, 1fr); }
  .about-content a.card-btn-action { width: 100% !important; text-align: center; display: block !important; }

  .benefit-card { flex-direction: column; text-align: center; gap: 10px; }
}

/* ==========================================================================
   3. ULTRA-MODERN LUXURY CAROUSEL TESTIMONIAL STYLING
   ========================================================================== */

/* Shimmer animation for background */
@keyframes shimmer-slide {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes float-glow {
  0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.15); }
}

.testimonials-carousel-section {
  padding: 100px 24px;
  background: linear-gradient(180deg, #0B111E 0%, #060A12 50%, #0B111E 100%);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  position: relative;
  overflow: hidden;
}

/* Decorative shimmer glow orbs */
.testimonials-carousel-section::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float-glow 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.testimonials-carousel-section::after {
  content: '';
  position: absolute;
  bottom: 20%;
  right: 10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0, 141, 194, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: float-glow 10s ease-in-out infinite reverse;
  pointer-events: none;
  z-index: 0;
}

.carousel-section-inner {
  max-width: 1350px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.trust-summary-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: var(--bg-dark-card);
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  padding: 14px 32px;
  max-width: 650px;
  margin: 0 auto 50px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
}

/* Shimmer sweep effect on the trust pill */
.trust-summary-pill::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.08), transparent);
  animation: shimmer-slide 6s ease-in-out infinite;
}

.modern-carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.carousel-arrow {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 10;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(0,0,0,0.7);
}

.carousel-arrow:hover {
  background: linear-gradient(135deg, #D4AF37, #B8860B);
  color: #000000;
  transform: scale(1.12);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.5), 0 12px 30px rgba(0,0,0,0.5);
  border-color: transparent;
}

.carousel-track-wrap {
  width: 100%;
  overflow: hidden;
  border-radius: 28px;
  padding: 30px 5px;
}

.carousel-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.carousel-card-slide {
  flex: 0 0 33.333%;
  padding: 0 14px;
  box-sizing: border-box;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s ease;
  transform: scale(0.9);
  opacity: 0.55;
}

/* Center/active card gets full scale and opacity */
.carousel-card-slide.active-focus {
  transform: scale(1.05);
  opacity: 1;
  z-index: 5;
}

/* Neighboring cards get intermediate state */
.carousel-card-slide.near-focus {
  transform: scale(0.95);
  opacity: 0.8;
}

.carousel-card-inner {
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 34px 30px;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  overflow: hidden;
}

/* Subtle shimmer on card */
.carousel-card-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}

.carousel-card-inner:hover::before {
  left: 100%;
}

.carousel-card-slide.active-focus .carousel-card-inner {
  border-color: var(--gold-primary);
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.8),
    0 0 30px rgba(212, 175, 55, 0.2),
    inset 0 1px 0 rgba(212, 175, 55, 0.15);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(15, 23, 42, 0.85) 100%);
}

.carousel-card-inner:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 25px rgba(212, 175, 55, 0.2);
}

.card-quote-bg {
  font-size: 5rem;
  line-height: 1;
  color: var(--gold-primary);
  opacity: 0.15;
  position: absolute;
  top: 12px;
  right: 22px;
  font-family: Georgia, 'Times New Roman', serif;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.carousel-card-slide.active-focus .card-quote-bg {
  opacity: 0.3;
}

.carousel-user-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.user-avatar-badge {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.avatar-gold {
  background: linear-gradient(135deg, #F5C542, #B8860B);
  color: #000000;
}

.avatar-cyan {
  background: linear-gradient(135deg, #38BDF8, #0284C7);
  color: #FFFFFF;
}

.user-details h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
}

.user-tag {
  font-size: 0.75rem;
  color: #10B981;
  font-weight: 600;
  display: block;
  margin-top: 3px;
}

.stars-gold-rate {
  color: #F59E0B;
  font-size: 1rem;
  margin-left: auto;
  letter-spacing: 2px;
}

.carousel-review-content {
  font-size: 0.94rem;
  color: #CBD5E1;
  line-height: 1.8;
  font-style: italic;
}

.carousel-dots-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-dot:hover {
  background: rgba(212, 175, 55, 0.4);
  transform: scale(1.2);
}

.carousel-dot.active {
  width: 32px;
  border-radius: 20px;
  background: linear-gradient(135deg, #F5C542, #D4AF37);
  border-color: transparent;
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.6);
}

/* Responsive Carousel Breaks */
@media (max-width: 1100px) {
  .carousel-card-slide { flex: 0 0 50%; }
  .carousel-track-wrap { padding: 25px 5px; }
}

@media (max-width: 768px) {
  .carousel-card-slide { flex: 0 0 100%; }
  .carousel-arrow { width: 46px; height: 46px; font-size: 1rem; }
  .carousel-track-wrap { padding: 20px 5px; }
  .carousel-card-slide { transform: scale(1) !important; opacity: 1 !important; }
  .testimonials-carousel-section { padding: 70px 16px; }

  .carousel-card-inner { padding: 26px 22px; min-height: auto; }
  .carousel-user-header { flex-wrap: wrap; gap: 10px; }
  .user-avatar-badge { width: 44px; height: 44px; font-size: 1rem; }
  .user-details h4 { font-size: 1rem; }
  .stars-gold-rate { margin-left: 0; flex-basis: 100%; order: 3; }
  .card-quote-bg { font-size: 3.5rem; top: 6px; right: 16px; }
  .carousel-review-content { font-size: 0.9rem; }
  .trust-summary-pill { flex-direction: column; gap: 8px; padding: 16px 24px; text-align: center; }
  .modern-carousel-container { gap: 8px; }
}

@media (max-width: 480px) {
  .carousel-arrow { width: 38px; height: 38px; font-size: 0.85rem; }
  .carousel-card-inner { padding: 22px 18px; }
}

/* --- FAQ SECTION --- */
.faq-section {
  padding: 90px 24px;
  background: #090E17;
}

.faq-accordion-wrap {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-acc-item {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-acc-item.active { border-color: var(--gold-primary); }

.faq-acc-header {
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  color: #FFFFFF;
}

.faq-acc-icon {
  font-size: 1.3rem;
  color: var(--gold-primary);
  transition: transform 0.3s ease;
}

.faq-acc-item.active .faq-acc-icon { transform: rotate(45deg); }

.faq-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: #94A3B8;
  font-size: 0.95rem;
  line-height: 1.7;
  padding: 0 26px;
}

.faq-acc-item.active .faq-acc-body {
  max-height: 300px;
  padding: 0 26px 22px;
}

/* ==========================================================================
   4. PROFESSIONAL LUXURY FOOTER STYLING
   ========================================================================== */

.pro-footer {
  font-family: 'Montserrat', sans-serif;
  background: #04070D;
  border-top: 1px solid var(--border-glass);
  position: relative;
  overflow: hidden;
}

.pro-footer-body {
  padding: 80px 24px 60px;
  background: linear-gradient(180deg, #070B14 0%, #04070D 100%);
}

.pro-footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1.3fr 1.1fr;
  gap: 48px;
  align-items: start;
}

/* --- Column 1: Brand & Logo --- */
.pro-footer-logo img {
  height: 60px;
  width: auto;
  display: block;
  margin-bottom: 20px;
}

.pro-brand-bio {
  font-size: 0.9rem;
  color: #94A3B8;
  line-height: 1.75;
  margin-bottom: 24px;
}

.pro-social-links {
  display: flex;
  gap: 12px;
}

.pro-social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E2E8F0;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.35s ease;
}

.pro-social-links a:hover {
  background: linear-gradient(135deg, #F5C542, #D4AF37);
  color: #0B0F19;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.35);
}

/* --- Column 2: Contact Information --- */
.pro-col-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pro-col-title i {
  color: var(--gold-primary);
}

.pro-contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  transition: all 0.3s ease;
}

.pro-contact-card:hover {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.04);
  transform: translateX(4px);
}

.pro-contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.pro-contact-info h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.pro-contact-info p, 
.pro-contact-info a {
  font-size: 0.86rem;
  color: #94A3B8;
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.pro-contact-info a:hover {
  color: var(--gold-primary);
}

/* --- Column 3: Working Hours --- */
.pro-hours-box {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
}

.pro-hours-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.pro-hours-row:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.pro-hours-day {
  font-size: 0.88rem;
  font-weight: 700;
  color: #E2E8F0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pro-hours-day i {
  color: var(--gold-primary);
  font-size: 0.85rem;
}

.pro-hours-time {
  font-size: 0.84rem;
  color: #94A3B8;
  padding-left: 24px;
}

.pro-hours-row.closed .pro-hours-time {
  color: #EF4444;
  font-weight: 500;
}

.pro-badge-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 12px;
  color: #10B981;
  font-size: 0.82rem;
  font-weight: 700;
}

/* --- Bottom Copyright Bar --- */
.pro-footer-bottom {
  background: #020408;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 22px 24px;
}

.pro-footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #64748B;
  flex-wrap: wrap;
  gap: 14px;
}

.pro-bottom-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pro-bottom-links a {
  color: #64748B;
  text-decoration: none;
  transition: color 0.2s ease;
}

.pro-bottom-links a:hover {
  color: var(--gold-primary);
}

.pro-bottom-links span {
  color: #334155;
}

/* Responsive Footer */
@media (max-width: 1100px) {
  .pro-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .pro-col-brand {
    grid-column: span 2;
    text-align: center;
  }
  .pro-footer-logo {
    display: flex;
    justify-content: center;
  }
  .pro-social-links {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .pro-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .pro-col-brand {
    grid-column: span 1;
    text-align: center;
  }
  .pro-footer-logo {
    display: flex;
    justify-content: center;
  }
  .pro-social-links {
    justify-content: center;
  }
  .pro-footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}


/* ==========================================================================
   TABBY INSTALLMENT BANNER SECTION
   Add anywhere after your :root variables are defined
   ========================================================================== */

   .tabby-banner {
    width: 100%;
    padding: 22px 24px;
    background: var(--bg-dark-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
  }
  
  .tabby-banner-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }
  
  .tabby-banner-logo-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid var(--border-gold);
    border-radius: 50px;
  }
  
  .tabby-banner-logo-pill img {
    height: 38px;
    width: auto;
    display: block;
  }
  
  .tabby-banner-text {
    font-size: 1.8rem;
    font-weight: 500;
    color: #E2E8F0;
    text-align: center;
  }
  
  .tabby-banner-text strong {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
  }
  
  @media (max-width: 576px) {
    .tabby-banner {
      padding: 18px 20px;
    }
    .tabby-banner-text {
      font-size: 0.88rem;
    }
  }