/* ====== Global Styles ====== */
:root {
  --primary-color: #d4a373;
  --primary-dark: #c08c5e;
  --secondary-color: #f8f9fa;
  --dark-color: #333;
  --light-color: #fff;
  --gray-color: #6c757d;
  --light-gray: #f1f1f1;
  --border-color: #ddd;
  --success-color: #28a745;
  --danger-color: #dc3545;
  --warning-color: #ffc107;
  --heading-font: 'Playfair Display', serif;
  --body-font: 'Poppins', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: var(--dark-color);
  line-height: 1.6;
  overflow-x: hidden;
  font-family: var(--body-font);
}

h1,
h2,
h3,
h4 {
  font-family: var(--heading-font);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-family: var(--heading-font);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background: #c19d2e;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--light-color);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--dark-color);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  width: 50%;
  height: 3px;
  background: var(--primary-color);
  bottom: -10px;
  left: 25%;
}

.section-title p {
  color: var(--gray-color);
  max-width: 700px;
  margin: 0 auto;
}

/* ====== Header Styles ====== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
  background: white;
  /* Add default background */
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 90%;
}
.container-services{
width: 90%;
max-width: 1200px;
margin: 0 auto;
padding: 0 15px;
}
.container-header{
width: 90%;
max-width: 1200px;
margin: 0 auto;
padding: 0 15px;
display: flex;
align-items: center;
justify-content: space-evenly;
}
.container-hero{
width: 90%;
max-width: 1200px;
margin: 0 auto;
/* padding: 0 15px; */
display: flex;
align-items: center;
/* justify-content: space-evenly; */
}
.container-footer{
width: 90%;
max-width: 1200px;
margin: 0 auto;
padding: 0 15px;
}
.container-foot{
width: 90%;
max-width: 1200px;
margin: 0 auto;
padding: 0 15px;
}
.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

.logo span {
  color: grey;
}

.navbar ul {
  display: flex;
  align-items: center;
  list-style: none;
}

.navbar li {
  margin-left: 30px;
}

.navbar a {
  font-weight: 500;
  color: var(--dark-color);
  position: relative;
  text-decoration: none;
}
.navbar a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  bottom: -5px;
  left: 0;
  transition: width 0.3s ease;
}

.navbar a:hover::after,
.navbar li.active a::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark-color);
}

/* Responsive styles */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  .navbar {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 80%;
    height: calc(100vh - 80px);
    background: white;
    transition: 0.3s;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
  }

  .navbar.active {
    left: 0;
  }

  .navbar ul {
    flex-direction: column;
    padding: 20px;
  }

  .navbar li {
    margin: 15px 0;
  }
}

/* ====== Hero Section ====== */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  /* vertical center */
  justify-content: center;
  /* horizontal center */
  text-align: center;
  color: var(--light-color);
  overflow: hidden;
  padding-top: 0;
  /* remove extra gap */
  /* padding-left: 100px; */
}



.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  /* flex enable */
  align-items: center;
  /* vertical center */
  justify-content: center;
  /* horizontal center */
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
  padding-left: 10rem;
  padding-top: 18rem;
}


.slide.active {
  opacity: 1;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  /* dark overlay */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}


.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  padding: 0 20px;
}

.slider-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.4);
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 5;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: white;
  transform: scale(1.2);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-btns {
    flex-direction: column;
  }

  .slider-btn {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
}

/* About Section */
.about-section {
  padding: 80px 0;
  background: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
}

.about-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-direction: row;
  margin-top: 40px;
}

.about-img {
  position: relative;
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
}

.about-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about-img:hover img {
  transform: scale(1.03);
}

.experience-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--primary-color);
  color: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.experience-badge span {
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.about-text {
  flex: 1;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.feature {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .experience-badge {
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    padding: 15px;
  }

  .experience-badge span {
    font-size: 2rem;
  }
}

/* Services Preview */
.services-preview {
  padding: 80px 0;
  background: #f9f9f9;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.service-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-img {
  height: 250px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.1);
}

.service-content {
  padding: 25px;
}

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.price {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.animate__animated {
  animation-fill-mode: both;
}

.animate__fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-img {
    height: 200px;
  }
}

/* Add to your existing styles */
.text-center {
  text-align: center;
  margin-top: 50px;
}

:root {
  --primary-color: #d4af37;
  /* Gold color */
  --secondary-color: #333;
  --light-color: #fff;
  --dark-color: #222;
}

.btn-small {
  padding: 8px 20px;
  font-size: 0.9rem;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-small:hover {
  background: #c19d2e;
  /* Slightly darker gold */
  transform: translateY(-2px);
}

.animate__animated {
  animation-duration: 0.8s;
  /* Increased from default 1s */
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background: #fff;
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 40px auto;
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  padding: 30px;
  text-align: center;
  transition: all 0.5s ease;
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 0.8s ease;
}

.testimonial-content {
  background: #f9f9f9;
  padding: 40px;
  border-radius: 10px;
  position: relative;
}

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 30px;
}

.client-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.client-info img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid var(--primary-color);
}

