/* CSS Variables for Easy Theme Management */
:root {
  --primary-gold: #D4AF37;
  --secondary-gold: #B8860B;
  --accent-gold: #FFD700;
  --dark-gold: #8B7355;
  --deep-black: #000000;
  --light-black: #111111;
  --white: #ffffff;
  --light-gray: #1a1a1a;
  --medium-gray: #333333;
  --dark-gray: #222222;
  --text-primary: #ffffff;
  --text-secondary: #e0e0e0;
  --text-accent: #D4AF37;
  --text-light: #b0b0b0;
  
  --serif-font: 'Playfair Display', serif;
  --sans-font: 'Inter', sans-serif;
  
  --shadow-light: 0 2px 10px rgba(0,0,0,0.3);
  --shadow-medium: 0 4px 20px rgba(0,0,0,0.4);
  --shadow-heavy: 0 8px 30px rgba(0,0,0,0.5);
  
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
  --transition-slow: 0.8s ease;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--sans-font);
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--deep-black);
  overflow-x: hidden;
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--deep-black) 0%, var(--light-black) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease-out, visibility 0.6s ease-out, transform 0.6s ease-out;
}

.loading-screen.fade-out {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.95);
}

.logo-container {
  text-align: center;
  animation: pulse 2s ease-in-out infinite;
}

.loading-logo {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: none;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
  animation: logoZoom 1.5s ease-out forwards;
}

@keyframes logoZoom {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all var(--transition-fast);
  opacity: 0;
  visibility: hidden;
}

.header.show {
  opacity: 1;
  visibility: visible;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-gold);
}

.logo-text {
  font-family: var(--serif-font);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-gold);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--primary-gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: var(--primary-gold);
  transition: width var(--transition-fast);
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary-gold);
  transition: all var(--transition-fast);
}

/* Main Content */
.main-content {
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

.main-content.show {
  opacity: 1;
  visibility: visible;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(rgba(26, 26, 26, 0.4), rgba(26, 26, 26, 0.6)),
              url('./images/fheropageimage-parlour website.jpg') center/cover;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent-gold);
  border-radius: 50%;
  opacity: 0.7;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.7; }
  50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  animation: slideInUp 1s ease-out;
}

.hero-text {
  color: var(--white);
}

.hero-title {
  font-family: var(--serif-font);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--primary-gold), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary, .btn-outline {
  padding: 14px 28px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  display: inline-block;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
  color: var(--white);
  box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background: var(--deep-black);
  color: var(--primary-gold);
  border: 2px solid var(--primary-gold);
}

.btn-secondary:hover {
  background: var(--primary-gold);
  color: var(--deep-black);
}

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

.btn-outline:hover {
  background: var(--white);
  color: var(--deep-black);
}

.hero-image {
  position: relative;
  animation: slideInRight 1s ease-out 0.3s both;
}

.image-frame {
  position: relative;
  display: inline-block;
}

.image-frame::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(135deg, var(--primary-gold), var(--accent-gold));
  border-radius: 20px;
  z-index: -1;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

.owner-photo {
  width: 100%;
  max-width: 400px;
  height: 500px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: var(--shadow-heavy);
}

/* Section Styles */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: var(--serif-font);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
}

.title-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
  margin: 0 auto;
  border-radius: 2px;
}

/* About Section */
.about {
  padding: 6rem 0;
  background: var(--light-black);
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-subtitle {
  font-family: var(--serif-font);
  font-size: 1.75rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-description {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.specializations {
  margin: 2.5rem 0;
  text-align: left;
}

.specializations-title {
  font-family: var(--serif-font);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-align: center;
}

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

.specializations-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.specializations-list li:last-child {
  border-bottom: none;
}

.specialization-icon {
  font-size: 1.25rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.pride-points {
  margin: 2.5rem 0;
  text-align: left;
}

.pride-title {
  font-family: var(--serif-font);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-align: center;
}

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

.pride-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  position: relative;
  padding-left: 1.5rem;
}

.pride-list li:last-child {
  border-bottom: none;
}

.pride-list li::before {
  content: '•';
  color: var(--primary-gold);
  font-weight: bold;
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: 0.5rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
  color: var(--white);
  box-shadow: var(--shadow-medium);
}

.stat-number {
  font-family: var(--serif-font);
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  font-weight: 500;
}

/* Services Section */
.services {
  padding: 6rem 0;
  background: var(--deep-black);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--light-black);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: all var(--transition-fast);
  border: 1px solid var(--medium-gray);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-heavy);
}

.service-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform var(--transition-fast);
}

