@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --bg-primary: #0a0a0c;
  --bg-secondary: #121216;
  --bg-card: rgba(22, 22, 28, 0.65);
  --text-primary: #f5f5f7;
  --text-secondary: #a1a1aa;
  
  /* Monochrome White/Silver Theme */
  --accent-primary: #ffffff;
  --accent-secondary: #e4e4e7;
  --accent-dark: #71717a;
  --accent-gradient: linear-gradient(135deg, #ffffff 0%, #e4e4e7 50%, #a1a1aa 100%);
  --accent-glow: rgba(255, 255, 255, 0.08);
  --border-color: rgba(255, 255, 255, 0.08);
  
  /* WhatsApp Color Palette */
  --whatsapp-green: #25d366;
  --whatsapp-green-hover: #128c7e;
  
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Subtle white background glow */
body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header & Navigation */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.25rem 2rem;
  transition: var(--transition-smooth);
}

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

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: bold;
  color: #000;
  font-size: 1.25rem;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-quick {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phone-cta {
  background: #ffffff;
  color: #000000;
  padding: 0.6rem 1.2rem;
  border-radius: var(--border-radius-lg);
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
  transition: var(--transition-smooth);
}

.phone-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 255, 255, 0.25);
}

.whatsapp-cta {
  background: var(--whatsapp-green);
  color: #ffffff;
  padding: 0.6rem 1.2rem;
  border-radius: var(--border-radius-lg);
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
  transition: var(--transition-smooth);
}

.whatsapp-cta:hover {
  transform: translateY(-2px);
  background: var(--whatsapp-green-hover);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 5rem 2rem 3rem;
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent-primary);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInSpacing 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title {
  margin-bottom: 1.5rem;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.hero-title-main {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 30%, #a1a1aa 50%, #ffffff 70%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  animation: shineText 6s linear infinite, fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.hero-title-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 2.45rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-primary);
  opacity: 0;
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  opacity: 0;
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

/* Tab Navigation (Men vs Women) */
.gender-switch {
  display: flex;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 0.4rem;
  border-radius: 40px;
  position: relative;
  margin: 0 auto 3rem;
  width: fit-content;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.gender-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.8rem 2.5rem;
  cursor: pointer;
  border-radius: 30px;
  position: relative;
  z-index: 2;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.gender-btn.active {
  color: #000;
}

.gender-slider {
  position: absolute;
  top: 0.4rem;
  left: 0.4rem;
  height: calc(100% - 0.8rem);
  width: calc(50% - 0.4rem);
  background: var(--accent-gradient);
  border-radius: 30px;
  z-index: 1;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* Search Bar */
.search-container {
  max-width: 500px;
  margin: 0 auto 4rem;
  position: relative;
  padding: 0 1rem;
}

.search-input {
  width: 100%;
  padding: 1rem 1.5rem 1rem 3rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.search-input:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1), 0 4px 20px rgba(0, 0, 0, 0.3);
}

.search-icon {
  position: absolute;
  left: 2.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
  pointer-events: none;
  font-size: 1.1rem;
  transition: var(--transition-smooth);
}

.search-input:focus + .search-icon {
  color: var(--accent-primary);
}

/* Services Grid & Layout */
.services-section {
  max-width: 1200px;
  margin: 0 auto 6rem;
  padding: 0 1.5rem;
}

.gender-content {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.gender-content.active {
  display: block;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.category-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 2rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-gradient);
  opacity: 0.7;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 255, 255, 0.05);
}

.category-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--accent-primary);
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Service Item Style: Classic Salon Menu Dot Leader */
.service-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  transition: var(--transition-smooth);
}

.service-item-main {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  width: 100%;
}

.service-name {
  font-weight: 500;
  color: var(--text-primary);
  font-size: 1.05rem;
  flex-shrink: 0;
}

.service-dots {
  flex-grow: 1;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
  margin: 0 0.75rem;
  align-self: flex-end;
  height: 1px;
}