.client-info h4 {
  margin-bottom: 5px;
}

.client-info span {
  color: #777;
  font-size: 0.9rem;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.testimonial-btn {
  background: var(--primary-color);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.testimonial-btn:hover {
  background: #c19d2e;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .testimonial-slider {
    padding: 0 20px;
  }

  .testimonial-content {
    padding: 30px 20px;
  }

  .testimonial-content p {
    font-size: 1rem;
  }

  .testimonial-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}





/* Gallery Preview */
.gallery-preview {
  padding: 80px 0;
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1/1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 8px 20px;
  transition: all 0.3s ease;
  border-width: 1px;
}

.btn-outline:hover {
  background: white;
  color: var(--primary-color);
}

/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Ensure animations work */
.animate__animated {
  opacity: 0;
  animation-fill-mode: both;
}

/* Call to Action */
.cta {
  padding: 80px 0;
  background: var(--primary-color);
  color: white;
  text-align: center;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 30px;
}

.btn-light {
  background: white;
  color: var(--primary-color);
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .cta {
    padding: 60px 20px;
  }

  .cta h2 {
    font-size: 2rem;
  }

  .cta p {
    font-size: 1rem;
  }
}

.cta {
  background:
    linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
    var(--primary-color) url('images/texture.png');
  background-blend-mode: overlay;
}

.btn-light {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}


/* Footer Styles */
.footer {
  background: #222;
  color: #fff;
  padding: 60px 0 0;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: var(--primary-color);
}

.footer-col p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #bbb;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--primary-color);
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  line-height: 1.5;
}

.contact-info i {
  color: var(--primary-color);
  margin-top: 3px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s ease, transform 0.2s ease;
}

.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: #aaa;
}

.footer-bottom a {
  color: #aaa;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer {
  background: #1a1a1a;
}

.footer-col ul li a {
  color: #ccc;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--primary-color);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
}



/* ====== GLOBAL STYLES ====== */
:root {
  /* Color Palette */
  --primary: #d4af37;       /* Gold */
  --primary-dark: #b8972f;  /* Darker gold */
  --primary-light: #f0e6cc; /* Light gold */
  --secondary: #333;        /* Dark gray */
  --light: #fff;           /* White */
  --dark: #222;            /* Almost black */
  --gray: #777;            /* Medium gray */
  --light-gray: #f9f9f9;   /* Light background */
  
  /* Typography */
  --heading-font: 'Playfair Display', serif;
  --body-font: 'Poppins', sans-serif;
  
  /* Spacing */
  --section-padding: 80px 0;
  --container-width: 1200px;
  
  /* Effects */
  --shadow: 0 5px 15px rgba(0,0,0,0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--body-font);
  color: var(--secondary);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--light);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  font-family: var(--heading-font);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--light);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.btn-light {
  background-color: var(--light);
  color: var(--primary);
}

