/* ============================================
   Sweet Violet Beauty Spa - Premium Styles
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --dark-purple: #2c0b3f;
  --deep-purple: #1a0525;
  --medium-purple: #4a1a6b;
  --light-purple: #6b3a8a;
  --gold: #d4af37;
  --gold-light: #f0d060;
  --gold-dark: #b8941f;
  --black: #000000;
  --white: #ffffff;
  --off-white: #f5f0f8;
  --gray-light: #e8e0ed;
  --text-light: #c9b8d4;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --font-accent: 'Cormorant Garamond', serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
}

::selection {
  background: var(--gold);
  color: var(--dark-purple);
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

/* ---------- Preloader ---------- */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease;
}
#preloader.hidden { opacity: 0; pointer-events: none; }

.loader-flower {
  width: 60px;
  height: 60px;
  border: 3px solid var(--gold);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Navbar ---------- */
.navbar-spa {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 18px 0;
  transition: var(--transition);
  background: transparent;
}
.navbar-spa.scrolled {
  background: rgba(26, 5, 37, 0.97);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(212, 175, 55, 0.1);
}

.navbar-spa .navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--gold) !important;
  font-weight: 700;
  letter-spacing: 1px;
}
.navbar-spa .navbar-brand span {
  font-family: var(--font-accent);
  font-weight: 300;
  font-size: 0.75rem;
  display: block;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: -4px;
}

.navbar-spa .nav-link {
  color: var(--white) !important;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px !important;
  position: relative;
}
.navbar-spa .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
  transform: translateX(-50%);
}
.navbar-spa .nav-link:hover::after,
.navbar-spa .nav-link.active::after { width: 60%; }
.navbar-spa .nav-link:hover,
.navbar-spa .nav-link.active { color: var(--gold) !important; }

.navbar-toggler { border: 1px solid var(--gold) !important; padding: 4px 8px; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23d4af37' stroke-linecap='round' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.nav-book-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--dark-purple) !important;
  font-weight: 600 !important;
  border-radius: 30px !important;
  padding: 8px 24px !important;
  letter-spacing: 1px !important;
  border: none;
  transition: var(--transition);
}
.nav-book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* ---------- Hero Section ---------- */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--black) 0%, var(--deep-purple) 50%, var(--dark-purple) 100%);
}
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: floatParticle 6s infinite;
}
@keyframes floatParticle {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  50% { opacity: 0.8; }
  100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

.hero-content {
  text-align: center;
  z-index: 10;
  position: relative;
  padding: 0 20px;
}
.hero-subtitle {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 1s 0.3s forwards;
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--white);
  margin-bottom: 10px;
  opacity: 0;
  animation: fadeInUp 1s 0.6s forwards;
}
.hero-title .gold { color: var(--gold); }
.hero-tagline {
  font-family: var(--font-accent);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: var(--text-light);
  letter-spacing: 6px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeInUp 1s 0.9s forwards;
}
.hero-divider {
  width: 80px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 30px;
  opacity: 0;
  animation: fadeInUp 1s 0.7s forwards;
}
.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s 1.2s forwards;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Buttons ---------- */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark-purple);
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  transition: var(--transition);
  display: inline-block;
  cursor: pointer;
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
  color: var(--dark-purple);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  font-weight: 500;
  padding: 13px 36px;
  border-radius: 50px;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  transition: var(--transition);
  display: inline-block;
  cursor: pointer;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--dark-purple);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.3);
}

/* ---------- Section Styles ---------- */
.section-padding { padding: 100px 0; }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-label {
  font-family: var(--font-accent);
  color: var(--gold);
  letter-spacing: 5px;
  text-transform: uppercase;
  font-size: 0.95rem;
  margin-bottom: 10px;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 15px;
}
.section-header h2 .gold { color: var(--gold); }
.section-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 20px;
}
.section-header p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
}

.bg-dark-purple { background: var(--deep-purple); }
.bg-gradient-purple {
  background: linear-gradient(180deg, var(--black) 0%, var(--deep-purple) 50%, var(--black) 100%);
}

/* ---------- About Section ---------- */
.about-image-wrapper {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}
.about-image-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--gold);
  border-radius: 15px;
  z-index: 2;
  opacity: 0.3;
}
.about-image-placeholder {
  width: 100%;
  height: 450px;
  background: linear-gradient(135deg, var(--dark-purple), var(--medium-purple));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.about-text h3 {
  font-family: var(--font-accent);
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.about-text h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}
.about-text p {
  color: var(--text-light);
  margin-bottom: 15px;
  font-size: 0.95rem;
}
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.about-stat h4 {
  font-size: 2.2rem;
  color: var(--gold);
  font-family: var(--font-heading);
}
.about-stat p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
}

