/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: #0a0a0a;
  color: #f0ece4;
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 60px;
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(194,24,91,0.15);
  transition: all 0.3s ease;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 600;
  letter-spacing: 4px; color: #c2185b;
  text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: 36px; list-style: none;
}
.nav-links a {
  color: #ccc; text-decoration: none;
  font-size: 0.85rem; letter-spacing: 1.5px;
  text-transform: uppercase; transition: color 0.3s;
}
.nav-links a:hover { color: #c2185b; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-toggle { cursor: pointer; display: flex; align-items: center; gap: 4px; }
.dropdown-menu {
  display: none; position: absolute;
  top: calc(100% + 14px); left: 0;
  background: #111;
  border: 1px solid rgba(194,24,91,0.25);
  border-radius: 10px; padding: 10px 0;
  min-width: 200px; list-style: none; z-index: 999;
}
.dropdown-menu li a {
  display: block; padding: 10px 20px;
  font-size: 0.82rem; letter-spacing: 1px;
  color: #bbb; transition: all 0.2s;
}
.dropdown-menu li a:hover {
  color: #c2185b;
  background: rgba(194,24,91,0.08);
  padding-left: 26px;
}
.dropdown:hover .dropdown-menu { display: block; }
.hamburger { display: none; font-size: 1.6rem; cursor: pointer; color: #c2185b; }

/* ===== HERO ===== */
.hero {
  position: relative; height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('images/shoot1.jpg') center/cover no-repeat;
  transform: scale(1.05); transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1.0); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(136,14,79,0.7) 0%,
    rgba(10,10,10,0.75) 50%,
    rgba(194,24,91,0.4) 100%
  );
}
.hero-content { position: relative; z-index: 2; padding: 0 20px; }
.hero-sub {
  font-size: 0.75rem; letter-spacing: 5px;
  text-transform: uppercase; color: #f48fb1;
  margin-bottom: 20px;
}
.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 300; line-height: 1.05;
  letter-spacing: 6px; text-transform: uppercase; color: #fff;
  margin-bottom: 24px;
}
.hero-content h1 em { font-style: italic; color: #f48fb1; }
.hero-typed {
  font-size: 1.1rem; color: rgba(255,255,255,0.75);
  margin-bottom: 36px; letter-spacing: 1px;
}
#typed-text { color: #f48fb1; font-style: italic; }
.cursor { color: #c2185b; animation: blink 1s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.hero-btn {
  display: inline-block; padding: 16px 44px;
  border: 1px solid #c2185b; color: #c2185b;
  text-decoration: none; font-size: 0.8rem;
  letter-spacing: 3px; text-transform: uppercase;
  border-radius: 50px; transition: all 0.4s ease;
}
.hero-btn:hover {
  background: #c2185b; color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(194,24,91,0.4);
}
.hero-scroll {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem; letter-spacing: 4px;
  color: rgba(255,255,255,0.4); text-transform: uppercase;
  animation: bounce 2s infinite; z-index: 2;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== SECTIONS ===== */
.section { padding: 100px 60px; }
.dark-section { background: #0f0f0f; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block; font-size: 0.72rem;
  letter-spacing: 4px; text-transform: uppercase;
  color: #c2185b; margin-bottom: 14px;
}
.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300; color: #f0ece4; letter-spacing: 2px;
}
.section-header h2 em { font-style: italic; color: #f48fb1; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px; max-width: 1200px; margin: 0 auto;
}
.service-card {
  background: #111;
  border: 1px solid rgba(194,24,91,0.1);
  border-radius: 14px; padding: 30px 20px;
  text-align: center; transition: all 0.4s ease;
  cursor: pointer;
}
.service-card:hover {
  border-color: rgba(194,24,91,0.5);
  background: #161616;
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(194,24,91,0.15);
}
.service-icon { font-size: 2.2rem; display: block; margin-bottom: 14px; }
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 400;
  color: #e0dbd0; letter-spacing: 1px;
}

/* ===== FILTER TABS ===== */
.filter-tabs {
  display: flex; flex-wrap: wrap;
  gap: 10px; justify-content: center; margin-bottom: 50px;
}
.filter-btn {
  padding: 9px 22px;
  border: 1px solid rgba(194,24,91,0.3);
  background: transparent; color: #aaa;
  border-radius: 50px; font-size: 0.78rem;
  letter-spacing: 1.5px; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s ease;
  font-family: 'DM Sans', sans-serif;
}
.filter-btn:hover,
.filter-btn.active {
  background: #c2185b;
  border-color: #c2185b;
  color: #fff; font-weight: 500;
}

