:root {
  --bg-primary: #080606;
  --bg-secondary: #140b0b;
  --bg-card: #1b1010;
  --bg-card-strong: #241313;
  --accent: #FF3D3D;
  --accent-2: #8B0000;
  --accent-soft: #FF7A7A;
  --text-main: #FFF8F8;
  --text-muted: #E4D0D0;
  --border: rgba(255, 61, 61, 0.28);
  --border-strong: rgba(255, 122, 122, 0.4);
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.38);
  --gradient: linear-gradient(135deg, var(--accent-2) 0%, var(--accent) 100%);
  --gradient-soft: linear-gradient(135deg, rgba(139, 0, 0, 0.24) 0%, rgba(255, 61, 61, 0.14) 100%);
  --white: #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif !important;
  font-size: 16px;
  background:
    radial-gradient(circle at top left, rgba(139, 0, 0, 0.28), transparent 30%),
    radial-gradient(circle at bottom right, rgba(255, 61, 61, 0.16), transparent 35%),
    linear-gradient(135deg, #050303 0%, var(--bg-primary) 45%, #140909 100%);
  color: var(--text-main);
  line-height: 1.75;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
}

section {
  padding: 72px 0;
  position: relative;
}

section:not(.PayalHomeCombo):not(.team):not(.category):not(.location):not(.faq-section):not(.popular-categories):nth-of-type(even) {
  background: linear-gradient(180deg, rgba(17, 10, 20, 0.5), rgba(33, 17, 39, 0.75));
  border-top: 1px solid rgba(255, 118, 185, 0.12);
  border-bottom: 1px solid rgba(255, 118, 185, 0.12);
}

h1, h2, h3, h4 {
  color: var(--text-main);
}

h2 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 1.2rem 0 0.9rem;
}

h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin: 1.4rem 0 0.7rem;
}

p {
  color: var(--text-muted);
  text-align: justify;
  margin-bottom: 1rem;
  font-size: 16px;
}

a {
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.25s ease;
}

a:hover {
  color: var(--accent);
}

/* ========== NAVBAR ========== */
.navbar.teal {
  position: relative;
  z-index: 2000;
  background: rgba(9, 6, 13, 0.92) !important;
  border-bottom: 1px solid rgba(255, 118, 185, 0.25);
  padding: 10px 0;
  margin-bottom: 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
}

.navbar-header { width: 100%; text-align: center; }

.navbar-toggle {
  float: none !important;
  display: inline-block;
  margin: 6px auto;
  border: 1px solid var(--accent);
  color: var(--text-main);
  font-weight: 700;
  padding: 8px 22px;
  background: var(--gradient-soft);
  font-size: 15px;
  border-radius: 999px;
}

