/* ============================================================
   Noor Al Harmain Travels — Main Stylesheet
   ============================================================ */

:root {
  --primary:        #1a1a1a;
  --primary-dark:   #0d0d0d;
  --primary-light:  #2a2a2a;
  --secondary:      #c9a84c;
  --secondary-dark: #a8872e;
  --accent:         #f5f0e0;
  --text:           #1a1a1a;
  --text-muted:     #718096;
  --border:         #e2e8f0;
  --white:          #ffffff;
  --bg-light:       #f8fafc;
  --shadow:         0 4px 20px rgba(0,0,0,.08);
  --shadow-lg:      0 10px 40px rgba(0,0,0,.18);
  --radius:         12px;
  --radius-lg:      20px;
  --transition:     .3s ease;
}

* { box-sizing: border-box; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
  color: #fff;
  padding: 7px 0;
  font-size: .82rem;
  font-weight: 500;
}
.top-bar a { color: #fff; }
.top-bar a:hover { color: var(--secondary); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.main-nav {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  padding: 8px 0;
  z-index: 1030;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.4rem;
  box-shadow: 0 4px 12px rgba(201,168,76,.3);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-main {
  font-size: 1rem; font-weight: 700; color: var(--primary);
  letter-spacing: -.3px;
}
.brand-sub { font-size: .68rem; color: var(--secondary); font-weight: 600; letter-spacing: .5px; text-transform: uppercase; }

.main-nav .nav-link {
  font-weight: 500; color: var(--text); font-size: .9rem;
  padding: .5rem .8rem; transition: color var(--transition);
}
.main-nav .nav-link:hover,
.main-nav .nav-link.active { color: var(--primary); }

.main-nav .dropdown-menu {
  border: none; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: .5rem;
  border-top: 3px solid var(--primary);
}
.main-nav .dropdown-item {
  border-radius: 8px; padding: .45rem .9rem;
  font-size: .87rem; color: var(--text);
  transition: all var(--transition);
}
.main-nav .dropdown-item:hover { background: var(--primary-light); color: var(--primary); }

.mega-menu { min-width: 480px !important; }
.city-dropdown { columns: 2; min-width: 380px !important; }

.btn-whatsapp {
  background: #25d366; color: #fff; border-radius: 50px;
  padding: .4rem 1rem; font-weight: 600; font-size: .85rem;
  border: 2px solid #25d366; transition: all var(--transition);
}
.btn-whatsapp:hover { background: transparent; color: #25d366; }

.btn-call {
  background: var(--primary); color: #fff; border-radius: 50px;
  padding: .4rem 1rem; font-weight: 600; font-size: .85rem;
  border: 2px solid var(--primary); transition: all var(--transition);
}
.btn-call:hover { background: transparent; color: var(--primary); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #0d0d0d 100%);
  min-height: 85vh;
  display: flex; align-items: center;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201,168,76,.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.05) 0%, transparent 40%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-section .container { position: relative; z-index: 2; }

.hero-badge {
  display: inline-block; background: rgba(201,168,76,.2);
  border: 1px solid var(--secondary); color: var(--secondary);
  padding: .4rem 1rem; border-radius: 50px;
  font-size: .82rem; font-weight: 600; letter-spacing: .5px;
  margin-bottom: 1.2rem;
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800; color: #fff; line-height: 1.15;
  margin-bottom: 1rem;
}
.hero-title .highlight { color: var(--secondary); }

.hero-subtitle {
  font-size: clamp(.95rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.85); margin-bottom: 2rem; max-width: 540px;
}

.hero-buttons { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 2.5rem; }

.btn-hero-primary {
  background: var(--secondary); color: #fff;
  border: 2px solid var(--secondary); padding: .8rem 2rem;
  border-radius: 50px; font-weight: 700; font-size: 1rem;
  transition: all var(--transition);
}
.btn-hero-primary:hover { background: var(--secondary-dark); border-color: var(--secondary-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,168,76,.4); }

.btn-hero-whatsapp {
  background: #25d366; color: #fff;
  border: 2px solid #25d366; padding: .8rem 1.8rem;
  border-radius: 50px; font-weight: 700; font-size: 1rem;
  transition: all var(--transition);
}
.btn-hero-whatsapp:hover { background: transparent; color: #25d366; transform: translateY(-2px); }

.btn-hero-call {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.5); padding: .8rem 1.8rem;
  border-radius: 50px; font-weight: 600; font-size: 1rem;
  transition: all var(--transition);
}
.btn-hero-call:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; transform: translateY(-2px); }

.hero-stats {
  display: flex; gap: 2rem; flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-num { display: block; font-size: 1.8rem; font-weight: 800; color: var(--secondary); line-height: 1; }
.hero-stat-label { font-size: .78rem; color: rgba(255,255,255,.7); font-weight: 500; }

.hero-image-side { position: relative; }
.hero-mosque-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  color: #fff;
}
.hero-mosque-icon { font-size: 5rem; color: var(--secondary); margin-bottom: 1rem; }
.hero-mosque-card h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: .5rem; }
.hero-mosque-card p { font-size: .9rem; color: rgba(255,255,255,.8); margin: 0; }

.hero-floating-badge {
  position: absolute; background: #fff; border-radius: var(--radius);
  padding: .7rem 1rem; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: .6rem;
  font-size: .82rem; font-weight: 600;
}
.hero-floating-badge.badge-1 { top: -15px; right: -10px; }
.hero-floating-badge.badge-2 { bottom: 20px; left: -20px; }
.hero-floating-badge i { font-size: 1.2rem; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-tag {
  display: inline-flex; align-items: center; gap: .4rem;
  background: #111111;
  color: #c9a84c;
  border: 1px solid rgba(201,168,76,.35);
  padding: .38rem 1.1rem;
  border-radius: 50px; font-size: .78rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1rem;
  box-shadow: 0 2px 12px rgba(201,168,76,.12);
}
.section-title {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 800; color: #111111; margin-bottom: .8rem;
  line-height: 1.2;
}
.section-title span {
  color: #c9a84c;
  position: relative;
}
.section-subtitle { color: #666; font-size: .95rem; max-width: 600px; margin: 0 auto; line-height: 1.7; }
.section-divider {
  width: 70px; height: 4px;
  background: linear-gradient(90deg, #c9a84c, #f0d98a, #c9a84c);
  border-radius: 2px; margin: 1rem auto 0;
  box-shadow: 0 0 8px rgba(201,168,76,.4);
}

/* ============================================================
   PACKAGE CARDS
   ============================================================ */
.package-card {
  background: #fff; border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,.09);
  overflow: hidden; transition: transform .3s, box-shadow .3s;
  border: 1px solid #ebebeb;
  height: 100%;
  display: flex; flex-direction: column;
}
.package-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,.14); }

.package-card-img-wrap { position: relative; overflow: hidden; height: 210px; flex-shrink: 0; }
.package-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.package-card:hover .package-card-img-wrap img { transform: scale(1.06); }

.package-badges { position: absolute; top: 10px; left: 10px; display: flex; flex-wrap: wrap; gap: 5px; }
.badge-star    { background: #c9a84c; color: #111; padding: .22rem .55rem; border-radius: 50px; font-size: .7rem; font-weight: 800; }
.badge-type    { padding: .22rem .55rem; border-radius: 50px; font-size: .7rem; font-weight: 700; }
.badge-flight  { background: #111; color: #fff; }
.badge-land    { background: #0ea5e9; color: #fff; }
.badge-combo   { background: #f59e0b; color: #fff; }
.badge-featured { position: absolute; top: 10px; right: 10px; background: #ef4444; color: #fff; padding: .22rem .55rem; border-radius: 50px; font-size: .68rem; font-weight: 700; }

.package-card-body { padding: 1.1rem 1.2rem; flex: 1; display: flex; flex-direction: column; }

.package-stars { color: #c9a84c; font-size: .72rem; margin-bottom: .4rem; }

.package-card-title {
  font-size: .92rem; font-weight: 700; color: #111;
  margin-bottom: .65rem; line-height: 1.4;
  min-height: 2.6rem;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

.package-meta { display: flex; flex-direction: column; gap: .3rem; margin-bottom: .7rem; }
.package-meta-item {
  font-size: .78rem; color: #555;
  display: flex; align-items: center; gap: .4rem;
}
.package-meta-item i { color: #c9a84c; font-size: .7rem; width: 12px; text-align: center; }

.package-hotels-list {
  font-size: .76rem; color: #666; margin-bottom: .7rem;
  padding: .4rem .6rem; background: #f8f7f4;
  border-left: 3px solid #c9a84c; border-radius: 0 6px 6px 0;
  line-height: 1.5;
}
.package-hotels-list i { color: #c9a84c; }

.package-price-wrap { margin-top: auto; padding-top: .7rem; border-top: 1px dashed #e5e5e5; }
.price-from     { font-size: .7rem; color: #999; display: block; margin-bottom: .15rem; }
.price-original { font-size: .82rem; color: #aaa; text-decoration: line-through; display: block; }
.price-current  { font-size: 1.6rem; font-weight: 900; color: #111; line-height: 1; }
.price-per      { font-size: .72rem; color: #888; }
.price-saving   { display: inline-block; margin-top: .3rem; font-size: .72rem; color: #fff; font-weight: 700; background: #ef4444; padding: .15rem .5rem; border-radius: 50px; }

.package-card-footer {
  padding: .9rem 1.2rem;
  border-top: 1px solid #f0f0f0;
  background: #fafafa;
  display: flex; gap: .5rem; align-items: center;
}
.btn-pkg-detail {
  flex: 1; background: #111; color: #fff;
  border: none; border-radius: 8px; padding: .6rem .5rem;
  font-size: .78rem; font-weight: 700; text-align: center;
  text-decoration: none; display: flex; align-items: center; justify-content: center; gap: .35rem;
  transition: background .2s;
}
.btn-pkg-detail:hover { background: #c9a84c; color: #111; }
.btn-pkg-wa {
  width: 38px; height: 38px; min-width: 38px;
  background: #25d366; color: #fff; border: none; border-radius: 8px;
  font-size: .9rem; display: flex; align-items: center; justify-content: center;
  transition: background .2s; text-decoration: none;
}
.btn-pkg-wa:hover { background: #1db954; color: #fff; }
.btn-pkg-call {
  width: 38px; height: 38px; min-width: 38px;
  background: #c9a84c; color: #111; border: none; border-radius: 8px;
  font-size: .88rem; display: flex; align-items: center; justify-content: center;
  transition: background .2s; text-decoration: none;
}
.btn-pkg-call:hover { background: #b8963e; color: #111; }

/* ============================================================
   PACKAGE STAR SECTIONS — separate sections per star rating
   ============================================================ */
.pkg-star-section {
  padding: 4rem 0;
  border-top: 3px solid var(--star-color, #c9a84c);
}
.pkg-star-section:nth-child(odd) { background: #fff; }
.pkg-star-section:nth-child(even) { background: #f8f7f4; }

.pkg-star-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.pkg-star-label-wrap {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.pkg-star-label {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  color: #fff;
  font-size: .75rem;
  font-weight: 800;
  padding: .3rem .9rem;
  border-radius: 50px;
  letter-spacing: .5px;
  text-transform: uppercase;
  width: fit-content;
}
.pkg-star-label i { font-size: .6rem; }
.pkg-star-badge {
  font-size: .72rem;
  color: #888;
  font-weight: 600;
  letter-spacing: .3px;
  text-transform: uppercase;
}
.pkg-star-title {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: #111;
  margin: 0 0 .2rem;
}
.pkg-star-sub {
  font-size: .85rem;
  color: #666;
  margin: 0;
}
.pkg-star-viewall {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: #111;
  color: #c9a84c;
  border: 1.5px solid #c9a84c;
  padding: .55rem 1.3rem;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  align-self: center;
  transition: background .2s, color .2s;
}
.pkg-star-viewall:hover { background: #c9a84c; color: #111; }

/* ============================================================
   BROWSE BY CATEGORY SECTION
   ============================================================ */
.cat-browse-section { padding: 4.5rem 0; background: #0d0d0d; }
.cat-browse-title { font-size: clamp(1.4rem,3vw,2rem); font-weight: 800; color: #fff; margin-bottom: .5rem; }
.cat-browse-sub   { color: #999; font-size: .95rem; margin-bottom: 2.5rem; }

.cat-card {
  display: flex; flex-direction: column; align-items: flex-start;
  background: #1a1a1a; border: 1px solid #2a2a2a;
  border-radius: 14px; padding: 1.4rem 1.3rem;
  text-decoration: none; color: inherit;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  height: 100%;
}
.cat-card:hover {
  transform: translateY(-5px);
  border-color: #c9a84c;
  box-shadow: 0 8px 32px rgba(201,168,76,.18);
  color: inherit; text-decoration: none;
}
.cat-card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, #c9a84c22, #c9a84c44);
  border: 1px solid #c9a84c55;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: #c9a84c;
  margin-bottom: 1rem; flex-shrink: 0;
  transition: background .25s;
}
.cat-card:hover .cat-card-icon { background: linear-gradient(135deg, #c9a84c44, #c9a84c88); }
.cat-card-label {
  font-size: .62rem; font-weight: 800; letter-spacing: 1px;
  text-transform: uppercase; color: #c9a84c; margin-bottom: .35rem;
}
.cat-card-title { font-size: .98rem; font-weight: 700; color: #fff; margin-bottom: .4rem; line-height: 1.3; }
.cat-card-desc  { font-size: .77rem; color: #888; line-height: 1.5; flex: 1; }
.cat-card-arrow {
  margin-top: 1rem; font-size: .75rem; font-weight: 700;
  color: #c9a84c; display: flex; align-items: center; gap: .35rem;
  transition: gap .2s;
}
.cat-card:hover .cat-card-arrow { gap: .6rem; }

/* ============================================================
   DEPARTURE CITIES — image cards
   ============================================================ */
.city-section { background: #f5f4f0; padding: 5rem 0; }

.city-img-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,.13);
  transition: transform .3s, box-shadow .3s;
  background: #111;
}
.city-img-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0,0,0,.22);
}
.city-img-link { display: block; text-decoration: none; }

.city-img-wrap {
  position: relative;
  height: 155px;
  overflow: hidden;
}
.city-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .45s ease;
}
.city-img-card:hover .city-img-wrap img { transform: scale(1.1); }

.city-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.15) 60%);
}
.city-img-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: .6rem .75rem;
}
.city-img-name {
  font-size: .88rem; font-weight: 800; color: #fff;
  line-height: 1.2; margin-bottom: .1rem;
  text-shadow: 0 1px 4px rgba(0,0,0,.6);
}
.city-img-state {
  font-size: .68rem; font-weight: 700;
  color: #c9a84c; letter-spacing: .5px;
}
.city-call-btn {
  display: flex; align-items: center; justify-content: center; gap: .45rem;
  background: #0d0d0d;
  color: #c9a84c;
  border-top: 1.5px solid rgba(201,168,76,.4);
  padding: .52rem .5rem;
  font-size: .75rem; font-weight: 700;
  text-decoration: none;
  letter-spacing: .3px;
  transition: background .2s, color .2s;
}
.city-call-btn i { font-size: .72rem; }
.city-call-btn:hover { background: #c9a84c; color: #111; }

/* ============================================================
   TRUST STRIP — black/gold below booking form
   ============================================================ */
.trust-strip {
  background: #050505;
  border-top: 3px solid #c9a84c;
  border-bottom: 1px solid rgba(201,168,76,.18);
  padding: 0;
}
.trust-strip-item {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: 1.1rem 1rem;
  transition: background .2s;
}
.trust-strip-item:hover { background: rgba(201,168,76,.06); }
.ts-border { border-right: 1px solid rgba(201,168,76,.15); }
.ts-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: linear-gradient(135deg,#111,#1a1a1a);
  border: 1.5px solid #c9a84c;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: #c9a84c;
  box-shadow: 0 0 10px rgba(201,168,76,.15);
  flex-shrink: 0;
}
.ts-text { display: flex; flex-direction: column; gap: .05rem; min-width: 0; }
.ts-title {
  font-size: .82rem;
  font-weight: 700;
  color: #f0d98a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ts-sub {
  font-size: .72rem;
  color: rgba(255,255,255,.45);
  line-height: 1.3;
}

/* ============================================================
   HOLIDAY + UMRAH COMBO CARDS
   ============================================================ */
.combo-section { padding: 5rem 0; background: #f8f7f4; }

.combo-card {
  display: block;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 320px;
  text-decoration: none;
  box-shadow: 0 6px 30px rgba(0,0,0,.18);
  transition: transform .35s ease, box-shadow .35s ease;
  cursor: pointer;
}
.combo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
}

.combo-img {
  position: absolute; inset: 0;
  overflow: hidden;
}
.combo-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .55s ease;
}
.combo-card:hover .combo-img img { transform: scale(1.1); }

.combo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.92) 0%,
    rgba(0,0,0,.55) 45%,
    rgba(0,0,0,.08) 100%
  );
}

.combo-nights-badge {
  position: absolute; top: 14px; right: 14px;
  background: #c9a84c; color: #111;
  font-size: .72rem; font-weight: 800;
  padding: .28rem .8rem; border-radius: 50px;
  letter-spacing: .5px; text-transform: uppercase;
  box-shadow: 0 2px 10px rgba(0,0,0,.3);
}

.combo-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.4rem;
}
.combo-icon-box {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1rem; margin-bottom: .65rem;
  box-shadow: 0 2px 10px rgba(0,0,0,.35);
  flex-shrink: 0;
}
.combo-code {
  display: inline-block;
  font-size: .6rem; font-weight: 800; letter-spacing: .5px;
  background: rgba(255,255,255,.18);
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 4px;
  padding: .1rem .35rem;
  margin-right: .45rem;
  vertical-align: middle;
  line-height: 1.6;
}
.combo-title {
  font-size: 1.25rem; font-weight: 800; color: #fff;
  margin-bottom: .25rem; line-height: 1.2;
}
.combo-desc {
  font-size: .78rem; color: rgba(255,255,255,.7);
  margin-bottom: .65rem; line-height: 1.4;
}
.combo-perks {
  display: flex; flex-wrap: wrap; gap: .35rem;
  margin-bottom: .8rem;
}
.combo-perks span {
  display: inline-flex; align-items: center; gap: .3rem;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(4px);
  color: rgba(255,255,255,.9);
  font-size: .68rem; font-weight: 600;
  padding: .2rem .55rem; border-radius: 50px;
  border: 1px solid rgba(255,255,255,.15);
}
.combo-perks span i { color: #c9a84c; font-size: .6rem; }
.combo-cta {
  display: inline-flex; align-items: center; gap: .3rem;
  color: #f0d98a; font-size: .82rem; font-weight: 700;
  border-bottom: 1.5px solid rgba(201,168,76,.5);
  padding-bottom: .1rem;
  transition: color .2s, border-color .2s;
}
.combo-card:hover .combo-cta { color: #fff; border-color: #fff; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 1.8rem; box-shadow: var(--shadow);
  border: 1px solid var(--border); position: relative;
}
.testimonial-quote {
  position: absolute; top: -12px; left: 24px;
  font-size: 3rem; color: var(--primary); font-family: serif; line-height: 1;
}
.testimonial-stars { color: var(--secondary); font-size: .85rem; margin-bottom: .8rem; }
.testimonial-text { color: var(--text-muted); font-size: .88rem; margin-bottom: 1.2rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: .8rem; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem;
}
.testimonial-name { font-weight: 700; font-size: .88rem; }
.testimonial-meta { font-size: .75rem; color: var(--text-muted); }

/* ============================================================
   INQUIRY FORM
   ============================================================ */
.inquiry-section { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); padding: 5rem 0; }
.inquiry-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 2.5rem; box-shadow: var(--shadow-lg);
}
.form-label { font-weight: 600; font-size: .88rem; color: var(--text); margin-bottom: .35rem; }
.form-control, .form-select {
  border: 2px solid var(--border); border-radius: 10px;
  padding: .65rem 1rem; font-size: .9rem;
  transition: all var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(201,168,76,.1);
}
.btn-submit {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; border: none; border-radius: 50px;
  padding: .8rem 2.5rem; font-weight: 700; font-size: 1rem;
  transition: all var(--transition); width: 100%;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,168,76,.4); color: #fff; }

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-card {
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow); overflow: hidden;
  transition: all var(--transition); border: 1px solid var(--border);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-card-img { height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 1.3rem; }
.blog-cat-badge {
  display: inline-block; background: var(--primary-light); color: var(--primary);
  padding: .2rem .7rem; border-radius: 50px; font-size: .75rem; font-weight: 600;
  margin-bottom: .6rem;
}
.blog-card-title { font-size: .95rem; font-weight: 700; margin-bottom: .5rem; line-height: 1.4; }
.blog-card-title a { color: var(--text); }
.blog-card-title a:hover { color: var(--primary); }
.blog-card-meta { font-size: .78rem; color: var(--text-muted); display: flex; gap: 1rem; flex-wrap: wrap; }
.blog-card-excerpt { font-size: .83rem; color: var(--text-muted); margin: .6rem 0 1rem; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* ============================================================
   PACKAGE FILTER SIDEBAR
   ============================================================ */
.filter-sidebar {
  background: #fff; border-radius: var(--radius-lg);
  padding: 1.5rem; box-shadow: var(--shadow);
  position: sticky; top: 80px;
}
.filter-heading { font-weight: 700; font-size: 1rem; color: var(--text); margin-bottom: 1rem; padding-bottom: .7rem; border-bottom: 2px solid var(--primary-light); }
.filter-group { margin-bottom: 1.5rem; }
.filter-group-title { font-size: .82rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; margin-bottom: .6rem; }
.filter-check { display: flex; align-items: center; gap: .5rem; margin-bottom: .35rem; font-size: .87rem; cursor: pointer; }
.filter-check input { accent-color: var(--primary); }
.btn-apply-filter { width: 100%; background: var(--primary); color: #fff; border: none; border-radius: 10px; padding: .65rem; font-weight: 700; font-size: .9rem; transition: all var(--transition); }
.btn-apply-filter:hover { background: var(--primary-dark); }
.btn-reset-filter { width: 100%; background: transparent; color: var(--text-muted); border: 1px solid var(--border); border-radius: 10px; padding: .6rem; font-size: .85rem; margin-top: .5rem; transition: all var(--transition); }
.btn-reset-filter:hover { background: var(--bg-light); color: var(--text); }

/* ============================================================
   PACKAGE DETAIL PAGE
   ============================================================ */
.pkg-detail-header {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 3rem 0 5rem; color: #fff; position: relative; overflow: hidden;
}
.pkg-detail-header::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 60px;
  background: #f8fafc;
  clip-path: ellipse(60% 100% at 50% 100%);
}
.pkg-detail-rating .star { color: var(--secondary); }
.pkg-detail-tabs .nav-link {
  color: var(--text-muted); border: none; border-bottom: 3px solid transparent;
  font-weight: 600; padding: .8rem 1.2rem; border-radius: 0;
  transition: all var(--transition);
}
.pkg-detail-tabs .nav-link.active,
.pkg-detail-tabs .nav-link:hover {
  color: var(--primary); border-bottom-color: var(--primary); background: transparent;
}
.pkg-card-sticky {
  position: sticky; top: 80px;
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.pkg-price-header { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); padding: 1.5rem; color: #fff; }
.pkg-price-header .from { font-size: .8rem; opacity: .8; }
.pkg-price-header .amount { font-size: 2.2rem; font-weight: 800; }
.pkg-price-header .per { font-size: .8rem; opacity: .8; }
.pkg-price-body { padding: 1.5rem; }
.pkg-info-row { display: flex; align-items: center; gap: .7rem; padding: .6rem 0; border-bottom: 1px solid var(--border); font-size: .87rem; }
.pkg-info-row:last-child { border-bottom: none; }
.pkg-info-row i { color: var(--primary); width: 20px; text-align: center; }
.pkg-info-row strong { min-width: 100px; }
.itinerary-item { margin-bottom: 1.2rem; padding-bottom: 1.2rem; border-bottom: 1px solid var(--border); }
.itinerary-item:last-child { border-bottom: none; }
.itinerary-day {
  background: var(--primary); color: #fff;
  width: 36px; height: 36px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .85rem; margin-bottom: .5rem;
}
.itinerary-title { font-weight: 700; font-size: .95rem; margin-bottom: .3rem; }
.itinerary-desc { font-size: .87rem; color: var(--text-muted); }
.inclusion-list li { font-size: .88rem; padding: .3rem 0; }
.inclusion-list .include i { color: #22c55e; }
.inclusion-list .exclude i { color: #ef4444; }
.hotel-card-sm {
  background: var(--bg-light); border-radius: var(--radius);
  padding: 1rem; margin-bottom: .8rem; display: flex; gap: .8rem; align-items: center;
}
.hotel-card-sm-img { width: 70px; height: 60px; border-radius: 8px; object-fit: cover; }
.hotel-card-sm-name { font-weight: 700; font-size: .9rem; }
.hotel-card-sm-meta { font-size: .78rem; color: var(--text-muted); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.gallery-item { border-radius: 10px; overflow: hidden; aspect-ratio: 1; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.gallery-item:hover img { transform: scale(1.05); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #0d1f14; color: rgba(255,255,255,.8); }
.footer-top { padding: 4rem 0 2rem; }
.footer-brand { display: flex; align-items: center; gap: .8rem; }
.footer-brand-icon { font-size: 2rem; color: var(--secondary); }
.footer-brand-name { font-size: 1.1rem; font-weight: 800; color: #fff; }
.footer-desc { font-size: .85rem; color: rgba(255,255,255,.65); line-height: 1.7; }
.footer-contact-info p { font-size: .83rem; margin-bottom: .4rem; color: rgba(255,255,255,.7); }
.footer-contact-info a { color: rgba(255,255,255,.7); transition: color var(--transition); }
.footer-contact-info a:hover { color: var(--secondary); }
.footer-social { display: flex; gap: .6rem; flex-wrap: wrap; }
.footer-social a {
  width: 36px; height: 36px; background: rgba(255,255,255,.08);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); font-size: .9rem; transition: all var(--transition);
}
.footer-social a:hover { background: var(--secondary); color: #fff; }
.footer-heading { color: #fff; font-weight: 700; font-size: .95rem; margin-bottom: 1rem; position: relative; padding-bottom: .6rem; }
.footer-heading::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--secondary); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .35rem; }
.footer-links a { color: rgba(255,255,255,.65); font-size: .85rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--secondary); padding-left: 5px; }
/* ============================================================
   SEO DESCRIPTION SECTION
   ============================================================ */
.seo-desc-section { background: #fff; padding: 5rem 0; }
.seo-desc-wrap { max-width: 900px; margin: 0 auto; }
.seo-desc-heading {
  font-size: clamp(1.5rem,2.5vw,2.1rem); font-weight: 800;
  color: #111; margin-bottom: 1.4rem; line-height: 1.3;
}
.seo-desc-heading span { color: #c9a84c; }
.seo-desc-wrap p {
  font-size: .97rem; color: #444; line-height: 1.9;
  margin-bottom: 1.3rem;
}
.seo-desc-wrap strong { color: #111; }
.seo-sub-heading {
  font-size: 1.1rem; font-weight: 700; color: #111;
  border-left: 4px solid #c9a84c;
  padding-left: .75rem; margin: 2rem 0 .9rem;
}
.seo-sub-heading i { color: #c9a84c; }
.seo-special-card {
  background: #f9f8f5;
  border: 1px solid rgba(201,168,76,.25);
  border-top: 3px solid #c9a84c;
  border-radius: 12px;
  padding: 1.4rem;
  height: 100%;
}
.seo-special-icon {
  width: 44px; height: 44px;
  background: #111; color: #c9a84c;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: .8rem;
}
.seo-special-card h4 {
  font-size: .95rem; font-weight: 700; color: #111; margin-bottom: .5rem;
}
.seo-special-card p {
  font-size: .84rem; color: #555; line-height: 1.7; margin: 0;
}
.seo-closing {
  background: linear-gradient(135deg,#0d0d0d,#1a1a1a);
  color: rgba(255,255,255,.85);
  border-left: 4px solid #c9a84c;
  border-radius: 10px;
  padding: 1.2rem 1.5rem;
  font-size: .95rem; line-height: 1.8;
  margin-top: 1rem;
}
.seo-closing i { color: #c9a84c; }
.seo-closing strong { color: #f0d98a; }
.seo-closing em { color: #c9a84c; font-style: normal; font-weight: 600; }

.trust-badges-footer { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.trust-badge-item { display: flex; align-items: center; gap: .5rem; font-size: .78rem; color: rgba(255,255,255,.65); }
.trust-badge-item i { color: var(--secondary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.2rem 0; font-size: .82rem; color: rgba(255,255,255,.5); }
.footer-bottom a { color: rgba(255,255,255,.5); margin-left: .2rem; }
.footer-bottom a:hover { color: var(--secondary); }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.floating-buttons {
  position: fixed; left: 1.2rem; bottom: 5rem; z-index: 9998;
  display: flex; flex-direction: column; gap: .7rem;
}
/* Regular floating call button */
.float-btn {
  display: flex; align-items: center; gap: .5rem;
  border-radius: 50px; padding: .65rem 1.1rem;
  font-size: .85rem; font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  text-decoration: none; transition: all var(--transition);
  color: #fff;
}
.float-btn:hover { transform: translateX(5px); color: #fff; box-shadow: 0 6px 25px rgba(0,0,0,.3); }
.float-call     { background: var(--primary); }
.float-btn-label { font-size: .78rem; }

/* ── Animated WhatsApp Float Button ── */
.wa-float-wrap {
  position: relative;
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
}

/* Pulsing rings */
.wa-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,.45);
  animation: waRipple 2.4s ease-out infinite;
}
.wa-ring-2 { animation-delay: .8s; }
.wa-ring-3 { animation-delay: 1.6s; }

@keyframes waRipple {
  0%   { transform: scale(1);   opacity: .7; }
  100% { transform: scale(2.6); opacity: 0; }
}

/* The button itself */
.wa-float-btn {
  position: relative; z-index: 2;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 2rem;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(37,211,102,.55);
  animation: waPop 3s ease-in-out infinite;
  transition: transform .2s, box-shadow .2s;
}
.wa-float-btn:hover {
  color: #fff;
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37,211,102,.7);
}

/* Subtle scale-pop beat */
@keyframes waPop {
  0%,100% { transform: scale(1); }
  8%       { transform: scale(1.13); }
  16%      { transform: scale(1); }
  24%      { transform: scale(1.08); }
  32%      { transform: scale(1); }
}

/* Icon shake/vibrate every few seconds */
.wa-float-btn i {
  animation: waShake 3.5s ease-in-out infinite;
  display: inline-block;
}
@keyframes waShake {
  0%,45%,100% { transform: rotate(0deg); }
  48%  { transform: rotate(-18deg); }
  51%  { transform: rotate(18deg); }
  54%  { transform: rotate(-12deg); }
  57%  { transform: rotate(12deg); }
  60%  { transform: rotate(-6deg); }
  63%  { transform: rotate(6deg); }
  66%  { transform: rotate(0deg); }
}

.scroll-top-btn {
  position: fixed; right: 1.2rem; bottom: 1.5rem; z-index: 9997;
  background: var(--primary); color: #fff; border: none;
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow); transition: all var(--transition);
  opacity: 0; visibility: hidden;
}
.scroll-top-btn.visible { opacity: 1; visibility: visible; }
.scroll-top-btn:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 3.5rem 0; color: #fff; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.5rem); }
.page-hero .breadcrumb { background: transparent; padding: 0; }
.page-hero .breadcrumb-item, .page-hero .breadcrumb-item a { color: rgba(255,255,255,.75); font-size: .85rem; }
.page-hero .breadcrumb-item.active { color: var(--secondary); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.5); }

/* ============================================================
   MISC UTILITIES
   ============================================================ */
section { padding: 5rem 0; }
.section-light { background: var(--bg-light); }
.section-dark  { background: var(--text); color: #fff; }
.text-primary-custom { color: var(--primary) !important; }
.text-secondary-custom { color: var(--secondary) !important; }
.bg-primary-custom { background: var(--primary) !important; }
.badge-pill { border-radius: 50px; padding: .3rem .8rem; font-size: .75rem; }
.shadow-card { box-shadow: var(--shadow); }
.rounded-xl { border-radius: var(--radius-lg) !important; }

/* Pagination */
.pagination .page-link { color: var(--primary); border-radius: 8px; margin: 0 2px; font-weight: 600; }
.pagination .page-item.active .page-link { background: var(--primary); border-color: var(--primary); }

/* Alert */
.alert-success-custom {
  background: #0d0d0d;
  border: 1.5px solid #c9a84c;
  color: #f0d98a;
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  font-weight: 600;
  box-shadow: 0 0 16px rgba(201,168,76,.15);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .main-nav .btn-whatsapp, .main-nav .btn-call { display: none; }
  .mega-menu, .city-dropdown { min-width: 100% !important; columns: 1; }
  section { padding: 3rem 0; }
  .hero-section { min-height: auto; padding: 4rem 0; }
  .hero-image-side { display: none; }
}

@media (max-width: 767px) {
  .hero-title { font-size: 1.8rem; }
  .hero-buttons { flex-direction: column; }
  .hero-stats { gap: 1rem; }
  .float-btn-label { display: none; }
  .float-btn { border-radius: 50%; padding: .7rem; width: 48px; height: 48px; justify-content: center; }
  .wa-float-btn { width: 52px; height: 52px; font-size: 1.7rem; }
  .wa-float-wrap { width: 52px; height: 52px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-badges-footer { grid-template-columns: 1fr; }
}

@media (max-width: 575px) {
  .package-card-footer { flex-direction: column; }
  .btn-pkg-detail { text-align: center; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-up { animation: fadeInUp .6s ease forwards; }
.animate-delay-1 { animation-delay: .1s; }
.animate-delay-2 { animation-delay: .2s; }
.animate-delay-3 { animation-delay: .3s; }

/* ============================================================
   BOOKING FORM — Modern Design (Homepage, right after navbar)
   ============================================================ */
.bk-section {
  position: relative;
  background: url('../img/makkah-bg.jpg') center/cover no-repeat,
              linear-gradient(160deg,#000000 0%,#111111 100%);
}
.bk-overlay {
  position: absolute; inset: 0;
  background: rgba(4,20,10,.65); z-index: 1;
}

/* Card */
.bk-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

/* Card Header */
.bk-card-head {
  background: linear-gradient(135deg, #111111, #1a1a1a);
  padding: .8rem 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.bk-head-icon {
  width: 46px; height: 46px;
  background: rgba(255,255,255,.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: #c9a84c;
  flex-shrink: 0;
}
.bk-head-title {
  font-size: 1.15rem; font-weight: 700; color: #fff; margin: 0;
}
.bk-head-sub {
  font-size: .78rem; color: rgba(255,255,255,.7); margin: 0;
}
.bk-head-contact { display: flex; gap: .7rem; }
.bk-contact-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .45rem 1rem; border-radius: 50px;
  font-size: .8rem; font-weight: 600; text-decoration: none;
  transition: all .25s; white-space: nowrap;
}
.bk-contact-call {
  background: rgba(255,255,255,.15); color: #fff; border: 1px solid rgba(255,255,255,.3);
}
.bk-contact-call:hover { background: rgba(255,255,255,.25); color: #fff; }
.bk-contact-wa {
  background: #25d366; color: #fff;
}
.bk-contact-wa:hover { background: #1ebe5c; color: #fff; }

/* Card Body */
.bk-card-body { padding: 1rem 1.8rem 1.1rem; }

/* Section labels */
.bk-sec-label {
  font-size: .7rem; font-weight: 700; color: #c9a84c;
  text-transform: uppercase; letter-spacing: .8px;
  margin-bottom: .45rem; margin-top: .1rem;
  padding-left: .6rem;
  border-left: 3px solid #c9a84c;
}

/* Input fields with icon */
.bk-field {
  position: relative;
}
.bk-field-icon {
  position: absolute; left: .9rem; top: 50%;
  transform: translateY(-50%);
  color: #94a3b8; font-size: .82rem; pointer-events: none; z-index: 1;
}
.bk-field-inp {
  display: block; width: 100%;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: .45rem .9rem .45rem 2.3rem;
  font-size: .88rem;
  font-family: 'Poppins', sans-serif;
  color: #1e293b;
  background: #f8fafc;
  outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}
.bk-field-inp:focus {
  border-color: #c9a84c;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(201,168,76,.1);
}
.bk-field-inp::placeholder { color: #b0bec5; }
select.bk-field-inp {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .8rem center;
  padding-right: 2rem;
}

/* Small selects (nights/guests) */
.bk-mini-label {
  display: block;
  font-size: .68rem; font-weight: 600; color: #64748b;
  margin-bottom: .2rem;
}
.bk-field-inp-sm {
  padding: .38rem .5rem;
  border-radius: 10px; text-align: center;
  background-image: none;
  font-size: .82rem; font-weight: 600;
}

/* Star / Hotel rating toggle buttons */
.bk-star-btns {
  display: flex; gap: .5rem; flex-wrap: wrap;
}
.bk-star-btn {
  cursor: pointer; user-select: none;
}
.bk-star-btn input[type="checkbox"] { display: none; }
.bk-star-btn span {
  display: inline-flex; align-items: center; gap: .25rem;
  padding: .45rem .8rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 50px;
  font-size: .78rem; font-weight: 600; color: #64748b;
  background: #f8fafc;
  transition: all .2s;
  white-space: nowrap;
}
.bk-star-btn span i { color: #d1d5db; font-size: .65rem; }
.bk-star-btn input:checked + span {
  background: #1a1a1a; color: #c9a84c;
  border-color: #c9a84c;
}
.bk-star-btn input:checked + span i { color: #c9a84c; }
.bk-star-btn:hover span { border-color: #c9a84c; color: #c9a84c; }

/* Submit button */
.bk-submit-btn {
  background: linear-gradient(135deg,#e53935,#b71c1c);
  color: #fff; border: none; border-radius: 50px;
  padding: .6rem 1.6rem; font-size: .9rem; font-weight: 700;
  font-family: 'Poppins', sans-serif; cursor: pointer;
  transition: all .25s; white-space: nowrap; flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(229,57,53,.3);
}
.bk-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(229,57,53,.45);
}
.bk-submit-btn:disabled { opacity: .65; transform: none; }

/* Responsive */
@media (max-width: 991px) {
  .bk-card-body { padding: 1.2rem 1.2rem 1.4rem; }
  .bk-card-head { padding: 1rem 1.2rem; }
}
@media (max-width: 767px) {
  .bk-card-body  { padding: 1rem 1rem 1.2rem; }
  .bk-submit-btn { width: 100%; justify-content: center; }
  .bk-captcha-inp { flex: 1; }
  .bk-head-contact { display: none !important; }
}

/* ============================================================
   PROMO POPUP
   ============================================================ */
.promo-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.65);
  z-index: 9998;
  backdrop-filter: blur(3px);
  animation: fadeIn .3s ease;
}
.promo-overlay.active { display: block; }

.promo-popup {
  display: none;
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -48%) scale(.94);
  z-index: 9999;
  width: 92%; max-width: 440px;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
  text-align: center;
  padding: 2rem 2rem 1.5rem;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), opacity .3s;
  opacity: 0;
}
.promo-popup.active {
  display: block;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  animation: popupIn .4s cubic-bezier(.34,1.56,.64,1) forwards;
}
@keyframes popupIn {
  from { transform: translate(-50%, -44%) scale(.88); opacity: 0; }
  to   { transform: translate(-50%, -50%) scale(1);  opacity: 1; }
}

/* Close button */
.promo-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 32px; height: 32px;
  background: #f1f5f9; border: none; border-radius: 50%;
  font-size: 1.2rem; color: #64748b; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s; line-height: 1;
}
.promo-close:hover { background: #e2e8f0; color: #1e293b; }

/* Top badge */
.promo-badge {
  display: inline-block;
  background: linear-gradient(135deg,#c9a84c,#a8872e);
  color: #fff; font-size: .72rem; font-weight: 700;
  padding: .3rem .9rem; border-radius: 50px;
  letter-spacing: .8px; text-transform: uppercase;
  margin-bottom: 1rem;
}

/* Icon */
.promo-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg,#1a1a1a,#0d0d0d);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: #c9a84c;
  margin: 0 auto .9rem;
  box-shadow: 0 8px 24px rgba(201,168,76,.3);
}

/* Title */
.promo-title {
  font-size: 1.4rem; font-weight: 800; color: #1e293b;
  line-height: 1.25; margin-bottom: .8rem;
}

/* Discount badge */
.promo-discount {
  display: inline-flex; align-items: baseline; gap: .3rem;
  background: linear-gradient(135deg,#e53935,#b71c1c);
  border-radius: 16px; padding: .5rem 1.4rem;
  margin-bottom: .9rem;
  box-shadow: 0 6px 20px rgba(229,57,53,.35);
}
.promo-pct {
  font-size: 2.8rem; font-weight: 900; color: #fff; line-height: 1;
}
.promo-off {
  font-size: 1.1rem; font-weight: 800; color: rgba(255,255,255,.85);
}

/* Description */
.promo-desc {
  font-size: .88rem; color: #64748b; line-height: 1.6;
  margin-bottom: .9rem;
}

/* Perks */
.promo-perks {
  display: flex; justify-content: center; gap: 1rem;
  flex-wrap: wrap; margin-bottom: 1.2rem;
}
.promo-perks span {
  font-size: .78rem; font-weight: 600; color: #c9a84c;
  display: flex; align-items: center; gap: .3rem;
}
.promo-perks span i { color: #c9a84c; }

/* Buttons */
.promo-btns {
  display: flex; gap: .8rem; margin-bottom: .9rem;
}
.promo-btn-call,
.promo-btn-wa {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: .6rem; padding: .7rem 1rem;
  border-radius: 14px; text-decoration: none;
  transition: all .25s; font-family: 'Poppins', sans-serif;
}
.promo-btn-call i, .promo-btn-wa i {
  font-size: 1.3rem; flex-shrink: 0;
}
.promo-btn-call span, .promo-btn-wa span {
  display: flex; flex-direction: column; text-align: left;
}
.promo-btn-call small, .promo-btn-wa small {
  font-size: .65rem; font-weight: 600; opacity: .8; line-height: 1;
}
.promo-btn-call {
  background: linear-gradient(135deg,#c9a84c,#111111);
  color: #fff; font-size: .85rem; font-weight: 700;
  box-shadow: 0 4px 14px rgba(201,168,76,.3);
}
.promo-btn-call:hover {
  background: linear-gradient(135deg,#0d0d0d,#0a3019);
  color: #fff; transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201,168,76,.4);
}
.promo-btn-wa {
  background: linear-gradient(135deg,#25d366,#128c7e);
  color: #fff; font-size: .85rem; font-weight: 700;
  box-shadow: 0 4px 14px rgba(37,211,102,.3);
}
.promo-btn-wa:hover {
  background: linear-gradient(135deg,#1ebe5c,#0e7a6e);
  color: #fff; transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37,211,102,.4);
}

/* Fine print */
.promo-note {
  font-size: .7rem; color: #94a3b8; margin: 0;
}

@media (max-width: 480px) {
  .promo-popup   { padding: 1.5rem 1.2rem 1.2rem; }
  .promo-title   { font-size: 1.2rem; }
  .promo-pct     { font-size: 2.2rem; }
  .promo-btns    { flex-direction: column; }
}

/* ============================================================
   ADMIN PANEL (loaded separately, stub here)
   ============================================================ */