.btn-light:hover {
  background-color: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.btn-small {
  padding: 8px 20px;
  font-size: 0.9rem;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  width: 50%;
  height: 3px;
  background: var(--primary);
  bottom: -10px;
  left: 25%;
}

.section-header p {
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
}

/* ====== PRELOADER ====== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--light);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loader {
  display: flex;
  gap: 15px;
}

.loader-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--primary);
  animation: bounce 1s infinite alternate;
}

.loader-circle:nth-child(2) { animation-delay: 0.2s; }
.loader-circle:nth-child(3) { animation-delay: 0.4s; }
.loader-circle:nth-child(4) { animation-delay: 0.6s; }

@keyframes bounce {
  to {
    transform: translateY(-20px);
    opacity: 0.5;
  }
}

/* ====== HEADER ====== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  background-color: var(--light);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header.scrolled {
  padding: 15px 0;
  background-color: rgba(255,255,255,0.98);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
}

.logo span {
  color: var(--secondary);
}

.navbar ul {
  display: flex;
  align-items: center;
  list-style: none;
}

.navbar li {
  margin-left: 30px;
}

.navbar a {
  font-weight: 500;
  color: var(--secondary);
  position: relative;
}

.navbar a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--primary);
  bottom: -5px;
  left: 0;
  transition: width 0.3s ease;
}

.navbar a:hover::after,
.navbar a.active::after {
  width: 100%;
}

.btn-book {
  background-color: var(--primary);
  color: var(--light);
  padding: 10px 25px;
  border-radius: 4px;
  transition: var(--transition);
}

.btn-book:hover {
  background-color: var(--primary-dark);
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--secondary);
}

/* ====== PAGE HEADER ====== */
.page-header {
  padding: 120px 0 60px;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
              url('images/services-bg.jpg') center/cover no-repeat;
  color: var(--light);
  text-align: center;
}

.page-header h1 {
  font-family: var(--heading-font);
  font-size: 3rem;
  margin-bottom: 15px;
}

.page-header p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ====== SERVICES SECTION ====== */
.services-section {
  padding: var(--section-padding);
  background-color: var(--light);
}

.services-tabs {
  margin-top: 40px;
}

.tabs-header {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.tab-btn {
  padding: 10px 25px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  font-family: var(--heading-font);
  font-size: 1rem;
  color: var(--gray);
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-img {
  height: 250px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.1);
}

.service-content {
  padding: 25px;
}

.service-content h3 {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--secondary);
}

.service-content p {
  color: var(--gray);
  margin-bottom: 20px;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.price {
  font-weight: 700;
  color: var(--primary);
}

.duration {
  color: var(--gray);
  font-size: 0.9rem;
}

/* ====== PACKAGES SECTION ====== */
.packages-section {
  padding: var(--section-padding);
  background-color: var(--light-gray);
}

.packages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.package-card {
  background-color: var(--light);
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.package-card:hover {
  transform: translateY(-10px);
}

.package-card.featured {
  border: 2px solid var(--primary);
}

.package-header {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--primary-light);
}

.package-header h3 {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  color: var(--secondary);
  margin-bottom: 5px;
}

.package-header .price {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 5px;
}

.package-header p {
  color: var(--gray);
  font-size: 0.9rem;
}

.package-features {
  margin-bottom: 30px;
}

.package-features li {
  padding: 10px 0;
  border-bottom: 1px dashed var(--primary-light);
  color: var(--secondary);
}

.package-features li:last-child {
  border-bottom: none;
}

/* ====== CTA SECTION ====== */
.cta {
  padding: var(--section-padding);
  text-align: center;
}

.cta h2 {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--light);
}

.cta p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 30px;
  color: var(--light);
}

.cta-dark {
  background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), 
              url('images/cta-bg.jpg') center/cover no-repeat;
}

/* ====== FOOTER ====== */
.footer {
  background-color: var(--secondary);
  color: var(--light);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3 {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: var(--primary);
}

.footer-col p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #bbb;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
}

.contact-info i {
  color: var(--primary);
  margin-top: 3px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--light);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: #aaa;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: #aaa;
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: var(--primary);
}

/* ====== BACK TO TOP BUTTON ====== */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
}

