/* ============================================
   Model Booking Website — Main Stylesheet
   Theme: Black & Pink
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --black:       #000000;
  --black-light: #0d0d0d;
  --black-card:  #111111;
  --black-border:#1a1a1a;
  --pink:        #ff2d75;
  --pink-light:  #ff5b96;
  --pink-dark:   #c9004d;
  --pink-glow:   rgba(255, 45, 117, 0.3);
  --white:       #ffffff;
  --white-dim:   rgba(255,255,255,0.85);
  --gray:        #888888;
  --gray-light:  #cccccc;

  --font-main:   'Poppins', sans-serif;
  --font-head:   'Playfair Display', serif;

  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 8px 32px rgba(0,0,0,0.6);
  --shadow-pink: 0 8px 32px var(--pink-glow);
  --transition:  all 0.3s ease;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background-color: var(--black);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
input, textarea, select, button { font-family: var(--font-main); }

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

section { padding: 80px 0; }

/* ---------- Typography ---------- */
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 12px;
}

.section-title span { color: var(--pink); }

.section-subtitle {
  color: var(--gray);
  font-size: 1rem;
  margin-bottom: 50px;
}

.section-header { text-align: center; }

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--pink-light));
  border-radius: 2px;
  margin: 16px auto 20px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: var(--white);
  box-shadow: var(--shadow-pink);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--pink-light), var(--pink));
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--pink-glow);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

.btn-pink-outline {
  background: transparent;
  color: var(--pink);
  border: 2px solid var(--pink);
}
.btn-pink-outline:hover {
  background: var(--pink);
  color: var(--white);
  box-shadow: var(--shadow-pink);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
}

.btn-call {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: var(--white);
}
.btn-call:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-pink);
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  border-bottom: 1px solid var(--black-border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.nav-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}

.logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links li a {
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white-dim);
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--pink);
}

.btn-nav-book {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark)) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  box-shadow: var(--shadow-pink);
}
.btn-nav-book:hover {
  box-shadow: 0 8px 30px var(--pink-glow) !important;
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.5) 0%,
    rgba(0,0,0,0.7) 50%,
    rgba(0,0,0,0.9) 100%
  );
  z-index: 1;
}

/* Fallback gradient when no video */
.hero-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a001a 50%, #0d0d0d 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(255,45,117,0.15);
  border: 1px solid var(--pink);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease both;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  animation: fadeInUp 0.9s ease 0.2s both;
}

.hero-title .highlight {
  color: var(--pink);
  display: block;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--white-dim);
  margin-bottom: 40px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.9s ease 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 0.6s both;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}
.hero-scroll a {
  color: var(--white-dim);
  font-size: 1.5rem;
}

/* ---------- Promo Video Section ---------- */
.promo-video-section {
  padding: 40px 0;
  background: var(--black);
}

.promo-video-wrapper {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  max-height: 520px;
  overflow: hidden;
  line-height: 0;
  border: 3px solid var(--pink);
  box-shadow: 0 0 40px var(--pink-glow);
}

.promo-video {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

/* ---------- Model Cards ---------- */
.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.model-card {
  background: var(--black-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--black-border);
  transition: var(--transition);
  position: relative;
}

.model-card:hover {
  transform: translateY(-8px);
  border-color: var(--pink);
  box-shadow: 0 20px 50px rgba(255,45,117,0.2);
}

.model-card-img {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.model-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.model-card:hover .model-card-img img {
  transform: scale(1.08);
}

.model-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
}

.model-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--pink);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.model-card-body {
  padding: 20px;
}

.model-card-name {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.model-card-age {
  font-size: 0.82rem;
  color: var(--pink);
  font-weight: 600;
  margin-bottom: 10px;
}

.model-card-desc {
  font-size: 0.87rem;
  color: var(--gray);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 18px;
}

.model-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ---------- Model Details ---------- */
.model-details-section { padding-top: 120px; }

.model-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.model-main-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--black-border);
  aspect-ratio: 3/4;
}