.service-price {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--accent-secondary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.service-meta {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.service-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-weight: 500;
}

.service-duration {
  font-size: 0.8rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* No Results State */
.no-results {
  text-align: center;
  grid-column: span 2;
  padding: 3rem;
  background: var(--bg-card);
  border-radius: var(--border-radius-md);
  border: 1px dashed var(--border-color);
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* Contact & Info Footer Section */
.contact-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 5rem 2rem 3rem;
  position: relative;
  z-index: 1;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.salon-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--accent-primary);
  margin-bottom: 1.5rem;
}

.contact-desc {
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  font-weight: 300;
  max-width: 500px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.info-icon {
  color: var(--accent-primary);
  font-size: 1.25rem;
  margin-top: 0.2rem;
}

.info-text h4 {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.info-text p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.info-text a {
  color: var(--accent-secondary);
  transition: var(--transition-smooth);
}

.info-text a:hover {
  color: var(--accent-primary);
  text-decoration: underline;
}

.map-container {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.9) invert(0.9) contrast(1.2);
}

/* Footer Bottom */
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Floating Actions (Desktop) */
.floating-call {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #ffffff;
  color: #000000;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
  z-index: 999;
  font-size: 1.5rem;
  transition: var(--transition-smooth);
  animation: pulseWhite 2s infinite;
}

.floating-call:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.45);
}

.floating-whatsapp {
  position: fixed;
  bottom: 6.5rem;
  right: 2rem;
  background: var(--whatsapp-green);
  color: #ffffff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
  z-index: 999;
  font-size: 1.6rem;
  transition: var(--transition-smooth);
  animation: pulseWhatsapp 2s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  background: var(--whatsapp-green-hover);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.scroll-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: var(--transition-smooth);
  opacity: 0;
  visibility: hidden;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: #ffffff;
  color: #000000;
  border-color: transparent;
}

/* Mobile Sticky CTA Bar */
.mobile-cta-bar {
  display: none;
}

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

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

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

@keyframes pulseWhite {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes pulseWhatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes fadeInSpacing {
  from {
    opacity: 0;
    letter-spacing: 0px;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    letter-spacing: 4px;
    transform: translateY(0);
  }
}

@keyframes shineText {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

/* Responsive Breakpoints & Mobile Optimization */
@media (max-width: 968px) {
  .categories-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-title-main {
    font-size: 2.8rem;
  }
  
  .hero-title-sub {
    font-size: 1.95rem;
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: 70px; /* Space for the bottom sticky bar */
  }

  .floating-call {
    display: none !important; /* Hide floating buttons on mobile to avoid overlapping */
  }

  .floating-whatsapp {
    display: none !important;
  }

  .scroll-top {
    bottom: 5.5rem;
    left: 1rem;
    width: 40px;
    height: 40px;
  }

  /* Sticky Bottom Bar for Action CTAs on Mobile */
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 12, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.75rem 1rem;
    gap: 0.75rem;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  }

  .mobile-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
  }

  .mobile-cta-btn.call-btn {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
  }

  .mobile-cta-btn.whatsapp-btn {
    background: var(--whatsapp-green);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
  }
}

@media (max-width: 576px) {
  header {
    padding: 1rem;
  }
  
  .nav-container {
    flex-direction: column;
    gap: 0.75rem;
  }

  .logo-text {
    font-size: 1.3rem;
  }
  
  .contact-quick {
    width: 100%;
    justify-content: center;
    gap: 0.5rem;
  }

  .contact-quick .phone-cta, 
  .contact-quick .whatsapp-cta {
    padding: 0.5rem 0.8rem;
    font-size: 0.85rem;
  }
  
  .hero {
    padding-top: 3.5rem;
    padding-bottom: 2rem;
    min-height: auto;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 3px;
  }

  .hero-title-main {
    font-size: 2.2rem;
  }
  
  .hero-title-sub {
    font-size: 1.5rem;
    letter-spacing: 3px;
  }

  .hero-desc {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  
  .gender-switch {
    margin-bottom: 2rem;
  }

  .gender-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }

  .search-container {
    margin-bottom: 2.5rem;
  }
  
  .category-card {
    padding: 1.25rem;
  }

  .category-title {
    font-size: 1.35rem;
  }

  .service-name {
    font-size: 0.95rem;
  }

  .service-price {
    font-size: 1rem;
  }

  .contact-section {
    padding-top: 3rem;
    padding-bottom: 6rem; /* extra spacing for sticky bar */
  }

  .contact-title {
    font-size: 2rem;
  }

  .map-container {
    height: 300px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    font-size: 0.8rem;
  }
}
