/* =========================
   Base
   ========================= */
*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:#0f172a;
  background:#ffffff;
}

/* =========================
   Header (non-sticky, edge-to-edge)
   ========================= */
.site-header{
  width:100%;
  position:relative; /* non-sticky */
  background: linear-gradient(135deg, #fff7f2, #f6fbff);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.header-row{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:16px 32px; /* edge-to-edge */
}

/* Left text logo */
.site-brand{
  font-size:18px;
  font-weight:800;
  letter-spacing:.2px;
  color:#000;
  text-decoration:none;
  line-height:1.2;
  white-space:nowrap;
}

/* Nav */
.site-nav{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.site-nav a{
  font-size:14px;
  font-weight:700;
  color:#111;
  text-decoration:none;
  padding:8px 10px;
  border-radius:10px;
  transition: background .2s ease, transform .2s ease;
}

.site-nav a:hover{
  background: rgba(0,0,0,0.06);
}

.site-nav a.is-active{
  background: rgba(0,0,0,0.08);
}

/* =========================
   Split Hero (TEXT LEFT + GIF RIGHT)
   ========================= */
.hero-split{
  width:100%;
  padding:80px 0;
  background: linear-gradient(135deg, #fff1f5, #eef6ff);
}

.hero-split-inner{
  max-width:1200px;
  margin:auto;
  padding:0 30px;
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  align-items:center;
  gap:40px;
}

/* Left */
.hero-left{
  color:#0f172a;
}

/* IMPORTANT: force no shadow anywhere in hero text */
.hero-left *{
  text-shadow: none !important;
}

/* Hero text */
.hero-split-kicker{
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:800;
  color:#7c2d12;
  margin:0 0 10px;
}

.hero-split-title{
  font-size:42px;
  font-weight:900;
  margin:0 0 12px;
  color:#020617;
}

.hero-split-subtitle{
  font-size:16px;
  color:#1e293b;
  margin:0 0 22px;
  line-height:1.6;
}

/* CTA */
.hero-split-cta{
  display:flex;
  gap:14px;
  margin:0 0 18px;
  flex-wrap:wrap;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight:900;
  text-decoration:none;
  border: 1px solid rgba(0,0,0,.12);
  transition: transform .18s ease, box-shadow .18s ease;
  user-select:none;
}

.btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
}

.btn-call{
  background:#0f172a;
  color:#fff;
  border-color:#0f172a;
}

.btn-wa{
  background:#25D366;
  color:#fff;
  border-color:#25D366;
}

.btn-small{
  font-size: 12px;
  font-weight:800;
  opacity:.92;
}

/* Trust chips (NO shadow) */
.hero-split-trust{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.hero-split-trust span{
  background:#ffffff;
  border:1px solid rgba(0,0,0,.08);
  padding:6px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  color:#334155;
  text-shadow:none !important;
}

/* Right GIF */
.hero-right{
  display:flex;
  justify-content:center;
}

.hero-gif{
  width:100%;
  max-width:420px;
  border-radius:18px;
  box-shadow:0 20px 50px rgba(0,0,0,.15);
  display:block;
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 900px){
  .header-row{ padding:14px 18px; }
  .site-brand{ white-space: normal; }

  .hero-split-inner{
    grid-template-columns:1fr;
    text-align:center;
  }
  .hero-split-cta{ justify-content:center; }
  .hero-split-trust{ justify-content:center; }
}

@media (max-width: 520px){
  .site-nav{ gap:10px; }
  .site-nav a{ padding:7px 9px; font-size:13px; }
  .btn{ padding: 13px 18px; }

  /* Mobile: stack buttons with spacing + add space below WhatsApp */
  .hero-split-cta{
    flex-direction: column;
    align-items: center;
    gap: 12px;            /* space between Call & WhatsApp */
    margin-bottom: 16px;  /* space after WhatsApp before next text/chips */
  }

  /* Make buttons look clean on mobile */
  .hero-split-cta .btn{
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}
/* =========================
   Intro Heading Section
   ========================= */
.intro-section{
  padding: 50px 0 25px;
  background:#BFDDAC;
}

.intro-inner{
  max-width:1200px;
  margin:auto;
  padding:0 30px;
}

.intro-title{
  font-size:26px;
  font-weight:900;
  color:#020617;
  margin:0 0 10px;
}

.intro-text{
  font-size:15px;
  line-height:1.7;
  color:#334155;
  max-width:900px;
}

/* =========================
   Gallery Section
   ========================= */
.gallery-section{
  padding: 25px 0 25px;
  background:#BFDDAC;
}

.gallery-inner{
  max-width:1200px;
  margin:auto;
  padding:0 30px;
}

.gallery-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}

.gallery-item{
  overflow:hidden;
  border-radius:16px;
  background:#f8fafc;
  border:1px solid rgba(0,0,0,0.06);
}

.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition: transform .3s ease;
}

.gallery-item:hover img{
  transform: scale(1.04);
}

/* =========================
   Responsive
   ========================= */
@media(max-width: 900px){
  .gallery-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 520px){
  .intro-inner,
  .gallery-inner{
    padding:0 10px;
  }

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

/* =========================
   Model Card Gallery
   ========================= */
.model-gallery{
  padding: 40px 0 80px;
  background:#BFDDAC;
}

.gallery-inner{
  max-width:1200px;
  margin:auto;
  padding:0 15px;
}

.model-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr); /* 3 cards per row */
  gap:22px;
}

.model-card{
  background:#FEDB8B;
  border:1px solid rgba(0,0,0,0.08);
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 14px 30px rgba(15,23,42,.06);
  display:flex;
  flex-direction:column;
}

.model-card img{
  width:100%;
  height:auto;
  display:block;
  object-fit:cover;
}

.model-info{
  padding:14px 16px 18px;
}

.model-name{
  font-size:18px;
  font-weight:900;
  margin:0 0 4px;
  color:#020617;
}

.model-meta{
  font-size:13px;
  font-weight:700;
  color:#475569;
  margin:0 0 8px;
}

.model-location{
  font-size: 13px;
  color:#0f172a;
  text-decoration:none;
  border-bottom:1px dotted rgba(15,23,42,.4);
}

.model-desc{
  font-size:14px;
  line-height:1.6;
  color:#334155;
  margin:0;
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 900px){
  .model-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px){
  .gallery-inner{
    padding:0 15px;
  }
  .model-grid{
    grid-template-columns: 1fr;
  }
}
.model-image-link{
  display:block;
  text-decoration:none;
}

/* Buttons inside model cards */
.model-actions{
  display:flex;
  gap:10px;
  margin-top:12px;
  flex-wrap:wrap;
}

.btn-sm{
  padding:8px 14px;
  font-size:12px;
  border-radius:999px;
  font-weight:800;
}

/* Keep buttons centered on mobile if your cards center-align */
@media (max-width: 520px){
  .model-actions{
    justify-content:center;
  }
}

/* Strong / Emphasis */
.text-strong{
  font-weight: 800;
  color: #020617; /* near-black */
}

/* Normal Link */
.text-link{
  color: #0f172a;
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid rgba(15,23,42,.3);
  transition: color .2s ease, border-color .2s ease;
}

.text-link:hover{
  color: #1d4ed8;
  border-bottom-color: #1d4ed8;
}

/* Underlined Text */
.text-underline{
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

/* Highlighted Text */
.text-highlight{
  background: linear-gradient(120deg, #fde68a, #fef3c7);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
  color: #78350f;
}

/* Soft Highlight (light, elegant) */
.text-highlight-soft{
  background: #fff7cc;
  padding: 2px 6px;
  border-radius: 4px;
}

/* Muted Text */
.text-muted{
  color: #64748b;
}

/* Accent Color Text */
.text-accent{
  color: #7c2d12; /* matches your hero kicker tone */
  font-weight: 700;
}

/* =========================
   Content Section (H2, H3, Paragraphs)
   ========================= */
.content-section{
  padding: 30px 0 30px;
  background: #FFE2E2;
}

.content-inner{
  width: min(1200px, 92%);
  margin: 0 auto;
}

.content-section h2{
  font-size: 26px;
  font-weight: 900;
  color: #020617;
  margin: 0 0 14px;
}

.content-section h3{
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  margin: 26px 0 8px;
}

.content-section p{
  font-size: 15px;
  line-height: 1.75;
  color: #334155;
  margin: 0 0 12px;
  max-width: 900px;
}

/* Mobile spacing */
@media (max-width: 520px){
  .content-section{
    padding: 40px 0 60px;
  }

  .content-section h2{
    font-size: 22px;
  }

  .content-section h3{
    font-size: 18px;
  }
}
/* =========================
   Responsive Data Table (No Horizontal Scroll)
   ========================= */
.table-wrap{
  width:100%;
  margin: 20px 0 30px;
}

.data-table{
  width:100%;
  border-collapse:collapse;
  table-layout: fixed;           /* forces columns to fit container */
  background:#ffffff;
  border:1px solid rgba(0,0,0,0.08);
  border-radius:12px;
  overflow:hidden;
}

.data-table th,
.data-table td{
  padding:10px 10px;
  text-align:left;
  border-bottom:1px solid rgba(0,0,0,0.06);
  font-size:14px;
  color:#0f172a;
  word-wrap: break-word;         /* wrap long text */
  white-space: normal;
}

.data-table th{
  background:#f8fafc;
  font-weight:800;
  color:#020617;
}

/* Zebra striping */
.data-table tbody tr:nth-child(even){
  background:#fbfdff;
}

/* Mobile tuning */
@media (max-width: 520px){
  .data-table th,
  .data-table td{
    font-size:12px;
    padding:8px 6px;             /* tighter padding so 5 columns fit */
  }
}


/* Image wrapper for badge positioning */
.model-media{
  position:relative;
  overflow:hidden;
}

/* Base badge */
.model-badge{
  position:absolute;
  top:10px;
  left:10px;           /* change to right:10px if you prefer */
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  line-height:1;
  color:#fff;
  z-index:2;
  box-shadow:0 6px 18px rgba(0,0,0,.25);
}

/* Variants */
.badge-verified{
  background: linear-gradient(135deg, #16a34a, #22c55e); /* green */
}

.badge-new{
  background: linear-gradient(135deg, #2563eb, #60a5fa); /* blue */
}

.badge-trending{
  background: linear-gradient(135deg, #dc2626, #fb7185); /* red/pink */
}

/* Optional: icon before text */
.badge-verified::before{ content:"✔ "; }
.badge-new::before{ content:"★ "; }
.badge-trending::before{ content:"🔥 "; }

/* =========================
   In-Content Media Blocks
   ========================= */
.content-media{
  margin: 30px 0 40px;
  text-align: center;
}

.content-media img,
.content-media video{
  width:100%;
  max-width:1000px;
  height:auto;
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  display:block;
  margin:0 auto;
}

.content-media figcaption{
  margin-top:8px;
  font-size:13px;
  color:#64748b;
  font-weight:600;
}
.video-container{
  position:relative;
  display:inline-block;
  max-width:100%;
}

.content-video{
  width:100%;
  height:auto;
  border-radius:14px;
  display:block;
}
/* =========================
   FAQ Section
   ========================= */
.faq-section{
  padding: 60px 0 80px;
  background:#FFFACD;
}

.faq-inner{
  width: min(1200px, 92%);
  margin: 0 auto;
}

.faq-title{
  font-size: 26px;
  font-weight: 900;
  color:#020617;
  margin: 0 0 8px;
}

.faq-subtitle{
  font-size: 15px;
  line-height: 1.7;
  color:#334155;
  margin: 0 0 22px;
  max-width: 900px;
}

.faq-list{
  display: grid;
  gap: 12px;
}

.faq-item{
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
}

.faq-q{
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 900;
  color:#0f172a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-q::-webkit-details-marker{ display:none; }

.faq-q::after{
  content: "+";
  font-weight: 900;
  color:#475569;
  flex: 0 0 auto;
}

.faq-item[open] .faq-q::after{
  content: "–";
}

.faq-a{
  padding: 0 16px 16px;
}

.faq-a p{
  margin: 0;
  color:#334155;
  line-height: 1.75;
  font-size: 14px;
}

/* Mobile */
@media (max-width: 520px){
  .faq-section{ padding: 45px 0 60px; }
  .faq-title{ font-size: 22px; }
  .faq-q{ padding: 13px 14px; }
  .faq-a{ padding: 0 14px 14px; }
}
/* =========================
   Tags Section
   ========================= */
.tags-section{
  padding: 50px 0 70px;
  background:#FFE4E1;
}

.tags-inner{
  max-width:1200px;
  margin:auto;
  padding:0 30px;
}

.tags-title{
  font-size:24px;
  font-weight:900;
  color:#020617;
  margin:0 0 14px;
}

.tags-wrap{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.tag{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  font-size:13px;
  font-weight:700;
  text-decoration:none;
  border:1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease;
}

.tag:hover{
  transform: translateY(-1px);
  box-shadow:0 6px 16px rgba(0,0,0,.08);
}

/* 5 alternating colors */
.tag-c1{ background:#e0f2fe; color:#0369a1; border-color:#bae6fd; }
.tag-c2{ background:#ecfeff; color:#0f766e; border-color:#99f6e4; }
.tag-c3{ background:#fef3c7; color:#92400e; border-color:#fde68a; }
.tag-c4{ background:#fce7f3; color:#9d174d; border-color:#fbcfe8; }
.tag-c5{ background:#ede9fe; color:#5b21b6; border-color:#ddd6fe; }

/* Mobile spacing */
@media(max-width:520px){
  .tags-inner{ padding:0 18px; }
}
/* =========================
   Other Cities Buttons
   ========================= */
.cities-section{
  padding: 50px 0 80px;
  background:#E0FFFF;
}

.cities-inner{
  max-width:1200px;
  margin:auto;
  padding:0 30px;
}

.cities-title{
  font-size:24px;
  font-weight:900;
  color:#020617;
  margin:0 0 16px;
}

.cities-grid{
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap:12px;
}

.city-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:12px 14px;
  border-radius:12px;
  font-size:14px;
  font-weight:800;
  text-decoration:none;
  border:1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
  background:#ffffff;
}

.city-btn:hover{
  transform: translateY(-2px);
  box-shadow:0 10px 24px rgba(0,0,0,.10);
  filter: brightness(1.03);
}

/* 5 alternating color styles (distinct from tag chips) */
.city-btn.c1{
  background: linear-gradient(135deg, #e0f2fe, #f0f9ff);
  color:#075985;
  border-color:#bae6fd;
}
.city-btn.c2{
  background: linear-gradient(135deg, #ecfeff, #f0fdfa);
  color:#115e59;
  border-color:#99f6e4;
}
.city-btn.c3{
  background: linear-gradient(135deg, #fef3c7, #fffbeb);
  color:#92400e;
  border-color:#fde68a;
}
.city-btn.c4{
  background: linear-gradient(135deg, #fce7f3, #fff1f2);
  color:#9d174d;
  border-color:#fbcfe8;
}
.city-btn.c5{
  background: linear-gradient(135deg, #ede9fe, #f5f3ff);
  color:#5b21b6;
  border-color:#ddd6fe;
}

/* Mobile padding */
@media(max-width:520px){
  .cities-inner{ padding:0 18px; }
}
/* =========================
   Footer
   ========================= */
.site-footer{
  background: linear-gradient(135deg, #f8fafc, #ffffff);
  border-top: 1px solid rgba(0,0,0,0.06);
  padding: 60px 0 28px;
}

.footer-inner{
  width: min(1200px, 92%);
  margin: 0 auto;
}

.footer-top{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 26px;
  padding-bottom: 26px;
}

.footer-logo{
  font-size: 18px;
  font-weight: 900;
  color:#020617;
  text-decoration:none;
  letter-spacing:.2px;
}

.footer-tagline{
  margin: 10px 0 0;
  color:#475569;
  line-height:1.7;
  max-width: 420px;
  font-size: 14px;
}

.footer-heading{
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 900;
  color:#0f172a;
  text-transform: uppercase;
  letter-spacing:.08em;
}

.footer-links{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:8px;
}

.footer-links a{
  color:#334155;
  text-decoration:none;
  font-weight: 700;
  font-size: 14px;
  transition: color .2s ease;
}

.footer-links a:hover{
  color:#1d4ed8;
}

.footer-social{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom: 10px;
}

.social-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:38px;
  height:38px;
  border-radius:12px;
  background:#ffffff;
  border:1px solid rgba(0,0,0,0.08);
  text-decoration:none;
  color:#0f172a;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
  transition: transform .15s ease, box-shadow .15s ease;
}

.social-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0,0,0,.10);
}

.footer-note{
  margin: 10px 0 0;
  font-size: 13px;
  color:#64748b;
  line-height:1.6;
}

.footer-bottom{
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  flex-wrap:wrap;
}

.footer-copy{
  margin:0;
  font-size: 13px;
  color:#64748b;
  font-weight: 700;
}

.footer-mini-links{
  display:flex;
  align-items:center;
  gap:10px;
}

.footer-mini-links a{
  font-size: 13px;
  color:#334155;
  text-decoration:none;
  font-weight: 800;
}

.footer-mini-links a:hover{ color:#1d4ed8; }

.footer-mini-links .dot{
  color:#94a3b8;
}

/* Responsive */
@media (max-width: 900px){
  .footer-top{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px){
  .site-footer{ padding: 46px 0 22px; }
  .footer-top{
    grid-template-columns: 1fr;
  }
}
/* =========================
   Floating Call & WhatsApp
   ========================= */
.floating-actions{
  position: fixed;
  right: 16px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.float-btn{
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  transition: transform .15s ease, box-shadow .15s ease;
}

.float-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0,0,0,.3);
}

/* Call Button */
.float-call{
  background: #0f172a;
  color: #ffffff;
}

/* WhatsApp Button */
.float-wa{
  background: #25D366;
  color: #ffffff;
}

/* Mobile safe spacing from bottom bar */
@media(max-width:520px){
  .floating-actions{
    right: 12px;
    bottom: 72px;
  }
}
