* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-dark: #0a1928;
  --bg-blue: #1e3a5f;
  --bg-light: #2c4c7c;
  --accent-gold: #d4af37;
  --accent-light: #f1e6c5;
  --text-light: #ffffff;
  --text-gray: #b0c4de;
  --success: #4caf50;
  --error: #f44336;
  --warning: #ff9800;
  --info: #2196f3;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-hover: 0 8px 30px rgba(212, 175, 55, 0.2);
  --transition: all 0.3s ease;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-blue), var(--bg-light));
  color: var(--text-light);
  min-height: 100vh;
  background-attachment: fixed;
  line-height: 1.6;
}

.container {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 100vh;
}

/* ======================================== */
/* SIDEBAR STYLES */
/* ======================================== */
.sidebar {
  background: linear-gradient(180deg, rgba(10, 25, 40, 0.95), rgba(30, 58, 95, 0.95));
  backdrop-filter: blur(10px);
  padding: 25px 15px;
  box-shadow: 4px 0 30px rgba(0, 0, 0, 0.4);
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  border-right: 3px solid var(--accent-gold);
  display: flex;
  flex-direction: column;
  z-index: 100;
}

.logo-container {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
  text-align: center;
}

.brand-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.logo-image {
  width: 160px;
  height: auto;
  max-width: 100%;
  filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.4));
  animation: floatLogo 4s ease-in-out infinite;
  border-radius: 10px;
  transition: var(--transition);
}

.logo-image:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 6px 16px rgba(212, 175, 55, 0.6));
}

.logo-text-content h1 {
  font-size: 16px;
  color: var(--accent-gold);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.2);
  padding: 8px 12px;
  border-radius: 30px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.menu-items-container {
  flex: 1;
  overflow-y: auto;
  padding-right: 8px;
}

.menu-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  margin-bottom: 8px;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-gray);
  font-size: 14px;
  font-weight: 500;
  background: rgba(30, 58, 95, 0.3);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.menu-item:hover {
  background: rgba(212, 175, 55, 0.15);
  color: var(--accent-light);
  transform: translateX(5px);
}

.menu-item.active {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(30, 58, 95, 0.8));
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  font-weight: 600;
}

.menu-icon {
  margin-right: 15px;
  font-size: 16px;
  width: 22px;
}

/* ======================================== */
/* MAIN CONTENT */
/* ======================================== */
.main-content {
  padding: 30px;
  overflow-y: auto;
}

.page {
  display: none;
  animation: fadeIn 0.5s ease;
}

.page.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* ======================================== */
/* TAGLINE STYLES */
/* ======================================== */
.tagline-slogan {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(30, 58, 95, 0.3));
  border: 2px solid rgba(212, 175, 55, 0.4);
  border-radius: 50px;
  padding: 18px 25px;
  margin: 25px 0;
  text-align: center;
  backdrop-filter: blur(10px);
  animation: floatLogo 4s ease-in-out infinite, shimmer 3s ease-in-out infinite;
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

@keyframes shimmer {
  0%, 100% {
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
  }
  50% {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
  }
}

/* ======================================== */
/* HEADER STYLES */
/* ======================================== */
.header {
  background: linear-gradient(135deg, rgba(10, 25, 40, 0.95), rgba(30, 58, 95, 0.95));
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: var(--shadow);
  border: 2px solid rgba(212, 175, 55, 0.3);
}

.header h2 {
  color: var(--accent-gold);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.header p {
  color: var(--accent-light);
  font-size: 18px;
}

/* ======================================== */
/* QUICK STATS CARDS */
/* ======================================== */
.quick-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.stat-card {
  background: linear-gradient(135deg, rgba(10, 25, 40, 0.9), rgba(30, 58, 95, 0.9));
  border-radius: 15px;
  padding: 30px 25px;
  display: flex;
  align-items: center;
  border: 2px solid rgba(212, 175, 55, 0.2);
  transition: var(--transition);
  cursor: pointer;
}

.stat-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-hover);
}

.stat-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-gold), #b8962c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  font-size: 28px;
  color: var(--bg-dark);
}

