/* Base styles */
:root {
  --bg: #0b0b0b;
  --text: #ffffff;
  --muted: #e6e6e6cc;
  --brand: #ff69b4; /* hot pink */
  --brand-dark: #ff1493;
  --brand-secondary: #32cd32; /* lime green */
  --brand-secondary-dark: #228b22;
  --outline: #ffffff99;
  --container: 1200px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
  color: var(--text);
  background: #0f0f10;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: saturate(140%) blur(6px);
  background: rgba(16, 16, 18, 0.6);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  text-decoration: none;
}
.brand-logo { 
  height: 50px; 
  width: auto; 
  max-width: 200px;
}

.primary-nav { display: none; gap: 28px; align-items: center; }
.primary-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.primary-nav a:hover { color: #fff; }

/* Dropdown Navigation */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-toggle::after {
  content: '▼';
  font-size: 10px;
  transition: transform 0.2s ease;
}

.dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(16, 16, 18, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 8px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  border-radius: 0;
}

.dropdown-menu a:hover {
  color: #fff;
  background: rgba(255, 105, 180, 0.1);
}

.dropdown-menu a.active {
  color: var(--brand);
  background: rgba(255, 105, 180, 0.15);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(16, 16, 18, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav-content {
  padding: 100px 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-link {
  display: block;
  padding: 16px 20px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.mobile-nav-link:hover {
  background: rgba(255, 105, 180, 0.1);
  border-color: rgba(255, 105, 180, 0.3);
  color: var(--brand);
}

.mobile-nav-main {
  font-weight: 600;
  color: var(--brand);
}

.mobile-nav-submenu {
  margin-left: 20px;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-sublink {
  padding: 12px 20px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-nav-sublink:hover {
  background: rgba(255, 105, 180, 0.1);
  color: var(--brand);
}

.mobile-nav-btn {
  display: block;
  margin-top: 20px;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--brand), var(--brand-secondary));
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(255, 105, 180, 0.3);
}

.mobile-nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 105, 180, 0.4);
}

@media (max-width: 899px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .primary-nav {
    display: none;
  }
  
  .btn.btn-primary {
    display: none;
  }
}

@media (min-width: 900px) {
  .primary-nav { display: inline-flex; }
  .mobile-nav { display: none; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 14px 20px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .08s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--brand); color: white; box-shadow: 0 8px 24px rgba(255,105,180,.35); }
.btn-primary:hover { background: var(--brand-dark); }
.btn-outline { border: 2px solid var(--outline); color: #fff; background: transparent; }
.btn-outline:hover { border-color: #fff; }

/* Hero */
.hero { position: relative; min-height: 88vh; display: grid; }
.hero-media {
  position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat;
  background-image: url('../assets/hero.jpg');
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.55)); z-index: 1; }
.hero-content {
  position: relative; z-index: 2; display: flex; flex-direction: column; gap: 22px; align-self: center;
}
.hero-title { font-size: clamp(36px, 6vw, 68px); letter-spacing: 1px; margin: 0; font-weight: 700; }
.hero-title span { display: block; color: var(--brand); font-weight: 800; }
.hero-subtitle { max-width: 900px; color: var(--muted); font-size: clamp(16px, 1.6vw, 20px); margin: 0; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero Video */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  max-width: 100%;
}

.hero-video video {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  /* iOS specific fixes */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Mobile video improvements */
@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
    min-height: 100dvh; /* Use dynamic viewport height for mobile */
    position: relative;
    overflow: hidden;
  }
  
  .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    z-index: 0;
    overflow: hidden;
  }
  
  .hero-video video {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    object-fit: cover;
    object-position: center center;
    /* Ensure video fits within screen width */
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    max-height: 100%;
    /* Prevent horizontal overflow */
    min-width: 0;
    min-height: 0;
  }
  
  /* Adjust hero content positioning on mobile */
  .hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 0 80px;
    gap: 20px;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  .hero-title {
    font-size: clamp(28px, 8vw, 48px);
    line-height: 1.2;
    text-align: center;
  }
  
  .hero-subtitle {
    font-size: clamp(14px, 3vw, 18px);
    line-height: 1.5;
    text-align: center;
    max-width: 90%;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 320px;
  }
  
  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
    padding: 16px 24px;
    font-size: 16px;
  }
  
  /* Ensure overlay is visible on mobile */
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0,0,0,.5), rgba(0,0,0,.65));
  }
}

@media (max-width: 480px) {
  .hero-video video {
    /* Extra small screens - ensure video fits properly */
    object-position: center center;
    /* Better scaling for portrait videos */
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    /* Prevent overflow */
    min-width: 0;
    min-height: 0;
  }
  
  .hero-content {
    padding: 50px 0 70px;
    text-align: center;
  }
  
  .hero-title {
    font-size: clamp(24px, 10vw, 36px);
    line-height: 1.1;
  }
  
  .hero-subtitle {
    font-size: clamp(13px, 4vw, 16px);
    margin-bottom: 8px;
    line-height: 1.5;
    max-width: 95%;
  }
  
  .hero-actions {
    max-width: 100%;
  }
  
  .hero-actions .btn {
    max-width: 100%;
    padding: 14px 20px;
  }
}

