/* ===========================================================
   BRAND ENQUIRY PAGE — page-specific styles
   Load AFTER style.css (uses its CSS variables: --surface,
   --gold, --line, --bone, --bone-dim, --font-display, --font-body)
   =========================================================== */

/* ===== "What We Offer For Brands" section — decorative background ===== */
.offer-section-bg {
  position: relative;
  overflow: hidden;
  background-image: radial-gradient(rgba(243,241,236,0.09) 1.2px, transparent 1.2px);
  background-size: 22px 22px;
  background-position: -6px -6px;
}
.offer-section-bg::before,
.offer-section-bg::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  pointer-events: none;
  z-index: 0;
  opacity: .5;
}
.offer-section-bg::before {
  top: 26px;
  left: 26px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}
.offer-section-bg::after {
  bottom: 26px;
  right: 26px;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}
.offer-section-bg > .container { position: relative; z-index: 1; }

.brand-faq-section {
  background: #000 !important;
}

.offer-outer-box {
  background: transparent !important;
  border: 1px solid var(--line) !important;
  border-radius: 16px !important;
  padding: 32px 50px 28px;
}
@media (max-width: 900px) {
  .offer-outer-box { padding: 28px 30px 24px; }
}
@media (max-width: 560px) {
  .offer-outer-box { padding: 24px 20px 20px; border-radius: 12px; }
}
.offer-outer-box .section-head { margin-bottom: 24px !important; }

.section-divider {
  margin-top: 46px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  opacity: .45;
}

/* Force the dot pattern + corner brackets to stay visible on mobile,
   even if a base style.css media query resets .section-alt background */
@media (max-width: 700px) {
  .offer-section-bg {
    background-image: radial-gradient(rgba(243,241,236,0.09) 1.2px, transparent 1.2px) !important;
    background-size: 22px 22px !important;
    background-position: -6px -6px !important;
  }
  .offer-section-bg::before,
  .offer-section-bg::after {
    display: block !important;
    opacity: .7;
    width: 80px;
    height: 80px;
  }
  .offer-section-bg::before { top: 16px; left: 16px; }
  .offer-section-bg::after  { bottom: 16px; right: 16px; }
}

/* Local additions for the Brand Enquiry page — expandable "offer" panels */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
@media (max-width: 700px) { .offer-grid { grid-template-columns: 1fr; } }
.offer-item {
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px 24px;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.offer-item:hover {
  border-color: rgba(201,162,75,.35);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,.28);
}
.offer-item[open] {
  border-color: rgba(201,162,75,.45);
  box-shadow: 0 14px 30px rgba(0,0,0,.28);
}
.offer-item summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 30px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--bone);
}
.offer-item summary::-webkit-details-marker { display: none; }
.offer-item summary::after { content: '+'; position: absolute; right: 0; top: -2px; color: var(--gold); font-size: 22px; }
.offer-item[open] summary::after { content: '\2212'; }
.offer-item p { color: var(--bone-dim); font-size: 14.5px; margin: 14px 0 0; }
.offer-item p:first-of-type { margin-top: 16px; }
.category-photo-card { isolation: isolate; }

/* ===== Tighten gap between the hero CTA box and "Redefine Your Business
   Promotion" section right below it (small breathing room, not zero) ===== */
.hero-cta-section {
  padding-bottom: 30px !important;
}
.brand-grid-section {
  padding-top: 30px !important;
}

/* ===== 4-photo grid — anchor title/description to the bottom with a
   dark gradient shadow behind them for readability, and taller boxes ===== */
.category-photo-card {
  position: relative !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: center !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  aspect-ratio: 3 / 4 !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}
@media (max-width: 900px) {
  .category-photo-card { aspect-ratio: 4 / 5 !important; }
}
@media (max-width: 560px) {
  .category-photo-card { aspect-ratio: 1 / 1 !important; }
}
.category-photo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.55) 45%, rgba(0,0,0,0) 85%);
}
.category-photo-card .category-photo-label {
  padding: 18px 20px 22px !important;
  text-align: center !important;
  width: 100%;
  box-sizing: border-box;
}
.category-photo-card {
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.category-photo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(0,0,0,.45);
  border-color: rgba(201,162,75,.5);
}
.category-photo-card img {
  transition: transform .5s ease;
}
.category-photo-card:hover img {
  transform: scale(1.08);
}