.stat-info h3 {
  color: var(--accent-gold);
  font-size: 22px;
  margin-bottom: 8px;
}

.stat-info p {
  color: var(--text-gray);
  font-size: 15px;
}

/* ======================================== */
/* ACTION BUTTONS */
/* ======================================== */
.action-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.action-btn {
  padding: 18px 35px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex: 1;
  font-family: 'Montserrat', sans-serif;
}

.action-btn.gold {
  background: linear-gradient(135deg, var(--accent-gold), #b8962c);
  color: var(--bg-dark);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

.action-btn.gold:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

.action-btn:not(.gold) {
  background: rgba(30, 58, 95, 0.8);
  color: var(--accent-light);
  border: 2px solid rgba(212, 175, 55, 0.3);
}

.action-btn:not(.gold):hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

/* ======================================== */
/* GALLERY STYLES */
/* ======================================== */
.gallery-section {
  margin: 50px 0;
}

.gallery-title {
  color: var(--accent-gold);
  font-size: 28px;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.gallery-title:before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--accent-gold);
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.featured-gallery {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  transition: var(--transition);
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-blue));
  box-shadow: var(--shadow);
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: var(--transition);
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-blue));
}

.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-blue));
}

.gallery-item.product-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-blue));
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.02);
}

.gallery-item video {
  pointer-events: none;
}

.gallery-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.gallery-filter {
  padding: 12px 30px;
  background: rgba(30, 58, 95, 0.8);
  border: 2px solid var(--accent-gold);
  border-radius: 50px;
  color: var(--accent-light);
  cursor: pointer;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  transition: var(--transition);
}

.gallery-filter:hover,
.gallery-filter.active {
  background: var(--accent-gold);
  color: var(--bg-dark);
}

/* ======================================== */
/* SERVICES PAGE - CATEGORIES */
/* ======================================== */
.categories-container {
  margin: 30px 0;
}

.category-item {
  background: linear-gradient(135deg, rgba(10, 25, 40, 0.95), rgba(30, 58, 95, 0.95));
  border: 2px solid var(--accent-gold);
  border-radius: 12px;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 20px;
  position: relative;
  margin-bottom: 2px;
  transition: var(--transition);
}

.category-item:hover {
  background: rgba(212, 175, 55, 0.15);
  transform: translateY(-2px);
}

.category-item::after {
  content: '▼';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s;
  color: var(--accent-gold);
}

.category-item.active::after {
  transform: translateY(-50%) rotate(180deg);
}

.services-container {
  display: none;
  background: rgba(10, 25, 40, 0.8);
  border: 2px solid var(--accent-gold);
  border-top: none;
  border-radius: 0 0 12px 12px;
  padding: 25px;
  margin-bottom: 15px;
}

.services-container.active {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card {
  background: rgba(30, 58, 95, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  padding: 20px;
  margin: 12px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--accent-gold);
  transform: translateX(5px);
  background: rgba(30, 58, 95, 0.7);
}

.service-info {
  flex: 1;
}

.service-name {
  font-weight: 600;
  color: var(--accent-light);
  font-size: 18px;
  margin-bottom: 8px;
}

.service-details {
  color: var(--text-gray);
  font-size: 14px;
}

.service-price {
  color: var(--accent-gold);
  font-weight: bold;
  font-size: 22px;
  margin-left: 20px;
  white-space: nowrap;
}

/* ======================================== */
/* BOOKING CTA SECTION */
/* ======================================== */
.booking-cta {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(30, 58, 95, 0.5));
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  margin-top: 40px;
  border: 1px solid var(--accent-gold);
}

.booking-cta h3 {
  color: var(--accent-gold);
  font-size: 24px;
  margin-bottom: 10px;
}

.booking-cta p {
  color: var(--accent-light);
  margin-bottom: 20px;
}

/* ======================================== */
/* BUTTONS */
/* ======================================== */
.gold-btn, .back-btn {
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  border: none;
  margin: 10px;
  font-family: 'Montserrat', sans-serif;
  transition: var(--transition);
}