.navbar-collapse { width: 100%; border: none; box-shadow: none; }
.nav-1 {
  margin: 0;
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.nav-1 > li { display: inline-block; float: none; }
.nav-1 a {
  color: var(--text-main) !important;
  font-weight: 600;
  font-size: 15px;
  padding: 10px 14px !important;
  display: block;
  border-radius: 999px;
  transition: all 0.25s ease;
}

.nav-1 a:hover {
  color: var(--accent-soft) !important;
  background: rgba(236, 73, 153, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 118, 185, 0.2);
}

.dropdown { position: relative; }
.dropdown-content {
  display: none;
  position: absolute;
  left: 0;
  min-width: 230px;
  max-height: 360px;
  overflow-y: auto;
  background: rgba(31, 16, 35, 0.98);
  border: 1px solid var(--border);
  border-radius: 14px;
  z-index: 1000;
  box-shadow: var(--shadow);
  padding: 8px;
}

.dropdown:hover .dropdown-content { display: block; }
.dropdown-content a {
  color: var(--text-main) !important;
  padding: 10px 14px !important;
  display: block;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
  border-radius: 10px;
}

.dropdown-content a:hover {
  background: rgba(236, 73, 153, 0.14);
  color: var(--accent-soft) !important;
}

@media (max-width: 767px) {
  .navbar-header { text-align: center; }
  .navbar-toggle {
    float: none !important;
    margin: 8px auto;
    display: block;
  }
  .navbar-collapse {
    background: rgba(9, 6, 13, 0.98);
    border-top: 1px solid rgba(255, 118, 185, 0.2);
    border-radius: 0 0 16px 16px;
  }
  .nav-1 {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav-1 > li {
    display: block;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav-1 a { padding: 14px 20px !important; font-size: 15px; }
  .dropdown-content {
    position: static;
    box-shadow: none;
    border: none;
    background: rgba(17, 10, 20, 0.92);
    padding: 0 8px 8px;
  }
}

/* ========== HERO ========== */
.PayalHomeCombo {
  min-height: 650px;
  background:
    linear-gradient(90deg, rgba(5, 3, 3, 0.9) 0%, rgba(20, 11, 11, 0.75) 55%, rgba(20, 11, 11, 0.55) 100%),
    url('../images/banner.webp') center/cover no-repeat;
  position: relative;
  overflow: hidden;
  padding: 40px 0 30px;
}

.PayalHomeCombo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent 45%);
  pointer-events: none;
}

.PrlxBoxLayer {
  position: relative;
  z-index: 9;
  top: 2.2em;
  width: 100%;
  text-align: center;
  padding: 0 15px;
}

.PrlxBoxTitle {
  font-size: 3rem;
  font-weight: 800;
  text-transform: uppercase;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 14px;
  letter-spacing: 0.03em;
}

.PrlxBoxSubTitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 1.6rem;
  display: block;
}

.PrlxBoxBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text-main) !important;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 24px;
  min-width: 160px;
  margin: 0 6px 10px;
  border-radius: 999px;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}

.PrlxBoxBtn:hover {
  background: var(--gradient);
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(236, 73, 153, 0.25);
  transform: translateY(-2px);
}

.CatSearchTitle {
  color: var(--text-main);
  font-weight: 700;
  font-size: 1.45rem;
  margin: 1.6rem 0 1.2rem;
}

.PrlxCatBox .container {
  background: rgba(41, 21, 46, 0.88);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 24px 20px;
  backdrop-filter: blur(12px);
}

.fgCombo {
  height: 46px;
  background: rgba(18, 10, 20, 0.95);
  border: 1px solid rgba(255, 118, 185, 0.26);
  color: var(--text-main);
  border-radius: 999px 0 0 999px;
  padding: 0 16px;
  width: 75%;
  font-size: 14px;
  appearance: none;
}

.fgbtn {
  height: 46px;
  background: var(--gradient);
  border: none;
  color: var(--text-main);
  font-weight: 700;
  font-size: 14px;
  border-radius: 0 999px 999px 0;
  padding: 0 16px;
  width: 22%;
  box-shadow: 0 8px 20px rgba(236, 73, 153, 0.2);
  transition: all 0.25s ease;
}

.fgbtn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(236, 73, 153, 0.28);
}

/* ========== TITLES ========== */
.title {
  color: var(--text-main) !important;
  text-align: center;
  font-size: 1.95rem !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  margin-bottom: 1.8rem !important;
  position: relative;
  letter-spacing: 0.02em;
}

.title::after {
  content: '';
  display: block;
  width: 84px;
  height: 4px;
  background: var(--gradient);
  margin: 12px auto 0;
  border-radius: 2px;
  box-shadow: 0 0 18px rgba(236, 73, 153, 0.22);
}

/* ========== PROFILE CARDS ========== */
.team .flex-container {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  justify-content: center;
  width: 100%;
  align-items: stretch;
}

.team .flex-container > a {
  display: none !important;
}

.team .flex-container .member {
  width: 100%;
  height: 100%;
}

.team .member {
  background: linear-gradient(180deg, rgba(41, 21, 46, 0.98), rgba(31, 16, 35, 0.97));
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}