.service-card:hover .service-image {
  transform: scale(1.05);
}

.service-content {
  padding: 2rem;
}

.service-title {
  font-family: var(--serif-font);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.service-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Masterpiece Section */
.masterpiece {
  padding: 6rem 0;
  background: var(--light-black);
}

.masterpiece-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.masterpiece-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--shadow-light);
  transition: transform var(--transition-fast);
}

.masterpiece-item:hover {
  transform: scale(1.02);
}

.masterpiece-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: center top;
  transition: transform var(--transition-fast);
}

.masterpiece-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.8), rgba(184, 134, 11, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.masterpiece-item:hover .masterpiece-overlay {
  opacity: 1;
}

.masterpiece-title {
  color: var(--white);
  font-family: var(--serif-font);
  font-size: 1.25rem;
  font-weight: 600;
}

.masterpiece-actions {
  text-align: center;
}

.hidden-masterpiece {
  display: none;
}

/* Gallery Modal */
.gallery-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: none;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.gallery-modal.show {
  display: flex;
  opacity: 1;
}

.modal-content {
  width: 90%;
  max-width: 1200px;
  max-height: 90%;
  margin: auto;
  background: var(--light-black);
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--medium-gray);
}

.modal-header {
  padding: 2rem;
  background: var(--deep-black);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  font-family: var(--serif-font);
  font-size: 2rem;
  color: var(--primary-gold);
}

.modal-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.modal-close:hover {
  color: var(--primary-gold);
}

.modal-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
  padding: 2rem;
  max-height: 500px;
  overflow-y: auto;
}

.modal-gallery-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform var(--transition-fast);
  cursor: pointer;
}

.modal-gallery-image:hover {
  transform: scale(1.05);
}

/* Testimonials Section */
.testimonials {
  padding: 6rem 0;
  background: var(--deep-black);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--light-black);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: var(--shadow-light);
  position: relative;
  transition: transform var(--transition-fast);
  border: 1px solid var(--medium-gray);
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-gold);
  font-family: var(--serif-font);
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-gold);
}

.author-name {
  font-family: var(--serif-font);
  color: var(--white);
  margin-bottom: 0.25rem;
}

.author-title {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Contact Section */
.contact {
  padding: 6rem 0;
  background: var(--light-black);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  padding: 1.5rem;
  border-radius: 10px;
  background: var(--deep-black);
  border: 1px solid var(--medium-gray);
}

.contact-title {
  font-family: var(--serif-font);
  color: var(--white);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.contact-text {
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-form {
  background: var(--light-gray);
  padding: 2.5rem;
  border-radius: 15px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color var(--transition-fast);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--deep-black) 0%, var(--light-black) 100%);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.footer-logo-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-gold);
}

.footer-logo-text {
  font-family: var(--serif-font);
  font-size: 1.5rem;
  color: var(--primary-gold);
  font-weight: 600;
}

.footer-description {
  color: #adb5bd;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-title {
  font-family: var(--serif-font);
  color: var(--primary-gold);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #adb5bd;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary-gold);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.social-link {
  padding: 8px 16px;
  background: var(--primary-gold);
  color: var(--deep-black);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--accent-gold);
  transform: translateY(-2px);
}

.contact-quick p {
  color: #adb5bd;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid #495057;
  padding-top: 2rem;
  text-align: center;
  color: #adb5bd;
}

/* Animations */
@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    flex-direction: column;
    background: var(--deep-black);
    width: 100%;
    padding: 2rem;
    transition: left var(--transition-fast);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .btn-primary, .btn-secondary, .btn-outline {
    width: 100%;
    max-width: 250px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .modal-gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .about-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 1rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .service-card,
  .testimonial-card {
    margin: 0 1rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .modal-content {
    width: 95%;
  }
  
  .modal-header {
    padding: 1rem;
  }
  
  .modal-gallery-grid {
    padding: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

/* Scroll Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.hidden { display: none; }
.visible { display: block; }

/* Slide Button Styles */
.slide-button-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.slide-button {
  width: 300px;
  height: 60px;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border-radius: 30px;
  border: 2px solid var(--primary-gold);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.2);
}

.slide-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.3);
}