.model-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.model-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.model-gallery-thumbs img {
  border-radius: 8px;
  aspect-ratio: 1;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.model-gallery-thumbs img:hover,
.model-gallery-thumbs img.active {
  border-color: var(--pink);
}

.model-info-name {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.model-info-age {
  color: var(--pink);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.model-info-desc {
  color: var(--gray-light);
  line-height: 1.9;
  font-size: 0.95rem;
  margin-bottom: 30px;
}

/* ---------- Model Info Details Grid ---------- */
.model-info-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.model-info-detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 10px;
  padding: 12px 16px;
}

.detail-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,45,117,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.detail-label {
  display: block;
  font-size: 0.72rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 2px;
}

.detail-value {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

@media (max-width: 480px) {
  .model-info-details {
    grid-template-columns: 1fr;
  }
}

/* ---------- Packages (model-details) ---------- */
.model-packages {
  margin: 28px 0;
}

.model-packages h3 {
  color: var(--pink);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
}

.package-card {
  background: var(--black-card);
  border: 1px solid rgba(255,45,117,0.3);
  border-radius: 14px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.package-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--pink);
}

.package-card:hover {
  border-color: var(--pink);
  box-shadow: 0 6px 24px var(--pink-glow);
  transform: translateY(-3px);
}

.package-card-index {
  width: 28px;
  height: 28px;
  background: var(--pink);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
}

.package-card-heading {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  line-height: 1.3;
}

.package-card-desc {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

/* ---------- Package rows (admin form) ---------- */
.package-row {
  margin-bottom: 12px;
}

.package-row-inner {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 10px;
  padding: 14px;
}

.pkg-del-btn {
  position: relative !important;
  top: auto !important;
  right: auto !important;
  width: 26px !important;
  height: 26px !important;
  min-width: 26px !important;
  background: var(--pink) !important;
  color: #fff !important;
  border: 2px solid #fff !important;
  border-radius: 50% !important;
  font-size: 11px !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  align-self: flex-start !important;
  margin-top: 4px !important;
  transition: background 0.2s !important;
}

.pkg-del-btn:hover {
  background: #c9004d !important;
}

.model-services {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 30px;
}

.model-services h3 {
  color: var(--pink);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

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

.service-tag {
  padding: 6px 16px;
  border: 1px solid var(--black-border);
  border-radius: 50px;
  font-size: 0.82rem;
  color: var(--gray-light);
}

.model-cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------- CTA Section ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--black-card) 0%, #1a0012 100%);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
  text-align: center;
  padding: 80px 0;
}

.cta-section h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 16px;
}

.cta-section p {
  color: var(--gray);
  margin-bottom: 36px;
  font-size: 1rem;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- About Page ---------- */
.about-hero {
  padding: 140px 0 80px;
  text-align: center;
  background: linear-gradient(135deg, #0a0a0a, #1a001a);
}

.about-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 16px;
}

.about-content { padding: 80px 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--black-border);
  position: relative;
}

.about-img img { width: 100%; height: 100%; object-fit: cover; }

.about-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--pink);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
}

.about-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 20px;
}

.about-text p {
  color: var(--gray-light);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 16px;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.why-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  transition: var(--transition);
}

.why-card:hover {
  border-color: var(--pink);
  box-shadow: var(--shadow-pink);
  transform: translateY(-4px);
}

.why-card-icon {
  width: 60px; height: 60px;
  background: rgba(255,45,117,0.1);
  border: 1px solid var(--pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--pink);
  margin: 0 auto 18px;
}

.why-card h3 { font-size: 1rem; margin-bottom: 10px; }
.why-card p  { font-size: 0.85rem; color: var(--gray); line-height: 1.7; }

/* ---------- Contact Page ---------- */
.contact-hero {
  padding: 140px 0 80px;
  text-align: center;
  background: linear-gradient(135deg, #0a0a0a, #1a001a);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
  align-items: start;
  padding: 80px 0;
}

.contact-info-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
}

.contact-info-card h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--black-border);
}
.contact-info-item:last-of-type { border-bottom: none; margin-bottom: 0; }

.contact-info-icon {
  width: 46px; height: 46px;
  background: rgba(255,45,117,0.1);
  border: 1px solid var(--pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  flex-shrink: 0;
}

.contact-info-item h4 { font-size: 0.8rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.contact-info-item a, .contact-info-item p { font-size: 0.95rem; color: var(--white); }
.contact-info-item a:hover { color: var(--pink); }

.contact-form-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
}

.contact-form-card h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  margin-bottom: 28px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-light);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  padding: 13px 18px;
  background: var(--black);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255,45,117,0.15);
}

