/* ============================================================
   Bangalore Companions — Completely Redesigned Stylesheet
   Class names preserved. Every visual property changed.
   Old theme: dark red/maroon #3a0f14 + gold #ffcc52 + white
   New theme: emerald #059669 + coral #f43f5e + cream #fffbeb
   Light, attractive, well-defined, clear text
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

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

:root {
  --emerald: #059669;
  --emerald-dark: #047857;
  --emerald-light: #10b981;
  --emerald-pale: #d1fae5;
  --coral: #f43f5e;
  --coral-dark: #e11d48;
  --coral-light: #fb7185;
  --coral-pale: #ffe4e6;
  --cream: #fffbeb;
  --cream-dark: #fef3c7;
  --ink: #1f2937;
  --ink-light: #4b5563;
  --slate: #64748b;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(5, 150, 105, 0.08);
  --shadow-md: 0 6px 20px rgba(5, 150, 105, 0.12);
  --shadow-lg: 0 16px 40px rgba(5, 150, 105, 0.18);
  --shadow-coral: 0 6px 20px rgba(244, 63, 94, 0.3);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 999px;
  --transition: all 0.25s ease;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(180deg, var(--cream) 0%, #ffffff 100%);
  color: var(--ink);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  width: 10px;
}
body::-webkit-scrollbar-track {
  background: var(--cream-dark);
}
body::-webkit-scrollbar-thumb {
  background: var(--emerald);
  border-radius: 10px;
}
body::-webkit-scrollbar-thumb:hover {
  background: var(--emerald-dark);
}

/* ============ LAYOUT ============ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
  align-items: center;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.img-fluid {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============ HEADER ============ */