.team .member:hover {
  transform: translateY(-8px);
  border-color: var(--accent-soft);
  box-shadow: 0 18px 40px rgba(236, 73, 153, 0.22);
  background: linear-gradient(180deg, rgba(50, 25, 58, 0.98), rgba(36, 18, 41, 0.98));
}

.profile-img-wrap { position: relative; }
.team .member img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: top;
  display: block;
  margin: 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.verified-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 200, 83, 0.95);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 2;
}

.member-info {
  padding: 16px 16px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.member-name {
  font-size: 1.24rem !important;
  font-weight: 800 !important;
  color: var(--text-main) !important;
  margin-bottom: 8px !important;
}

.profile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.profile-meta span { display: flex; align-items: center; gap: 4px; }
.profile-meta i { color: var(--accent); font-size: 12px; }
.star-rating {
  color: #ffd166;
  font-size: 13px;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.profile-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 10px;
  flex: 1;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 13px;
}
.service-tag {
  background: rgba(236, 73, 153, 0.14);
  border: 1px solid rgba(255, 118, 185, 0.25);
  color: var(--accent-soft);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
  text-transform: uppercase;
}
.profile-btns { display: flex; gap: 8px; }
.btn-call, .btn-wa {
  flex: 1;
  text-align: center;
  padding: 9px 0;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none !important;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.btn-call {
  background: transparent;
  border: 1.5px solid rgba(236, 73, 153, 0.5);
  color: var(--accent) !important;
}
.btn-call:hover {
  background: var(--accent);
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(236, 73, 153, 0.2);
}
.btn-wa {
  background: transparent;
  border: 1.5px solid rgba(37, 211, 102, 0.55);
  color: #25d366 !important;
}
.btn-wa:hover {
  background: #25d366;
  color: #fff !important;
}

/* ========== CATEGORY + LOCATION ========== */
.category .flex-container,
.location .flex-container {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.category .flex-container a,
.location .flex-container a {
  width: 100% !important;
  margin: 0 !important;
  background: linear-gradient(180deg, rgba(41, 21, 46, 0.97), rgba(31, 16, 35, 0.94));
  border: 1px solid var(--border);
  color: var(--text-main);
  font-weight: 600;
  padding: 15px 12px;
  text-align: center;
  border-radius: 12px;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}
.category .flex-container a:hover,
.location .flex-container a:hover {
  border-color: var(--accent-soft);
  background: rgba(236, 73, 153, 0.12);
  color: var(--accent-soft);
  transform: translateY(-3px);
}

/* ========== POPULAR 2×4 ========== */
.popular-categories {
  background: linear-gradient(180deg, rgba(8, 6, 26, 0.95), rgba(17, 10, 20, 0.98)) !important;
  padding: 60px 0;
}
.categories-grid { display: flex; flex-direction: column; gap: 26px; }
.category-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.category-item { text-align: center; text-decoration: none; }
.icon-circle {
  width: 112px;
  height: 112px;
  margin: 0 auto 11px;
  background: rgba(18, 10, 20, 0.95);
  border: 2px solid rgba(236, 73, 153, 0.38);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.4s;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
}
.category-item:hover .icon-circle {
  border-color: var(--accent-soft);
  box-shadow: 0 0 25px rgba(255, 118, 185, 0.2);
  transform: scale(1.06);
}
.icon-circle img {
  width: 84%;
  height: 84%;
  object-fit: cover;
  border-radius: 50%;
}
.category-name {
  display: block;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-main);
}
.category-item:hover .category-name { color: var(--accent-soft); }

/* ========== FAQ ========== */
.faq-section {
  background: linear-gradient(180deg, rgba(17, 10, 20, 0.97), rgba(31, 16, 35, 0.97));
  padding: 60px 0;
}
.accordion .card {
  background: linear-gradient(180deg, rgba(41, 21, 46, 0.98), rgba(31, 16, 35, 0.96));
  border: 1px solid var(--border);
  border-radius: 14px !important;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}
.accordion .card-header { background: transparent !important; border: none !important; padding: 0; }
.accordion .btn-link {
  width: 100%;
  text-align: left;
  color: var(--text-main) !important;
  font-weight: 700;
  font-size: 1.02rem;
  padding: 16px 18px;
  text-decoration: none !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion .btn-link:hover { color: var(--accent-soft) !important; }
.accordion .btn-link::after { content: '+'; font-size: 1.35rem; color: var(--accent); }
.accordion .btn-link:not(.collapsed)::after { content: '−'; }
.accordion .card-body {
  background: rgba(18, 10, 20, 0.96);
  color: var(--text-muted);
  padding: 0 18px 17px;
  font-size: 15px;
  line-height: 1.7;
  border-top: 1px solid rgba(255, 118, 185, 0.15);
}

.testimonials {
  background: linear-gradient(180deg, rgba(17, 10, 20, 0.97), rgba(31, 16, 35, 0.97));
  padding: 60px 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: linear-gradient(180deg, rgba(41, 21, 46, 0.98), rgba(31, 16, 35, 0.96));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}
.testimonial-card .quote {
  color: var(--text-muted);
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 22px;
}
.testimonial-card .quote i {
  color: var(--accent);
  margin-right: 10px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(236, 73, 153, 0.14);
  color: var(--accent-soft);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  font-weight: 800;
}
.author-info .author-name {
  color: var(--text-main);
  font-weight: 700;
}
.author-info .author-meta {
  color: var(--text-muted);
  font-size: 0.94rem;
}

@media (max-width: 991px) {
  .testimonials-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

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

/* ========== FOOTER ========== */
footer {
  background: linear-gradient(180deg, #0b0606 0%, #180a0a 100%);
  border-top: 1px solid rgba(255, 61, 61, 0.24);
  color: var(--text-main);
}

.footer-main {
  padding: 56px 0 24px;
}

.footer-brand {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand span {
  color: var(--accent-soft);
}

.footer-text {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 360px;
  margin-bottom: 16px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 8px;
}

.footer-links a,
.footer-contact a {
  color: var(--text-muted);
  font-size: 14px;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--accent-soft);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}

.fixed-bottom {
  position: fixed;
  left: 0; bottom: 0; width: 100%;
  background: rgba(10, 6, 6, 0.96);
  border-top: 1px solid rgba(255, 61, 61, 0.25);
  display: none;
  z-index: 999;
}
.fixed-bottom .flex-container a {
  width: 33.33%;
  text-align: center;
  padding: 10px;
  display: block;
}
.scrollToTop {
  position: fixed;
  right: 16px;
  bottom: 70px;
  width: 48px;
  height: 48px;
  font-size: 19px;
  line-height: 48px;
  text-align: center;
  color: #fff !important;
  z-index: 999;
  display: none;
  background: var(--gradient) !important;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(255, 61, 61, 0.24);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
  .category .flex-container,
  .location .flex-container,
  .category-row { grid-template-columns: repeat(2, 1fr); }
  .PrlxBoxTitle { font-size: 2.4rem; }
  .team .flex-container { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .team .member img { height: 280px; object-position: top; }
}
@media (max-width: 767px) {
  .team .flex-container { grid-template-columns: 1fr; gap: 15px; }
  .team .member img {
    height: 260px;
    object-fit: cover;
    object-position: top;
  }
  .PrlxBoxTitle { font-size: 1.95rem; }
  .fixed-bottom { display: block; }
  p { font-size: 15.3px; }
  h2 { font-size: 1.5rem; }
}
@media (max-width: 480px) {
  .team .flex-container { grid-template-columns: 1fr; }
  .team .member img {
    height: 320px;
    object-fit: cover;
    object-position: top;
  }
  .category .flex-container,
  .location .flex-container,
  .category-row { grid-template-columns: 1fr; }
  .PrlxBoxTitle { font-size: 1.75rem; }
  .profile-btns { flex-direction: column; }
  body { font-size: 15px; }
  p { font-size: 14.8px; }
}