.slide-button-track {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-button-thumb {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
  border-radius: 50%;
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--deep-black);
  cursor: grab;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
  z-index: 2;
}

.slide-button-thumb:active {
  cursor: grabbing;
  transform: translateY(-50%) scale(0.95);
}

.slide-button-thumb.sliding {
  transition: none;
}

.slide-button-text {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-align: center;
  transition: all 0.3s ease;
  z-index: 1;
  position: relative;
}

.slide-button.completed .slide-button-text {
  color: var(--primary-gold);
  font-weight: 700;
}

.slide-button.completed .slide-button-thumb {
  left: calc(100% - 55px);
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  box-shadow: 0 4px 16px rgba(76, 175, 80, 0.4);
}

.slide-button.completed {
  border-color: #4CAF50;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.slide-instruction {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 400;
  text-align: center;
  opacity: 0.8;
  margin: 0;
  font-style: italic;
}

/* Success Animation */
.slide-button.completed::before {
  content: "✓";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #4CAF50;
  font-size: 1.5rem;
  font-weight: bold;
  z-index: 3;
  animation: checkmarkAppear 0.5s ease-out;
}

@keyframes checkmarkAppear {
  0% {
    opacity: 0;
    transform: translateY(-50%) scale(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
  }
  100% {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .slide-button {
    width: 280px;
    height: 55px;
  }
  
  .slide-button-thumb {
    width: 45px;
    height: 45px;
  }
  
  .slide-button-text {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .slide-button {
    width: 260px;
    height: 50px;
  }
  
  .slide-button-thumb {
    width: 40px;
    height: 40px;
  }
  
  .slide-button-text {
    font-size: 0.8rem;
  }
}

/* Enhanced Book Appointment Section */
.book-appointment-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  position: relative;
  overflow: hidden;
}

.book-appointment-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.02"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.02"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.appointment-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.appointment-text {
  max-width: 600px;
}

.appointment-title {
  font-family: var(--serif-font);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.appointment-subtitle {
  font-size: 1.1rem;
  color: #adb5bd;
  line-height: 1.6;
  margin: 0;
}

.slide-button-container.enhanced {
  gap: 1.5rem;
}

.slide-button.enhanced {
  width: 350px;
  height: 70px;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border: 2px solid var(--primary-gold);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.2), 0 0 0 1px rgba(212, 175, 55, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-button.enhanced:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(212, 175, 55, 0.3), 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.slide-button-thumb.enhanced {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-button-thumb.enhanced:active {
  transform: translateY(-50%) scale(0.9);
}

.slide-button-text {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.appointment-features {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-gold);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
}

.feature-item svg {
  color: var(--primary-gold);
}

/* Enhanced Success State */
.slide-button.enhanced.completed {
  border-color: #4CAF50;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  box-shadow: 0 8px 32px rgba(76, 175, 80, 0.3);
}

.slide-button-thumb.enhanced.completed {
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.5);
}

/* Responsive Design for Enhanced Section */
@media (max-width: 768px) {
  .book-appointment-section {
    padding: 3rem 0;
  }
  
  .appointment-title {
    font-size: 2rem;
  }
  
  .appointment-subtitle {
    font-size: 1rem;
  }
  
  .slide-button.enhanced {
    width: 320px;
    height: 65px;
  }
  
  .slide-button-thumb.enhanced {
    width: 55px;
    height: 55px;
  }
  
  .appointment-features {
    gap: 1rem;
  }
  
  .feature-item {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}

@media (max-width: 480px) {
  .appointment-title {
    font-size: 1.8rem;
  }
  
  .slide-button.enhanced {
    width: 290px;
    height: 60px;
  }
  
  .slide-button-thumb.enhanced {
    width: 50px;
    height: 50px;
  }
  
  .appointment-features {
    flex-direction: column;
    align-items: center;
  }
}