header {
  background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--emerald) 50%, var(--emerald-light) 100%);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(5, 150, 105, 0.25);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo a {
  color: var(--white);
  text-decoration: none;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.main-menu {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}

.main-menu .list-items a {
  color: var(--white);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
  display: inline-block;
}

.main-menu .list-items a:hover,
.main-menu .list-items a.active {
  background: rgba(255, 255, 255, 0.2);
  color: var(--cream-dark);
}

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.toggler-icon {
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: var(--transition);
  display: block;
}

.main-menu.show {
  display: flex !important;
}

/* ============ BANNER ============ */
.banner {
  background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--emerald) 100%);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.banner::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(244, 63, 94, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.banner .row {
  position: relative;
  z-index: 1;
}

.image_side {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 15px;
}

.image_side img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.content_side {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 15px;
  color: var(--white);
}

.content_side p {
  color: var(--cream-dark);
  margin-bottom: 16px;
  font-size: 15px;
}

.content_side p a {
  color: var(--coral-light);
  text-decoration: none;
  font-weight: 600;
}

.content_side h1 {
  color: var(--white);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

/* ============ CUSTOM SELECT ============ */
.custom-select {
  position: relative;
  margin-top: 20px;
}

.custom-select label {
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.custom-select select {
  width: 100%;
  max-width: 400px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 2px solid var(--coral);
  background: var(--white);
  color: var(--ink);
  font-size: 15px;
  font-family: inherit;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23059669' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.select-selected {
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 2px solid var(--coral);
  background: var(--white);
  color: var(--ink);
  font-size: 15px;
  cursor: pointer;
}

.select-items {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border: 2px solid var(--coral);
  border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  z-index: 99;
  max-height: 250px;
  overflow-y: auto;
}

.select-items div {
  padding: 10px 16px;
  cursor: pointer;
  color: var(--ink);
  font-size: 14px;
  transition: var(--transition);
}

.select-items div:hover {
  background: var(--emerald-pale);
}

.select-hide {
  display: none;
}

.select-arrow-active {
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.same-as-selected {
  background: var(--emerald-pale) !important;
  font-weight: 600;
}

/* ============ MARQUEE ============ */
.marquee {
  background: linear-gradient(90deg, var(--coral), var(--coral-dark));
  padding: 10px 0;
  overflow: hidden;
}

.marquee marquee {
  width: 100%;
}

.marquee ul {
  list-style: none;
  display: inline-flex;
  gap: 30px;
}

.marquee ul li a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ============ RANDOM TEXT SECTIONS ============ */
.random_text {
  padding: 60px 20px;
  background: var(--white);
}

.random_text .wrap,
.random_text .container {
  max-width: 1100px;
  margin: 0 auto;
}

.random_text h2 {
  color: var(--emerald-dark);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  margin-top: 28px;
  line-height: 1.3;
}

.random_text h2:first-child {
  margin-top: 0;
}

.random_text h3 {
  color: var(--coral-dark);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  margin-top: 24px;
}

.random_text p {
  color: var(--ink-light);
  font-size: 15px;
  margin-bottom: 14px;
  line-height: 1.75;
}

.random_text p a {
  color: var(--coral);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.random_text p a:hover {
  color: var(--coral-dark);
  text-decoration: underline;
}

.random_text p b,
.random_text p strong {
  color: var(--emerald-dark);
  font-weight: 700;
}

.random_text ul {
  margin: 16px 0;
  padding-left: 24px;
}

.random_text ul li {
  color: var(--ink-light);
  font-size: 15px;
  margin-bottom: 10px;
  line-height: 1.7;
  list-style: disc;
}

.random_text ul li b,
.random_text ul li strong {
  color: var(--emerald-dark);
}

/* Random text with imgcard cards */
.random_text .shead {
  margin-bottom: 32px;
  text-align: center;
}

.random_text .shead.center {
  text-align: center;
}

.random_text .shead h2 {
  color: var(--emerald-dark);
  font-size: 30px;
  text-align: center;
  margin-bottom: 12px;
}

.random_text .shead .lead {
  color: var(--ink-light);
  font-size: 16px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.random_text .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .random_text .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .random_text .cards {
    grid-template-columns: 1fr;
  }
}

.random_text .imgcard {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 480px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.random_text .imgcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.random_text .imgcard .cardimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.random_text .imgcard:hover .cardimg {
  transform: scale(1.06);
}

.random_text .imgcard::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 150, 105, 0.85) 0%, rgba(5, 150, 105, 0.4) 40%, rgba(5, 150, 105, 0) 70%);
  pointer-events: none;
}

.random_text .imgcard h3 {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 76px;
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  z-index: 2;
  line-height: 1.2;
}

.random_text .imgcard .cta {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 20px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.random_text .btn {
  flex: 1;
  text-align: center;
  padding: 10px 12px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.random_text .btn-ghost {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
}

.random_text .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.25);
}

.random_text .btn-wa {
  background: var(--coral);
  color: var(--white);
}

.random_text .btn-wa:hover {
  background: var(--coral-dark);
}

/* ============ VIDEO SECTION ============ */
.video-sec {
  background: var(--ink);
  padding: 40px 0;
}

.video-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.video-container video {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--emerald);
  outline: none;
}

/* ============ CATEGORY (Profile Cards) ============ */
.category {
  padding: 60px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

.category h2 {
  color: var(--emerald-dark);
  font-size: 30px;
  text-align: center;
  margin-bottom: 36px;
  font-weight: 700;
  position: relative;
  padding-bottom: 12px;
}

.category h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--coral), var(--coral-dark));
  border-radius: 4px;
}

.category .row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin: 0;
}

.category_box {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
}

.category_box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--coral);
}

.category_img {
  overflow: hidden;
}

.category_img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  border-bottom: 3px solid var(--emerald);
}

.category_box:hover .category_img img {
  transform: scale(1.05);
}

.category_box .name p {
  text-align: center;
  padding: 12px 8px 4px;
  color: var(--emerald-dark);
  font-size: 17px;
  font-weight: 700;
  margin: 0;
}

.category_box .type p {
  text-align: center;
  padding: 0 8px 12px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0;
}

.call-actions {
  display: flex;
  gap: 8px;
  padding: 0 12px 14px;
  margin-top: auto;
}

.call-actions a {
  flex: 1;
  text-decoration: none;
  display: block;
}

.call-box {
  text-align: center;
  padding: 10px 8px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: var(--transition);
}