/* ====== ANIMATIONS ====== */
.animate__animated {
  opacity: 0;
  animation-fill-mode: both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ====== RESPONSIVE STYLES ====== */
@media (max-width: 992px) {
  :root {
    --section-padding: 60px 0;
  }
  
  .services-grid,
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 80%;
    height: calc(100vh - 80px);
    background: var(--light);
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
    transition: var(--transition);
  }
  
  .navbar.active {
    left: 0;
  }
  
  .navbar ul {
    flex-direction: column;
    padding: 20px;
  }
  
  .navbar li {
    margin: 15px 0;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  :root {
    --section-padding: 50px 0;
  }
  
  .services-grid,
  .packages-grid {
    grid-template-columns: 1fr;
  }
  
  .tabs-header {
    flex-direction: column;
    align-items: center;
  }
  
  .page-header {
    padding: 100px 0 40px;
  }
  
  .page-header h1 {
    font-size: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-col h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .social-links {
    justify-content: center;
  }
}




/* ===============================
   Gallery Filters
================================== */
.gallery-filters {
  padding: 40px 0;
  background-color: #f9f9f9;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.filter-btn {
  background: #f7f7f7;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #555;
}

.filter-btn:hover {
  background: #c59d5f;
  color: #fff;
}

.filter-btn.active {
  background: #c59d5f;
  color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .gallery-filters {
    padding: 30px 0;
  }
  
  .filter-buttons {
    gap: 8px;
  }
  
  .filter-btn {
    padding: 8px 15px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .filter-buttons {
    gap: 6px;
  }
  
  .filter-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}
/* ===============================
   Gallery Section
================================== */
.gallery-section {
  padding: 60px 0;
  background-color: #fff;
}

/* .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
} */

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(197, 157, 95, 0.85);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info {
  text-align: center;
  padding: 20px;
  color: #fff;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-info {
  transform: translateY(0);
}

.gallery-info h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.gallery-info p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.gallery-load-more {
  text-align: center;
  margin-top: 30px;
}

/* Animation for Wow.js */
.animate__animated {
  animation-duration: 0.8s;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
  
  .gallery-item img {
    height: 240px;
  }
}

@media (max-width: 768px) {
  .gallery-section {
    padding: 40px 0;
  }
  
  .gallery-grid {
    gap: 15px;
  }
  
  .gallery-item img {
    height: 220px;
  }
  
  .gallery-info h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-item img {
    height: 260px;
  }
  
  .gallery-info {
    padding: 15px;
  }
}




/* about */
/* ===============================
   FOUNDER'S SECTION STYLES
   Premium Beauty Salon Founder Story
================================== */

.founder-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.founder-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  opacity: 0.3;
  border-radius: 50%;
  z-index: 0;
}

.founder-content {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.founder-image {
  flex: 1;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.founder-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1s ease;
}

.founder-image:hover img {
  transform: scale(1.03);
}

/* .experience-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
} */

.experience-badge span {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: white; /* Gold */
  display: block;
  line-height: 1;
}

.experience-badge p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: #2A2A2A; /* Charcoal */
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.founder-text {
  flex: 1;
}

.founder-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #2A2A2A; /* Charcoal */
  margin-bottom: 15px;
  line-height: 1.3;
}

.founder-text h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #C5A063; /* Gold */
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.founder-text p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  color: #5A6B7D; /* Slate */
  line-height: 1.8;
  margin-bottom: 20px;
}

.founder-text p:last-of-type {
  font-style: italic;
  position: relative;
  padding-left: 30px;
}

.founder-text p:last-of-type::before {
  content: '"';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 2rem;
  color: #C5A063; /* Gold */
  opacity: 0.5;
}

.signature {
  margin-top: 40px;
}

.signature img {
  max-width: 200px;
  height: auto;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}

/* Responsive Styles */
@media (max-width: 992px) {
  .founder-content {
    flex-direction: column;
  }
  
  .founder-image {
    margin-bottom: 40px;
    width: 100%;
  }
  
  .founder-text h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .founder-section {
    padding: 80px 0;
  }
  
  .founder-text h2 {
    font-size: 2rem;
  }
  
  .experience-badge {
    padding: 15px;
  }
  
  .experience-badge span {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .founder-section {
    padding: 60px 0;
  }
  
  .founder-text h2 {
    font-size: 1.8rem;
  }
  
  .founder-text h3 {
    font-size: 1.1rem;
  }
  
  .signature img {
    max-width: 150px;
  }
}

/* Animation Classes */
.animate__animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-30px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(30px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInRight {
  animation-name: fadeInRight;
}

/* ===============================
   MISSION SECTION STYLES
   Premium Beauty Salon Philosophy
================================== */

.mission-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.mission-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(197, 160, 99, 0.03); /* Gold tint overlay */
  z-index: 0;
}

.mission-card {
  position: relative;
  background: white;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
  overflow: hidden;
}

.mission-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #C5A063, #A68A56); /* Gold gradient accent */
}

.mission-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #2A2A2A;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.mission-card h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #C5A063;
}

.mission-statement {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  line-height: 1.8;
  color: #5A6B7D;
  margin: 0 auto 50px;
  max-width: 700px;
  position: relative;
  padding: 0 40px;
}

.mission-statement::before,
.mission-statement::after {
  content: '"';
  position: absolute;
  font-size: 4rem;
  color: #E8D9B5;
  line-height: 1;
}

.mission-statement::before {
  top: -20px;
  left: 0;
}

.mission-statement::after {
  bottom: -50px;
  right: 0;
}

.mission-pillars {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.pillar {
  flex: 1;
  min-width: 200px;
  padding: 40px 20px;
  background: rgba(249, 246, 240, 0.5);
  border-radius: 15px;
  transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  border: 1px solid rgba(197, 160, 99, 0.1);
}

.pillar:hover {
  transform: translateY(-10px);
  background: white;
  box-shadow: 0 15px 30px rgba(197, 160, 99, 0.1);
  border-color: rgba(197, 160, 99, 0.2);
}

.pillar i {
  font-size: 2.5rem;
  color: #C5A063;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.pillar:hover i {
  transform: scale(1.2);
}

.pillar h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  color: #2A2A2A;
  font-weight: 500;
  letter-spacing: 1px;
}