.form-control::placeholder { color: var(--gray); }

textarea.form-control { resize: vertical; min-height: 130px; }

.alert {
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-bottom: 20px;
  font-weight: 500;
}

.alert-success {
  background: rgba(37,211,102,0.1);
  border: 1px solid #25D366;
  color: #25D366;
}

.alert-error {
  background: rgba(255,45,117,0.1);
  border: 1px solid var(--pink);
  color: var(--pink);
}

/* Map */
.map-section { padding-bottom: 80px; }
.map-section iframe {
  width: 100%;
  height: 350px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--black-border);
  filter: invert(90%) hue-rotate(180deg); /* dark-mode map */
}

/* ---------- Filter Bar (Models page) ---------- */
.filter-bar {
  display: flex;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  align-items: center;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
}

.search-box {
  flex: 1;
  min-width: 200px;
  position: relative;
}

.search-box input {
  width: 100%;
  padding: 11px 18px 11px 42px;
  background: var(--black);
  border: 1px solid var(--black-border);
  border-radius: 50px;
  color: var(--white);
  font-size: 0.9rem;
  transition: var(--transition);
}

.search-box input:focus {
  outline: none;
  border-color: var(--pink);
}

.search-box i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray);
}

.filter-btn {
  padding: 10px 22px;
  border-radius: 50px;
  background: var(--black);
  border: 1px solid var(--black-border);
  color: var(--gray-light);
  font-size: 0.87rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--pink);
  color: var(--pink);
  background: rgba(255,45,117,0.08);
}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  padding: 140px 0 70px;
  background: linear-gradient(160deg, #0a0a0a 0%, #1a001a 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,45,117,0.06) 0%, transparent 70%);
  top: -200px; right: -100px;
  border-radius: 50%;
}

.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 12px;
}

.page-hero p { color: var(--gray); font-size: 1rem; }

/* ---------- Floating Buttons ---------- */
@keyframes pulse-whatsapp {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.9), 0 0 20px 4px rgba(37,211,102,0.6); }
  50%  { box-shadow: 0 0 0 18px rgba(37,211,102,0), 0 0 30px 10px rgba(37,211,102,0.35); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0), 0 0 20px 4px rgba(37,211,102,0.6); }
}

@keyframes pulse-call {
  0%   { box-shadow: 0 0 0 0 rgba(255,45,117,0.9), 0 0 20px 4px rgba(255,45,117,0.6); }
  50%  { box-shadow: 0 0 0 18px rgba(255,45,117,0), 0 0 30px 10px rgba(255,45,117,0.35); }
  100% { box-shadow: 0 0 0 0 rgba(255,45,117,0), 0 0 20px 4px rgba(255,45,117,0.6); }
}

.float-btn {
  position: fixed;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.float-btn:hover {
  transform: scale(1.15);
}

.float-whatsapp {
  bottom: 98px;
  right: 24px;
  background: #25D366;
  color: var(--white);
  animation: pulse-whatsapp 2s ease-in-out infinite;
}

.float-whatsapp:hover {
  background: #1ebe5d;
  color: var(--white);
  box-shadow: 0 0 0 8px rgba(37,211,102,0.3), 0 0 40px 12px rgba(37,211,102,0.6), 0 8px 28px rgba(37,211,102,0.5);
  animation: none;
}

.float-call {
  bottom: 24px;
  right: 24px;
  background: var(--pink);
  color: var(--white);
  animation: pulse-call 2s ease-in-out infinite;
  animation-delay: 1s;
}

.float-call:hover {
  background: var(--pink-dark);
  color: var(--white);
  box-shadow: 0 0 0 8px rgba(255,45,117,0.3), 0 0 40px 12px rgba(255,45,117,0.6), 0 8px 28px rgba(255,45,117,0.5);
  animation: none;
}

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 998;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  background: var(--pink);
  border-color: var(--pink);
  transform: translateY(-4px);
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: var(--black-card);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item h3 {
  font-family: var(--font-head);
  font-size: 2.2rem;
  color: var(--pink);
  margin-bottom: 6px;
}

.stat-item p { font-size: 0.85rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; }

/* ---------- Footer ---------- */
.footer {
  background: var(--black-card);
  border-top: 1px solid var(--black-border);
  padding: 60px 0 0;
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--black-border);
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.footer-logo i { color: var(--pink); }

.footer-desc {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 22px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid var(--black-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--gray);
  transition: var(--transition);
}

.footer-social a:hover {
  border-color: var(--pink);
  color: var(--pink);
  background: rgba(255,45,117,0.08);
}

.footer-heading {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--pink);
  border-radius: 2px;
}

