/* -------------------------
   Basic Reset & Variables
   ------------------------- */
:root{
  --bg:#f7fafc; --card:#ffffff; --text:#0f172a; --muted:#6b7280;
  --accent:#0ea5a4; --accent-dark:#0f766e; --radius:12px; --maxw:1120px;
  --shadow: 0 8px 26px rgba(2,6,23,0.08);
  --gap:18px;
  --ff: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
}
*{box-sizing:border-box}
html,body{height:100%;margin:0;font-family:var(--ff);color:var(--text);background:var(--bg);-webkit-font-smoothing:antialiased}
.wrap{max-width:var(--maxw);margin:0 auto;padding:22px}

/* Header */
.site-header{background:#fff;border-bottom:1px solid #eef2f5;position:sticky;top:0;z-index:40}
.header-inner{display:flex;align-items:center;gap:12px}
.brand{font-weight:700;color:var(--accent-dark);text-decoration:none;font-size:1.05rem}
.site-nav{margin-left:auto}
.site-nav ul{display:flex;gap:12px;list-style:none;padding:0;margin:0}
.site-nav a{display:block;padding:8px 10px;color:var(--muted);text-decoration:none;border-radius:8px}
.site-nav a:hover{background:#f1f8f7;color:var(--accent-dark)}

/* Mobile nav toggle */
.nav-toggle{display:none;background:none;border:1px solid transparent;padding:8px;border-radius:8px}
.nav-toggle:focus{outline:2px solid #cfece9}

/* Hero */
.hero{display:flex;flex-wrap:wrap;align-items:center;gap:22px;padding:18px 0}
.hero-content{flex:1 1 420px}
.hero-image{flex:0 0 240px;border-radius:12px;overflow:hidden;box-shadow:var(--shadow)}
.hero-image img{width:100%;height:100%;object-fit:cover;display:block}
.lead{color:var(--muted);line-height:1.6}

/* Sections */
.section{margin-top:18px;background:transparent;padding-bottom:6px}
.section h2{margin:6px 0 10px;font-size:1.4rem}
.section-sub{color:var(--muted);margin-bottom:10px}

/* Profiles grid */
.profiles-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.profile-card{background:var(--card);border-radius:12px;overflow:hidden;box-shadow:var(--shadow);display:flex;flex-direction:column}
.profile-card img{width:100%;height:320px;object-fit:cover;display:block}
.profile-body{padding:12px}
.profile-body h3{margin:0 0 6px}
.meta{font-size:0.9rem;color:var(--muted);margin-bottom:8px}
.desc{font-size:0.95rem;line-height:1.45;color:#23323b}
.tags{margin-top:10px}
.tags span{display:inline-block;background:#eefafa;color:var(--accent-dark);padding:6px 8px;border-radius:999px;font-size:0.85rem;margin-right:6px}

/* Testimonials */
.testimonials{display:flex;align-items:center;gap:10px;margin-top:12px}
.t-window{overflow:hidden;flex:1}
.t-track{display:flex;transition:transform 400ms ease}
.testimonial{min-width:100%;padding:18px;background:#fff;border-radius:10px;box-shadow:var(--shadow);margin:0 8px}
.testimonial p{margin:0 0 8px;color:#2b3b42}
.testimonial cite{color:var(--muted);font-size:0.9rem}
.t-prev,.t-next{background:#fff;border:1px solid #e6eef0;border-radius:8px;padding:8px;cursor:pointer}

/* Map */
.map-wrap{margin-top:12px;background:#fff;border-radius:12px;overflow:hidden;box-shadow:var(--shadow)}
.map-wrap iframe{width:100%;height:360px;border:0}

/* Contact grid */
.contact-grid{display:grid;grid-template-columns:1fr 360px;gap:16px;align-items:start;margin-top:12px}
.contact-form label{display:block;margin-bottom:10px;font-size:0.95rem}
.contact-form input,.contact-form textarea{width:100%;padding:10px;border-radius:8px;border:1px solid #e6eef0;background:#fff}
.btn-primary{display:inline-block;padding:10px 14px;background:var(--accent);color:#fff;border:0;border-radius:10px;cursor:pointer}

/* Footer */
.site-footer{margin-top:28px;padding:18px 0;color:var(--muted);font-size:0.95rem;background:transparent}

/* Responsive rules - mobile first */
@media (max-width:1100px){
  .profiles-grid{grid-template-columns:repeat(3,1fr)}
  .contact-grid{grid-template-columns:1fr}
  .hero-image{flex-basis:200px}
}
@media (max-width:820px){
  .profiles-grid{grid-template-columns:repeat(2,1fr)}
  .site-nav ul{display:none}
  .nav-toggle{display:inline-block;margin-left:auto}
  .nav-toggle[aria-expanded="true"] + .site-nav ul{display:flex;flex-direction:column;background:#fff;position:absolute;right:22px;top:64px;padding:12px;border-radius:8px;box-shadow:var(--shadow)}
}
@media (max-width:480px){
  .profiles-grid{grid-template-columns:1fr}
  .hero{gap:12px}
  .hero-image img{height:220px}
}
.girls-profile {
    padding: 50px 20px;
    background: #fafafa;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 700;
}

.section-subtext {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 16px;
    color: #555;
}

.girls-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
}

.girl-card {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.girl-card:hover {
    transform: translateY(-6px);
}

.girl-card img {
    width: 100%;
    border-radius: 10px;
}

.girl-card h3 {
    font-size: 20px;
    margin: 12px 0 5px;
}

.girl-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.profile-btn {
    display: inline-block;
    padding: 10px 18px;
    background: #ff0055;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.profile-btn:hover {
    background: #d9004a;
}
/* HERO SECTION */
.hero-section {
    padding: 60px 20px;
    background: linear-gradient(to bottom right, #ff2266, #550033);
    color: #fff;
}

.hero-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1 1 500px;
}

.hero-text h1 a {
    color: #fff;
    font-size: 40px;
    font-weight: 800;
    text-decoration: none;
    line-height: 1.3;
}

.hero-lead {
    margin-top: 15px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
}

.hero-desc {
    margin-top: 15px;
    font-size: 16px;
    line-height: 1.7;
    max-width: 600px;
}

.hero-buttons {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.hero-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.hero-btn.primary {
    background: #fff;
    color: #ff0055;
}

.hero-btn.primary:hover {
    background: #ffd6e5;
}

.hero-btn.secondary {
    border: 2px solid #fff;
    color: #fff;
}

.hero-btn.secondary:hover {
    background: rgba(255,255,255,0.2);
}

.hero-picture {
    flex: 1 1 350px;
    text-align: center;
}

.hero-picture img {
    width: 100%;
    max-width: 380px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.35);
    animation: fadeIn 1s ease;
}

/* Fade animation */
@keyframes fadeIn {
    from {opacity: 0; transform: translateY(20px);}
    to   {opacity: 1; transform: translateY(0);}
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .hero-text h1 a {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-picture img {
        max-width: 100%;
    }
}
/* PROFILES SECTION */
.profiles-section {
    padding: 60px 20px;
    background: #fafafa;
}

.section-heading {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
}

.section-sub {
    max-width: 750px;
    margin: 0 auto 40px;
    text-align: center;
    color: #555;
    font-size: 16px;
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* CARD DESIGN */
.profile-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    cursor: pointer;
    transition: transform .35s ease, box-shadow .35s ease;
}

.profile-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.18);
}

/* IMAGE WITH HOVER ZOOM */
.profile-image {
    position: relative;
    overflow: hidden;
}

.profile-image img {
    width: 100%;
    display: block;
    transition: transform .5s ease;
}

.profile-card:hover .profile-image img {
    transform: scale(1.08);
}

/* BODY TEXT */
.profile-content {
    padding: 20px;
}

.profile-content h3 {
    font-size: 22px;
    margin-bottom: 5px;
    font-weight: 700;
}

.profile-content .meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

.profile-content .desc {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 12px;
}

/* TAGS */
.tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tags span {
    background: linear-gradient(45deg, #ff0066, #ff4da6);
    padding: 6px 12px;
    border-radius: 20px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* MOBILE FIXES */
@media (max-width: 480px) {
    .section-heading {
        font-size: 26px;
    }
    .profile-content h3 {
        font-size: 20px;
    }
}
/* Container */
.profiles-section {
    padding: 50px 0;
}

.section-heading {
    text-align: center;
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 700;
}

.section-sub {
    text-align: center;
    font-size: 15px;
    margin-bottom: 30px;
    color: #555;
}

/* Grid Layout */
.profiles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Card */
.profile-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    text-align: center;
    transition: 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.profile-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.12);
    border-image: linear-gradient(to bottom right, #ff2266, #550033) 1;
}

/* Image Wrapper */
.profile-img-wrap {
    width: 100%;
    aspect-ratio: 1/1.3;
    overflow: hidden;
    background: #000;
}

.profile-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Text */
.p-name {
    margin: 12px 0 5px;
    font-size: 20px;
    font-weight: 600;
}

.p-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

/* WhatsApp Button */
.whatsapp-box {
    text-align: center;
    margin-top: 40px;
}

.whatsapp-btn {
    background: linear-gradient(to bottom right, #ff2266, #550033);
    padding: 14px 40px;
    font-size: 18px;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: inline-block;
    transition: 0.3s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

/* Mobile */
@media(max-width: 900px){
    .profiles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

@media(max-width: 480px){
    .profiles-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 12px;
  border-radius: 8px;
  background: #fafafa;
  border: 1px solid #ddd;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 16px 20px;
  background: #fff;
  border: none;
  text-align: left;
  font-size: 17px;
  cursor: pointer;
  font-weight: 600;
  border-bottom: 1px solid #eee;
}

.faq-question.active {
  background: linear-gradient(to bottom right, #ff2266, #550033);
  color: #fff;
}

.faq-answer {
  display: none;
  padding: 16px 20px;
  font-size: 16px;
  color: #444;
  background: #fff;
}

.seo-section {
    padding: 20px;
}

.seo-box {
    border: 2px solid #e2e2e2;
    padding: 25px;
    border-radius: 12px;
    background: #ffffff;
    max-width: 900px;
    margin: auto;
}

.seo-box p {
    text-align: justify;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #333;
}

.seo-box a {
    color: #d90040;
    text-decoration: none;
    font-weight: 600;
}

.seo-box a:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    .seo-box {
        padding: 18px;
    }
    .seo-box p {
        font-size: 15px;
    }
}

.rate-card-section {
    padding: 30px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin: 30px 0;
    background: #fff;
  }

  .rate-title {
    text-align: center;
    font-size: 26px;
    margin-bottom: 20px;
  }

  .rate-card-container {
    width: 100%;
    overflow-x: auto;
  }

  .rate-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
  }

  .rate-table th,
  .rate-table td {
    padding: 12px 15px;
    border: 1px solid #ccc;
    text-align: center;
  }

  .rate-table thead {
    background: #f5f5f5;
  }

  .rate-table tr:nth-child(even) {
    background: #fafafa;
  }

  @media(max-width: 600px) {
    .rate-title {
      font-size: 22px;
    }

    .rate-table th,
    .rate-table td {
      padding: 10px;
      font-size: 14px;
    }
  }