/* Animation Classes */
.animate__animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInUp {
  animation-name: fadeInUp;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .mission-card {
    padding: 50px 40px;
  }
  
  .mission-statement {
    font-size: 1.3rem;
    padding: 0 30px;
  }
  
  .mission-pillars {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .mission-section {
    padding: 80px 0;
  }
  
  .mission-card h2 {
    font-size: 2.2rem;
  }
  
  .mission-statement {
    font-size: 1.2rem;
    padding: 0 20px;
  }
  
  .mission-statement::before,
  .mission-statement::after {
    font-size: 3rem;
  }
  
  .pillar {
    min-width: 150px;
    padding: 30px 15px;
  }
}

@media (max-width: 576px) {
  .mission-card {
    padding: 40px 25px;
    border-radius: 15px;
  }
  
  .mission-card h2 {
    font-size: 1.8rem;
  }
  
  .mission-statement {
    font-size: 1.1rem;
    padding: 0;
  }
  
  .mission-pillars {
    flex-direction: column;
    gap: 15px;
  }
  
  .pillar {
    width: 100%;
  }
}

/* ===============================
   TEAM SECTION STYLES
   Premium Beauty Salon Team Display
================================== */

.team-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.team-section::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  opacity: 0.2;
  border-radius: 50%;
  z-index: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 1;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #2A2A2A; /* Charcoal */
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #C5A063; /* Gold */
}

.section-header p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  color: #5A6B7D; /* Slate */
  max-width: 700px;
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.team-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.team-img {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.team-card:hover .team-img img {
  transform: scale(1.05);
}

.team-social {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.team-card:hover .team-social {
  opacity: 1;
  transform: translateY(0);
}

.team-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  color: #C5A063; /* Gold */
  transition: all 0.3s ease;
}

.team-social a:hover {
  background: #C5A063; /* Gold */
  color: white;
  transform: translateY(-3px);
}

.team-info {
  padding: 30px;
  text-align: center;
}

.team-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #2A2A2A; /* Charcoal */
  margin-bottom: 5px;
}

.position {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: #C5A063; /* Gold */
  font-weight: 500;
  margin-bottom: 15px;
  display: block;
}

.bio {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: #5A6B7D; /* Slate */
  margin-bottom: 20px;
  line-height: 1.6;
}

.expertise {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.expertise span {
  background: #F9F6F0; /* Ivory */
  padding: 6px 12px;
  border-radius: 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  color: #5A6B7D; /* Slate */
  font-weight: 500;
}

/* Animation Classes */
.animate__animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInUp {
  animation-name: fadeInUp;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .team-section {
    padding: 80px 0;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
  }
  
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2.2rem;
  }
  
  .team-img {
    height: 300px;
  }
  
  .team-info {
    padding: 25px;
  }
}

@media (max-width: 576px) {
  .team-section {
    padding: 60px 0;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .section-header p {
    font-size: 1rem;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
}
/* ===============================
   SALON TOUR SECTION STYLES
   Luxury Beauty Space Showcase
================================== */

.tour-section {
  padding: 100px 0;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.tour-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  z-index: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #2A2A2A;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #C5A063; /* Gold */
}

.section-header p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  color: #5A6B7D; /* Slate */
  max-width: 700px;
  margin: 0 auto;
}

.tour-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  margin-bottom: 60px;
}

.tour-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.tour-card.main {
  height: 500px;
}

.tour-secondary {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}

.tour-secondary .tour-card {
  height: 240px;
}

.tour-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.tour-card:hover img {
  transform: scale(1.05);
}

.tour-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: white;
}

.tour-caption h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 5px;
  color: white;
}

.tour-caption p {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  opacity: 0.9;
}

.amenities {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.amenities h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #2A2A2A;
  margin-bottom: 40px;
  position: relative;
}