.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: var(--gray);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a i { font-size: 0.7rem; color: var(--pink); }
.footer-links a:hover { color: var(--pink); padding-left: 4px; }

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: var(--gray);
}

.footer-contact-list i {
  color: var(--pink);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-list a { color: var(--gray); }
.footer-contact-list a:hover { color: var(--pink); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 0.85rem;
  color: var(--gray);
  flex-wrap: wrap;
  gap: 10px;
}

/* ============================================
   ADMIN PANEL STYLES
   ============================================ */
.admin-body {
  font-family: var(--font-main);
  background: #0a0a0a;
  min-height: 100vh;
}

/* Admin Login */
.admin-login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a0a0a, #1a001a);
  padding: 20px;
}

.login-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow);
}

.login-logo {
  text-align: center;
  margin-bottom: 36px;
}

.login-logo .icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 14px;
  box-shadow: var(--shadow-pink);
}

.login-logo h2 { font-family: var(--font-head); font-size: 1.5rem; }
.login-logo p  { color: var(--gray); font-size: 0.85rem; margin-top: 4px; }

/* Admin Layout */
.admin-layout {
  display: flex;
  min-height: 100vh;
}

.admin-sidebar {
  width: 250px;
  background: var(--black-card);
  border-right: 1px solid var(--black-border);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  z-index: 100;
  overflow-y: auto;
}

.sidebar-brand {
  padding: 24px 20px;
  border-bottom: 1px solid var(--black-border);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.sidebar-brand .s-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.sidebar-nav { padding: 20px 0; flex: 1; }

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: var(--gray);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
  color: var(--pink);
  background: rgba(255,45,117,0.06);
  border-left-color: var(--pink);
}

.sidebar-nav a i { width: 18px; text-align: center; }

.sidebar-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--black-border);
}

.admin-main {
  margin-left: 250px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.admin-topbar {
  background: var(--black-card);
  border-bottom: 1px solid var(--black-border);
  padding: 16px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
}

.admin-topbar h1 { font-size: 1.2rem; font-weight: 600; }

.admin-topbar .admin-user {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray);
}

.admin-topbar .admin-user i { color: var(--pink); }

.admin-content { padding: 30px; flex: 1; }

/* Stats cards in admin */
.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.admin-stat-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  padding: 24px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}

.admin-stat-card:hover {
  border-color: var(--pink);
  box-shadow: var(--shadow-pink);
}

.admin-stat-icon {
  width: 50px; height: 50px;
  background: rgba(255,45,117,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--pink);
  flex-shrink: 0;
}

.admin-stat-card h3 { font-size: 1.8rem; font-weight: 700; margin-bottom: 2px; }
.admin-stat-card p  { font-size: 0.8rem; color: var(--gray); }

/* Admin Table */
.admin-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
}

.admin-card-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--black-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.admin-card-header h3 { font-size: 1rem; font-weight: 600; }

.admin-table-wrapper { overflow-x: auto; }

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.admin-table thead {
  background: rgba(255,45,117,0.06);
}

.admin-table th {
  padding: 14px 16px;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--pink);
  white-space: nowrap;
}

.admin-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--black-border);
  color: var(--gray-light);
  vertical-align: middle;
}

.admin-table tbody tr:hover td { background: rgba(255,255,255,0.02); }
.admin-table tbody tr:last-child td { border-bottom: none; }

.admin-table img {
  width: 48px; height: 48px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--black-border);
}

