:root {
  --bg: #0a0a0a;
  --surface: #141414;
  --card: #1a1a1a;
  --text: #fafafa;
  --muted: #a1a1aa;
  --accent: #e11d48;
  --accent-hover: #be123c;
  --border: #27272a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ========== Navbar ========== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  z-index: 101;
}

.logo span {
  color: var(--accent);
}

/* Desktop Menu */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: white !important;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s ease;
}

.btn:hover {
  background: var(--accent-hover);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 101;
  padding: 4px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg);
  padding: 90px 24px 40px;
  flex-direction: column;
  gap: 8px;
  z-index: 99;
}

.mobile-menu a {
  font-size: 1.2rem;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.mobile-menu .btn {
  margin-top: 20px;
  justify-content: center;
  padding: 14px;
  font-size: 1rem;
}

/* Hamburger Active */
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========== Hero ========== */
.hero {
  padding: 48px 16px 36px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(1.75rem, 5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}

.hero p {
  color: var(--muted);
  max-width: 460px;
  margin: 0 auto 22px;
  font-size: 1.05rem;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.badge {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--muted);
}

/* ========== Container ========== */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px 48px;
}

.section-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

/* ========== Profile Grid (4 cards per row) ========== */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.card:hover {
  border-color: #3f3f46;
  transform: translateY(-2px);
}

.card-img {
  aspect-ratio: 3/4;
  background: #1f1f1f;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 12px 14px 16px;
}

.card-name {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 2px;
}

.card-meta {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.card-btn {
  display: block;
  text-align: center;
  background: #262626;
  padding: 7px;
  border-radius: 7px;
  font-size: 0.82rem;
  font-weight: 500;
  transition: background 0.2s;
}

.card-btn:hover {
  background: #333;
}

/* ========== Categories ========== */
.cats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 40px 0 20px;
}

.cat {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 0.88rem;
  transition: all 0.2s;
}

.cat:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ========== Footer ========== */
footer {
  border-top: 1px solid var(--border);
  padding: 28px 16px;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-menu.active {
    display: flex;
  }
}

@media (min-width: 900px) {
  .nav-container {
    padding: 0 24px;
  }
  .hero {
    padding: 60px 16px 48px;
  }
}

/* Tablet - 3 cards */
@media (max-width: 900px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile - 2 cards */
@media (max-width: 640px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* Chhote mobile - 1 card */
@media (max-width: 400px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

/* ========== Hero Video Section ========== */
.hero-video {
  position: relative;
  height: 85vh;
  min-height: 520px;
  max-height: 820px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0a0a0a;
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.55) 0%,
    rgba(10, 10, 10, 0.75) 50%,
    rgba(10, 10, 10, 0.9) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 20px;
  max-width: 700px;
}

.hero-content h1 {
  font-size: clamp(1.9rem, 5.5vw, 3.1rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero-content p {
  color: #d4d4d8;
  font-size: 1.1rem;
  margin-bottom: 24px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.hero-content .badges {
  margin-bottom: 28px;
}

.hero-btn {
  padding: 13px 28px;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(225, 29, 72, 0.35);
}

/* Mobile height adjust */
@media (max-width: 640px) {
  .hero-video {
    height: 75vh;
    min-height: 480px;
  }

  .hero-content h1 {
    font-size: 1.85rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

/* ========== Content Section ========== */
.content-section {
  background: var(--bg);
}

.content-section h1 {
  font-size: clamp(1.7rem, 4.5vw, 2.4rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 28px;
  letter-spacing: -0.03em;
  color: var(--text);
}

.content-section .section-title {
  text-align: center;
  margin-bottom: 24px;
}

.content-box {
  max-width: 780px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
}

.content-box p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.content-box p:last-child {
  margin-bottom: 0;
}

.content-section h3.section-title {
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}

.content-section h4.section-title {
  font-size: clamp(1.25rem, 3.5vw, 1.55rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  color: var(--text);
}

@media (max-width: 640px) {
  .content-section {
    padding: 45px 0 35px;
  }

  .content-box {
    padding: 22px 18px;
  }

  .content-box p {
    font-size: 1rem;
  }
}

/* ========== Rates Table ========== */
.rates-section {
}

.rates-table-wrapper {
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--card);
}

.rates-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
}

.rates-table th {
  background: #1f1f1f;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: left;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

.rates-table td {
  padding: 15px 20px;
  font-size: 0.95rem;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

.rates-table tr:last-child td {
  border-bottom: none;
}

.rates-table tbody tr:hover {
  background: rgba(225, 29, 72, 0.05);
}

.rates-table td:nth-child(2) {
  color: var(--accent);
  font-weight: 600;
}

.rates-note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 640px) {
  .rates-table th,
  .rates-table td {
    padding: 13px 14px;
    font-size: 0.88rem;
  }
}

/* ========== FAQ Section ========== */
.faq-section {
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.faq-item summary {
  padding: 16px 20px;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--accent);
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ========== Reviews Section ========== */
.reviews-section {
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 20px;
}

.stars {
  color: #fbbf24;
  font-size: 1rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.review-text {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 14px;
}

.reviewer {
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 500;
}

@media (max-width: 640px) {
  .faq-item summary {
    padding: 14px 16px;
    font-size: 0.95rem;
  }

  .faq-item p {
    padding: 0 16px 16px;
  }
}

/* ========== Footer ========== */
.main-footer {
  background: #0c0c0c;
  border-top: 1px solid var(--border);
  padding: 50px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  color: var(--muted);
  font-size: 0.85rem;
}

/* Mobile - 2 columns */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 20px;
  }
}

/* Small Mobile - 1 column */
@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ========== Floating Buttons ========== */
.floating-btns {
  position: fixed;
  bottom: 24px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.float-btn:hover {
  transform: scale(1.08);
}

.float-btn.whatsapp {
  background: #25D366;
}

.float-btn.call {
  background: var(--accent);
}

@media (max-width: 640px) {
  .floating-btns {
    bottom: 18px;
    right: 16px;
  }

  .float-btn {
    width: 48px;
    height: 48px;
  }
}