/* Mobile video framing tweak (keep video, reduce letterboxing) */
@media (max-width: 640px) {
  .hero-video {
    overflow: hidden;
  }
  
  .hero-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: brightness(0.9) contrast(1.04);
    /* Prevent horizontal overflow */
    min-width: 0;
    min-height: 0;
  }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.78));
  }
}

/* iOS-specific styles */
@supports (-webkit-touch-callout: none) {
  .hero-video {
    /* iOS Safari specific fixes */
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  
  .hero-video video {
    /* Force hardware acceleration on iOS */
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    /* Prevent iOS from showing video controls */
    pointer-events: none;
  }
  
  @media (max-width: 768px) {
    .hero-video {
      overflow: hidden;
    }
    
    .hero-video video {
      /* iOS mobile: ensure full coverage without overflow */
      position: absolute;
      top: 0;
      left: 0;
      width: 100% !important;
      height: 100% !important;
      max-width: 100% !important;
      max-height: 100% !important;
      min-width: 0;
      min-height: 0;
      object-fit: cover;
    }
  }
}

/* Specialty Services Section */
.specialty-services {
  background: linear-gradient(180deg, #ffb6c1 0%, #ff69b4 100%);
  padding: 80px 0;
  color: #2c2c2c;
}

.services-title {
  text-align: center;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin: 0 0 16px 0;
  color: #1a1a1a;
  letter-spacing: 1px;
}

.services-description {
  text-align: center;
  font-size: clamp(16px, 2vw, 20px);
  color: #4a4a4a;
  margin: 0 0 60px 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

@media (min-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--brand), var(--brand-secondary)) !important;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: #1a1a1a;
  letter-spacing: 0.5px;
}

.service-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

.services-cta {
  text-align: center;
}

/* Salon Showcase Section */
.salon-showcase {
  background: #faf9f7;
  background-image: 
    linear-gradient(45deg, rgba(0,0,0,0.02) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(0,0,0,0.02) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(0,0,0,0.02) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(0,0,0,0.02) 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
  position: relative;
  padding: 80px 0;
  color: #2c2c2c;
}

.salon-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 105, 180, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

.salon-showcase .container {
  position: relative;
  z-index: 2;
}

.salon-title {
  text-align: center;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin: 0 0 20px 0;
  color: #1a1a1a;
  letter-spacing: 1px;
}

.salon-description {
  text-align: center;
  font-size: clamp(16px, 2vw, 20px);
  color: #4a4a4a;
  margin: 0 0 60px 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.salon-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

@media (min-width: 900px) {
  .salon-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.salon-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.salon-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.salon-card-image {
  height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.salon-card-overlay {
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 24px;
  width: 100%;
  color: white;
}

.salon-card-overlay h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: white;
}

.salon-card-overlay p {
  font-size: 14px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

/* Salon "stylist in action" vertical video */
.salon-video-block {
  text-align: center;
  margin-bottom: 48px;
}

.salon-video-heading {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 24px 0;
  letter-spacing: 0.5px;
}

.salon-video-wrap {
  display: inline-block;
  max-width: 320px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
  border: 4px solid rgba(255, 105, 180, 0.2);
  background: #1a1a1a;
}

.salon-video {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
  object-fit: cover;
  aspect-ratio: 9 / 16;
}

.salon-video-caption {
  font-size: 15px;
  font-weight: 600;
  color: #666;
  margin: 16px 0 0 0;
  letter-spacing: 0.3px;
}

.salon-stats {
  background: white;
  border-radius: 20px;
  padding: 48px 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.stat-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--brand), var(--brand-secondary)) !important;
}

.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
}

.stat-label {
  font-size: 16px;
  font-weight: 500;
  color: #666;
  margin: 0;
}

.salon-cta {
  text-align: center;
}

.salon-cta h3 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  letter-spacing: 0.5px;
}

/* Testimonials Section */
.testimonials {
  background: linear-gradient(180deg, #ffb6c1 0%, #ff69b4 100%);
  padding: 80px 0;
  color: #2c2c2c;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 20px;
}

.testimonials-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin: 0 0 16px 0;
  color: #1a1a1a;
  letter-spacing: 1px;
}

.google-logo-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 8px;
  background: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.google-g {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  flex-shrink: 0;
}

.google-text {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background: #4285F4;
  padding: 4px 8px;
  border-radius: 2px;
  margin-right: 0;
  line-height: 1;
  font-family: 'Roboto', 'Arial', sans-serif;
}

.google-reviews-label {
  font-size: 16px;
  font-weight: 400;
  color: #5F6368;
  margin-left: 8px;
  line-height: 1;
  font-family: 'Roboto', 'Arial', sans-serif;
}

.testimonials-description {
  text-align: center;
  font-size: clamp(16px, 2vw, 20px);
  color: #4a4a4a;
  margin: 0 0 60px 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 40px;
}

@media (min-width: 900px) {
  .testimonial-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-photo {
  margin-bottom: 20px;
}

.testimonial-photo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto;
}

.testimonial-quote {
  font-size: 16px;
  font-style: italic;
  color: #4a4a4a;
  margin: 0 0 20px 0;
  line-height: 1.6;
}

.testimonial-rating {
  margin-bottom: 16px;
}

.star {
  color: #ffd700;
  font-size: 18px;
  margin: 0 2px;
}

.testimonial-author strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.testimonial-author span {
  font-size: 14px;
  color: #666;
}

.testimonials-footer {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

.btn-view-reviews {
  background: white;
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
  font-weight: 700;
  padding: 14px 32px;
  font-size: 16px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.btn-view-reviews:hover {
  background: #1a1a1a;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #ccc;
  cursor: pointer;
  transition: all 0.2s ease;
}

.dot.active {
  background: linear-gradient(135deg, var(--brand), var(--brand-secondary));
  border-color: var(--brand);
}

/* Booking CTA Section */
.booking-cta {
  background: #1a1a1a;
  padding: 80px 0;
  color: white;
}

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

@media (max-width: 768px) {
  .booking-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.booking-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  margin: 0 0 20px 0;
  color: white;
  letter-spacing: 1px;
}

.booking-description {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 32px 0;
  line-height: 1.6;
}

.booking-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-white {
  background: white;
  color: var(--brand);
  border: none;
}

.btn-white:hover {
  background: var(--brand-secondary);
  color: white;
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline-white:hover {
  background: var(--brand);
  color: white;
  border-color: var(--brand);
}

.booking-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.booking-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Footer */
.site-footer {
  background: #0f0f10;
  color: var(--muted);
  padding: 60px 0 24px 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.footer-logo {
  height: 60px;
  width: auto;
  max-width: 250px;
}

.footer-description {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 24px 0;
}

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

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-link:hover {
  background: var(--brand);
  color: white;
  transform: translateY(-2px);
}

.footer-heading {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin: 0 0 20px 0;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: white;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}

.contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

/* Service Tabs */
.service-tabs {
  margin-top: 40px;
}

.tab-buttons {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  border-bottom: 2px solid #f0f0f0;
}

.tab-btn {
  background: none;
  border: none;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 700;
  color: #666;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tab-btn:hover {
  color: var(--brand);
  background: rgba(255, 105, 180, 0.05);
}

.tab-btn.active {
  color: var(--brand);
  border-bottom-color: var(--brand);
  background: rgba(255, 105, 180, 0.1);
}

.tab-content {
  position: relative;
}

.tab-panel {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.tab-panel.active {
  display: block;
}

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

.tab-panel h2 {
  font-size: 28px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 16px 0;
}

.tab-panel > p {
  font-size: 18px;
  color: #666;
  margin: 0 0 32px 0;
  line-height: 1.6;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.service-item {
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.service-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px 0;
}

.service-item p {
  font-size: 14px;
  color: #666;
  margin: 0 0 16px 0;
  line-height: 1.5;
}

.service-item ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.service-item li {
  font-size: 13px;
  color: #666;
  margin-bottom: 6px;
  padding-left: 16px;
  position: relative;
}

.service-item li::before {
  content: "•";
  color: var(--brand);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.service-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--brand);
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}

.service-cta {
  text-align: center;
  margin-top: 40px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .tab-buttons {
    flex-wrap: wrap;
  }
  
  .tab-btn {
    flex: 1;
    min-width: 120px;
    font-size: 14px;
    padding: 12px 16px;
  }
  
  .service-grid {
    grid-template-columns: 1fr;
  }
}

/* Utilities */
img { max-width: 100%; height: auto; display: block; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
  }
}

@media (min-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 1;
  background: #1a1a1a;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(255, 105, 180, 0.4);
}

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

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

.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

@media (max-width: 767px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .gallery-item {
    border-radius: 12px;
  }
}

/* About Page Styles */
.about-intro {
  background: linear-gradient(180deg, #1a1a1a 0%, #0f0f10 100%);
  color: white;
}

.about-team-pic {
  text-align: center;
  margin-top: 0;
  margin-bottom: 40px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.about-team-pic img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

.meet-team {
  background: #0f0f10;
  color: white;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

@media (min-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.team-member {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(255, 105, 180, 0.2);
  border-color: rgba(255, 105, 180, 0.3);
}

.team-photo {
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: #1a1a1a;
}

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

.team-member:hover .team-photo img {
  transform: scale(1.1);
}

.team-info {
  padding: 32px 24px;
  text-align: center;
}

.team-name {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: white;
  letter-spacing: 0.5px;
}

.team-role {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 16px 0;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-bio {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .team-photo {
    height: 280px;
  }
  
  .team-info {
    padding: 24px 20px;
  }
  
  .team-name {
    font-size: 22px;
  }
  
  .team-role {
    font-size: 14px;
  }
  
  .team-bio {
    font-size: 14px;
  }
}