.call-now {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
  color: var(--white);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.call-now:hover {
  background: linear-gradient(135deg, var(--emerald-dark), #064e3b);
  transform: translateY(-2px);
}

.whatsapp-now {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(244, 63, 94, 0.3);
}

.whatsapp-now:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
}

/* ============ PRICE LIST ============ */
.price_list {
  padding: 60px 0;
  background: var(--white);
}

.price_list h2 {
  color: var(--emerald-dark);
  font-size: 32px;
  text-align: center;
  margin-bottom: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.price_list > .container > p {
  text-align: center;
  color: var(--ink-light);
  font-size: 15px;
  margin-bottom: 32px;
}

.price_list p a {
  color: var(--coral);
  font-weight: 600;
}

.pricelist_container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricebox {
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--emerald-pale);
  transition: var(--transition);
}

.pricebox:hover {
  transform: translateY(-4px);
  border-color: var(--emerald);
  box-shadow: var(--shadow-lg);
}

.timing {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
  padding: 16px;
  text-align: center;
}

.timing p {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0;
}

.charges {
  background: var(--coral);
  padding: 12px;
  text-align: center;
}

.charges p {
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
  margin: 0;
}

.facilities {
  padding: 20px;
}

.facilities ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.facilities ul li {
  padding: 8px 0;
  color: var(--ink);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--cream-dark);
}

.facilities ul li:last-child {
  border-bottom: none;
}

.facilities ul li img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ============ TRENDING ============ */
.trending {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--emerald-dark), var(--emerald));
}

.trending h2 {
  color: var(--white);
  font-size: 30px;
  text-align: center;
  margin-bottom: 36px;
  font-weight: 700;
}

.trending .row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin: 0;
}

.trending_box {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.trending_box figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.trending_box img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.trending_box:hover img {
  transform: scale(1.05);
}

.trending_box figcaption {
  padding: 20px;
  background: var(--white);
}

.trending_box figcaption p {
  color: var(--coral);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.trending_box figcaption h2 {
  color: var(--emerald-dark);
  font-size: 22px;
  margin-bottom: 14px;
  text-align: left;
}

/* Slider */
.slider-container {
  position: relative;
  overflow: hidden;
}

.slider {
  display: flex;
  transition: transform 0.5s ease;
}

.slider figure {
  min-width: 100%;
  margin: 0;
  position: relative;
}

.slider img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.slider figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(5, 150, 105, 0.95) 0%, rgba(5, 150, 105, 0.6) 60%, transparent 100%);
}

.slider figcaption p,
.slider figcaption h2 {
  color: var(--white);
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  color: var(--emerald-dark);
  border: none;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 600;
  border-radius: var(--radius-sm);
  z-index: 10;
  transition: var(--transition);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.prev:hover, .next:hover {
  background: var(--white);
}

/* ============ SERVICES WE PROVIDE ============ */
.service_we_provide {
  padding: 60px 0;
  background: var(--cream);
}

.service_we_provide h2 {
  color: var(--emerald-dark);
  font-size: 30px;
  text-align: center;
  margin-bottom: 36px;
  font-weight: 700;
}

.service_provide_container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
}

@media (max-width: 768px) {
  .service_provide_container {
    grid-template-columns: 1fr;
  }
}

.service_left_side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.services_type, .service_area {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--emerald);
}

.heading p {
  color: var(--emerald-dark);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.types ul, .area ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.area ul {
  grid-template-columns: 1fr;
}

.types ul li a, .area ul li a {
  color: var(--ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 10px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  display: block;
  transition: var(--transition);
}

.types ul li a:hover, .area ul li a:hover {
  background: var(--emerald);
  color: var(--white);
}

.service_right_side h2 {
  color: var(--emerald-dark);
  font-size: 22px;
  text-align: left;
  margin-bottom: 14px;
  margin-top: 24px;
}

.service_right_side h2:first-child {
  margin-top: 0;
}

.service_right_side h3 {
  color: var(--coral-dark);
  font-size: 18px;
  margin-bottom: 10px;
  margin-top: 20px;
}

.service_right_side p {
  color: var(--ink-light);
  font-size: 15px;
  margin-bottom: 14px;
  line-height: 1.75;
}

.service_right_side p a {
  color: var(--coral);
  text-decoration: none;
  font-weight: 600;
}

.service_right_side p b {
  color: var(--emerald-dark);
}

.service_right_side ul {
  margin: 16px 0;
  padding-left: 24px;
}

.service_right_side ul li {
  color: var(--ink-light);
  font-size: 15px;
  margin-bottom: 8px;
  list-style: disc;
  line-height: 1.7;
}

.service_right_side ul li b {
  color: var(--emerald-dark);
}

/* ============ WE ARE BEST ============ */
.we_are_best {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--emerald-dark), var(--emerald));
}