.amenities h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: #C5A063; /* Gold */
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.amenity {
  background: white;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.amenity:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.amenity i {
  font-size: 2.5rem;
  color: #C5A063; /* Gold */
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.amenity:hover i {
  transform: scale(1.2);
}

.amenity p {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #5A6B7D; /* Slate */
  font-weight: 500;
}

/* Animation Classes */
.animate__animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-30px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(30px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInRight {
  animation-name: fadeInRight;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .tour-grid {
    grid-template-columns: 1fr;
  }
  
  .tour-card.main {
    height: 400px;
  }
  
  .tour-secondary {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  
  .tour-secondary .tour-card {
    height: 300px;
  }
  
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .tour-section {
    padding: 80px 0;
  }
  
  .section-header h2 {
    font-size: 2.3rem;
  }
  
  .tour-caption {
    padding: 20px;
  }
  
  .tour-caption h3 {
    font-size: 1.5rem;
  }
  
  .amenities h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .tour-section {
    padding: 60px 0;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .tour-secondary {
    grid-template-columns: 1fr;
  }
  
  .amenities-grid {
    grid-template-columns: 1fr;
  }
  
  .amenity {
    padding: 25px 15px;
  }
}
/* ===============================
   AWARDS SECTION STYLES
   Luxury Salon Recognition Showcase
================================== */

.awards-section {
  padding: 100px 0;
  background-color: #F9F6F0; /* Ivory background */
  position: relative;
  overflow: hidden;
}

.awards-section::before {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: rgba(197, 160, 99, 0.05); /* Gold tint */
  border-radius: 50%;
  z-index: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #2A2A2A; /* Charcoal */
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #C5A063; /* Gold */
}

.section-header p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  color: #5A6B7D; /* Slate */
  max-width: 700px;
  margin: 0 auto;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.award {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  position: relative;
  overflow: hidden;
}

.award:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.award::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #C5A063, #A68A56); /* Gold gradient */
}

.award img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 0 auto 25px;
  display: block;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
  transition: transform 0.4s ease;
}

.award:hover img {
  transform: scale(1.1);
}

.award h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #2A2A2A; /* Charcoal */
  margin-bottom: 10px;
  position: relative;
}

.award p {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #C5A063; /* Gold */
  font-weight: 500;
  letter-spacing: 1px;
}

/* Animation Classes */
.animate__animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInUp {
  animation-name: fadeInUp;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .awards-section {
    padding: 80px 0;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
  }
  
  .awards-grid {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2.2rem;
  }
  
  .award {
    padding: 30px 25px;
  }
  
  .award img {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
  }
  
  .award h4 {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .awards-section {
    padding: 60px 0;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .awards-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  
  .award {
    padding: 30px 20px;
  }
  
  .section-header p {
    font-size: 1rem;
  }
}

/* ===============================
   CONTACT SECTION STYLES
   Luxury Salon Contact Form & Info
================================== */

.contact-section {
  padding: 100px 0;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: #F9F6F0; /* Light ivory */
  border-radius: 50%;
  z-index: 0;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Contact Info Styles */
.contact-info {
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #2A2A2A; /* Charcoal */
  margin-bottom: 30px;
  position: relative;
}

.contact-info h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #C5A063; /* Gold */
}

.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: #C5A063; /* Gold */
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-text h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  color: #2A2A2A; /* Charcoal */
  margin-bottom: 8px;
  font-weight: 600;
}

.info-text p {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #5A6B7D; /* Slate */
  line-height: 1.6;
  margin-bottom: 10px;
}

.info-text a {
  color: #5A6B7D; /* Slate */
  transition: color 0.3s ease;
}

.info-text a:hover {
  color: #C5A063; /* Gold */
}

.map-link {
  display: inline-block;
  margin-top: 5px;
  color: #C5A063 !important; /* Gold */
  font-weight: 500;
  text-decoration: none;
  position: relative;
}

.map-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #C5A063; /* Gold */
  transition: width 0.3s ease;
}

.map-link:hover::after {
  width: 0;
}

.social-links {
  margin-top: 50px;
}

.social-links h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  color: #2A2A2A; /* Charcoal */
  margin-bottom: 15px;
  font-weight: 600;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: white;
  color: #5A6B7D; /* Slate */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.social-icons a:hover {
  background: #C5A063; /* Gold */
  color: white;
  transform: translateY(-3px);
}

/* Contact Form Styles */
.contact-form {
  padding: 40px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.contact-form h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #2A2A2A; /* Charcoal */
  margin-bottom: 30px;
  position: relative;
}

.contact-form h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #C5A063; /* Gold */
}