/* Badges */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
}
.badge-yes { background: rgba(37,211,102,0.15); color: #25D366; border: 1px solid #25D366; }
.badge-no  { background: rgba(136,136,136,0.1); color: var(--gray); border: 1px solid var(--gray); }

/* Action buttons */
.btn-sm {
  padding: 7px 14px;
  font-size: 0.8rem;
  border-radius: 8px;
}

.btn-edit {
  background: rgba(255,193,7,0.1);
  border: 1px solid #ffc107;
  color: #ffc107;
}
.btn-edit:hover { background: #ffc107; color: #000; }

.btn-delete {
  background: rgba(255,45,117,0.1);
  border: 1px solid var(--pink);
  color: var(--pink);
}
.btn-delete:hover { background: var(--pink); color: #fff; }

/* Admin form page */
.admin-form-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  max-width: 700px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-light);
  cursor: pointer;
}

.form-check input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--pink);
  cursor: pointer;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-10px); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
  .model-details-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid         { grid-template-columns: 1fr; }
  .contact-grid       { grid-template-columns: 1fr; }
  .footer-grid        { grid-template-columns: 1fr 1fr; }
  .stats-grid         { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
  section { padding: 60px 0; }

  /* Nav */
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: rgba(0,0,0,0.98);
    backdrop-filter: blur(20px);
    padding: 80px 30px 40px;
    gap: 4px;
    transition: right 0.3s ease;
    z-index: 999;
    border-left: 1px solid var(--black-border);
  }

  .nav-links.open {
    display: flex;
    right: 0;
  }

  .nav-links li a { padding: 12px 0; font-size: 1rem; border-bottom: 1px solid var(--black-border); }
  .btn-nav-book   { margin-top: 10px; text-align: center; justify-content: center; }

  /* Footer */
  .footer-grid  { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom{ flex-direction: column; text-align: center; }

  /* Admin */
  .admin-sidebar { width: 0; overflow: hidden; }
  .admin-main    { margin-left: 0; }
  .form-row      { grid-template-columns: 1fr; }
  .admin-stats   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-buttons        { flex-direction: column; align-items: center; }
  .models-grid         { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stats-grid          { grid-template-columns: repeat(2, 1fr); }
  .admin-stats         { grid-template-columns: 1fr; }
  .model-gallery-thumbs { grid-template-columns: repeat(3, 1fr); }
  .model-card-body     { padding: 12px; }
  .model-card-name     { font-size: 0.9rem; }
  .model-card-age      { font-size: 0.75rem; }
  .model-card-desc     { display: none; }
  .btn-sm              { padding: 6px 10px; font-size: 0.75rem; }
}

/* ============================================
   Featured Girls — Card Slider
   ============================================ */

.featured-slider-section {
  background: var(--black-card);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
  padding: 80px 0;
}

.slider-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

.slider-track-outer {
  flex: 1;
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 24px;
  position: relative;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.slider-slide {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
}

.slider-btn {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--black-border);
  background: var(--black-card);
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
  z-index: 2;
}

.slider-btn:hover {
  background: var(--pink);
  border-color: var(--pink);
  transform: scale(1.1);
}

.slider-btn:disabled {
  opacity: 0.3;
  cursor: default;
  transform: none;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--black-border);
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  padding: 0;
}

.slider-dot.active {
  background: var(--pink);
  transform: scale(1.3);
}

@media (max-width: 900px) {
  .slider-slide { flex: 0 0 calc((100% - 24px) / 2); }
}

@media (max-width: 560px) {
  .slider-slide { flex: 0 0 100%; }
  .slider-btn   { width: 38px; height: 38px; font-size: 0.85rem; }
}

/* ============================================
   Blog Section (Homepage)
   ============================================ */

/* ============================================
   Gallery Thumb Preview (admin add/edit)
   ============================================ */
.gallery-preview-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  flex-direction: row !important;
}

.gallery-thumb-wrap {
  position: relative !important;
  width: 110px !important;
  height: 110px !important;
  min-width: 110px !important;
  min-height: 110px !important;
  max-width: 110px !important;
  max-height: 110px !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  border: 2px solid var(--black-border) !important;
  flex-shrink: 0 !important;
}

.gallery-thumb-wrap.new-thumb {
  border-color: var(--pink) !important;
}

.gallery-thumb {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.gallery-thumb-del {
  position: absolute !important;
  top: 5px !important;
  right: 5px !important;
  background: var(--pink) !important;
  color: #fff !important;
  border: 2px solid #fff !important;
  border-radius: 50% !important;
  width: 26px !important;
  height: 26px !important;
  font-size: 12px !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background 0.2s, transform 0.15s !important;
  padding: 0 !important;
  z-index: 99 !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.6) !important;
  line-height: 1 !important;
}

.gallery-thumb-del:hover {
  background: #c9004d !important;
  transform: scale(1.18) !important;
}

