/* ==========================================================================
   White Villa Girls PG — style.css (v2)
   Theme: linear-gradient(135deg, #C2185B 0%, #8E24AA 100%)
   Font: Poppins · No animations · Subtle textures
   ========================================================================== */

:root {
  --brand-1: #C2185B;              /* Pink */
  --brand-2: #8E24AA;              /* Purple */
  --grad: linear-gradient(135deg, #C2185B 0%, #8E24AA 100%);
  --grad-soft: linear-gradient(135deg, rgba(194, 24, 91, .08) 0%, rgba(142, 36, 170, .08) 100%);
  --grad-hero: linear-gradient(135deg, rgba(74, 8, 36, .9) 0%, rgba(194, 24, 91, .65) 50%, rgba(142, 36, 170, .75) 100%);
  --accent: #FDF3F8;               /* Very light pink bg */
  --wa: #25D366;
  --text: #212529;
  --muted: #6c757d;
  --shadow-sm: 0 4px 14px rgba(142, 36, 170, .08);
  --shadow-md: 0 12px 30px rgba(142, 36, 170, .14);
  --radius: 1rem;

  /* Textures (inline SVG — no image files needed) */
  --tx-dots: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Ccircle cx='2' cy='2' r='1.3' fill='%23C2185B' fill-opacity='0.07'/%3E%3C/svg%3E");
  --tx-grid: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='44'%3E%3Cpath d='M44 0H0v44' fill='none' stroke='%238E24AA' stroke-opacity='0.06'/%3E%3C/svg%3E");
  --tx-lines: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M-4 44 44 -4M-4 24 24 -4M16 44 44 16' stroke='%23ffffff' stroke-opacity='0.05' stroke-width='2'/%3E%3C/svg%3E");
  --tx-dots-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Ccircle cx='2' cy='2' r='1.3' fill='%23ffffff' fill-opacity='0.05'/%3E%3C/svg%3E");
}

/* ===== Base ===== */
html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: var(--text);
  background: #ffffff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-weight: 700; color: var(--text); }
a { text-decoration: none; }
img { max-width: 100%; height: auto; }

.section { padding: 5rem 0; }
.bg-accent { background: var(--accent); }
.bg-grad { background: var(--grad); }
.text-brand { color: var(--brand-1); }
.text-grad-dark { color: var(--brand-1) !important; font-weight: 600; }

/* ===== Textures ===== */
.texture-dots { background-image: var(--tx-dots); }
.texture-grid { background-image: var(--tx-grid); }
.texture-lines {
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
        url('https://img.cofynd.com/images/original/f6684051f3ee8011de13aee5e04760ae02466e62.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}       /* for gradient (dark) sections */
.texture-dots-dark { background-image: var(--tx-dots-dark); } /* for footer */
.bg-accent.texture-dots { background-color: var(--accent); }

/* ===== Section headers ===== */
.section-head { max-width: 640px; margin: 0 auto; }
.section-head h2 { font-size: clamp(1.75rem, 3.5vw, 2.4rem); margin-bottom: .75rem; }
.section-head p { color: var(--muted); margin-bottom: 0; }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand-1);
  background: var(--grad-soft);
  border-radius: 50rem;
  padding: .35rem 1rem;
  margin-bottom: 1rem;
}
.eyebrow-light { color: #fff; background: rgba(255, 255, 255, .15); }

/* ===== Buttons ===== */
.btn { font-weight: 600; border-radius: .65rem; }

.btn-grad {
  background: var(--grad);
  padding: 10px 20px;
  border: none;
  color: #fff;
  box-shadow: 0 6px 16px rgba(194, 24, 91, .3);
}
.btn-grad:hover { color: #fff; filter: brightness(1.08); }

.btn-outline-brand {
  border: 1.5px solid var(--brand-1);
  color: var(--brand-1);
}
.btn-outline-brand:hover { background: var(--grad); border-color: transparent; color: #fff; }

.btn-wa { background: var(--wa); color: #fff;}
.btn-wa:hover { background: #1ebe5b; color: #fff; }

.btn-cta { padding-inline: 1.75rem; }

/* ===== Header ===== */
.site-header {
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(142, 36, 170, .08);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: .85rem;
  background: var(--grad);
  color: #fff;
  font-size: 1.2rem;
}
.brand-text { line-height: 1.1; }
.brand-text strong { display: block; font-size: 1.05rem; font-weight: 700; color: var(--text); }
.brand-text small { font-size: .68rem; color: var(--muted); font-weight: 500; letter-spacing: .04em; }

.navbar-nav .nav-link { font-weight: 500; color: var(--text); padding-inline: .85rem; }
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--brand-1); }

.navbar-toggler { border: none; }
.navbar-toggler:focus { box-shadow: none; }

/* ===== Hero ===== */
.hero {
  min-height: 90vh;
  padding: 8rem 0 5rem;
  background: url("../images/hero.jpg") center / cover no-repeat, var(--grad);
  position: relative;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
  background-image: var(--tx-lines), var(--grad-hero); /* texture over gradient */
}

.hero-title {
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
}
.hero-title span { display: block; color: #FCE4F0; }
.hero-sub { font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255, 255, 255, .92); max-width: 560px; margin-top: 1rem; }

.badge-glass {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .82rem;
  font-weight: 500;
  color: #fff;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50rem;
  padding: .4rem 1rem;
}

.hero-stats .stat h3 { color: #fff; font-size: 2rem; font-weight: 800; margin-bottom: 0; }
.hero-stats .stat p { color: rgba(255, 255, 255, .78); font-size: .85rem; margin-bottom: 0; }

/* ===== Highlights ===== */
.hl-card {
  background: #fff;
  border: 1px solid rgba(194, 24, 91, .1);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  height: 100%;
  box-shadow: var(--shadow-sm);
}
.hl-card:hover { border-color: var(--brand-1); box-shadow: var(--shadow-md); }
.hl-card i {
  font-size: 1.5rem;
  color: var(--brand-1);
  background: var(--grad-soft);
  width: 58px; height: 58px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  margin-bottom: .85rem;
}
.hl-card h6 { margin-bottom: 0; font-size: .95rem; font-weight: 600; }

/* ===== Room Gallery (Swiper) ===== */
.gallery-swiper { padding-bottom: 3rem; }
.g-item {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}
.g-item img { width: 100%; height: 100%; object-fit: cover; }
.g-item:hover img { opacity: .92; }

.gallery-swiper .swiper-button-prev,
.gallery-swiper .swiper-button-next {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  color: var(--brand-1);
  box-shadow: var(--shadow-sm);
}
.gallery-swiper .swiper-button-prev::after,
.gallery-swiper .swiper-button-next::after { font-size: 1rem; font-weight: 700; }
.gallery-swiper .swiper-pagination-bullet-active { background: var(--brand-1); }

/* ===== Facilities ===== */
.fc-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.6rem 1.35rem;
  height: 100%;
  border: 1px solid #f3e3ee;
  box-shadow: var(--shadow-sm);
}
.fc-card:hover { box-shadow: var(--shadow-md); }
.fc-icon {
  display: inline-grid;
  place-items: center;
  width: 50px; height: 50px;
  border-radius: .9rem;
  background: var(--grad);
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.fc-card h6 { font-weight: 600; margin-bottom: .4rem; }
.fc-card p { font-size: .85rem; color: var(--muted); margin-bottom: 0; }

/* ===== Why Choose Us ===== */
.why-us h2 { font-size: clamp(1.75rem, 3.5vw, 2.3rem); }
.why-chip {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .6rem;
  background: rgb(184 26 105);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius);
  padding: 1.1rem 1rem;
  color: #fff;
  font-size: .88rem;
  font-weight: 500;
  height: 100%;
}
.why-chip:hover { background: rgba(255, 255, 255, .2); }
.why-chip i { font-size: 1.15rem; color: #F8BBD9; }

/* ===== Nearby ===== */
.near-chip {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: #fff;
  border: 1px solid rgba(194, 24, 91, .18);
  border-radius: 50rem;
  padding: .7rem 1.4rem;
  font-weight: 500;
  font-size: .92rem;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}
.near-chip:hover { border-color: var(--brand-1); }
.near-chip i { color: var(--brand-1); }

/* ===== Reviews ===== */
.review-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.75rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
  border: 1px solid #f3e3ee;
}
.review-card:hover { box-shadow: var(--shadow-md); }
.review-card .stars { color: #ffc107; margin-bottom: .9rem; font-size: .9rem; }
.review-card p { font-size: .92rem; color: #495057; }
.reviewer { display: flex; align-items: center; gap: .8rem; margin-top: 1.2rem; }
.reviewer .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.reviewer h6 { margin-bottom: 0; font-size: .95rem; font-weight: 600; }
.reviewer small { color: var(--muted); }

/* ===== Masonry Gallery ===== */
.masonry { columns: 4 240px; column-gap: 1rem; }
.m-item {
  display: block;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  break-inside: avoid;
}
.m-item img { 
    width: 100%;
    height: 200px;
    object-fit: cover; 
}
.m-item:hover img { opacity: .92; }

/* ===== Location ===== */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  min-height: 380px;
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }

.addr-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}
.addr-points li { display: flex; gap: .7rem; margin-bottom: .7rem; font-size: .92rem; color: #495057; }
.addr-points i { color: var(--brand-2); margin-top: .2rem; }

/* ===== FAQ ===== */
.faq-acc .accordion-item {
  border: 1px solid #f3e3ee;
  border-radius: var(--radius) !important;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-acc .accordion-button {
  font-weight: 600;
  font-size: 1rem;
  padding: 1.15rem 1.4rem;
  background: #fff;
  color: var(--text);
}
.faq-acc .accordion-button:not(.collapsed) {
  background: var(--grad-soft);
  color: var(--brand-1);
  box-shadow: none;
}
.faq-acc .accordion-button:focus { box-shadow: none; }
.faq-acc .accordion-body { color: var(--muted); font-size: .93rem; }
.faq-acc .accordion-body a { color: var(--brand-1); font-weight: 600; }

/* ===== Lead Form ===== */
.form-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 2.5rem;
  box-shadow: 0 24px 48px rgba(74, 8, 36, .25);
}
.form-card .form-label { font-weight: 600; font-size: .88rem; }
.form-card .form-control,
.form-card .form-select {
  padding: .8rem 1rem;
  border-radius: .65rem;
  border-color: #e9d5e5;
  font-size: .95rem;
}
.form-card .form-control:focus,
.form-card .form-select:focus {
  border-color: var(--brand-1);
  box-shadow: 0 0 0 .2rem rgba(194, 24, 91, .12);
}
.form-success {
  background: rgba(40, 167, 69, .1);
  border: 1px solid rgba(40, 167, 69, .3);
  color: #1e7e34;
  border-radius: .75rem;
  padding: 1rem 1.25rem;
  font-weight: 500;
}

/* ===== Footer ===== */
.site-footer {
  background: #2A0A32; /* deep purple */
  color: #f3e8f7;
  padding: 4rem 0 0;
}
.site-footer h6 { color: #fff; font-weight: 600; margin-bottom: 1rem; }
.site-footer .brand-text strong { color: #fff; }
.site-footer .brand-text small { color: rgba(255, 255, 255, .55); }
.footer-links li { margin-bottom: .55rem; }
.footer-links a { color: rgba(255, 255, 255, .72); font-size: .9rem; }
.footer-links a:hover { color: #F8BBD9; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 3rem;
  padding: 1.25rem 0;
  color: #fff;
}

/* ===== Floating Buttons ===== */
.float-btn {
  position: fixed;
  right: 1.1rem;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.35rem;
  z-index: 1040;
  border: none;
  box-shadow: 0 10px 24px rgba(42, 10, 50, .3);
}
.float-btn:hover { color: #fff; filter: brightness(1.1); }
.float-wa { bottom: 10.5rem; background: var(--wa); }
.float-call { bottom: 6.75rem; background: var(--grad); }
.float-top {
  bottom: 3rem;
  background: #2A0A32;
  opacity: 0;
  visibility: hidden;
}
.float-top.show { opacity: 1; visibility: visible; }

/* ===== Sticky Bottom CTA (Mobile) ===== */
.mobile-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  display: flex;
  z-index: 1050;
  box-shadow: 0 -6px 20px rgba(42, 10, 50, .2);
}
.cta-half {
  flex: 1;
  text-align: center;
  padding: .95rem .5rem;
  font-weight: 600;
  font-size: .95rem;
  color: #fff;
}
.cta-call { background: var(--grad); }
.cta-wa { background: var(--wa); }
.cta-half:hover { color: #fff; filter: brightness(1.08); }