.form-group {
  margin-bottom: 25px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: #5A6B7D; /* Slate */
  margin-bottom: 8px;
  font-weight: 500;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #2A2A2A; /* Charcoal */
  transition: all 0.3s ease;
  background: #F9F6F0; /* Ivory */
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #C5A063; /* Gold */
  box-shadow: 0 0 0 3px rgba(197, 160, 99, 0.2);
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235A6B7D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 15px;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.btn-primary {
  display: inline-block;
  padding: 15px 35px;
  background: linear-gradient(135deg, #C5A063, #A68A56); /* Gold gradient */
  color: white;
  border: none;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(197, 160, 99, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #A68A56, #C5A063); /* Reversed gradient */
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(197, 160, 99, 0.4);
}

/* Animation Classes */
.animate__animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-30px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(30px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInRight {
  animation-name: fadeInRight;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-info,
  .contact-form {
    padding: 30px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 80px 0;
  }
  
  .contact-info h2,
  .contact-form h2 {
    font-size: 2rem;
  }
  
  .info-item {
    margin-bottom: 25px;
  }
}

@media (max-width: 576px) {
  .contact-section {
    padding: 60px 0;
  }
  
  .contact-info h2,
  .contact-form h2 {
    font-size: 1.8rem;
  }
  
  .info-item {
    flex-direction: column;
    gap: 15px;
  }
  
  .info-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .btn-primary {
    width: 100%;
    padding: 15px;
  }
}
/* ===============================
   MAP SECTION STYLES
   Luxury Salon Location Display
================================== */

.map-section {
  padding: 80px 0 0;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.map-section::before {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  z-index: 0;
}

.map-container {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  transform: translateY(50px);
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.map-container:hover {
  transform: translateY(40px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: none;
  filter: grayscale(20%) contrast(1.1) brightness(0.95);
  transition: filter 0.4s ease;
}

.map-container:hover iframe {
  filter: grayscale(0%) contrast(1) brightness(1);
}

/* Custom Map Controls */
.map-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(
    to bottom, 
    rgba(255,255,255,0.3) 0%, 
    rgba(255,255,255,0) 10%,
    rgba(255,255,255,0) 90%, 
    rgba(255,255,255,0.3) 100%
  );
  z-index: 1;
}

/* Animation Classes */
.animate__animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInUp {
  animation-name: fadeInUp;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .map-section {
    padding: 60px 0 0;
  }
  
  .map-container {
    transform: translateY(30px);
  }
  
  .map-container:hover {
    transform: translateY(20px);
  }
}

@media (max-width: 768px) {
  .map-section {
    padding: 40px 0 0;
  }
  
  .map-container iframe {
    height: 400px;
  }
}

@media (max-width: 576px) {
  .map-container {
    border-radius: 10px;
  }
  
  .map-container iframe {
    height: 350px;
  }
}
/* ===============================
   FAQ SECTION STYLES
   Luxury Salon Frequently Asked Questions
================================== */

.faq-section {
  padding: 100px 0;
  background-color: #F9F6F0; /* Ivory background */
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  z-index: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #2A2A2A; /* Charcoal */
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #C5A063; /* Gold */
}

.section-header p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  color: #5A6B7D; /* Slate */
  max-width: 700px;
  margin: 0 auto;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.faq-item:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-question span {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #2A2A2A; /* Charcoal */
  flex: 1;
}

.faq-question i {
  font-size: 1rem;
  color: #C5A063; /* Gold */
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(249, 246, 240, 0.5); /* Light ivory */
}

.faq-question:hover i {
  transform: translateY(3px);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer p {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #5A6B7D; /* Slate */
  line-height: 1.7;
  padding: 0 30px;
}

/* Active state */
.faq-item.active .faq-question {
  background: rgba(197, 160, 99, 0.1); /* Light gold */
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 30px 25px;
}

/* Animation Classes */
.animate__animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInUp {
  animation-name: fadeInUp;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .faq-section {
    padding: 80px 0;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2.2rem;
  }
  
  .faq-question {
    padding: 20px 25px;
  }
  
  .faq-question span {
    font-size: 1rem;
  }
  
  .faq-answer p,
  .faq-item.active .faq-answer {
    padding: 0 25px 20px;
  }
}

@media (max-width: 576px) {
  .faq-section {
    padding: 60px 0;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .section-header p {
    font-size: 1rem;
  }
  
  .faq-question {
    padding: 18px 20px;
  }
  
  .faq-answer p,
  .faq-item.active .faq-answer {
    padding: 0 20px 18px;
  }
}
/* ===============================
   CTA SECTION STYLES
   Luxury Salon Call-to-Action
================================== */

.cta {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-dark {
  background: linear-gradient(rgba(42, 42, 42, 0.9), rgba(42, 42, 42, 0.9)), 
              url('https://images.unsplash.com/photo-1600334129128-685c5582fd35?ixlib=rb-4.1.0&auto=format&fit=crop&w=1350&q=80') center/cover no-repeat;
  color: white;
}

.cta .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: inherit;
}

.cta p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 40px;
  color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  cursor: pointer;
  text-align: center;
}

.btn-light {
  background: white;
  color: #2A2A2A; /* Charcoal */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
  background: #F9F6F0; /* Ivory */
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
  position: relative;
  overflow: hidden;
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: white;
  transition: width 0.4s ease;
  z-index: -1;
}

.btn-outline:hover {
  color: #2A2A2A; /* Charcoal */
}

.btn-outline:hover::before {
  width: 100%;
}

/* Animation Classes */
.animate__animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInUp {
  animation-name: fadeInUp;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .cta {
    padding: 80px 0;
  }
  
  .cta h2 {
    font-size: 2.5rem;
  }
  
  .cta p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .cta h2 {
    font-size: 2.2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 576px) {
  .cta {
    padding: 60px 0;
  }
  
  .cta h2 {
    font-size: 2rem;
  }
  
  .cta p {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .btn {
    padding: 14px 30px;
    font-size: 0.9rem;
  }
}
/* Booking Section - Premium Styling */
.booking-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9f9ff 0%, #f0f2ff 100%);
    font-family: 'Poppins', sans-serif;
}

.booking-container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
}

.booking-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    /* background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%); */
}

/* Booking Steps Indicator */
.booking-steps {
    display: flex;
    justify-content: space-between;
    padding: 30px 60px;
    position: relative;
}

.booking-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 60px;
    right: 60px;
    height: 2px;
    background: #e0e0e0;
    transform: translateY(-50%);
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.step span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.step p {
    color: #888;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    transition: all 0.3s ease;
}

.step.active span {
    /* background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%); */
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(106, 17, 203, 0.2);
}

.step.active p {
    color: #333;
    font-weight: 600;
}

/* Booking Form */
.booking-form {
    padding: 40px 60px;
}

.form-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.booking-form h2 {
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.booking-form h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    /* background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%); */
    border-radius: 3px;
}

/* Service Selection */
.service-selection {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.service-category h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 18px;
    position: relative;
    padding-left: 15px;
}

.service-category h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 18px;
    /* background: linear-gradient(to bottom, #6a11cb, #2575fc); */
    border-radius: 5px;
}

.service-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.service-option {
    position: relative;
}

.service-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.service-option label {
    display: block;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    height: 100%;
}

.service-option label:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: #d0d0d0;
}

.service-option input[type="radio"]:checked + label {
    border: 2px solid #6a11cb;
    background: rgba(106, 17, 203, 0.03);
    box-shadow: 0 5px 15px rgba(106, 17, 203, 0.1);
}

.service-option h4 {
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 8px;
    font-weight: 600;
}

.service-option p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-meta span:first-child {
    /* color: #6a11cb; */
    font-weight: 600;
    font-size: 18px;
}

.service-meta span:last-child {
    color: #888;
    font-size: 14px;
    background: #f5f5f5;
    padding: 4px 10px;
    border-radius: 20px;
}

/* Form Groups */
.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: #6a11cb;
    box-shadow: 0 0 0 3px rgba(106, 17, 203, 0.1);
}

textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

/* Date Picker Customization */
#bookingDate {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%236a11cb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 20px;
    cursor: pointer;
}

/* Form Navigation Buttons */
.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.btn {
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    /* background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%); */
    color: white;
    box-shadow: 0 4px 12px rgba(37, 117, 252, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 117, 252, 0.4);
}

.btn-outline {
    background: transparent;
    border: 1px solid #ddd;
    color: #666;
}

.btn-outline:hover {
    border-color: #6a11cb;
    color: #6a11cb;
    background: rgba(106, 17, 203, 0.03);
}

/* Booking Summary */
.booking-summary {
    background: #f9f9ff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

.summary-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #e0e0e0;
}

.summary-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.summary-item h4 {
    color: #666;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.summary-item p {
    color: #2c3e50;
    font-size: 16px;
    margin: 0;
    font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .booking-container {
        border-radius: 0;
    }
    
    .booking-steps, .booking-form {
        padding: 30px 20px;
    }
    
    .booking-steps::before {
        left: 20px;
        right: 20px;
    }
    
    .service-options {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .step p {
        display: none;
    }
}

/* Animation for step transitions */
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

.form-step.active[data-step="2"] {
    animation: slideInRight 0.5s ease;
}

.form-step.active[data-step="3"] {
    animation: slideInRight 0.5s ease;
}

.form-step.active[data-step="4"] {
    animation: slideInRight 0.5s ease;
}

.form-step.active[data-step="1"].prev-step-active {
    animation: slideInLeft 0.5s ease;
}

.form-step.active[data-step="2"].prev-step-active {
    animation: slideInLeft 0.5s ease;
}

.form-step.active[data-step="3"].prev-step-active {
    animation: slideInLeft 0.5s ease;
}