/* ---------- Services ---------- */
.service-card {
  background: linear-gradient(145deg, rgba(44, 11, 63, 0.6), rgba(26, 5, 37, 0.9));
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.05), transparent);
  transition: 0.6s;
}
.service-card:hover::before { left: 100%; }
.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.1);
}
.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dark-purple), var(--medium-purple));
  border: 2px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: var(--gold);
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark-purple);
  transform: scale(1.1);
}
.service-card h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--white);
}
.service-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 15px;
}
.service-price {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
}

/* ---------- Gallery ---------- */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.gallery-filter-btn {
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--text-light);
  padding: 8px 24px;
  border-radius: 30px;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}
.gallery-filter-btn.active,
.gallery-filter-btn:hover {
  background: var(--gold);
  color: var(--dark-purple);
  border-color: var(--gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--dark-purple), var(--medium-purple));
}
.gallery-item-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  transition: var(--transition);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 11, 63, 0.95), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-item-inner { transform: scale(1.1); }
.gallery-overlay h5 { color: var(--gold); font-size: 1.1rem; margin-bottom: 5px; }
.gallery-overlay p { color: var(--text-light); font-size: 0.85rem; }
.gallery-zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
}
.gallery-item:hover .gallery-zoom-icon { transform: translate(-50%, -50%) scale(1); }

/* Lightbox */
.lightbox-modal .modal-content {
  background: var(--black);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 15px;
}
.lightbox-modal .modal-header {
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding: 15px 20px;
}
.lightbox-modal .modal-header h5 { color: var(--gold); font-size: 1rem; }
.lightbox-modal .btn-close { filter: invert(1); }
.lightbox-modal .modal-body {
  padding: 30px;
  text-align: center;
}
.lightbox-image-placeholder {
  width: 100%;
  height: 60vh;
  background: linear-gradient(135deg, var(--dark-purple), var(--medium-purple));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: linear-gradient(145deg, rgba(44, 11, 63, 0.5), rgba(26, 5, 37, 0.8));
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 15px;
  padding: 35px;
  text-align: center;
  margin: 10px;
}
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 15px; }
.testimonial-text {
  color: var(--text-light);
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.8;
}
.testimonial-author h5 { color: var(--white); font-size: 1rem; margin-bottom: 3px; }
.testimonial-author p { color: var(--gold); font-size: 0.8rem; letter-spacing: 1px; }

/* ---------- Booking / Contact Form ---------- */
.booking-section {
  background: linear-gradient(135deg, var(--deep-purple), var(--dark-purple));
  position: relative;
}
.booking-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.form-floating .form-control,
.form-floating .form-select {
  background: rgba(44, 11, 63, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 10px;
  color: var(--white);
  font-size: 0.95rem;
  padding: 1rem 0.75rem;
}
.form-floating .form-control:focus,
.form-floating .form-select:focus {
  background: rgba(44, 11, 63, 0.7);
  border-color: var(--gold);
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.15);
  color: var(--white);
}
.form-floating label {
  color: var(--text-light);
}
.form-floating .form-control:focus ~ label,
.form-floating .form-control:not(:placeholder-shown) ~ label {
  color: var(--gold);
}
.form-floating .form-select option {
  background: var(--deep-purple);
  color: var(--white);
}
.form-check-input {
  background-color: rgba(44, 11, 63, 0.5);
  border-color: rgba(212, 175, 55, 0.3);
}
.form-check-input:checked {
  background-color: var(--gold);
  border-color: var(--gold);
}

.contact-info-card {
  background: linear-gradient(145deg, rgba(44, 11, 63, 0.6), rgba(26, 5, 37, 0.9));
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: var(--transition);
}
.contact-info-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateX(5px);
}
.contact-info-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--dark-purple);
  flex-shrink: 0;
}
.contact-info-card h5 {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.contact-info-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin: 0;
}

.map-wrapper {
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid rgba(212, 175, 55, 0.2);
  height: 350px;
}
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: saturate(0.5) brightness(0.7);
  transition: var(--transition);
}
.map-wrapper:hover iframe {
  filter: saturate(1) brightness(0.85);
}

