@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;900&display=swap');

/* ============================================================
   ROOT VARS + RESET
   ============================================================ */
:root {
  --color-primary:      #F2E9DC;
  --color-primary-dark: #E1D4C7;
  --color-secondary:    #54565A;
  --color-dark:         #26252B;
  --color-gold:         #C9A96E;
  --color-gold-light:   #E8D5A3;
  --color-text:         #1a1a1a;
  --color-text-muted:   #6b6b6b;
  --color-border:       #d8d8d8;
  --color-white:        #fff;
  --font-main:          'Cairo', sans-serif;
  --container-max:      1280px;
  --container-pad:      clamp(16px, 4vw, 48px);
  --nav-height:         80px;
  --tr:                 0.3s ease;
  --pill:               50px;
  --shadow-card:        0 2px 20px rgba(0,0,0,0.08);
  --shadow-hover:       0 8px 40px rgba(0,0,0,0.14);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  color: var(--color-text);
  background: #fff;
  direction: rtl;
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-main); }
input, textarea, select {
  font-family: var(--font-main);
  direction: rtl;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section { padding: 80px 0; }
.section--sm { padding: 50px 0; }
.section--lg { padding: 100px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
}

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-dark);
}

.section-subtitle {
  font-size: 17px;
  color: var(--color-text-muted);
  margin-top: 12px;
  max-width: 560px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--pill);
  font-size: 15px;
  font-weight: 600;
  transition: var(--tr);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-gold);
  color: #fff;
}
.btn--primary:hover {
  background: #b8904f;
  transform: translateY(-1px);
}

.btn--dark {
  background: var(--color-dark);
  color: #fff;
}
.btn--dark:hover {
  background: #3d3c42;
}

.btn--outline {
  background: transparent;
  border-color: var(--color-dark);
  color: var(--color-dark);
}
.btn--outline:hover {
  background: var(--color-dark);
  color: #fff;
}

.btn--outline-white {
  background: transparent;
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

.btn i { font-size: 13px; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
  color: var(--color-gold);
  transition: var(--tr);
  text-decoration: none;
}
.link-arrow:hover { gap: 10px; }
.link-arrow i { font-size: 12px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; right: 0; left: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: background var(--tr), box-shadow var(--tr);
}

.nav.scrolled {
  background: rgba(38, 37, 43, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  color: #fff;
}
.nav__logo svg { height: 40px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 500;
  transition: color var(--tr);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  right: 0; left: 0;
  height: 1px;
  background: var(--color-gold);
  transform: scaleX(0);
  transition: transform var(--tr);
  transform-origin: right;
}
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__links a.active { color: var(--color-gold); }

.nav__cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: var(--tr);
  border-radius: 2px;
}
.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  right: 0; left: 0;
  background: rgba(38, 37, 43, 0.98);
  padding: 24px var(--container-pad);
  flex-direction: column;
  gap: 4px;
  z-index: 999;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--tr);
}
.nav__mobile a:hover { color: var(--color-gold); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 15, 10, 0.80) 0%,
    rgba(20, 15, 10, 0.30) 50%,
    rgba(20, 15, 10, 0.15) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: 80px;
  max-width: 640px;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 169, 110, 0.2);
  border: 1px solid rgba(201, 169, 110, 0.4);
  color: var(--color-gold-light);
  padding: 6px 16px;
  border-radius: var(--pill);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero__title {
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 300;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero__title strong { font-weight: 900; }

.hero__subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.80);
  margin-bottom: 32px;
  font-weight: 400;
  max-width: 480px;
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.5);
  font-size: 22px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   CATEGORIES SECTION
   ============================================================ */
.categories { background: #fff; }

.categories__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.categories__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cat-tile {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.cat-tile__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.cat-tile:hover .cat-tile__img { transform: scale(1.06); }

.cat-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,20,10,0.75) 0%, transparent 55%);
}

.cat-tile__body {
  position: absolute;
  bottom: 0;
  right: 0; left: 0;
  padding: 20px;
  color: #fff;
}

.cat-tile__icon {
  font-size: 22px;
  color: var(--color-gold-light);
  margin-bottom: 8px;
}

.cat-tile__name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.cat-tile__count {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

/* ============================================================
   FEATURED TOURS (2-UP CARDS)
   ============================================================ */
.featured { background: var(--color-primary); }

.featured__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 44px;
  flex-wrap: wrap;
  gap: 16px;
}

.featured__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.tour-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--tr), transform var(--tr);
}
.tour-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.tour-card__img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.tour-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.tour-card:hover .tour-card__img-wrap img { transform: scale(1.04); }

.tour-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--color-gold);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--pill);
}

.tour-card__body { padding: 28px; }