/* ===== Slightly reduce the gap between the 4-photo grid and the
   "What We Offer For Brands" box right below it ===== */
.brand-grid-section {
  padding-bottom: 40px !important;
}
.offer-section {
  padding-top: 40px !important;
  padding-bottom: 30px !important;
}
.brand-faq-section {
  padding-top: 30px !important;
}

/* ===== Final CTA banner ("Choose the Perfect Celebrity for Your Brand")
   — recolored to match the dark maroon gradient box style; content unchanged ===== */
.cta-banner {
  background: radial-gradient(120% 140% at 30% 15%, #5a1418 0%, #3a0e10 45%, #170708 100%) !important;
  padding: 26px 40px !important;
}
.cta-banner .actions {
  margin-top: 16px !important;
}

/* ===== All buttons on this page — light golden gradient ===== */
.btn {
  background: linear-gradient(135deg, #f2dd9a 0%, #d4ad57 55%, #b8862e 100%) !important;
  color: #241d0e !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  transition: filter .2s ease, transform .2s ease;
}
.btn:hover {
  filter: brightness(1.07);
}

/* ===== FAQ + Tell Us More — split layout matching reference design 2 ===== */
.contact-grid-v2 {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid-v2 { grid-template-columns: 1fr; } }

.eyebrow-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.eyebrow-line::before { content: ''; width: 26px; height: 1px; background: var(--gold); display: inline-block; }

.split-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--bone);
  margin-bottom: 26px;
}

.faq-item-v2 {
  border: 1px solid var(--line) !important;
  border-radius: 10px !important;
  padding: 18px 22px;
  margin-bottom: 14px;
}
.faq-item-v2:last-of-type { margin-bottom: 0; }
.faq-item-v2 summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--bone);
}
.faq-item-v2[open] summary { color: var(--gold); }
.faq-item-v2 summary::-webkit-details-marker { display: none; }
.faq-item-v2 summary::after {
  content: '+';
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold);
  color: #1a1712;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}
.faq-item-v2[open] summary::after { content: '\2212'; }
.faq-item-v2 p { color: var(--bone-dim); font-size: 14.5px; line-height: 1.6; margin: 14px 0 0; }

.faq-card-v2 {
  background: #000 !important;
  border: 1px solid rgba(243,241,236,.14) !important;
  border-radius: 12px !important;
  padding: 32px;
}

.enquiry-card-v2 {
  background: #000 !important;
  border: 1px solid rgba(243,241,236,.14) !important;
  border-radius: 12px !important;
  padding: 32px;
}
.enquiry-card-v2 h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--bone);
  margin: 0 0 6px;
}
.enquiry-card-v2 .hint {
  color: var(--bone-dim);
  font-size: 13.5px;
  margin: 0 0 22px;
}
.form-group-v2 { margin-bottom: 18px; }

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 520px) { .form-row-2 { grid-template-columns: 1fr; } }

.budget-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.budget-chips .chip {
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--bone-dim);
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.budget-chips .chip input { display: none !important; }
.budget-chips .chip:hover { border-color: rgba(201,162,75,.4); }
.budget-chips .chip:has(input:checked) {
  border-color: var(--gold) !important;
  background: rgba(201,162,75,.12) !important;
  color: var(--gold) !important;
}
.form-group-v2 label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-bottom: 8px;
}
.form-group-v2 input,
.form-group-v2 select,
.form-group-v2 textarea {
  width: 100%;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 14px;
}
.form-group-v2 textarea { min-height: 100px; resize: vertical; }
.form-group-v2 select option {
  color: #1a1a1a;
  background: #ffffff;
}
.form-group-v2 input:focus,
.form-group-v2 select:focus,
.form-group-v2 textarea:focus {
  outline: none;
  border-color: var(--gold);
}

/* ===== Hero — 6-item continuous autoloop slider, ~4 visible ===== */
.hero-track-wrap {
  overflow: hidden;
  border-radius: 14px;
}
.hero-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: heroTrackScroll 26s linear infinite;
}
.hero-track:hover { animation-play-state: paused; }
.ht-item {
  flex: 0 0 clamp(230px, 23vw, 320px);
  height: 300px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}