/* ---------- CTA Section ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--dark-purple), var(--medium-purple));
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.05);
  top: -200px;
  right: -200px;
}
.cta-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 15px;
}
.cta-section p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  padding: 60px 0 20px;
}
.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 15px;
}
.footer-brand span {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.footer p { color: var(--text-light); font-size: 0.9rem; }
.footer h5 {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: var(--text-light);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 5px; }
.footer-social {
  display: flex;
  gap: 15px;
}
.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--dark-purple);
  transform: translateY(-3px);
}
.footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ---------- Floating Buttons ---------- */
.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9990;
}
.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.floating-btn:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.floating-btn.call-btn { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--dark-purple); }
.floating-btn.whatsapp-btn { background: linear-gradient(135deg, #25d366, #128c7e); }

.scroll-to-top {
  position: fixed;
  bottom: 100px;
  right: 36px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 9989;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.scroll-to-top.visible { opacity: 1; visibility: visible; }
.scroll-to-top:hover { transform: translateY(-3px); }

/* ---------- Page Headers ---------- */
.page-header {
  height: 45vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--black), var(--deep-purple), var(--dark-purple));
  position: relative;
  padding-top: 80px;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--black), transparent);
}
.page-header h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 10px;
}
.page-header .breadcrumb {
  justify-content: center;
}
.page-header .breadcrumb-item,
.page-header .breadcrumb-item a { color: var(--text-light); font-size: 0.9rem; }
.page-header .breadcrumb-item.active { color: var(--gold); }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: var(--gold); content: 'âœ¦'; }

/* ---------- Values / Features Grid ---------- */
.value-card {
  text-align: center;
  padding: 35px 25px;
  background: linear-gradient(145deg, rgba(44, 11, 63, 0.4), rgba(26, 5, 37, 0.7));
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 15px;
  transition: var(--transition);
  height: 100%;
}
.value-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-5px);
}
.value-card .icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.value-card h5 { color: var(--gold); font-size: 1rem; margin-bottom: 10px; }
.value-card p { color: var(--text-light); font-size: 0.9rem; margin: 0; }

/* ---------- Team Section ---------- */
.team-card {
  text-align: center;
  background: linear-gradient(145deg, rgba(44, 11, 63, 0.5), rgba(26, 5, 37, 0.8));
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 15px;
  padding: 35px 25px;
  transition: var(--transition);
  height: 100%;
}
.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.4);
}
.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dark-purple), var(--medium-purple));
  border: 3px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2.5rem;
}
.team-card h5 { font-size: 1.1rem; margin-bottom: 3px; }
.team-card .role { color: var(--gold); font-size: 0.85rem; letter-spacing: 1px; margin-bottom: 10px; }
.team-card p { color: var(--text-light); font-size: 0.88rem; }

/* ---------- Working Hours ---------- */
.hours-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
}
.hours-table td {
  padding: 12px 20px;
  background: rgba(44, 11, 63, 0.4);
  color: var(--text-light);
  font-size: 0.95rem;
}
.hours-table td:first-child {
  border-radius: 8px 0 0 8px;
  color: var(--white);
  font-weight: 500;
}
.hours-table td:last-child {
  border-radius: 0 8px 8px 0;
  text-align: right;
  color: var(--gold);
}

/* ---------- Validation Styles ---------- */
.was-validated .form-control:valid,
.form-control.is-valid {
  border-color: #28a745;
}
.was-validated .form-control:invalid,
.form-control.is-invalid {
  border-color: #dc3545;
}
.invalid-feedback { font-size: 0.8rem; }

/* Toast */
.toast-container {
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: 99999;
}
.toast.spa-toast {
  background: linear-gradient(135deg, var(--dark-purple), var(--medium-purple));
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--white);
  border-radius: 12px;
}
.spa-toast .toast-header {
  background: transparent;
  color: var(--gold);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}
.spa-toast .btn-close { filter: invert(1); }

/* ---------- Animations (AOS-like) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(26, 5, 37, 0.98);
    border-radius: 15px;
    padding: 20px;
    margin-top: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
  }
  .about-image-placeholder { height: 300px; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
}
@media (max-width: 767px) {
  .section-padding { padding: 60px 0; }
  .hero-section { min-height: 600px; }
  .about-stats { gap: 25px; }
  .floating-buttons { bottom: 20px; right: 15px; }
  .floating-btn { width: 48px; height: 48px; font-size: 1.2rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .page-header { min-height: 280px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 260px; /* ✅ SAME HEIGHT FOR ALL */
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ✅ CROPS IMAGE PROPERLY */
  display: block;
  transition: transform 0.4s ease;
}

/* Hover Zoom Effect */
.gallery-item:hover img {
  transform: scale(1.08);
}