.tour-card__meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}
.tour-card__meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.tour-card__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-dark);
}

.tour-card__excerpt {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.tour-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

.tour-card__price {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-gold);
}
.tour-card__price span {
  font-size: 13px;
  font-weight: 400;
  color: var(--color-text-muted);
}

/* ============================================================
   ABOUT BAND
   ============================================================ */
.about-band {
  background: #fff;
  overflow: hidden;
}

.about-band__inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: center;
}

.about-band__label { margin-bottom: 16px; }

.about-band__title {
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-dark);
  margin-bottom: 24px;
}

.about-band__text {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-band__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 36px 0;
}

.stat {
  border-right: 3px solid var(--color-gold);
  padding-right: 16px;
}
.stat__num {
  font-size: 36px;
  font-weight: 900;
  color: var(--color-dark);
  line-height: 1;
}
.stat__label {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.about-band__img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-band__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-band__badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 110px;
  height: 110px;
  background: var(--color-gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  border: 4px solid #fff;
  box-shadow: var(--shadow-card);
}
.about-band__badge strong { font-size: 26px; font-weight: 900; line-height: 1; }
.about-band__badge small { font-size: 11px; font-weight: 600; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { background: var(--color-primary); }

.pricing__header { text-align: center; margin-bottom: 56px; }
.pricing__header .section-subtitle { margin: 0 auto; }

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.price-card {
  background: #fff;
  border-radius: 10px;
  padding: 36px 28px;
  text-align: center;
  transition: var(--tr);
  border: 2px solid transparent;
  position: relative;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.price-card--featured {
  background: var(--color-dark);
  color: #fff;
  border-color: var(--color-gold);
}

.price-card__popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-gold);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: var(--pill);
  white-space: nowrap;
}

.price-card__icon {
  font-size: 36px;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.price-card__name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.price-card--featured .price-card__name { color: #fff; }

.price-card__duration {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}
.price-card--featured .price-card__duration { color: rgba(255,255,255,0.6); }

.price-card__price {
  font-size: 42px;
  font-weight: 900;
  color: var(--color-dark);
  line-height: 1;
  margin-bottom: 4px;
}
.price-card--featured .price-card__price { color: var(--color-gold); }

.price-card__currency {
  font-size: 18px;
  vertical-align: super;
  font-weight: 700;
}

.price-card__per {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}
.price-card--featured .price-card__per { color: rgba(255,255,255,0.55); }

.price-card__features {
  list-style: none;
  text-align: right;
  margin-bottom: 28px;
}
.price-card__features li {
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.price-card--featured .price-card__features li {
  color: rgba(255,255,255,0.8);
  border-bottom-color: rgba(255,255,255,0.1);
}
.price-card__features li i {
  color: var(--color-gold);
  font-size: 12px;
  flex-shrink: 0;
}

/* ============================================================
   BLOG SECTION
   ============================================================ */
.blog { background: #fff; }

.blog__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
  flex-wrap: wrap;
  gap: 16px;
}

.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.post-card {
  border-radius: 8px;
  overflow: hidden;
  transition: var(--tr);
}
.post-card:hover { transform: translateY(-4px); }

.post-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.post-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.post-card:hover .post-card__img img { transform: scale(1.05); }

.post-card__body { padding: 20px 0; }

.post-card__date {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.post-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.4;
  margin-bottom: 10px;
}
.post-card__title a:hover { color: var(--color-gold); }

.post-card__excerpt {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

/* ============================================================
   DARK CTA BAND
   ============================================================ */
.cta-band {
  background: var(--color-dark);
  color: #fff;
}

.cta-band__inner {
  display: grid;
  grid-template-columns: 6fr 6fr;
  gap: 60px;
  align-items: center;
}

.cta-band__tag { color: var(--color-gold-light); }
.cta-band__tag::before { background: var(--color-gold); }

.cta-band__title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 18px;
}

.cta-band__text {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
}

.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.cta-band__contact { display: flex; flex-direction: column; gap: 20px; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255,255,255,0.85);
}
.contact-item__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201,169,110,0.15);
  border: 1px solid rgba(201,169,110,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--color-gold);
  flex-shrink: 0;
}
.contact-item__label {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 2px;
}
.contact-item__value { font-size: 15px; font-weight: 600; }

/* ============================================================
   SOCIAL SECTION
   ============================================================ */
.social-section { background: var(--color-primary); text-align: center; }
.social-section__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 28px;
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.social-link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--tr);
}
.social-link:hover {
  background: var(--color-gold);
  transform: translateY(-3px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer__logo { margin-bottom: 16px; }
.footer__logo svg { height: 38px; }

.footer__desc {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer__socials {
  display: flex;
  gap: 10px;
}
.footer__social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  transition: var(--tr);
}
.footer__social:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: #fff;
}

.footer__heading {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: var(--tr);
}
.footer__links a:hover { color: var(--color-gold); padding-right: 4px; }

.footer__contact { display: flex; flex-direction: column; gap: 14px; }
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
}
.footer__contact-item i {
  color: var(--color-gold);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__copy { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer__bottom-links {
  display: flex;
  gap: 20px;
}
.footer__bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  transition: var(--tr);
}
.footer__bottom-links a:hover { color: var(--color-gold-light); }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 520px;
  background: var(--color-dark);
  color: #fff;
  border-radius: 14px;
  padding: 24px 28px;
  z-index: 9999;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
  transform: translateY(0);
  transition: transform var(--tr), opacity var(--tr);
  border: 1px solid rgba(201,169,110,0.3);
}
.cookie-banner.hidden {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__icon { font-size: 28px; margin-bottom: 10px; }
.cookie-banner__title { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.cookie-banner__text { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.6; margin-bottom: 18px; }
.cookie-banner__text a { color: var(--color-gold-light); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner__btn {
  padding: 10px 22px;
  border-radius: var(--pill);
  font-size: 14px;
  font-weight: 600;
  border: none;
  transition: var(--tr);
  cursor: pointer;
}
.cookie-banner__btn--accept { background: var(--color-gold); color: #fff; }
.cookie-banner__btn--accept:hover { background: #b8904f; }
.cookie-banner__btn--decline {
  background: transparent;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.2);
}
.cookie-banner__btn--decline:hover { color: #fff; border-color: rgba(255,255,255,0.5); }

/* ============================================================
   PAGE HERO (INNER PAGES)
   ============================================================ */
.page-hero {
  background: var(--color-dark);
  padding: 140px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../imgs/hero-bg.webp') center/cover no-repeat;
  opacity: 0.1;
}
.page-hero__inner { position: relative; }
.page-hero__title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}
.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}
.page-hero__breadcrumb a { color: var(--color-gold-light); }
.page-hero__breadcrumb a:hover { color: #fff; }

/* ============================================================
   CONTENT PAGE WRAPPER
   ============================================================ */
.content-section { padding: 80px 0; }
.content-block {
  max-width: 820px;
  margin: 0 auto;
}
.content-block h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--color-dark);
  margin: 36px 0 14px;
}
.content-block h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-dark);
  margin: 28px 0 10px;
}
.content-block p {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.content-block ul {
  list-style: disc;
  padding-right: 20px;
  margin-bottom: 16px;
}
.content-block ul li {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 6px;
}

/* ============================================================
   FORMS
   ============================================================ */
.form-section { background: var(--color-primary); }

.form-wrap {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  padding: 48px;
  box-shadow: var(--shadow-card);
}

.form-title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  color: var(--color-dark);
}
.form-subtitle {
  text-align: center;
  font-size: 15px;
  color: var(--color-text-muted);
  margin-bottom: 36px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-grid--full { grid-column: 1 / -1; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 14px; font-weight: 600; color: var(--color-dark); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  font-size: 15px;
  color: var(--color-text);
  background: #fafafa;
  transition: border-color var(--tr);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 130px; }

.form-note {
  font-size: 12px;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 12px;
}
.form-note a { color: var(--color-gold); text-decoration: underline; }

/* ============================================================
   ABOUT PAGE SPECIFIC
   ============================================================ */
.team-section { background: #fff; }
.values-band { background: var(--color-primary-dark); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.value-card {
  text-align: center;
  padding: 36px 24px;
}
.value-card__icon {
  width: 64px;
  height: 64px;
  background: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  margin: 0 auto 16px;
}
.value-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-dark);
}
.value-card__text {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================================
   BOOKING PAGE
   ============================================================ */
.booking-info {
  background: var(--color-dark);
  padding: 60px 0;
  color: #fff;
}
.booking-info__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}
.booking-info__icon { font-size: 36px; color: var(--color-gold); margin-bottom: 12px; }
.booking-info__title { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.booking-info__text { font-size: 14px; color: rgba(255,255,255,0.6); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .categories__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-band__inner { grid-template-columns: 1fr; gap: 40px; }
  .about-band__img-wrap { max-width: 600px; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .section { padding: 60px 0; }

  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .hero__content { padding-bottom: 60px; }

  .featured__grid { grid-template-columns: 1fr; }
  .blog__grid { grid-template-columns: 1fr; }
  .cta-band__inner { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-wrap { padding: 32px 20px; }
  .booking-info__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .about-band__stats { grid-template-columns: 1fr 1fr; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .categories__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .categories__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .cta-band__actions { flex-direction: column; }
}