.gold-btn {
  background: linear-gradient(135deg, var(--accent-gold), #b8962c);
  color: var(--bg-dark);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.gold-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.back-btn {
  background: transparent;
  color: var(--accent-light);
  border: 2px solid var(--accent-light);
}

.back-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-gold);
  border-color: var(--accent-gold);
}

.cart-btn-container {
  text-align: center;
  margin: 40px 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ======================================== */
/* LOCATION BOX */
/* ======================================== */
.location-box {
  background: linear-gradient(135deg, rgba(10, 25, 40, 0.95), rgba(30, 58, 95, 0.95));
  padding: 35px;
  border-radius: 20px;
  margin-top: 50px;
  border: 2px solid rgba(212, 175, 55, 0.3);
}

.location-box h3 {
  color: var(--accent-gold);
  margin-bottom: 20px;
  font-size: 26px;
}

.map-container {
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid var(--accent-gold);
}

.map-container iframe {
  width: 100%;
  height: 300px;
  display: block;
}

/* ======================================== */
/* ABOUT PAGE - WITH MASTER IMAGE ON RIGHT */
/* ======================================== */
.about-content {
  background: rgba(10, 25, 40, 0.9);
  padding: 45px;
  border-radius: 20px;
  margin-bottom: 40px;
}

.mission-vision {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.mission-card, .vision-card {
  background: rgba(30, 58, 95, 0.5);
  padding: 35px;
  border-radius: 15px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: var(--transition);
}

.mission-card:hover, .vision-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
}

.core-values {
  margin: 40px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.value-item {
  background: rgba(30, 58, 95, 0.5);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: var(--transition);
}

.value-item:hover {
  transform: translateY(-3px);
  border-color: var(--accent-gold);
}

.value-item i {
  color: var(--accent-gold);
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}

.about-with-image {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.about-text {
  flex: 1;
}

.about-text p {
  color: var(--accent-light);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-master-image {
  flex: 0 0 280px;
  max-width: 280px;
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid rgba(212, 175, 55, 0.3);
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-master-image:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.about-master-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: var(--transition);
  background: #ffffff;
}

.about-master-image:hover img {
  transform: scale(1.03);
}

/* ======================================== */
/* STAFF SECTION - WITH IMAGE ON LEFT */
/* ======================================== */
.staff-section {
  margin-top: 45px;
}

.staff-section h3 {
  color: var(--accent-gold);
  font-size: 28px;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.staff-section h3:before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--accent-gold);
}

.staff-with-image {
  display: flex;
  gap: 30px;
  align-items: center;
  background: rgba(30, 58, 95, 0.5);
  padding: 35px;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: var(--transition);
}

.staff-with-image:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
}

.staff-master-image {
  flex: 0 0 280px;
  max-width: 280px;
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid rgba(212, 175, 55, 0.3);
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.staff-master-image:hover {
  transform: scale(1.02);
  border-color: var(--accent-gold);
}

.staff-master-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: var(--transition);
  background: #ffffff;
}

.staff-master-image:hover img {
  transform: scale(1.02);
}

.staff-info {
  flex: 1;
}

.staff-info h4 {
  color: var(--accent-gold);
  font-size: 26px;
  margin-bottom: 10px;
}

.staff-role {
  color: var(--accent-light);
  font-size: 18px;
  font-weight: 600;
  margin: 10px 0;
}

.staff-info p {
  color: var(--text-gray);
  font-size: 16px;
  line-height: 1.6;
}

.accreditation-info {
  margin-top: 40px;
  padding: 25px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 15px;
  border-left: 4px solid var(--accent-gold);
}

/* ======================================== */
/* CONTACT PAGE */
/* ======================================== */
.contact-info {
  background: rgba(10, 25, 40, 0.9);
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  gap: 25px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-item i {
  color: var(--accent-gold);
  font-size: 32px;
  width: 45px;
}

.contact-item strong {
  color: var(--accent-gold);
  font-size: 18px;
  display: block;
  margin-bottom: 5px;
}

.contact-item p {
  color: var(--accent-light);
  font-size: 16px;
}

.contact-item a {
  color: var(--accent-light);
  text-decoration: none;
  transition: var(--transition);
}

.contact-item a:hover {
  color: var(--accent-gold);
}

.social-links {
  display: flex;
  gap: 20px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.social-links a {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  transition: var(--transition);
  text-decoration: none;
  color: white;
}

.social-links a.instagram { background: linear-gradient(45deg, #405de6, #e1306c); }
.social-links a.facebook { background: #1877f2; }
.social-links a.tiktok { background: #000000; }
.social-links a.whatsapp { background: #25d366; }

.social-links a:hover {
  transform: translateY(-5px);
}

.contact-form {
  background: rgba(10, 25, 40, 0.9);
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 40px;
}

.contact-form h3 {
  color: var(--accent-gold);
  margin-bottom: 25px;
  font-size: 24px;
}

.contact-form input,
.contact-form textarea {
  padding: 16px;
  border: 1px solid var(--accent-gold);
  border-radius: 12px;
  background: rgba(30, 58, 95, 0.5);
  color: var(--accent-light);
  width: 100%;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
  transition: var(--transition);
  font-size: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-light);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(176, 196, 222, 0.6);
}

/* ======================================== */
/* APPOINTMENT NOTICE */
/* ======================================== */
.appointment-notice {
  margin-top: 15px;
  padding-top: 10px;
}

.strictly-appointment {
  color: #ff6b6b;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: floatLogo 4s ease-in-out infinite, pulseGlow 2s ease-in-out infinite;
  display: inline-block;
  width: 100%;
  text-align: center;
  background: rgba(231, 76, 60, 0.15);
  padding: 10px 15px;
  border-radius: 30px;
  border: 1px solid rgba(231, 76, 60, 0.4);
}

@keyframes pulseGlow {
  0%, 100% {
    text-shadow: 0 0 5px rgba(231, 76, 60, 0.3);
    background: rgba(231, 76, 60, 0.1);
  }
  50% {
    text-shadow: 0 0 15px rgba(231, 76, 60, 0.6);
    background: rgba(231, 76, 60, 0.2);
  }
}

/* ======================================== */
/* FLOATING BOOKING BUTTON */
/* ======================================== */
.floating-booking-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, var(--accent-gold), #b8962c);
  color: var(--bg-dark);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
  z-index: 1000;
  border: none;
}

.floating-booking-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}

.floating-tooltip {
  position: absolute;
  right: 70px;
  background: var(--bg-dark);
  color: var(--accent-gold);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.floating-booking-btn:hover .floating-tooltip {
  opacity: 1;
}

/* ======================================== */
/* BOOKING MODAL */
/* ======================================== */
.booking-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 10001;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
}

.booking-modal.active {
  display: flex;
}

.booking-modal-content {
  background: linear-gradient(135deg, rgba(10, 25, 40, 0.98), rgba(30, 58, 95, 0.98));
  border-radius: 20px;
  width: 90%;
  max-width: 550px;
  border: 2px solid var(--accent-gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.booking-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.booking-modal-header h2 {
  color: var(--accent-gold);
  font-size: 24px;
  margin: 0;
}

.booking-modal-header h2 i {
  margin-right: 10px;
}

.booking-modal-close {
  background: none;
  border: none;
  color: var(--text-gray);
  font-size: 28px;
  cursor: pointer;
  transition: var(--transition);
}

.booking-modal-close:hover {
  color: var(--accent-gold);
}

.booking-modal-body {
  padding: 30px;
}

.booking-redirect-card {
  text-align: center;
}

.booking-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-gold), #b8962c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.booking-icon i {
  font-size: 40px;
  color: var(--bg-dark);
}

.booking-redirect-card h3 {
  color: var(--accent-gold);
  font-size: 22px;
  margin-bottom: 15px;
}

.booking-redirect-card p {
  color: var(--accent-light);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.booking-redirect-card .gold-btn,
.booking-redirect-card .back-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 5px;
}

/* ======================================== */
/* NOTIFICATION */
/* ======================================== */
#notificationContainer {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
}

.notification {
  background: linear-gradient(135deg, var(--accent-gold), #b8962c);
  color: var(--bg-dark);
  padding: 16px 25px;
  border-radius: 10px;
  font-weight: 600;
  margin-bottom: 10px;
  animation: slideInRight 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOutRight {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(100%); opacity: 0; }
}

/* ======================================== */
/* UTILITY CLASSES */
/* ======================================== */
.text-center {
  text-align: center;
}

/* ======================================== */
/* RESPONSIVE DESIGN */
/* ======================================== */
@media (max-width: 1200px) {
  .gallery-container {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
  .featured-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .container {
    grid-template-columns: 250px 1fr;
  }
  .header h2 {
    font-size: 32px;
  }
  .featured-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .tagline-slogan {
    font-size: 20px;
    padding: 15px 20px;
  }
  
  .about-with-image {
    flex-direction: column;
  }
  
  .about-master-image {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
    aspect-ratio: 4 / 3;
    order: -1;
    max-height: 400px;
  }
  
  .about-master-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #ffffff;
  }
  
  .staff-with-image {
    flex-direction: column;
    text-align: center;
  }
  
  .staff-master-image {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
    aspect-ratio: 4 / 3;
    max-height: 400px;
  }
  
  .staff-master-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #ffffff;
  }
}

@media (max-width: 768px) {
  .container {
    grid-template-columns: 1fr;
  }
  
  .sidebar {
    height: auto;
    position: relative;
    border-right: none;
    border-bottom: 3px solid var(--accent-gold);
  }
  
  .menu-items-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .menu-item {
    flex: 0 0 auto;
  }
  
  .main-content {
    padding: 20px;
  }
  
  .action-buttons {
    flex-direction: column;
  }
  
  .gallery-container {
    grid-template-columns: 1fr;
  }
  
  .featured-gallery {
    grid-template-columns: 1fr;
  }
  
  .master-stylist-gallery {
    grid-template-columns: 1fr;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .contact-item i {
    margin: 0 auto;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .header h2 {
    font-size: 28px;
  }
  
  .service-card {
    flex-direction: column;
    text-align: center;
  }
  
  .service-price {
    margin-left: 0;
    margin-top: 10px;
  }
  
  .mission-vision {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .floating-booking-btn {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .booking-modal-header h2 {
    font-size: 20px;
  }
  
  .booking-modal-body {
    padding: 20px;
  }
  
  .booking-redirect-card h3 {
    font-size: 18px;
  }
  
  .tagline-slogan {
    font-size: 16px;
    padding: 12px 15px;
  }
  
  .about-master-image {
    aspect-ratio: 4 / 3;
    max-height: 350px;
  }
  
  .about-master-image img {
    object-fit: contain;
    background: #ffffff;
  }
  
  .staff-master-image {
    aspect-ratio: 4 / 3;
    max-height: 350px;
  }
  
  .staff-master-image img {
    object-fit: contain;
    background: #ffffff;
  }
  
  .staff-with-image {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .main-content {
    padding: 15px;
  }
  
  .header {
    padding: 20px;
  }
  
  .header h2 {
    font-size: 24px;
  }
  
  .header p {
    font-size: 14px;
  }
  
  .gallery-filter {
    padding: 8px 16px;
    font-size: 12px;
  }
  
  .gold-btn, .back-btn {
    padding: 12px 25px;
    font-size: 14px;
  }
  
  .service-name {
    font-size: 16px;
  }
  
  .service-price {
    font-size: 18px;
  }
  
  .category-item {
    font-size: 16px;
    padding: 14px 20px;
  }
  
  .contact-item strong {
    font-size: 16px;
  }
  
  .contact-item p {
    font-size: 14px;
  }
  
  .contact-item i {
    font-size: 28px;
  }
  
  .tagline-slogan {
    font-size: 14px;
    padding: 10px 12px;
  }
  
  .about-master-image {
    max-height: 280px;
  }
  
  .about-master-image img {
    object-fit: contain;
  }
  
  .staff-master-image {
    max-height: 280px;
  }
  
  .staff-master-image img {
    object-fit: contain;
  }
}

/* ======================================== */
/* SCROLLBAR STYLES */
/* ======================================== */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(30, 58, 95, 0.3);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.5);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* ======================================== */
/* CHOICE BUTTONS IN CONTACT FORM */
/* ======================================== */
.choice-buttons {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.choice-btn {
  flex: 1;
  padding: 16px 24px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: 'Montserrat', sans-serif;
}

.choice-btn.whatsapp-choice {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.choice-btn.whatsapp-choice:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.choice-btn.email-choice {
  background: linear-gradient(135deg, var(--accent-gold), #b8962c);
  color: var(--bg-dark);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.choice-btn.email-choice:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.choice-btn i {
  font-size: 20px;
}

/* ======================================== */
/* VIDEO CONTROLS REMOVAL */
/* ======================================== */
video::-webkit-media-controls-panel {
  display: flex !important;
}

video::-webkit-media-controls-enclosure {
  overflow: hidden !important;
}

video::-webkit-media-controls-picture-in-picture-button {
  display: none !important;
}

video::-webkit-media-controls-fullscreen-button {
  display: none !important;
}

video::-moz-media-controls-picture-in-picture-button {
  display: none !important;
}

video::-ms-media-controls-picture-in-picture-button {
  display: none !important;
}

/* ======================================== */
/* PRODUCT EYE ICON & MODAL STYLES */
/* ======================================== */

/* Product container */
.product-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* Eye icon on product */
.product-eye-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: rgba(212, 175, 55, 0.9);
  color: var(--bg-dark);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: all 0.3s ease;
  z-index: 5;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.product-item:hover .product-eye-icon {
  transform: translate(-50%, -50%) scale(1);
}

.product-eye-icon:hover {
  background: var(--accent-gold);
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
}

/* Product title at bottom */
.product-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(10, 25, 40, 0.85), rgba(30, 58, 95, 0.85));
  padding: 12px 15px;
  text-align: center;
  color: var(--accent-gold);
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(3px);
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.product-item:hover .product-title {
  transform: translateY(100%);
  opacity: 0;
}

/* Product image hover */
.product-item img {
  transition: transform 0.4s ease;
}

.product-item:hover img {
  transform: scale(1.05);
}

/* ======================================== */
/* PRODUCT MODAL */
/* ======================================== */
.product-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10002;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(8px);
}

.product-modal.active {
  display: flex;
}

.product-modal-content {
  background: linear-gradient(135deg, rgba(10, 25, 40, 0.98), rgba(30, 58, 95, 0.98));
  border-radius: 20px;
  width: 90%;
  max-width: 800px;
  border: 2px solid var(--accent-gold);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: modalSlideIn 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

.product-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.product-modal-header h2 {
  color: var(--accent-gold);
  font-size: 22px;
  margin: 0;
}

.product-modal-close {
  background: none;
  border: none;
  color: var(--text-gray);
  font-size: 32px;
  cursor: pointer;
  transition: var(--transition);
  padding: 5px;
}

.product-modal-close:hover {
  color: var(--accent-gold);
  transform: rotate(90deg);
}

.product-modal-body {
  display: flex;
  gap: 30px;
  padding: 30px;
  align-items: center;
}

.product-modal-image {
  flex: 0 0 300px;
  max-width: 300px;
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid rgba(212, 175, 55, 0.3);
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #ffffff;
}

.product-modal-info {
  flex: 1;
}

.product-modal-info h3 {
  color: var(--accent-gold);
  font-size: 24px;
  margin-bottom: 15px;
}

.product-modal-info p {
  color: var(--accent-light);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .product-modal-body {
    flex-direction: column;
    padding: 20px;
  }
  
  .product-modal-image {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
    aspect-ratio: 4 / 3;
  }
  
  .product-modal-info h3 {
    font-size: 20px;
  }
  
  .product-modal-info p {
    font-size: 14px;
  }
  
  .product-eye-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .product-modal-image {
    aspect-ratio: 4 / 3;
  }
  
  .product-modal-header h2 {
    font-size: 18px;
  }
  
  .product-modal-info h3 {
    font-size: 18px;
  }
}