.we_are_best h3 {
  text-align: center;
  color: var(--cream-dark);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.we_are_best > .container > p {
  text-align: center;
  color: var(--white);
  font-size: 15px;
  margin-bottom: 36px;
  opacity: 0.9;
}

.facilities_container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.facility {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border-top: 4px solid var(--coral);
}

.facility:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.facility .img_side {
  flex-shrink: 0;
}

.facility .img_side img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.facility .content_side {
  flex: 1;
}

.facility .content_side .heading {
  color: var(--emerald-dark);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.facility .content_side p {
  color: var(--ink-light);
  font-size: 13px;
  margin: 0;
  line-height: 1.5;
}

/* ============ RANDOM IMAGE ============ */
.random_image {
  text-align: center;
  padding: 30px 0;
  background: var(--white);
}

.random_image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* ============ THRILL YOURSELF ============ */
.thrill_yourself {
  padding: 60px 0;
  background: var(--cream);
}

.thrill_yourself h2 {
  color: var(--emerald-dark);
  font-size: 26px;
  margin-bottom: 16px;
  margin-top: 28px;
  line-height: 1.3;
  font-weight: 700;
}

.thrill_yourself h2:first-child {
  margin-top: 0;
}

.thrill_yourself h3 {
  color: var(--coral-dark);
  font-size: 20px;
  margin-bottom: 12px;
  margin-top: 24px;
  font-weight: 600;
}

.thrill_yourself p {
  color: var(--ink-light);
  font-size: 15px;
  margin-bottom: 14px;
  line-height: 1.75;
}

.thrill_yourself p a {
  color: var(--coral);
  text-decoration: none;
  font-weight: 600;
}

.thrill_yourself p b {
  color: var(--emerald-dark);
}

.thrill_yourself ul {
  margin: 16px 0;
  padding-left: 24px;
}

.thrill_yourself ul li {
  color: var(--ink-light);
  font-size: 15px;
  margin-bottom: 10px;
  list-style: disc;
  line-height: 1.7;
}

/* ============ FAQ ============ */
.faq {
  padding: 60px 0;
  background: var(--white);
}

.faq h3 {
  color: var(--emerald-dark);
  font-size: 28px;
  text-align: center;
  margin-bottom: 32px;
  font-weight: 700;
}

.accordion-item {
  background: var(--cream);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid var(--emerald-pale);
}

.accordion-item-header {
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  color: var(--emerald-dark);
  font-size: 16px;
  background: var(--white);
  transition: var(--transition);
  position: relative;
  padding-right: 50px;
}

.accordion-item-header:hover {
  background: var(--emerald-pale);
}

.accordion-item-header::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--coral);
  transition: transform 0.3s ease;
}

.accordion-item-header.active::after {
  transform: translateY(-50%) rotate(45deg);
}

.accordion-item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item-body-content {
  padding: 16px 20px;
  color: var(--ink-light);
  font-size: 14px;
  line-height: 1.7;
}

