* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-padding-top: 70px;
}

body {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
  padding-bottom: 96px;
  scrollbar-gutter: stable;
}

/* Inter Font - CLS ke liye best */
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/Inter.woff2') format('woff2');
  font-display: swap;
  size-adjust: 100%;
  ascent-override: 90%;
  descent-override: 22%;
  line-gap-override: 0%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.header {
  background: #fff;
  color: #333;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  min-height: 70px;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.5rem;
  color: #333;
  text-decoration: none;
  font-weight: 700;
}

.hamburger {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
}

.nav-menu {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.nav-link {
  color: #900;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-link:hover, .nav-link:focus-visible {
  color: #700;
}

.hero {
  text-align: center;
  padding: 30px 0;
  background: #f8f8f8;
}

h1, h2, h3, h4 {
  color: #900;
}

h1 { font-size: 2rem; margin-bottom: 15px; }
h2 { font-size: 1.8rem; margin: 20px 0 10px; }
h3 { font-size: 1.4rem; margin: 10px 0; }

.hero p {
  margin-bottom: 15px;
  font-size: 1rem;
}

/* ==================== SECTIONS ==================== */
.profiles, .reviews, .local-areas, .faq, .locations, .video-section, .content, .pricing {
  padding: 20px 0;
  background: #fff;
}

/* Grids */
.profile-grid, .reviews-grid, .local-areas-grid, .locations-grid, .faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 10px;
}

/* ==================== PROFILE CARDS - CLS FIX ==================== */
.profile-card {
  background: #f8f8f8;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.profile-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  aspect-ratio: 270 / 480;     /* Exact ratio from HTML (270:480) */
  object-fit: cover;
  flex-shrink: 0;
  max-width: 100%;
}

/* Review Cards */
.review-card {
  background: #f8f8f8;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* =========================
   Video Section
========================= */

.video-section{
    padding:20px 0;
}

.video-wrapper{
    width:100%;
    max-width:360px;
    margin:20px auto;
    aspect-ratio:9 / 16;
    overflow:hidden;
    background:#000;
    border-radius:10px;
    contain:layout paint;
}

.responsive-video{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    background:#000;
    border:0;
}

.video-caption{
    max-width:900px;
    margin:20px auto 0;
}

.video-caption p{
    line-height:1.7;
}

/* Buttons */
.buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 10px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 22px;
  border-radius: 5px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 1.08rem;
  min-height: 44px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn.call { background: #0052cc; color: #fff; }
.btn.call:hover, .btn.call:focus-visible { background: #003d99; transform: translateY(-1px); }

.btn.whatsapp { background: #25d366; color: #fff; }
.btn.whatsapp:hover, .btn.whatsapp:focus-visible { background: #1ebe57; transform: translateY(-1px); }

.btn:focus-visible {
  outline: 3px solid #0052cc;
  outline-offset: 2px;
}

/* Links */
.hashtag-link, .content a, .footer a {
  color: #900;
  text-decoration: underline;
}

.hashtag-link:hover, .content a:hover, .footer a:hover,
.hashtag-link:focus-visible, .content a:focus-visible, .footer a:focus-visible {
  color: #700;
  text-decoration: none;
}

/* Local Areas & Locations - Simple Red Pills */
.local-area-item,
.location-item {
  display: inline-block;
  background: #c00;
  color: #fff;
  font-size: 1.17rem;
  padding: 12px 14px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
  min-height: 44px;
}

.local-area-item:hover,
.location-item:hover,
.local-area-item:focus-visible,
.location-item:focus-visible {
  background: #a00;
}

.local-area-item:focus-visible,
.location-item:focus-visible {
  outline: 3px solid #333;
  outline-offset: 2px;
}

/* FAQ - No Card (Simple & Clean) */
.faq-grid {
  gap: 12px;
}

.faq-item {
  background: #f8f8f8;
  border-radius: 6px;
  padding: 16px 18px;
  border-left: 4px solid #900;
  transition: background 0.3s ease;
}

.faq-item:hover {
  background: #f0f0f0;
}

.faq-item summary {
  font-size: 1.1rem;
  font-weight: 600;
  color: #900;
  cursor: pointer;
}

.faq-item summary:focus-visible {
  outline: 3px solid #900;
  outline-offset: 2px;
}

.faq-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin-top: 10px;
}

/* Content & Footer */
.content p {
  font-size: 1rem;
  margin-bottom: 15px;
  line-height: 1.7;
}

.content ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 15px;
}

/* ==================== PRICING TABLE STYLES (NEW FIXED) ==================== */
.pricing table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 1rem;
}

.pricing th, .pricing td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
}

.pricing th {
  background-color: #900;
  color: #fff;
  font-weight: 600;
}

.pricing tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.profile-meta {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

.profile-meta li {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.footer {
  background: #fff;
  color: #333;
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid #ddd;
  font-size: 1.2rem;
}

.footer p, .footer a {
  font-size: 1.2rem;
}

/* Sticky Footer */
.sticky-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000;
  padding: 12px 0;
  display: flex;
  justify-content: center;
  gap: 15px;
  z-index: 1000;
}

.sticky-footer .call,
.sticky-footer .whatsapp {
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1.2rem;
  border: none;
  cursor: pointer;
  min-height: 44px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.sticky-footer .call { background: #c00; color: #fff; }
.sticky-footer .call:hover, .sticky-footer .call:focus-visible { background: #a00; transform: translateY(-2px); }

.sticky-footer .whatsapp { background: #25d366; color: #fff; }
.sticky-footer .whatsapp:hover, .sticky-footer .whatsapp:focus-visible { background: #1ebe57; transform: translateY(-2px); }

.sticky-footer .call:focus-visible,
.sticky-footer .whatsapp:focus-visible {
  outline: 3px solid #fff;
  outline-offset: -5px;
}

/* Reviews */
.reviews li, .review-card {
  margin-bottom: 15px;
  padding: 15px;
  background: #f8f8f8;
  border-radius: 8px;
}

.star-rating {
  color: #e6b800; /* Fixed to standard gold-star look for text-fallback */
  font-size: 0.9rem;
  margin: 8px 0;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ====================== MEDIA QUERIES (MOBILE-FIRST ORDER) ====================== */

@media (min-width: 769px) and (max-width: 1024px) {
  .profile-grid, .reviews-grid, .faq-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1025px) {
  .profile-grid, .reviews-grid, .faq-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .container { padding: 0 12px; }
  h1 { font-size: 1.8rem; }
  h2, h3 { font-size: 1.3rem; }

  .profile-grid, .reviews-grid, .faq-grid,
  .local-areas-grid, .locations-grid {
    grid-template-columns: 1fr;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 15px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .nav-menu.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }

  .hamburger { display: block; }

  .video-wrapper {
    max-width: 320px;
  }
  
  /* Mobile Responsive Table Overflow Fix */
  .pricing table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }
}

@media (max-width: 400px) {
  .container { padding: 0 10px; }
  h1 { font-size: 1.6rem; }
  h2, h3 { font-size: 1.2rem; }

  .video-wrapper {
    max-width: 300px;
  }
}

/* Accessibility: motion-sensitive users ke liye transitions/animations off */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}