/* ===== GALLERY GRID ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px; max-width: 1300px; margin: 0 auto;
}
.gallery-item {
  position: relative; overflow: hidden;
  border-radius: 12px; aspect-ratio: 4/3; cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease; display: block;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .overlay-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 16px 14px;
  background: linear-gradient(transparent, rgba(136,14,79,0.8));
  color: #fff; font-size: 0.85rem; letter-spacing: 1px;
  opacity: 0; transition: opacity 0.3s ease;
}
.gallery-item:hover .overlay-label { opacity: 1; }

/* ===== ABOUT ===== */
.about-wrap { max-width: 700px; margin: 0 auto; text-align: center; }
.about-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; font-weight: 300;
  margin: 12px 0 24px; color: #f0ece4;
}
.about-text p { color: #aaa; line-height: 1.9; margin-bottom: 14px; font-size: 0.95rem; }
.about-text strong { color: #c2185b; }
.social-links { display: flex; gap: 14px; justify-content: center; margin-top: 30px; }
.social-btn {
  padding: 12px 30px; border-radius: 50px;
  text-decoration: none; font-size: 0.82rem;
  letter-spacing: 2px; text-transform: uppercase; transition: all 0.3s;
}
.social-btn.insta { border: 1px solid #e1306c; color: #e1306c; }
.social-btn.insta:hover { background: #e1306c; color: #fff; }
.social-btn.yt { border: 1px solid #ff0000; color: #ff0000; }
.social-btn.yt:hover { background: #ff0000; color: #fff; }

/* ===== CONTACT ===== */
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; max-width: 1100px; margin: 0 auto; align-items: start;
}
.booking-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%; padding: 14px 18px;
  background: #161616;
  border: 1px solid rgba(194,24,91,0.2);
  border-radius: 10px; color: #f0ece4;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; outline: none; transition: border 0.3s;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus { border-color: #c2185b; }
.booking-form select option { background: #161616; }
.booking-form textarea { resize: vertical; }
.submit-btn {
  padding: 16px; background: #c2185b;
  color: #fff; border: none; border-radius: 10px;
  font-size: 0.9rem; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  transition: all 0.3s ease;
}
.submit-btn:hover {
  background: #880e4f;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(194,24,91,0.4);
}
.form-status { text-align: center; font-size: 0.88rem; color: #f48fb1; min-height: 20px; }
.contact-info { display: flex; flex-direction: column; gap: 24px; padding-top: 10px; }
.contact-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: #111;
  border: 1px solid rgba(194,24,91,0.1);
  border-radius: 12px; padding: 20px 24px;
}
.contact-card span { font-size: 1.5rem; }
.contact-card .label {
  font-size: 0.72rem; letter-spacing: 2px;
  text-transform: uppercase; color: #c2185b; margin-bottom: 4px;
}
.contact-card p { color: #ccc; font-size: 0.92rem; }
.contact-card a { color: #ccc; text-decoration: none; }
.contact-card a:hover { color: #c2185b; }

/* ===== FOOTER ===== */
footer {
  background: #050505; text-align: center;
  padding: 36px 20px;
  border-top: 1px solid rgba(194,24,91,0.1);
}
footer p { color: rgba(255,255,255,0.3); font-size: 0.8rem; letter-spacing: 1px; margin-bottom: 6px; }

/* ===== FLOATING BUTTONS ===== */
.float-btn {
  position: fixed; right: 24px; width: 50px; height: 50px;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 1.3rem;
  text-decoration: none; z-index: 999;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.float-btn:hover { transform: scale(1.15); }
.whatsapp-float { bottom: 88px; background: #25d366; }
.insta-float { bottom: 24px; background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

/* ===== 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 img { max-width: 90vw; max-height: 88vh; border-radius: 8px; object-fit: contain; }
.lb-close { position: absolute; top: 20px; right: 28px; background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; opacity: 0.7; }
.lb-close:hover { opacity: 1; }
.lb-prev, .lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(194,24,91,0.3); border: none; color: #fff;
  font-size: 2.5rem; padding: 10px 18px;
  cursor: pointer; border-radius: 8px; transition: background 0.2s;
}
.lb-prev { left: 20px; } .lb-next { right: 20px; }
.lb-prev:hover, .lb-next:hover { background: rgba(194,24,91,0.6); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .navbar { padding: 16px 24px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; width: 100%; background: #0a0a0a; padding: 20px; gap: 16px; }
  .nav-links.open { display: flex; }
  .hamburger { display: block; }
  .section { padding: 70px 24px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
}
@media (max-width: 600px) {
  .hero-content h1 { font-size: 3rem; letter-spacing: 3px; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
}
/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px; max-width: 1200px; margin: 0 auto 60px;
}
.review-card {
  background: #111;
  border: 1px solid rgba(194,24,91,0.15);
  border-radius: 14px; padding: 28px 24px;
  transition: all 0.3s ease;
}
.review-card:hover {
  border-color: rgba(194,24,91,0.4);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(194,24,91,0.1);
}
.review-stars { color: #c2185b; font-size: 1.3rem; margin-bottom: 12px; }
.review-text { color: #aaa; font-size: 0.9rem; line-height: 1.8; margin-bottom: 14px; font-style: italic; }
.review-author { color: #c2185b; font-size: 0.82rem; letter-spacing: 1px; }

.review-form-wrap {
  max-width: 600px; margin: 0 auto; text-align: center;
  background: #111; border: 1px solid rgba(194,24,91,0.15);
  border-radius: 16px; padding: 40px;
}
.review-form-wrap h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 300; color: #f0ece4;
  margin-bottom: 20px;
}
.star-select { font-size: 2rem; margin-bottom: 20px; cursor: pointer; }
.star-select span { color: #444; transition: color 0.2s; margin: 0 4px; }
.star-select span.active { color: #c2185b; }
.review-form-wrap input,
.review-form-wrap textarea {
  width: 100%; padding: 12px 16px; margin-bottom: 14px;
  background: #161616; border: 1px solid rgba(194,24,91,0.2);
  border-radius: 10px; color: #f0ece4;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; outline: none;
}
.review-form-wrap input:focus,
.review-form-wrap textarea:focus { border-color: #c2185b; }
.review-form-wrap button {
  padding: 14px 40px; background: #c2185b; color: #fff;
  border: none; border-radius: 50px; cursor: pointer;
  font-size: 0.9rem; letter-spacing: 2px; text-transform: uppercase;
  font-family: 'DM Sans', sans-serif; transition: all 0.3s;
}
.review-form-wrap button:hover { background: #880e4f; transform: translateY(-2px); }
#review-status { margin-top: 14px; color: #f48fb1; font-size: 0.88rem; }