/* ===================================================
   BangaloreCallGirlService — MAIN STYLESHEET
   Theme: White BG | Black | Gold | Hot Pink | Purple
=================================================== */

:root {
  --black:      #0a0a0a;
  --dark:       #111118;
  --dark2:      #1a1a2a;
  --gold:       #FFD700;
  --gold2:      #FFA500;
  --hotpink:    #FF1493;
  --pink2:      #FF69B4;
  --purple:     #7B2FBE;
  --purple2:    #9C27B0;
  --white:      #FFFFFF;
  --off-white:  #f8f8f8;
  --light-gray: #f0f0f5;
  --border:     #e8e0f0;
  --gray:       #888;
  --text-dark:  #1a1a2e;
  --font-main:    'Poppins', sans-serif;
  --font-display: 'Playfair Display', serif;
  --shadow-card: 0 8px 35px rgba(123,47,190,0.10);
  --shadow-hover: 0 20px 60px rgba(255,20,147,0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ===================================================
   AGE POPUP
=================================================== */
.age-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.97);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.age-popup-box {
  background: linear-gradient(145deg, #1a1a2e, #16213e);
  border: 2px solid var(--gold);
  border-radius: 20px;
  padding: 50px 40px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 60px rgba(255,215,0,0.3), 0 0 120px rgba(255,20,147,0.15);
  animation: popupIn 0.5s ease;
}

@keyframes popupIn {
  from { opacity: 0; transform: scale(0.8); }
  to   { opacity: 1; transform: scale(1); }
}

.age-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--hotpink), var(--gold));
  color: var(--black);
  font-size: 2.8rem;
  font-weight: 900;
  font-family: var(--font-display);
  padding: 15px 30px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.age-popup-box h2 {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.age-popup-box p { color: #ccc; margin-bottom: 12px; line-height: 1.7; }

.age-popup-box ul {
  text-align: left;
  list-style: none;
  margin: 15px 0 25px;
  padding: 0 10px;
}
.age-popup-box ul li { color: #ccc; padding: 6px 0; }
.age-popup-box ul li::before { content: "✓ "; color: var(--gold); font-weight: 700; }
.age-popup-box a { color: var(--gold); }

.age-popup-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 20px 0;
}

.btn-enter {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--black);
  border: none;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  flex: 1;
  min-width: 180px;
}
.btn-enter:hover { transform: scale(1.05); box-shadow: 0 8px 25px rgba(255,215,0,0.4); }

.btn-exit {
  background: transparent;
  color: #999;
  border: 1px solid #444;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  flex: 1;
  min-width: 180px;
}
.btn-exit:hover { border-color: #f44; color: #f44; }
.age-note { font-size: 0.8rem; color: #666; margin-top: 10px; }

/* ===================================================
   NAVBAR
=================================================== */
.main-navbar {
  background: var(--black) !important;
  backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--gold);
  padding: 12px 0;
  z-index: 1000;
}

.brand-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white) !important;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.brand-icon { color: var(--gold); font-size: 1.2rem; }
.brand-highlight { color: var(--hotpink); }

.main-navbar .nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 500;
  font-size: 0.88rem;
  padding: 8px 12px !important;
  transition: color 0.3s;
}
.main-navbar .nav-link:hover,
.main-navbar .nav-link.active { color: var(--gold) !important; }

.btn-gold {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white) !important;
  border: none;
  padding: 9px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(37,211,102,0.35);
}
.btn-gold:hover { transform: scale(1.05); box-shadow: 0 8px 25px rgba(37,211,102,0.5); }

.navbar-toggler { border-color: var(--gold) !important; }
.navbar-toggler-icon {
  filter: brightness(0) saturate(100%) invert(83%) sepia(100%) saturate(1000%) hue-rotate(1deg) brightness(104%);
}

/* ===================================================
   HERO HEADER
=================================================== */
.hero-header {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    url('https://images.unsplash.com/photo-1519741497674-611481863552?w=1920&q=80') center/cover no-repeat;
  overflow: hidden;
  padding: 100px 20px 60px;
}

/* ---- Hero height on mobile ---- */
@media (max-width: 768px) {
  .hero-header {
    min-height: auto;
    padding: 100px 16px 50px;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.92) 0%,
    rgba(123,47,190,0.55) 40%,
    rgba(255,20,147,0.4) 70%,
    rgba(10,10,10,0.88) 100%
  );
}

.hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.hero-content { position: relative; z-index: 2; width: 100%; }

/* ============================
   HERO BLACK BOX — full width
============================ */
.hero-box {
  width: 100%;
  background: rgba(0, 0, 0, 0.78);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  padding: 55px 40px 50px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

@media (max-width: 768px) {
  .hero-box { padding: 35px 16px 32px; }
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--hotpink), var(--purple));
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 8px 25px;
  border-radius: 50px;
  margin-bottom: 20px;
  animation: fadeInDown 0.8s ease;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeInDown 1s ease 0.2s both;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.text-gold  { color: var(--gold); }
.text-pink  { color: var(--hotpink); }

.hero-subtitle {
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  color: rgba(255,255,255,0.85);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.7;
  animation: fadeInDown 1s ease 0.4s both;
}

/* ===================================================
   SEARCH BAR
=================================================== */
.search-bar-container {
  animation: fadeInUp 1s ease 0.6s both;
  margin-bottom: 40px;
}

.search-bar {
  display: flex;
  align-items: stretch;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,215,0,0.4);
  backdrop-filter: blur(20px);
  border-radius: 70px;
  overflow: hidden;
  max-width: 820px;
  margin: 0 auto;
  box-shadow: 0 15px 50px rgba(0,0,0,0.4), 0 0 30px rgba(255,215,0,0.1);
}

.search-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 12px 22px;
}
.search-group label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 4px;
}
.search-group select {
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-size: 0.93rem;
  font-family: var(--font-main);
  cursor: pointer;
  -webkit-appearance: none;
}
.search-group select option { background: #1a1a2e; color: var(--white); }

.search-divider { width: 1px; background: rgba(255,255,255,0.15); margin: 10px 0; }

.search-btn {
  background: linear-gradient(135deg, var(--hotpink), var(--purple));
  border: none;
  color: var(--white);
  padding: 0 35px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
  border-radius: 0 70px 70px 0;
}
.search-btn:hover { background: linear-gradient(135deg, var(--gold), var(--gold2)); color: var(--black); }

/* ===================================================
   HERO STATS
=================================================== */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.8s both;
}
.stat-item { display: flex; flex-direction: column; align-items: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 4px;
}

/* ===================================================
   TICKER
=================================================== */
.ticker-bar {
  background: linear-gradient(90deg, var(--black), var(--dark2), var(--black));
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  padding: 11px 0;
  overflow: hidden;
}
.ticker-content {
  white-space: nowrap;
  animation: ticker 35s linear infinite;
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
}
@keyframes ticker { from { transform: translateX(100vw); } to { transform: translateX(-100%); } }

/* ===================================================
   SECTION STYLES — WHITE + DARK alternating
=================================================== */
.white-section { background: var(--white); padding: 90px 0; }
.dark-section  { background: var(--dark);  padding: 90px 0; }

.section-header { margin-bottom: 40px; }

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--hotpink), var(--purple));
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 900;
  margin-bottom: 10px;
}
.dark-title { color: var(--text-dark); }
.section-desc { font-size: 0.95rem; }
.dark-desc { color: #777; }

/* ===================================================
   CARD PROFILES — SECTION 1
   Overlay Badge: half on image, half outside
=================================================== */
.profile-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden; /* important: allows badge to overflow */
  transition: all 0.4s ease;
  height: 100%;
  box-shadow: var(--shadow-card);
  position: relative;
}
.profile-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--hotpink);
}

.card-img-wrap {
  position: relative;
  height: 250px;
  overflow: visible; /* overlay badge needs overflow visible */
  border-radius: 20px 20px 0 0;
}

.profile-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  background-position: top!important;
  border-radius: 20px 20px 0 0;
  transition: transform 0.5s;
  display: block;
}
.profile-card:hover .profile-img { transform: scale(1.04); }

/* ---- OVERLAY BADGE: half on image, half outside ---- */
.overlay-badge-wrap {
  position: absolute;
  bottom: -18px;         /* half below the image */
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px;
  z-index: 10;
}

.overlay-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  border: 2px solid var(--white);
  display: flex;
  align-items: center;
  gap: 5px;
}

.overlay-badge.verified {
  background: linear-gradient(135deg, #00c853, #1b5e20);
  color: var(--white);
}
.overlay-badge.cat-elite   { background: linear-gradient(135deg, #FFD700, #FF8C00); color: #000; }
.overlay-badge.cat-vip     { background: linear-gradient(135deg, #9C27B0, #E040FB); color: #fff; }
.overlay-badge.cat-premium { background: linear-gradient(135deg, #e94560, #1a1a2e); color: #fff; }
.overlay-badge.cat-russian { background: linear-gradient(135deg, #1565C0, #42A5F5); color: #fff; }
.overlay-badge.cat-college { background: linear-gradient(135deg, #FF1493, #FF6347); color: #fff; }

.card-body-custom {
  padding: 30px 18px 18px; /* extra top for overlay badge */
}

.profile-name-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}
.profile-name-row h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
}
.stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 1px; }
.stars.big { font-size: 1.2rem; }

.profile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}
.profile-meta span { font-size: 0.78rem; color: #888; }
.profile-meta span i { color: var(--hotpink); margin-right: 4px; }

.profile-bio {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.65;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.card-tags span {
  background: #f3eeff;
  border: 1px solid #d9bfff;
  color: var(--purple);
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: 50px;
  font-weight: 500;
}

.card-footer-btns { display: flex; gap: 10px; }

.btn-call, .btn-wa {
  flex: 1;
  padding: 9px 0;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.btn-call {
  background: linear-gradient(135deg, var(--hotpink), var(--purple));
  color: var(--white);
}
.btn-call:hover { opacity: 0.85; color: var(--white); transform: scale(1.03); }
.btn-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
}
.btn-wa:hover { opacity: 0.85; color: var(--white); transform: scale(1.03); }

.btn-load-more-white {
  background: transparent;
  border: 2px solid #25D366;
  color: #128C7E;
  padding: 13px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}
.btn-load-more-white:hover {
  background: #25D366;
  color: var(--white);
}

/* ===================================================
   TABLE SECTION — SECTION 2
=================================================== */
.table-section { padding: 90px 0; background: var(--dark); }

.table-search-wrap { margin-bottom: 35px; }

.table-search-bar {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid var(--gold);
  border-radius: 60px;
  overflow: hidden;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 8px 30px rgba(255,215,0,0.15);
}

.search-ico {
  color: var(--gold);
  font-size: 1.1rem;
  padding: 0 16px 0 22px;
}

.table-search-bar input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-size: 0.95rem;
  font-family: var(--font-main);
  padding: 15px 10px;
}
.table-search-bar input::placeholder { color: rgba(255,255,255,0.4); }

.table-search-bar button {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  border: none;
  color: var(--black);
  padding: 15px 28px;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  border-radius: 0 60px 60px 0;
  transition: all 0.3s;
}
.table-search-bar button:hover { background: linear-gradient(135deg, var(--hotpink), var(--purple)); color: var(--white); }

.table-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,215,0,0.15);
  box-shadow: 0 10px 50px rgba(0,0,0,0.4);
}

.profile-table {
  width: 100%;
  border-collapse: collapse;
  background: #0d0d1a;
}

.profile-table thead tr {
  background: linear-gradient(135deg, var(--hotpink) 0%, var(--purple) 100%);
}

.profile-table thead th {
  color: var(--white);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 18px;
  white-space: nowrap;
}

.profile-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}
.profile-table tbody tr:hover { background: rgba(255,215,0,0.05); }
.profile-table tbody tr:nth-child(even) { background: rgba(255,255,255,0.02); }
.profile-table tbody tr:nth-child(even):hover { background: rgba(255,215,0,0.06); }

.profile-table tbody td {
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  padding: 15px 18px;
  vertical-align: middle;
}

.td-name strong { color: var(--white); font-weight: 600; }

.tbl-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  white-space: nowrap;
}
.tbl-badge.elite   { background: linear-gradient(135deg, #FFD700, #FF8C00); color: #000; }
.tbl-badge.vip     { background: linear-gradient(135deg, #9C27B0, #E040FB); color: #fff; }
.tbl-badge.premium { background: linear-gradient(135deg, #e94560, #c0392b); color: #fff; }
.tbl-badge.russian { background: linear-gradient(135deg, #1565C0, #42A5F5); color: #fff; }
.tbl-badge.college { background: linear-gradient(135deg, #FF1493, #FF6347); color: #fff; }

.stars-sm { color: var(--gold); font-size: 0.85rem; letter-spacing: 1px; }

.wa-tbl-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
}
.wa-tbl-btn:hover { transform: scale(1.08); color: var(--white); box-shadow: 0 5px 18px rgba(37,211,102,0.4); }

.status {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  display: inline-block;
}
.status.available { background: rgba(0,200,0,0.15); color: #00e676; border: 1px solid rgba(0,200,0,0.3); }
.status.busy      { background: rgba(255,165,0,0.15); color: #FFB300; border: 1px solid rgba(255,165,0,0.3); }

/* ===================================================
   LONG PROFILE VIEW — SECTION 3
=================================================== */
.long-profiles { display: flex; flex-direction: column; gap: 40px; }

.long-profile-card {
  display: flex;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  margin-bottom: 30px;
  overflow: hidden;
  transition: all 0.4s;
  box-shadow: var(--shadow-card);
}
.long-profile-card:hover {
  box-shadow: 0 25px 65px rgba(255,20,147,0.15);
  border-color: var(--hotpink);
  transform: translateY(-4px);
}
.long-profile-card.reverse { flex-direction: row-reverse; }

.lp-img {
  width: 320px;
  min-width: 280px;
  min-height: 380px;
  flex-shrink: 0;
  position: relative;
}

/* Long profile badges */
.lp-img-badge {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.verified-big, .cat-big {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.5);
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}
.verified-big { background: linear-gradient(135deg, #00c853, #1b5e20); color: #fff; }
.cat-big.elite   { background: linear-gradient(135deg, #FFD700, #FF8C00); color: #000; }
.cat-big.russian { background: linear-gradient(135deg, #1565C0, #42A5F5); color: #fff; }
.cat-big.premium { background: linear-gradient(135deg, #e94560, #1a1a2e); color: #fff; }
.cat-big.vip     { background: linear-gradient(135deg, #9C27B0, #E040FB); color: #fff; }
.cat-big.college { background: linear-gradient(135deg, #FF1493, #FF6347); color: #fff; }

.lp-content { padding: 40px; flex: 1; }

.lp-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 15px;
}

.lp-header h2 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--text-dark);
}

.lp-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}
.lp-meta span { font-size: 0.83rem; color: #888; }
.lp-meta span i { color: var(--hotpink); margin-right: 5px; }

.lp-bio {
  color: #555;
  line-height: 1.8;
  font-size: 0.93rem;
  margin-bottom: 20px;
}

.lp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}
.lp-tags span {
  background: #f3eeff;
  border: 1px solid #d9bfff;
  color: var(--purple);
  font-size: 0.76rem;
  padding: 5px 14px;
  border-radius: 50px;
  font-weight: 500;
}

.lp-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-lp-call, .btn-lp-wa, .btn-lp-book {
  padding: 11px 22px;
  border-radius: 50px;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-lp-call { background: linear-gradient(135deg, var(--hotpink), var(--purple)); color: var(--white); }
.btn-lp-wa   { background: linear-gradient(135deg, #25D366, #128C7E); color: var(--white); }
.btn-lp-book { background: linear-gradient(135deg, #25D366, #128C7E); color: var(--white); font-weight: 700; box-shadow: 0 5px 18px rgba(37,211,102,0.35); }
.btn-lp-call:hover { color: var(--white); transform: scale(1.05); }
.btn-lp-wa:hover   { color: var(--white); transform: scale(1.05); }
.btn-lp-book:hover { color: var(--white); transform: scale(1.05); }

/* ===================================================
   TWO COLUMN VIEW — SECTION 4
=================================================== */
.two-col-section { padding: 90px 0; background: var(--dark); }

.two-col-card {
  background: linear-gradient(145deg, #12121f, #1e1e30);
  border: 1px solid rgba(255,215,0,0.12);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  transition: all 0.4s;
  height: 100%;
  position: relative;
}
.two-col-card:hover {
  box-shadow: 0 15px 50px rgba(255,20,147,0.2);
  border-color: rgba(255,215,0,0.3);
  transform: translateY(-5px);
}

.two-col-img {
  width: 180px;
  min-width: 160px;
  flex-shrink: 0;
  position: relative;
}

.two-col-badge {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.two-col-body { padding: 22px 20px; flex: 1; }

.two-col-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}
.two-col-header h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

.two-col-body p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin: 10px 0 16px;
}

.two-col-body .lp-meta span { color: rgba(255,255,255,0.5); }

.two-col-btns { display: flex; gap: 8px; }

/* ===================================================
   WHY CHOOSE US — WHITE
=================================================== */
.why-section { padding: 90px 0; background: var(--light-gray); }

.why-card-white {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 25px;
  transition: all 0.4s;
  box-shadow: 0 4px 20px rgba(123,47,190,0.06);
}
.why-card-white:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(255,20,147,0.12);
  border-color: var(--hotpink);
}

.why-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, var(--hotpink), var(--purple));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--white);
  margin: 0 auto 18px;
}
.why-icon.gold-icon   { background: linear-gradient(135deg, var(--gold), var(--gold2)); color: var(--black); }
.why-icon.purple-icon { background: linear-gradient(135deg, var(--purple), #E040FB); }
.why-icon.green-icon  { background: linear-gradient(135deg, #25D366, #128C7E); }

.why-card-white h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.why-card-white p {
  color: #777;
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ===================================================
   PHOTO GALLERY SECTION
=================================================== */
.gallery-section {
  background: var(--black);
  padding-bottom: 0;
}

.gallery-header {
  padding: 60px 20px 40px;
}

.gallery-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 10px;
}

.gallery-sub {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
}

/* 4-column CSS Grid — no Bootstrap needed */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  padding: 0 15px;
}

/* Each photo card */
.gal-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;       /* consistent portrait ratio */
  cursor: pointer;
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s ease;
}
.gal-item:hover img { transform: scale(1.07); }

/* Overlay — sits on top of image */
.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 30%,
    rgba(10,0,20,0.72) 65%,
    rgba(123,0,80,0.92) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 22px 14px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.gal-item .gal-overlay { opacity: 1; }

/* Name label */
.gal-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

/* Buttons row */
.gal-btns {
  display: flex;
  gap: 10px;
  width: 100%;
}

.gal-btn-call,
.gal-btn-wa {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 9px 6px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
}

.gal-btn-call {
  background: linear-gradient(135deg, #FF1493, #7B2FBE);
  color: var(--white);
}
.gal-btn-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
}
.gal-btn-call:hover { transform: scale(1.05); color: var(--white); }
.gal-btn-wa:hover   { transform: scale(1.05); color: var(--white); }

/* ---- RESPONSIVE ---- */

/* Tablet: 2 columns */
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; padding: 0 15px; }
}

/* Mobile: Always show overlay (no hover on touch) */
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; padding: 0 15px; }
  .gal-overlay {
    opacity: 1;                    /* always visible on mobile */
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0) 20%,
      rgba(10,0,20,0.65) 55%,
      rgba(90,0,60,0.90) 100%
    );
  }
  .gal-name { font-size: 1rem; margin-bottom: 8px; }
  .gal-btn-call, .gal-btn-wa { font-size: 0.7rem; padding: 7px 4px; }
}

/* Small phones: 2 columns still, tighter padding */
@media (max-width: 480px) {
  .gallery-header { padding: 40px 16px 25px; }
  .gal-name { font-size: 0.9rem; }
  .gal-btns { gap: 6px; }
  .gal-btn-call, .gal-btn-wa { font-size: 0.65rem; padding: 6px 3px; border-radius: 30px; }
}

/* ===================================================
   ADULT TAGS SECTION — SECTION 5
=================================================== */
.adult-tags-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #0d0d1a 0%, #1a0830 50%, #0d0d1a 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative glow blobs */
.adult-tags-section::before,
.adult-tags-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  pointer-events: none;
}
.adult-tags-section::before {
  width: 400px; height: 400px;
  background: var(--hotpink);
  top: -100px; left: -100px;
}
.adult-tags-section::after {
  width: 350px; height: 350px;
  background: var(--gold);
  bottom: -80px; right: -80px;
}

.adult-tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* Base tag style */
.atag {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  letter-spacing: 0.4px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  border: 1.5px solid rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}
.atag::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.3s;
  border-radius: 50px;
}
.atag:hover {
  transform: translateY(-4px) scale(1.07);
  box-shadow: 0 12px 28px rgba(0,0,0,0.4);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.atag:hover::after { background: rgba(255,255,255,0.08); }

/* 10-color vivid cycle */
.atag:nth-child(10n+1)  { background: linear-gradient(135deg, #FF1493, #C2185B); }
.atag:nth-child(10n+2)  { background: linear-gradient(135deg, #FFD700, #E65100); color:#000; }
.atag:nth-child(10n+3)  { background: linear-gradient(135deg, #7B2FBE, #E040FB); }
.atag:nth-child(10n+4)  { background: linear-gradient(135deg, #0077FF, #00C6FF); }
.atag:nth-child(10n+5)  { background: linear-gradient(135deg, #E91E63, #FF6F00); }
.atag:nth-child(10n+6)  { background: linear-gradient(135deg, #00C853, #004D40); }
.atag:nth-child(10n+7)  { background: linear-gradient(135deg, #F44336, #880E4F); }
.atag:nth-child(10n+8)  { background: linear-gradient(135deg, #9C27B0, #1565C0); }
.atag:nth-child(10n+9)  { background: linear-gradient(135deg, #FF6F00, #FF1493); }
.atag:nth-child(10n+10) { background: linear-gradient(135deg, #00BCD4, #6A1B9A); }

/* Give gold tag dark text */
.atag:nth-child(10n+2) { color: #111; }

/* WhatsApp CTA Button */
.atag-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  padding: 15px 38px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 8px 25px rgba(37,211,102,0.4);
  letter-spacing: 0.3px;
}
.atag-wa-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 14px 35px rgba(37,211,102,0.55);
  color: #fff;
}

/* ===================================================
   FOOTER
=================================================== */
.main-footer {
  background: var(--black);
  border-top: 3px solid var(--gold);
}

.footer-top { padding: 60px 0 40px; }

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
}

.footer-desc {
  color: rgba(255,255,255,0.45);
  font-size: 0.87rem;
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 20px;
}

.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 1rem;
}
.social-links a:hover { background: #25D366; border-color: #25D366; color: var(--white); }

.footer-heading {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 0.86rem;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }

.footer-contact { list-style: none; padding: 0; }
.footer-contact li {
  color: rgba(255,255,255,0.45);
  font-size: 0.86rem;
  margin-bottom: 11px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-contact li i { color: var(--hotpink); width: 16px; }

/* Area Tags */
.footer-areas {
  background: rgba(255,215,0,0.03);
  border-top: 1px solid rgba(255,215,0,0.1);
  border-bottom: 1px solid rgba(255,215,0,0.1);
  padding: 25px 0;
}
.area-label {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.84rem;
  margin-bottom: 12px;
}
.area-tags { display: flex; flex-wrap: wrap; gap: 9px; }
.area-tags a {
  font-size: 0.76rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  text-decoration: none;
  color: var(--white);
  border: none;
  transition: all 0.3s;
  box-shadow: 0 3px 10px rgba(0,0,0,0.25);
  letter-spacing: 0.3px;
}
.area-tags a:hover {
  transform: translateY(-3px) scale(1.07);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
  filter: brightness(1.15);
}

/* Cycle 8 vivid gradient colors across all tags */
.area-tags a:nth-child(8n+1)  { background: linear-gradient(135deg, #FF1493, #C2185B); }
.area-tags a:nth-child(8n+2)  { background: linear-gradient(135deg, #FFD700, #FF6F00); }
.area-tags a:nth-child(8n+3)  { background: linear-gradient(135deg, #7B2FBE, #E040FB); }
.area-tags a:nth-child(8n+4)  { background: linear-gradient(135deg, #0077FF, #00C6FF); }
.area-tags a:nth-child(8n+5)  { background: linear-gradient(135deg, #00C853, #1B5E20); }
.area-tags a:nth-child(8n+6)  { background: linear-gradient(135deg, #FF4500, #FF8C00); }
.area-tags a:nth-child(8n+7)  { background: linear-gradient(135deg, #E91E63, #9C27B0); }
.area-tags a:nth-child(8n+8)  { background: linear-gradient(135deg, #00BCD4, #006064); }

/* Make nth-child(2-3) text black for gold/yellow */
.area-tags a:nth-child(8n+2) { color: #000; }

.footer-bottom {
  padding: 20px 0;
  background: #030308;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.8rem; }

.footer-legal-links { display: flex; gap: 18px; }
.footer-legal-links a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.3s;
}
.footer-legal-links a:hover { color: var(--gold); }

/* ===================================================
   FLOATING BUTTONS
=================================================== */
.float-call, .float-wa {
  position: fixed;
  bottom: 100px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  transition: all 0.3s;
}
.float-call { left: 20px; background: linear-gradient(135deg, var(--hotpink), var(--purple)); }
.float-wa   { right: 20px; background: linear-gradient(135deg, #25D366, #128C7E); }
.float-call:hover, .float-wa:hover { transform: scale(1.15); color: var(--white); }

/* Pulse animation on WhatsApp button */
.float-wa { animation: waPulse 2s infinite; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 25px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 8px 35px rgba(37,211,102,0.7); }
}

/* ===================================================
   LEGAL PAGES
=================================================== */
.contact-hero, .legal-hero {
  background: linear-gradient(135deg, var(--black), #1a0a2e);
  padding: 120px 0 55px;
  text-align: center;
  border-bottom: 2px solid var(--gold);
}
.contact-form-wrap{
  overflow: hidden;
}
 .contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 50px 40px;
  box-shadow: var(--shadow-card);
}

.form-control-custom {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  color: var(--text-dark);
  padding: 13px 18px;
  font-family: var(--font-main);
  font-size: 0.92rem;
  width: 100%;
  margin-bottom: 18px;
  transition: all 0.3s;
  outline: none;
}
.form-control-custom:focus {
  border-color: var(--hotpink);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(255,20,147,0.1);
}
.form-control-custom::placeholder { color: #aaa; }

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border: none; }

.ci-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.ci-icon.pink  { background: linear-gradient(135deg, var(--hotpink), var(--purple)); color: #fff; }
.ci-icon.gold  { background: linear-gradient(135deg, var(--gold), var(--gold2)); color: #000; }
.ci-icon.green { background: linear-gradient(135deg, #25D366, #128C7E); color: #fff; }

.ci-body h5 { color: #999; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px; }
.ci-body p  { color: var(--text-dark); font-size: 0.98rem; font-weight: 600; margin: 0; }

/* Legal content */
.legal-content { padding: 60px 0; background: var(--off-white); }

.legal-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 50px 45px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(123,47,190,0.06);
}
.legal-box h3 {
  color: var(--hotpink);
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 28px 0 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid #ffe0f0;
}
.legal-box h3:first-of-type { margin-top: 0; }
.legal-box p { color: #555; line-height: 1.8; font-size: 0.92rem; margin-bottom: 12px; }
.legal-box ul { color: #555; line-height: 1.8; font-size: 0.92rem; padding-left: 20px; margin-bottom: 14px; }
.legal-box ul li { margin-bottom: 5px; }
.warning-box {
  background: #fff3f8;
  border: 1.5px solid #ffb3d4;
  border-radius: 14px;
  padding: 18px 22px;
  margin: 15px 0 25px;
}
.warning-box p { color: var(--text-dark); font-weight: 500; margin: 0; }
.warning-box i { color: var(--hotpink); margin-right: 8px; }

/* ===================================================
   ANIMATIONS
=================================================== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===================================================
   RESPONSIVE
=================================================== */
@media (max-width: 992px) {
  .long-profile-card,
  .long-profile-card.reverse { flex-direction: column; }
  .lp-img { width: 100%; min-height: 260px; min-width: unset; }
  .lp-img-badge { bottom: 12px; }
  .search-bar { flex-direction: column; border-radius: 20px; padding: 10px; }
  .search-divider { width: 100%; height: 1px; margin: 0; }
  .search-btn { border-radius: 12px; padding: 14px; width: 100%; }

  /* Hero search bar in header — stack on tablet */
  .hero-header .table-search-wrap { padding: 0 10px; }
  .hero-header .table-search-bar { max-width: 100%; border-radius: 16px; flex-wrap: wrap; }
  .hero-header .table-search-bar input { min-width: 0; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 1.8rem; }
  .hero-subtitle { font-size: 0.9rem; margin-bottom: 22px; }
  .hero-stats { gap: 18px; }
  .stat-num { font-size: 1.4rem; }
  .two-col-card { flex-direction: column; }
  .two-col-img { width: 100%; height: 180px; min-width: unset; }
  .two-col-badge { bottom: 8px; }
  .lp-content { padding: 22px; }
  .lp-header { flex-direction: column; }
  .age-popup-box { padding: 28px 18px; }
  .contact-info-card { padding: 28px 18px; }
  .legal-box { padding: 28px 18px; }
  .footer-bottom { text-align: center; }
  .footer-legal-links { justify-content: center; margin-top: 10px; }
  .profile-table thead th, .profile-table tbody td { padding: 11px 12px; font-size: 0.8rem; }

  /* Hero search bar — stack input above button on mobile */
  .hero-header .table-search-wrap { padding: 0; }
  .hero-header .table-search-bar {
    flex-direction: column;
    border-radius: 16px;
    max-width: 100%;
    overflow: visible;
    background: rgba(255,255,255,0.1);
    border: 1.5px solid rgba(255,215,0,0.5);
    padding: 4px;
    gap: 4px;
  }
  .hero-header .table-search-bar .search-ico {
    display: none;
  }
  .hero-header .table-search-bar input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 0.92rem;
  }
  .hero-header .table-search-bar button {
    width: 100%;
    border-radius: 12px;
    padding: 13px;
    font-size: 0.88rem;
  }
}

@media (max-width: 576px) {
  .hero-title { font-size: 1.5rem; }
  .hero-badge { font-size: 0.7rem; padding: 7px 16px; }
  .hero-stats { gap: 12px; }
  .stat-num { font-size: 1.2rem; }
  .stat-label { font-size: 0.65rem; letter-spacing: 1px; }
  .overlay-badge { font-size: 0.65rem; padding: 5px 10px; }
  .area-tags a { font-size: 0.72rem; }
  .brand-logo { font-size: 0.8rem!important; }
  .atag { font-size: 0.76rem; padding: 7px 14px; }
  .adult-tags-cloud { gap: 8px; }
}


/* ===================================================
   NEW INFO SECTION (LEFT TEXT / RIGHT FULL IMAGE)
=================================================== */
.info-section {
  display: flex;
  background: var(--black);
  color: var(--white);
  border-top: 1px solid rgba(255,215,0,0.2);
}
.info-content {
  flex: 1;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.info-title {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.info-p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 15px;
}
.info-img-box {
  flex: 1;
  min-height: 400px;
}
.info-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0 !important; /* Full no rounded */
}

/* ===================================================
   FAQ SECTION
=================================================== */
.faq-section {
  padding: 80px 20px;
  background: #0a0a14;
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px dotted rgba(255,215,0,0.4);
  margin-bottom: 15px;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 20px 25px;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
}
.faq-question:hover {
  background: rgba(255,215,0,0.05);
  color: var(--gold);
}
.faq-question.active { color: var(--gold); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 25px;
}
.faq-answer.show {
  max-height: 500px; 
  padding: 0 25px 20px;
}
.faq-answer p { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin: 0; line-height: 1.6; }

/* ===================================================
   COOKIE POPUP
=================================================== */
.cookie-popup {
  position: fixed;
  bottom: -200%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 500px;
  background: var(--white);
  border: 2px solid var(--gold);
  padding: 25px;
  border-radius: 12px;
  z-index: 10000;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.4);
  transition: bottom 0.6s ease;
}
.cookie-popup.show { bottom: 30px; }
.cookie-text { font-size: 0.9rem; color: #111; margin-bottom: 18px; line-height: 1.5; }
.cookie-btns { display: flex; gap: 10px; }
.cookie-btn-acc {
  background: var(--gold);
  color: #000; padding: 10px 20px; font-weight: 700; border: none; border-radius: 50px; flex: 1; cursor: pointer;
}
.cookie-btn-mng {
  background: #eee;
  color: #555; padding: 10px 20px; font-weight: 600; border: 1px solid #ccc; border-radius: 50px; flex: 1; cursor: pointer;
}

/* ===================================================
   GALLERY TAGS (Replaces Buttons)
=================================================== */
.gal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  width: 100%;
  justify-content: center;
  margin-top: 5px;
}
.gal-tag {
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 40px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.tag-online { border-color: #25D366; color: #25D366; }
.tag-call { border-color: var(--hotpink); color: var(--hotpink); }
.tag-wa { border-color: var(--gold); color: var(--gold); }
.tag-vid { border-color: #00BCD4; color: #00BCD4; }

@media (max-width: 768px) {
  .info-section { flex-direction: column; }
  .info-content { padding: 40px 20px; }
  .info-img-box { min-height: 300px; }
  .faq-question { font-size: 0.95rem; padding: 15px; }
  .faq-answer.show { padding: 0 15px 15px; }
  .gal-tag { font-size: 0.55rem; padding: 4px 6px; }
}