.gallery-thumb-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--pink);
  color: #fff;
  font-size: 0.65rem;
  text-align: center;
  padding: 2px 0;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ============================================
   Places Section
   ============================================ */
.places-section {
  padding: 100px 0;
  background: var(--black);
  border-top: 1px solid rgba(255,45,117,0.15);
  border-bottom: 1px solid rgba(255,45,117,0.15);
}

.places-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 24px;
  margin-top: 16px;
  padding: 0 4px;
}

.place-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: #0d0d0d;
  border: 1px solid rgba(255, 45, 117, 0.35);
  border-radius: 18px;
  padding: 40px 20px 32px;
  height: 180px;
  text-decoration: none;
  color: var(--white);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.04);
}

/* Top pink accent line */
.place-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 2px;
  background: var(--pink);
  border-radius: 0 0 4px 4px;
  transition: width 0.3s ease;
}

.place-card:hover::after {
  width: 80%;
}

/* Glow overlay on hover */
.place-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(255,45,117,0.12), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.place-card:hover::before {
  opacity: 1;
}

.place-card:hover {
  border-color: var(--pink);
  box-shadow: 0 12px 40px rgba(255,45,117,0.25), inset 0 1px 0 rgba(255,255,255,0.06);
  transform: translateY(-6px);
  color: var(--white);
}

.place-card i {
  font-size: 2rem;
  color: var(--pink);
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.place-card:hover i {
  transform: scale(1.15);
}

.place-name {
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  position: relative;
  z-index: 1;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

.place-count {
  font-size: 0.75rem;
  color: var(--pink);
  background: rgba(255, 45, 117, 0.12);
  border: 1px solid rgba(255, 45, 117, 0.3);
  padding: 4px 16px;
  border-radius: 30px;
  position: relative;
  z-index: 1;
  font-weight: 600;
  letter-spacing: 0.4px;
}

@media (max-width: 992px) {
  .places-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

@media (max-width: 600px) {
  .places-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .place-card {
    height: 150px;
    padding: 28px 14px 22px;
  }
  .place-card i {
    font-size: 1.7rem;
  }
  .place-name {
    font-size: 0.9rem;
  }
}

.blog-section {
  padding: 80px 0;
}

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

.blog-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.blog-card-img {
  height: 200px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 24px;
}

.blog-date {
  font-size: 0.78rem;
  color: var(--pink);
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}

.blog-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-excerpt {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Blog Details Page */
.blog-details-section {
  padding: 60px 0 80px;
}

.blog-details-inner {
  max-width: 820px;
  margin: 0 auto;
}

.blog-details-img {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
}

.blog-details-img img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.blog-details-content {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.9;
}

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Gallery Page
   ============================================ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 60px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--black-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}

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

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.3s ease;
  color: #fff;
}

.gallery-item:hover .gallery-item-overlay {
  background: rgba(255, 45, 117, 0.45);
}

.gallery-item-overlay i {
  font-size: 1.6rem;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item-overlay span {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease 0.05s, transform 0.3s ease 0.05s;
  text-align: center;
  padding: 0 10px;
}

.gallery-item:hover .gallery-item-overlay i,
.gallery-item:hover .gallery-item-overlay span {
  opacity: 1;
  transform: none;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lightbox.active { display: flex; }

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
}

.lightbox-inner img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 12px;
  border: 2px solid var(--pink);
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.lightbox-caption {
  color: var(--gray-light);
  font-size: 0.9rem;
  margin-top: 14px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  background: rgba(255,45,117,0.2);
  border: 1px solid var(--pink);
  color: var(--white);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s;
  z-index: 10000;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--pink); }

.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev  { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 16px; top: 50%; transform: translateY(-50%); }

/* Admin gallery grid */
.admin-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  padding: 20px;
}

.admin-gallery-card {
  background: var(--black-light);
  border: 1px solid var(--black-border);
  border-radius: 12px;
  overflow: hidden;
}

.admin-gallery-img {
  height: 150px;
  overflow: hidden;
}

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

.admin-gallery-card:hover .admin-gallery-img img { transform: scale(1.05); }

.admin-gallery-info {
  padding: 12px;
}

.admin-gallery-title {
  font-size: 0.82rem;
  color: var(--white);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
}

/* Responsive gallery */
@media (max-width: 1024px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px)  { .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }
