/* ================================
   Elegant Salon & Spa - Main Styles
   Color Scheme: Rose Gold, Cream, White, Gold
   ================================ */

/* ================================
   RESET & VARIABLES
   ================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Color Palette */
  --primary-color: #b8956a; /* Gold */
  --secondary-color: #e8c4b8; /* Rose Gold */
  --accent-color: #d4af7a; /* Light Gold */
  --cream: #faf7f5;
  --white: #ffffff;
  --dark: #2c2c2c;
  --gray: #6b6b6b;
  --light-gray: #f5f5f5;

  /* Typography */
  --font-heading: "Playfair Display", serif;
  --font-body: "Poppins", sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);

  /* Transitions */
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ================================
   LOADING ANIMATION
   ================================ */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  transition:
    opacity 0.5s,
    visibility 0.5s;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 4px solid var(--secondary-color);
  border-top: 4px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loader-content p {
  font-family: var(--font-heading);
  color: var(--primary-color);
  font-size: 1.2rem;
}

/* ================================
   PROMO MODAL
   ================================ */
.promo-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
}

.promo-modal.active {
  display: flex;
}

.promo-modal-content {
  background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
  padding: 50px 40px;
  border-radius: 20px;
  text-align: center;
  max-width: 500px;
  position: relative;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--primary-color);
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  background: none;
  border: none;
  color: var(--gray);
  cursor: pointer;
  transition: var(--transition);
}

.close-modal:hover {
  color: var(--primary-color);
  transform: rotate(90deg);
}

.promo-icon {
  font-size: 60px;
  color: var(--primary-color);
  margin-bottom: 20px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.promo-modal-content h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 15px;
}

.promo-text {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.promo-text .highlight {
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: 700;
}

.promo-subtext {
  color: var(--gray);
  margin-bottom: 30px;
}

/* ================================
   NAVIGATION
   ================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.logo i {
  font-size: 2rem;
  color: var(--secondary-color);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

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

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

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

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

.btn-book {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  color: var(--white);
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.btn-book:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

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

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ================================
   HERO SECTION
   ================================ */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(184, 149, 106, 0.7),
    rgba(232, 196, 184, 0.6)
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--white);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.hero-hours {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.95);
  padding: 15px 30px;
  border-radius: 50px;
  margin: 30px auto;
  max-width: fit-content;
  color: var(--dark);
  box-shadow: var(--shadow-md);
}

.hero-hours i {
  color: var(--primary-color);
  font-size: 1.5rem;
}

.status-open {
  background: #4caf50;
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

.status-closed {
  background: #f44336;
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

.hours-text {
  font-size: 0.95rem;
}

.btn-hero {
  display: inline-block;
  background: var(--white);
  color: var(--primary-color);
  padding: 18px 45px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  margin-top: 20px;
}

.btn-hero:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-indicator a {
  text-decoration: none;
  color: var(--white);
  text-align: center;
  display: block;
}

.mouse {
  width: 30px;
  height: 50px;
  border: 3px solid var(--white);
  border-radius: 20px;
  display: block;
  margin: 0 auto 10px;
  position: relative;
}

.wheel {
  width: 6px;
  height: 10px;
  background: var(--white);
  border-radius: 3px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
    top: 8px;
    opacity: 1;
  }
  100% {
    top: 28px;
    opacity: 0;
  }
}

/* ================================
   SECTION COMMON STYLES
   ================================ */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--dark);
  margin-bottom: 15px;
}

.title-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--secondary-color),
    var(--primary-color),
    var(--accent-color)
  );
  margin: 0 auto 20px;
  border-radius: 3px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

/* ================================
   ABOUT SECTION
   ================================ */
.about-section {
  background: var(--cream);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.about-text h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 20px;
}

.about-text p {
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--primary-color);
  font-weight: 700;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray);
  margin-top: 5px;
}

.about-images {
  position: relative;
  height: 500px;
}

.about-image-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 80%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-small {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 50%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--white);
}

.about-image-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Team Section */
.team-section {
  margin-top: 80px;
}

.team-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  text-align: center;
  color: var(--dark);
  margin-bottom: 10px;
}

.team-subtitle {
  text-align: center;
  color: var(--gray);
  margin-bottom: 50px;
}

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

.team-member {
  text-align: center;
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-10px);
}

.team-image {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: var(--shadow-md);
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(184, 149, 106, 0.9),
    rgba(232, 196, 184, 0.9)
  );
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
}

.team-member:hover .team-overlay {
  opacity: 1;
}

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

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

.social-links a {
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.social-links a:hover {
  transform: scale(1.2) rotate(360deg);
}

.team-member h4 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 5px;
}

.team-role {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 5px;
}

.team-specialty {
  color: var(--gray);
  font-size: 0.9rem;
}

/* ================================
   SERVICES SECTION
   ================================ */
.services-section {
  background: var(--white);
}

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

.service-card {
  background: var(--cream);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover::before {
  transform: scaleX(1);
}

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

.service-card.featured {
  background: linear-gradient(135deg, var(--white), var(--cream));
  border: 2px solid var(--primary-color);
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary-color);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

.service-icon {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 15px;
}

.service-description {
  color: var(--gray);
  margin-bottom: 25px;
}

.service-list {
  list-style: none;
  text-align: left;
  margin-bottom: 30px;
}

.service-list li {
  padding: 10px 0;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-list i {
  color: var(--primary-color);
}

.btn-service {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.btn-service:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-featured {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
}

/* ================================
   GALLERY SECTION
   ================================ */
.gallery-section {
  background: var(--light-gray);
}

.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--white);
  color: var(--dark);
  border: 2px solid var(--cream);
  padding: 10px 30px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 350px;
  cursor: pointer;
}

.gallery-item.hide {
  display: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(184, 149, 106, 0.95),
    rgba(232, 196, 184, 0.95)
  );
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
}

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

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

.gallery-info {
  text-align: center;
  color: var(--white);
}

.gallery-info h4 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.gallery-info p {
  margin-bottom: 20px;
}

.btn-view {
  background: var(--white);
  color: var(--primary-color);
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-view:hover {
  transform: scale(1.1);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: var(--white);
  color: var(--dark);
  border: none;
  font-size: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox-close {
  top: 20px;
  right: 20px;
}

.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--primary-color);
  color: var(--white);
}

/* ================================
   PRICING SECTION
   ================================ */
.pricing-section {
  background: var(--cream);
}

.promo-banner {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  color: var(--white);
  padding: 20px;
  border-radius: 50px;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  animation: pulse 2s infinite;
}

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

.promo-banner i {
  color: #ffd700;
}

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

.pricing-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.featured-pricing {
  border: 3px solid var(--primary-color);
  position: relative;
}

.pricing-header {
  text-align: center;
  margin-bottom: 30px;
}

.pricing-header i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.pricing-header h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--dark);
}

.pricing-list {
  list-style: none;
}

.pricing-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--light-gray);
}

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

.price {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.1rem;
}

.package-highlight {
  background: var(--cream);
  padding: 20px !important;
  border-radius: 10px;
  margin-top: 10px;
}

.package-note {
  border-bottom: none !important;
  padding-top: 5px !important;
}

.package-note small {
  color: var(--gray);
  font-size: 0.85rem;
}

.btn-pricing {
  display: block;
  text-align: center;
  background: var(--primary-color);
  color: var(--white);
  padding: 15px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  margin-top: 30px;
  transition: var(--transition);
}

.btn-pricing:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
}

/* ================================
   BOOKING SECTION
   ================================ */
.booking-section {
  background: var(--white);
}

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

.booking-info h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 30px;
}

.booking-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.booking-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.booking-feature i {
  font-size: 2rem;
  color: var(--primary-color);
  flex-shrink: 0;
}

.booking-feature h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 5px;
}

.booking-feature p {
  color: var(--gray);
  font-size: 0.95rem;
}

.booking-contact {
  background: var(--cream);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
}

.booking-contact h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.booking-phone,
.booking-whatsapp {
  display: block;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 15px;
  transition: var(--transition);
}

.booking-phone {
  background: var(--primary-color);
  color: var(--white);
}

.booking-whatsapp {
  background: #25d366;
  color: var(--white);
}

.booking-phone:hover,
.booking-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.booking-form-container {
  background: var(--cream);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.booking-form .form-group {
  margin-bottom: 25px;
}

.booking-form label {
  display: block;
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 8px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--light-gray);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.error-message {
  color: #f44336;
  font-size: 0.85rem;
  margin-top: 5px;
  display: block;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  color: var(--white);
  border: none;
  padding: 18px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.booking-success {
  text-align: center;
  padding: 40px;
}

.booking-success i {
  font-size: 5rem;
  color: #4caf50;
  margin-bottom: 20px;
}

.booking-success h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 15px;
}

.booking-success p {
  color: var(--gray);
  margin-bottom: 30px;
}

.btn-reset {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 15px 40px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-reset:hover {
  background: var(--accent-color);
}

/* ================================
   TESTIMONIALS SECTION
   ================================ */
.testimonials-section {
  background: var(--light-gray);
}

.reviews-badge {
  text-align: center;
  margin-bottom: 50px;
}

.reviews-rating {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: var(--white);
  padding: 20px 40px;
  border-radius: 50px;
  box-shadow: var(--shadow-md);
}

.reviews-rating i.fab {
  font-size: 2.5rem;
  color: #4285f4;
}

.rating-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
}

.stars {
  color: #ffa000;
  font-size: 1.2rem;
}

.reviews-rating p {
  color: var(--gray);
  margin: 0;
  font-size: 0.9rem;
}

.testimonials-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 60px;
}

.testimonials-container {
  position: relative;
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  animation: fadeIn 0.5s;
}

.testimonial-slide.active {
  display: block;
}

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

.testimonial-content {
  background: var(--white);
  padding: 50px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.quote-icon {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 1.2rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 30px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.testimonial-author img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid var(--primary-color);
}

.author-info h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 5px;
}

.author-info p {
  color: var(--gray);
  font-size: 0.9rem;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.slider-prev {
  left: 0;
}

.slider-next {
  right: 0;
}

.slider-btn:hover {
  background: var(--primary-color);
  color: var(--white);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--light-gray);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active,
.dot:hover {
  background: var(--primary-color);
  transform: scale(1.3);
}

/* ================================
   CONTACT SECTION
   ================================ */
.contact-section {
  background: var(--white);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

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

.contact-info-card {
  background: var(--cream);
  padding: 30px;
  border-radius: 15px;
  transition: var(--transition);
}

.contact-info-card:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.contact-info-card h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.contact-info-card p {
  color: var(--gray);
  line-height: 1.8;
}

.contact-info-card a {
  color: var(--gray);
  text-decoration: none;
  transition: var(--transition);
}

.contact-info-card a:hover {
  color: var(--primary-color);
}

.social-media h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 20px;
}

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

.social-links-contact a {
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-color);
  font-size: 1.3rem;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.social-links-contact a:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-5px);
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 30px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-form {
  background: var(--cream);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 30px;
}

.contact-success {
  text-align: center;
  padding: 40px;
  background: var(--cream);
  border-radius: 20px;
}

.contact-success i {
  font-size: 4rem;
  color: #4caf50;
  margin-bottom: 20px;
}

.contact-success h4 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 10px;
}

/* ================================
   FOOTER
   ================================ */
.footer {
  background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 100%);
  color: var(--white);
  padding: 60px 0 20px;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.footer-logo i {
  font-size: 2rem;
  color: var(--primary-color);
}

.footer-col p {
  color: #b0b0b0;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary-color);
  transform: translateY(-5px);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.footer-col ul {
  list-style: none;
}

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

.footer-col ul li a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--primary-color);
  padding-left: 10px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 30px;
  font-family: var(--font-body);
}

.newsletter-form button {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background: var(--accent-color);
  transform: scale(1.1);
}

.newsletter-success {
  color: #4caf50;
  font-weight: 600;
}

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

.footer-bottom a {
  color: var(--primary-color);
  text-decoration: none;
}

/* ================================
   BACK TO TOP BUTTON
   ================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
}

/* ================================
   CALL BUTTON (Mobile Only)
   ================================ */
.call-button {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #4caf50;
  color: var(--white);
  border-radius: 50%;
  display: none;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 1.8rem;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  animation: pulse-call 2s infinite;
}

@keyframes pulse-call {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(76, 175, 80, 0);
  }
}

/* ================================
   BUTTONS COMMON STYLES
   ================================ */
.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  color: var(--white);
  border: none;
  padding: 15px 40px;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

/* Tablets */
@media (max-width: 992px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 0;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-tagline {
    font-size: 1.3rem;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-content,
  .contact-content {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-tagline {
    font-size: 1.1rem;
  }

  .hero-hours {
    flex-direction: column;
    padding: 20px;
  }

  .services-grid,
  .pricing-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-slider {
    padding: 0 50px;
  }

  .testimonial-content {
    padding: 30px 20px;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  .call-button {
    display: flex;
  }

  .booking-form-container,
  .contact-form {
    padding: 25px;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .logo-text {
    font-size: 1.2rem;
  }

  .promo-modal-content {
    margin: 20px;
    padding: 30px 20px;
  }
}

/* ================================
   UTILITY CLASSES
   ================================ */
.text-center {
  text-align: center;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-20 {
  margin-top: 20px;
}

/* ================================
   PRINT STYLES
   ================================ */
@media print {
  .navbar,
  .hamburger,
  .back-to-top,
  .call-button,
  .promo-modal {
    display: none !important;
  }
}

/* ================================
   FAQ SECTION
   ================================ */
.faq-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #fffaf8 0%, #ffffff 100%);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(212, 171, 143, 0.22);
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 24px 62px 24px 26px;
  font-weight: 600;
  color: var(--secondary-color);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(212, 171, 143, 0.14);
  color: var(--primary-color);
  font-size: 1.1rem;
}

.faq-item[open] summary::after {
  content: '-';
}

.faq-item p {
  margin: 0;
  padding: 0 26px 24px;
  color: var(--text-color);
  line-height: 1.8;
}