/* ============ FOOTER ============ */
footer {
  background: linear-gradient(135deg, var(--ink) 0%, #111827 100%);
  color: var(--white);
  padding: 50px 0 20px;
}

footer .overlay {
  position: relative;
}

.Disclaimer {
  margin-bottom: 32px;
}

footer .section-title {
  color: var(--coral-light);
  font-size: 22px;
  text-align: center;
  margin-bottom: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

footer .section-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

footer .section-text strong {
  color: var(--coral-light);
}

.footer_link {
  text-align: center;
  margin-bottom: 24px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer_link a {
  color: var(--cream-dark);
  text-decoration: none;
  font-size: 14px;
  margin: 0 12px;
  transition: var(--transition);
  display: inline-block;
  padding: 6px 0;
}

.footer_link a:hover {
  color: var(--coral-light);
}

.footer_link img {
  display: inline-block;
  vertical-align: middle;
  width: 80px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

.copyright {
  text-align: center;
  padding: 16px 0;
}

.copyright p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  margin: 0;
}

/* ============ FLOATING ICONS ============ */
.floating-icon {
  position: fixed;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
}

.floating-icon a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.floating-icon img {
  width: 30px;
  height: 30px;
}

.whatsapp-icon {
  bottom: 24px;
  right: 24px;
  background: #25D366;
}

.call-icon {
  bottom: 24px;
  left: 24px;
  background: var(--coral);
}

.call-icon img {
  width: 26px;
  height: 26px;
}

.telegram-icon {
  bottom: 90px;
  right: 24px;
  background: #0088cc;
}

.floating-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

/* ============ AGE OVERLAY ============ */
#ageOverlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#ageOverlay[style*="flex"] {
  display: flex !important;
}

.age-modal {
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--emerald);
}

.age-modal .logo {
  color: var(--emerald-dark);
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.age-modal .warning {
  color: var(--coral-dark);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.age-modal .desc {
  color: var(--ink-light);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.age-modal .actions {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.age-modal .actions button,
.age-modal .actions a {
  flex: 1;
  padding: 12px 16px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  display: inline-block;
}

.age-modal .actions button#ageYes {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
  color: var(--white);
}

.age-modal .actions button#ageYes:hover {
  background: linear-gradient(135deg, var(--emerald-dark), #064e3b);
  transform: translateY(-2px);
}

.age-modal .actions a {
  background: var(--coral-pale);
  color: var(--coral-dark);
}

.age-modal .actions a:hover {
  background: var(--coral);
  color: var(--white);
}

.age-modal .footer-age {
  color: var(--slate);
  font-size: 12px;
  line-height: 1.6;
  text-align: left;
  border-top: 1px solid var(--cream-dark);
  padding-top: 16px;
}

/* ============ COOKIE BAR ============ */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ink);
  color: var(--white);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 9998;
  flex-wrap: wrap;
}

.cookie-bar p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.cookie-bar p strong {
  color: var(--coral-light);
}

.cookie-bar button {
  background: var(--emerald);
  color: var(--white);
  border: none;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  transition: var(--transition);
}

.cookie-bar button:hover {
  background: var(--emerald-dark);
}

/* ============ AGE LOCK ============ */
.age-lock {
  overflow: hidden;
}

/* ============ SCROLL TO TOP ============ */
#scrollToTopBtn {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--emerald);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 20px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

#scrollToTopBtn[style*="block"] {
  display: flex !important;
  opacity: 1;
  visibility: visible;
}

#scrollToTopBtn:hover {
  background: var(--emerald-dark);
  transform: translateY(-3px);
}

#scrollToTopBtn img {
  width: 24px;
  height: 24px;
}

/* ============ NOWCALLING (hidden since external HTML removed) ============ */
.nowcalling {
  display: none;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .menu-btn {
    display: flex;
  }

  .main-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--emerald-dark);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    z-index: 999;
    box-shadow: var(--shadow-md);
  }

  .main-menu.show {
    display: flex;
  }

  .main-menu .list-items {
    width: 100%;
  }

  .main-menu .list-items a {
    display: block;
    padding: 12px 16px;
    text-align: center;
  }

  .image_side, .content_side {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .banner {
    padding: 30px 0;
  }

  .random_text .cards {
    grid-template-columns: 1fr;
  }

  .random_text .imgcard {
    height: 400px;
  }

  .facilities_container {
    grid-template-columns: 1fr;
  }

  .floating-icon {
    width: 48px;
    height: 48px;
  }

  .floating-icon img {
    width: 26px;
    height: 26px;
  }

  .age-modal {
    padding: 24px 20px;
  }

  .age-modal .actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .category .row {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .category_img img {
    height: 200px;
  }

  .random_text h2 {
    font-size: 22px;
  }

  .footer_link a {
    display: block;
    margin: 4px 0;
  }
}