.ht-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
@keyframes heroTrackScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (max-width: 900px) {
  .ht-item { flex-basis: 70vw; height: 220px; }
}

/* ===== Grey growth CTA box ===== */
.cta-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px 60px;
  text-align: center;
  margin-top: 40px;
}
.cta-box h2 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--bone);
  font-size: clamp(22px, 3.4vw, 34px);
  line-height: 1.35;
  margin: 0 0 22px;
}
.cta-box-text {
  max-width: 1080px;
  margin: 0 auto;
  color: var(--bone-dim);
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.8;
}
.cta-box .actions { display: flex; justify-content: center; }
@media (max-width: 900px) {
  .cta-box { padding: 40px 30px; }
  .cta-box-text { max-width: 100%; }
}
@media (max-width: 560px) {
  .cta-box { padding: 32px 20px; border-radius: 12px; }
  .cta-box h2 br { display: none; }
  .cta-box h2 { margin-bottom: 16px; }
  .cta-box-text { font-size: 14px; line-height: 1.7; }
}

/* ===== Premium hero bento grid ===== */
.hero-bento {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
  min-height: 540px;
}
.hb-main {
  grid-row: span 2;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
}
.hb-main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
.hb-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  background: linear-gradient(0deg, rgba(0,0,0,.78) 10%, rgba(0,0,0,.15) 65%, transparent 100%);
}
.hb-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}
.hb-tile {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
}
.hb-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .6;
  transition: transform .4s ease;
}
.hb-tile:hover img { transform: scale(1.07); }
.hb-tag {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 2;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--bone);
  background: rgba(0,0,0,.55);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 20px;
}
@media (max-width: 900px) {
  .hero-bento { grid-template-columns: 1fr; grid-template-rows: auto; min-height: 0; }
  .hb-main { grid-row: auto; min-height: 460px; }
  .hb-side { grid-template-rows: 1fr; grid-template-columns: 1fr 1fr; }
  .hb-tile { min-height: 140px; }
  .hb-overlay { padding: 26px; }
}

/* ===== "Brands We've Powered" — auto-scrolling logo marquee ===== */
.brand-logos-section {
  background: #000 !important;
  padding-top: 50px;
  padding-bottom: 50px;
  overflow: hidden;
}
.brand-logos-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 28px;
  text-shadow: 0 0 18px rgba(212, 175, 55, 0.35);
}
.brand-logos-title::before,
.brand-logos-title::after {
  content: '';
  width: 90px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
  display: inline-block;
}
.brand-logos-title::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}
@media (max-width: 600px) {
  .brand-logos-title::before,
  .brand-logos-title::after { width: 32px; }
}
.logo-marquee {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.logo-row {
  overflow: hidden;
  width: 100%;
}
.logo-track {
  display: flex;
  gap: 16px;
  width: max-content;
}
.logo-track--a { animation: logoScrollLeft 42s linear infinite; }
.logo-track--b { animation: logoScrollRight 42s linear infinite; }
.logo-row:hover .logo-track { animation-play-state: paused; }
@keyframes logoScrollLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes logoScrollRight {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.logo-tile {
  flex: 0 0 auto;
  width: 170px;
  height: 90px;
  background: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  box-sizing: border-box;
  border: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35), 0 0 0 rgba(212, 175, 55, 0);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.logo-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.45), 0 0 16px rgba(212, 175, 55, 0.25);
}
.logo-tile img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
@media (max-width: 700px) {
  .logo-tile { width: 130px; height: 70px; padding: 10px 14px; }
  .logo-marquee { gap: 12px; }
}
/* ===== Fix: big black gap above the final "Choose the Perfect
   Celebrity for Your Brand" CTA box on mobile. This happens because
   .brand-faq-section's bottom padding + the next .section's top
   padding stack on small screens. Tighten just that boundary. ===== */
/* ===== Tighten the gap above the final "Choose the Perfect
   Celebrity for Your Brand" CTA box on all screen sizes ===== */
.brand-faq-section + .section {
  padding-top: 30px !important;
}

@media (max-width: 700px) {
  .brand-faq-section {
    padding-bottom: 24px !important;
  }
  .brand-faq-section + .section {
    padding-top: 20px !important;
    padding-bottom: 40px !important;
  }
  .brand-faq-section + .section .cta-banner {
    margin-top: 0 !important;
  }
}