/**
* Beauty Block Studio - Main CSS File
* A premium beauty salon website template
* Author: IzweBrands
* Version: 1.0
*/

/*--------------------------------------------------------------
# Table of Contents
--------------------------------------------------------------*/
/*
1.  Font & Color Variables
2.  Reset & Base Styles
3.  Typography
4.  Layout & Grid
5.  Header & Navigation (Charcoal Grey)
6.  Hero Section with Video Background
7.  Features Section
8.  About Section
9.  Services & Tabs
10. Pricing Cards
11. Booking Section
12. Gallery
13. Testimonials
14. Blog Section
15. Contact Section
16. Footer
17. WhatsApp & Scroll Buttons
18. Animations
19. Mobile Responsive
20. Utility Classes
21. Print Styles
22. Placeholder Styles (Temporary)
*/

/*--------------------------------------------------------------
# 1. Font & Color Variables
--------------------------------------------------------------*/
:root {
  /* Primary Colors - Rose Gold/Pink Theme */
  --primary-pink: #df6fa8;
  --primary-pink-dark: #df6fa8;
  --primary-pink-light: #f8e1e1;
  --primary-pink-soft: #3c3c3b;
  
  /* Charcoal Grey Navigation Colors */
  --charcoal-grey: #36454F;
  --charcoal-dark: #2A363B;
  --charcoal-light: #4A5A63;
  --charcoal-border: #2F3E46;
  
  /* Secondary Colors */
  --secondary-blush: #fff3f0;
  --secondary-cream: #fff9f7;
  --secondary-ivory: #df6fa8;
  
  /* Text Colors */
  --text-dark: #3d2b23;
  --text-soft: #5a4a42;
  --text-light: #8b7a72;
  --text-muted: #b5a39b;
  
  /* Surface Colors */
  --white: #ffffff;
  --off-white: #faf7f5;
  --gray-light: #f0eae7;
  
  /* Shadows */
  --shadow-sm: 0 5px 20px rgba(0, 0, 0, 0.03);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 10px 40px rgba(0, 0, 0, 0.1);
  --shadow-hard: 0 20px 50px rgba(0, 0, 0, 0.15);
  
  /* Border Radius */
  --radius-sm: 10px;
  --radius-md: 15px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-circle: 50%;
  --radius-pill: 50px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Spacing */
  --spacing-xs: 5px;
  --spacing-sm: 10px;
  --spacing-md: 20px;
  --spacing-lg: 30px;
  --spacing-xl: 40px;
  --spacing-xxl: 60px;
  
  /* Container Width */
  --container-width: 1200px;
  --container-fluid-width: 100%;
  
  /* Z-index */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal: 1040;
  --z-popover: 1050;
  --z-tooltip: 1060;
  --z-hero-video: 1;
  --z-hero-content: 2;
  --z-hero-overlay: 2;
}

/*--------------------------------------------------------------
# 2. Reset & Base Styles
--------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Roboto', sans-serif;
  color: var(--text-soft);
  background-color: var(--secondary-cream);
  line-height: 1.6;
  font-size: 1rem;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.mobile-nav-active {
  overflow: hidden;
}

/* Remove default list styles */
ul, ol {
  list-style: none;
}

/* Links */
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}

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

/* Form elements */
input,
textarea,
select,
button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* Focus styles for accessibility */
:focus-visible {
  outline: 2px solid var(--primary-pink);
  outline-offset: 2px;
}

/* Selection styling */
::selection {
  background-color: var(--primary-pink);
  color: var(--white);
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--secondary-cream);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-pink);
  border-radius: var(--radius-pill);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-pink-dark);
}

/*--------------------------------------------------------------
# 3. Typography
--------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--text-light);
}

.small {
  font-size: 0.875rem;
}

.text-muted {
  color: var(--text-muted);
}

.text-primary {
  color: var(--primary-pink);
}

.text-dark {
  color: var(--text-dark);
}

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

.text-white-50 {
  color: rgba(255, 255, 255, 0.7);
}

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

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

/*--------------------------------------------------------------
# 4. Layout & Grid
--------------------------------------------------------------*/
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 15px;
}

.container-fluid {
  width: var(--container-fluid-width);
  padding: 0 30px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

[class*="col-"] {
  padding: 0 15px;
  width: 100%;
}

/* Column widths */
.col-12 { width: 100%; }
.col-11 { width: 91.66666667%; }
.col-10 { width: 83.33333333%; }
.col-9 { width: 75%; }
.col-8 { width: 66.66666667%; }
.col-7 { width: 58.33333333%; }
.col-6 { width: 50%; }
.col-5 { width: 41.66666667%; }
.col-4 { width: 33.33333333%; }
.col-3 { width: 25%; }
.col-2 { width: 16.66666667%; }
.col-1 { width: 8.33333333%; }

/* Responsive columns */
@media (min-width: 576px) {
  .col-sm-12 { width: 100%; }
  .col-sm-11 { width: 91.66666667%; }
  .col-sm-10 { width: 83.33333333%; }
  .col-sm-9 { width: 75%; }
  .col-sm-8 { width: 66.66666667%; }
  .col-sm-7 { width: 58.33333333%; }
  .col-sm-6 { width: 50%; }
  .col-sm-5 { width: 41.66666667%; }
  .col-sm-4 { width: 33.33333333%; }
  .col-sm-3 { width: 25%; }
  .col-sm-2 { width: 16.66666667%; }
  .col-sm-1 { width: 8.33333333%; }
}

@media (min-width: 768px) {
  .col-md-12 { width: 100%; }
  .col-md-11 { width: 91.66666667%; }
  .col-md-10 { width: 83.33333333%; }
  .col-md-9 { width: 75%; }
  .col-md-8 { width: 66.66666667%; }
  .col-md-7 { width: 58.33333333%; }
  .col-md-6 { width: 50%; }
  .col-md-5 { width: 41.66666667%; }
  .col-md-4 { width: 33.33333333%; }
  .col-md-3 { width: 25%; }
  .col-md-2 { width: 16.66666667%; }
  .col-md-1 { width: 8.33333333%; }
}

@media (min-width: 992px) {
  .col-lg-12 { width: 100%; }
  .col-lg-11 { width: 91.66666667%; }
  .col-lg-10 { width: 83.33333333%; }
  .col-lg-9 { width: 75%; }
  .col-lg-8 { width: 66.66666667%; }
  .col-lg-7 { width: 58.33333333%; }
  .col-lg-6 { width: 50%; }
  .col-lg-5 { width: 41.66666667%; }
  .col-lg-4 { width: 33.33333333%; }
  .col-lg-3 { width: 25%; }
  .col-lg-2 { width: 16.66666667%; }
  .col-lg-1 { width: 8.33333333%; }
}

@media (min-width: 1200px) {
  .col-xl-12 { width: 100%; }
  .col-xl-11 { width: 91.66666667%; }
  .col-xl-10 { width: 83.33333333%; }
  .col-xl-9 { width: 75%; }
  .col-xl-8 { width: 66.66666667%; }
  .col-xl-7 { width: 58.33333333%; }
  .col-xl-6 { width: 50%; }
  .col-xl-5 { width: 41.66666667%; }
  .col-xl-4 { width: 33.33333333%; }
  .col-xl-3 { width: 25%; }
  .col-xl-2 { width: 16.66666667%; }
  .col-xl-1 { width: 8.33333333%; }
}

/* Sections */
section, .section {
  padding: var(--spacing-xxl) 0;
  scroll-margin-top: 80px;
}

.section-title {
  text-align: center;
  padding-bottom: var(--spacing-xl);
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-pink);
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.section-title h2::after {
  content: '';
  width: 50px;
  height: 2px;
  background: var(--primary-pink);
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-title p {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 20px;
  line-height: 1.2;
}

/*--------------------------------------------------------------
# 5. Header & Navigation (Charcoal Grey)
--------------------------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--charcoal-grey);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  padding: 15px 0;
  transition: all var(--transition-base);
  z-index: var(--z-fixed);
}

.header.scrolled {
  padding: 8px 0;
  background-color: var(--charcoal-dark);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.header .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  max-height: 70px;
  transition: all var(--transition-base);
  /* filter: brightness(0) invert(1); */ /* Commented out to show original logo colors */
}

.header.scrolled .logo img {
  max-height: 60px;
}

/* Text Logo (alternative if no image) */
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.logo-text span {
  color: var(--primary-pink);
  font-style: italic;
}

.header.scrolled .logo-text {
  font-size: 22px;
}

/* Navigation Menu */
.navmenu {
  display: flex;
  align-items: center;
}

.navmenu ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.navmenu ul li {
  position: relative;
  margin: 0 5px;
}

.navmenu ul li a {
  display: block;
  padding: 10px 18px;
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  transition: var(--transition-base);
  position: relative;
  opacity: 0.9;
}

.navmenu ul li a::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 18px;
  width: 0;
  height: 2px;
  background: var(--primary-pink);
  transition: width var(--transition-base);
}

.navmenu ul li a:hover::after,
.navmenu ul li a.active::after {
  width: calc(100% - 36px);
}

.navmenu ul li a:hover,
.navmenu ul li a.active {
  color: var(--white);
  opacity: 1;
}

/* Book Now Button */
.btn-book {
  background: var(--primary-pink);
  color: var(--white);
  padding: 12px 30px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 14px;
  transition: var(--transition-base);
  border: 2px solid var(--primary-pink);
  margin-left: 20px;
  white-space: nowrap;
  display: inline-block;
  text-align: center;
}

.btn-book:hover {
  background: transparent;
  color: var(--primary-pink);
  border-color: var(--primary-pink);
  transform: translateY(-2px);
}

/* Mobile Navigation Toggle */
.mobile-nav-toggle {
  font-size: 28px;
  color: var(--white);
  cursor: pointer;
  display: none;
  line-height: 1;
  transition: var(--transition-base);
}

.mobile-nav-toggle:hover {
  color: var(--primary-pink);
}

/* Mobile Navigation Styles */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    display: block;
  }
  
  .navmenu ul {
    display: none;
    position: fixed;
    top: 80px;
    left: 20px;
    right: 20px;
    background: var(--charcoal-grey);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-hard);
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    z-index: var(--z-dropdown);
    border: 1px solid var(--charcoal-light);
  }
  
  .navmenu ul li {
    margin: 5px 0;
  }
  
  .navmenu ul li a {
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    color: var(--white);
  }
  
  .navmenu ul li a::after {
    display: none;
  }
  
  .navmenu ul li a:hover,
  .navmenu ul li a.active {
    background: var(--charcoal-light);
    color: var(--white);
  }
  
  .btn-book {
    margin-left: 0;
    padding: 10px 20px;
    font-size: 13px;
    background: var(--primary-pink);
    color: var(--white);
  }
}

/* Mobile nav active state */
body.mobile-nav-active .navmenu ul {
  display: block;
  animation: slideDown 0.3s ease;
}

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

/*--------------------------------------------------------------
# 6. Hero Section with Video Background
--------------------------------------------------------------*/
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--charcoal-grey), var(--charcoal-dark)); /* Fallback if video fails */
}

/* Video Wrapper */
.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-hero-video);
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
}

/* Video Overlay - Dark overlay for text readability */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: var(--z-hero-overlay);
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: var(--z-hero-content);
  color: var(--white);
  width: 100%;
}

.hero h1 {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero h1 span {
  color: var(--primary-pink);
  font-style: italic;
  position: relative;
  display: inline-block;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero h1 span::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(212, 165, 165, 0.3);
  z-index: -1;
}

.hero p {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 700px;
  line-height: 1.8;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}

.hero-buttons .btn-primary {
  background: var(--primary-pink);
  color: var(--white);
  padding: 15px 40px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 16px;
  border: 2px solid var(--primary-pink);
  transition: var(--transition-base);
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hero-buttons .btn-primary:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-3px);
}

.hero-buttons .btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 15px 40px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 16px;
  border: 2px solid var(--white);
  transition: var(--transition-base);
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn-secondary:hover {
  background: var(--white);
  color: var(--charcoal-grey);
  transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
  margin-top: 50px;
}

.hero-stats h4 {
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-stats p {
  font-size: 14px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Hero Responsive */
@media (max-width: 992px) {
  .hero {
    text-align: center;
    padding: 120px 0 60px;
  }
  
  .hero p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-stats {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
  }
  
  .hero-stats h4 {
    font-size: 24px;
  }
}

/* Fallback for browsers that don't support video */
.hero-video-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--charcoal-grey);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s;
}

/* If video fails to load, show fallback background */
.hero-video:not(:defined) + .video-overlay {
  background: linear-gradient(135deg, var(--charcoal-grey), var(--charcoal-dark));
}

/*--------------------------------------------------------------
# 7. Features Section
--------------------------------------------------------------*/
.features {
  padding: 80px 0;
  background: var(--white);
}

.feature-box {
  text-align: center;
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-base);
  height: 100%;
  border: 1px solid var(--primary-pink-light);
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to bottom, var(--primary-pink-light), transparent);
  transition: height var(--transition-slow);
  z-index: 0;
  opacity: 0;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
  border-color: var(--primary-pink);
}

.feature-box:hover::before {
  height: 100%;
  opacity: 0.1;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-pink-light);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 32px;
  color: var(--primary-pink);
  transition: all var(--transition-base);
  position: relative;
  z-index: 1;
}

.feature-box:hover .feature-icon {
  background: var(--primary-pink);
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
}

.feature-box h3 {
  font-size: 22px;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.feature-box p {
  color: var(--text-light);
  margin: 0;
  position: relative;
  z-index: 1;
  line-height: 1.6;
}

/*--------------------------------------------------------------
# 8. About Section
--------------------------------------------------------------*/
.about {
  padding: 80px 0;
  background: var(--secondary-cream);
}

.about-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.about-image img {
  width: 100%;
  transition: transform var(--transition-slow);
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-image::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 2px solid var(--white);
  border-radius: var(--radius-lg);
  opacity: 0;
  transition: var(--transition-base);
  pointer-events: none;
}

.about-image:hover::after {
  opacity: 1;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
}

.about-content {
  padding-left: 40px;
}

.about-content h2 {
  font-size: clamp(32px, 4vw, 42px);
  margin-bottom: 25px;
  position: relative;
}

.about-content h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background: var(--primary-pink);
}

.about-content .lead {
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 25px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
}

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

/* Signature Block */
.signature-block {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 2px dashed var(--primary-pink-light);
}

.signature-title {
  color: var(--text-light);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.signature {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--primary-pink);
  font-style: italic;
  line-height: 1.2;
}

@media (max-width: 992px) {
  .about-content {
    padding-left: 0;
    margin-top: 40px;
  }
  
  .about-content h2::after {
    left: 0;
    transform: none;
  }
}

/*--------------------------------------------------------------
# 9. Services & Tabs
--------------------------------------------------------------*/
.services-tabs {
  padding: 80px 0;
  background: var(--white);
}

/* Tab Navigation */
.nav-tabs {
  border: none;
  justify-content: center;
  margin-bottom: 50px;
  gap: 15px;
  display: flex;
  flex-wrap: wrap;
}

.nav-tabs .nav-link {
  border: none;
  padding: 12px 30px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  color: var(--text-soft);
  background: var(--secondary-cream);
  transition: all var(--transition-base);
  cursor: pointer;
  font-size: 16px;
  border: 1px solid transparent;
}

.nav-tabs .nav-link:hover {
  background: var(--primary-pink-light);
  color: var(--primary-pink);
  transform: translateY(-2px);
}

.nav-tabs .nav-link.active {
  background: var(--primary-pink);
  color: var(--white);
  box-shadow: 0 5px 15px rgba(212, 165, 165, 0.3);
  border-color: var(--primary-pink);
}

/* Tab Content */
.tab-content {
  transition: var(--transition-base);
}

.tab-pane {
  display: none;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.tab-pane.active {
  display: block;
  opacity: 1;
  animation: fadeIn 0.5s ease;
}

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

/* Service Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.service-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 25px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--primary-pink-light);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--primary-pink);
  transition: height var(--transition-base);
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-color: var(--primary-pink);
}

.service-item:hover::before {
  height: 100%;
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 10px;
}

.service-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  font-family: 'Playfair Display', serif;
}

.service-price {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-pink);
  font-family: 'Poppins', sans-serif;
}

.service-description {
  color: var(--text-light);
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

/*--------------------------------------------------------------
# 10. Pricing Cards
--------------------------------------------------------------*/
.pricing {
  padding: 80px 0;
  background: var(--secondary-cream);
}

.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  box-shadow: var(--shadow-soft);
  height: 100%;
  transition: all var(--transition-base);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hard);
  border-color: var(--primary-pink);
}

/* Popular Card */
.price-card.popular {
  border: 2px solid var(--primary-pink);
  transform: scale(1.02);
}

.price-card.popular:hover {
  transform: scale(1.02) translateY(-10px);
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--primary-pink);
  color: var(--white);
  padding: 5px 40px;
  transform: rotate(45deg);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.price-card h3 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
  padding-bottom: 15px;
  border-bottom: 2px dashed var(--primary-pink-light);
}

.price-card .price {
  text-align: center;
  margin-bottom: 30px;
}

.price-card .price .amount {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-pink);
  line-height: 1;
}

.price-card .price .period {
  color: var(--text-light);
  font-size: 14px;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  flex-grow: 1;
}

.price-card ul li {
  padding: 12px 0;
  border-bottom: 1px dashed var(--primary-pink-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
}

.price-card ul li:last-child {
  border-bottom: none;
}

.price-card ul li .service-name {
  color: var(--text-soft);
  font-weight: 400;
}

.price-card ul li .service-price {
  font-weight: 600;
  color: var(--primary-pink);
  font-size: 16px;
}

/* Price Card Button */
.btn-price {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: var(--radius-pill);
  background: var(--primary-pink-light);
  color: var(--primary-pink);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-base);
  border: 1px solid transparent;
  margin-top: auto;
}

.btn-price:hover {
  background: var(--primary-pink);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 165, 165, 0.3);
}

/*--------------------------------------------------------------
# 11. Booking Section
--------------------------------------------------------------*/
.booking {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--secondary-cream) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

.booking::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 165, 165, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.booking-form-container {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 50px;
  box-shadow: var(--shadow-hard);
  position: relative;
  z-index: 2;
  border: 1px solid var(--primary-pink-light);
}

/* Form Groups */
.form-group {
  margin-bottom: 25px;
}

.form-label {
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control,
.form-select {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid var(--primary-pink-light);
  border-radius: var(--radius-md);
  font-size: 15px;
  transition: all var(--transition-base);
  background: var(--white);
  color: var(--text-dark);
}

.form-control:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary-pink);
  box-shadow: 0 0 0 4px rgba(212, 165, 165, 0.1);
}

.form-control::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

/* Time Slots */
.time-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.time-slot {
  text-align: center;
  padding: 12px 5px;
  border: 2px solid var(--primary-pink-light);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  background: var(--white);
}

.time-slot:hover {
  background: var(--primary-pink-light);
  color: var(--primary-pink);
  border-color: var(--primary-pink);
  transform: translateY(-2px);
}

.time-slot.active {
  background: var(--primary-pink);
  color: var(--white);
  border-color: var(--primary-pink);
  box-shadow: 0 5px 15px rgba(212, 165, 165, 0.3);
}

/* Submit Button */
.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--primary-pink);
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition-base);
  box-shadow: 0 5px 20px rgba(212, 165, 165, 0.4);
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-submit:hover {
  background: var(--primary-pink-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 165, 165, 0.5);
}

.btn-submit:active {
  transform: translateY(-1px);
}

/* Booking Info */
.booking-info {
  background: linear-gradient(135deg, var(--secondary-blush), var(--primary-pink-light));
  border-radius: var(--radius-lg);
  padding: 30px;
  margin-top: 40px;
  border: 1px solid var(--primary-pink);
}

.booking-info .row {
  align-items: center;
}

.booking-info p {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-dark);
  font-weight: 500;
}

.booking-info i {
  font-size: 24px;
  color: var(--primary-pink);
}

/* Responsive Booking */
@media (max-width: 768px) {
  .booking-form-container {
    padding: 30px 20px;
  }
  
  .time-slots {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .booking-info .col-md-4 {
    margin-bottom: 15px;
  }
  
  .booking-info .col-md-4:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 576px) {
  .time-slots {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .btn-submit {
    font-size: 16px;
    padding: 14px;
  }
}

/*--------------------------------------------------------------
# 12. Gallery
--------------------------------------------------------------*/
.gallery {
  padding: 80px 0;
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

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

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(212, 165, 165, 0.95), rgba(212, 165, 165, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

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

.gallery-overlay i {
  color: var(--white);
  font-size: 40px;
  transform: scale(0);
  transition: transform var(--transition-base) 0.1s;
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

/* Gallery Responsive */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
# 13. Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--secondary-cream), var(--secondary-blush));
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 200px;
  color: var(--primary-pink-light);
  font-family: serif;
  line-height: 1;
  opacity: 0.3;
  pointer-events: none;
}

.testimonials::after {
  content: '"';
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 200px;
  color: var(--primary-pink-light);
  font-family: serif;
  line-height: 1;
  opacity: 0.3;
  transform: rotate(180deg);
  pointer-events: none;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-soft);
  margin: 20px 0;
  position: relative;
  height: 100%;
  transition: var(--transition-base);
  border: 1px solid transparent;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
  border-color: var(--primary-pink);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 80px;
  color: var(--primary-pink-light);
  font-family: serif;
  line-height: 1;
  opacity: 0.5;
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
  color: var(--text-soft);
  font-style: italic;
  padding-top: 20px;
}

/* Testimonial Author */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid var(--primary-pink-light);
  padding-top: 20px;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-circle);
  overflow: hidden;
  border: 3px solid var(--primary-pink);
}

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

.author-info h4 {
  font-size: 18px;
  margin: 0 0 5px;
  color: var(--text-dark);
}

.author-info p {
  color: var(--text-light);
  margin: 0;
  font-size: 14px;
}

/* Rating Stars */
.rating {
  color: #ffc107;
  margin-top: 5px;
  font-size: 14px;
}

.rating i {
  margin-right: 2px;
}

/* Testimonials Responsive */
@media (max-width: 768px) {
  .testimonial-card {
    padding: 30px 20px;
  }
  
  .testimonials::before,
  .testimonials::after {
    font-size: 120px;
  }
}

/*--------------------------------------------------------------
# 14. Blog Section
--------------------------------------------------------------*/
.blog {
  padding: 80px 0;
  background: var(--white);
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-base);
  height: 100%;
  border: 1px solid var(--primary-pink-light);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hard);
  border-color: var(--primary-pink);
}

/* Blog Image */
.blog-image {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.blog-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.3));
  opacity: 0;
  transition: var(--transition-base);
}

.blog-card:hover .blog-image::after {
  opacity: 1;
}

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

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

/* Blog Content */
.blog-content {
  padding: 25px;
}

.blog-date {
  color: var(--primary-pink);
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-title {
  font-size: 20px;
  margin-bottom: 15px;
  line-height: 1.4;
  transition: var(--transition-base);
  color: var(--text-dark);
}

.blog-card:hover .blog-title {
  color: var(--primary-pink);
}

.blog-excerpt {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.7;
  font-size: 15px;
}

/* Blog Link */
.blog-link {
  color: var(--primary-pink);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition-base);
  font-size: 15px;
}

.blog-link:hover {
  gap: 10px;
  color: var(--primary-pink-dark);
}

.blog-link i {
  font-size: 14px;
}

/* Blog Responsive */
@media (max-width: 768px) {
  .blog-image {
    height: 200px;
  }
  
  .blog-content {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# 15. Contact Section
--------------------------------------------------------------*/
.contact {
  padding: 80px 0;
  background: var(--secondary-cream);
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  transition: all var(--transition-base);
  border: 1px solid var(--primary-pink-light);
  box-shadow: var(--shadow-soft);
}

.contact-info-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-pink);
  box-shadow: var(--shadow-medium);
}

.contact-info-card i {
  font-size: 48px;
  color: var(--primary-pink);
  margin-bottom: 20px;
  transition: var(--transition-base);
}

.contact-info-card:hover i {
  transform: scale(1.1);
}

.contact-info-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.contact-info-card p {
  color: var(--text-light);
  margin: 5px 0;
  line-height: 1.6;
  font-size: 16px;
}

/* Map Container */
.map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-hard);
  margin-top: 50px;
  border: 5px solid var(--white);
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 400px;
  transition: var(--transition-base);
}

.map-container:hover iframe {
  filter: brightness(0.95);
}

/* Contact Responsive */
@media (max-width: 768px) {
  .contact-info-card {
    margin-bottom: 30px;
  }
  
  .map-container {
    margin-top: 30px;
  }
  
  .map-container iframe {
    height: 300px;
  }
}

/*--------------------------------------------------------------
# 16. Footer
--------------------------------------------------------------*/
.footer {
  background: var(--charcoal-grey);
  color: var(--white);
  padding: 60px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 165, 165, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.footer h4 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--primary-pink);
}

.footer p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 15px;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}

.footer-links a:hover {
  color: var(--primary-pink);
  transform: translateX(5px);
}

.footer-links i {
  font-size: 14px;
  color: var(--primary-pink);
}

/* Social Links */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  transition: all var(--transition-base);
  text-decoration: none;
  border: 1px solid transparent;
}

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

/* Newsletter Form */
.footer .input-group {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 12px 15px;
  border-radius: var(--radius-pill) 0 0 var(--radius-pill);
}

.footer .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer .form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary-pink);
}

.footer .btn-primary {
  padding: 12px 25px;
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  background: var(--primary-pink);
  border: none;
  color: var(--white);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-base);
}

.footer .btn-primary:hover {
  background: var(--primary-pink-dark);
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  margin: 5px 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.footer-bottom p:last-child {
  margin-top: 10px;
}

/* Footer Responsive */
@media (max-width: 768px) {
  .footer [class*="col-"] {
    margin-bottom: 40px;
  }
  
  .footer .col-lg-4:last-child {
    margin-bottom: 0;
  }
  
  .footer h4 {
    margin-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# 17. WhatsApp & Scroll Buttons
--------------------------------------------------------------*/
/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 65px;
  height: 65px;
  background: #25D366;
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 35px;
  box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
  z-index: var(--z-fixed);
  transition: all var(--transition-base);
  text-decoration: none;
  border: 2px solid var(--white);
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
  background: #128C7E;
  color: var(--white);
  box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
  transition: var(--transition-base);
}

.whatsapp-float:hover i {
  transform: scale(1.1);
}

/* Scroll Top Button */
.scroll-top {
  position: fixed;
  bottom: 110px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-pink);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  text-decoration: none;
  z-index: var(--z-fixed);
  border: 2px solid var(--white);
  box-shadow: 0 5px 20px rgba(212, 165, 165, 0.4);
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 110px;
}

.scroll-top:hover {
  background: var(--primary-pink-dark);
  color: var(--white);
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(212, 165, 165, 0.5);
}

/* Button Responsive */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    font-size: 30px;
    bottom: 20px;
    right: 20px;
  }
  
  .scroll-top {
    width: 45px;
    height: 45px;
    font-size: 20px;
    bottom: 90px;
    right: 20px;
  }
  
  .scroll-top.active {
    bottom: 90px;
  }
}

/*--------------------------------------------------------------
# 18. Animations
--------------------------------------------------------------*/
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

/* Animation Classes */
.fadeInUp {
  animation: fadeInUp 0.6s ease forwards;
}

.fadeInDown {
  animation: fadeInDown 0.6s ease forwards;
}

.fadeInLeft {
  animation: fadeInLeft 0.6s ease forwards;
}

.fadeInRight {
  animation: fadeInRight 0.6s ease forwards;
}

.zoomIn {
  animation: zoomIn 0.6s ease forwards;
}

.pulse {
  animation: pulse 2s infinite;
}

/*--------------------------------------------------------------
# 19. Mobile Responsive
--------------------------------------------------------------*/
/* Extra Large Devices (1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Large Devices (992px to 1199px) */
@media (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
  
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Medium Devices (768px to 991px) */
@media (max-width: 991px) {
  .container {
    max-width: 720px;
  }
  
  .section-title p {
    font-size: 32px;
  }
  
  .feature-box {
    margin-bottom: 30px;
  }
  
  .price-card {
    margin-bottom: 30px;
  }
  
  .price-card.popular {
    transform: scale(1);
  }
  
  .price-card.popular:hover {
    transform: translateY(-10px);
  }
  
  .blog-card {
    margin-bottom: 30px;
  }
}

/* Small Devices (576px to 767px) */
@media (max-width: 767px) {
  .container {
    max-width: 540px;
  }
  
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .hero h1 span::after {
    height: 4px;
  }
  
  .service-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .testimonial-card {
    margin: 10px 0;
  }
}

/* Extra Small Devices (less than 576px) */
@media (max-width: 575px) {
  .container {
    padding: 0 20px;
  }
  
  .section-title p {
    font-size: 26px;
  }
  
  .feature-box {
    padding: 30px 20px;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .price-card {
    padding: 30px 20px;
  }
  
  .price-card .price .amount {
    font-size: 40px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info-card {
    padding: 30px 20px;
  }
  
  .map-container iframe {
    height: 250px;
  }
}

/*--------------------------------------------------------------
# 20. Utility Classes
--------------------------------------------------------------*/
/* Spacing Utilities */
.m-0 { margin: 0; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.ml-0 { margin-left: 0; }
.mr-0 { margin-right: 0; }

.m-1 { margin: 5px; }
.mt-1 { margin-top: 5px; }
.mb-1 { margin-bottom: 5px; }
.ml-1 { margin-left: 5px; }
.mr-1 { margin-right: 5px; }

.m-2 { margin: 10px; }
.mt-2 { margin-top: 10px; }
.mb-2 { margin-bottom: 10px; }
.ml-2 { margin-left: 10px; }
.mr-2 { margin-right: 10px; }

.m-3 { margin: 15px; }
.mt-3 { margin-top: 15px; }
.mb-3 { margin-bottom: 15px; }
.ml-3 { margin-left: 15px; }
.mr-3 { margin-right: 15px; }

.m-4 { margin: 20px; }
.mt-4 { margin-top: 20px; }
.mb-4 { margin-bottom: 20px; }
.ml-4 { margin-left: 20px; }
.mr-4 { margin-right: 20px; }

.m-5 { margin: 30px; }
.mt-5 { margin-top: 30px; }
.mb-5 { margin-bottom: 30px; }
.ml-5 { margin-left: 30px; }
.mr-5 { margin-right: 30px; }

/* Padding Utilities */
.p-0 { padding: 0; }
.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }
.pl-0 { padding-left: 0; }
.pr-0 { padding-right: 0; }

.p-1 { padding: 5px; }
.pt-1 { padding-top: 5px; }
.pb-1 { padding-bottom: 5px; }
.pl-1 { padding-left: 5px; }
.pr-1 { padding-right: 5px; }

.p-2 { padding: 10px; }
.pt-2 { padding-top: 10px; }
.pb-2 { padding-bottom: 10px; }
.pl-2 { padding-left: 10px; }
.pr-2 { padding-right: 10px; }

.p-3 { padding: 15px; }
.pt-3 { padding-top: 15px; }
.pb-3 { padding-bottom: 15px; }
.pl-3 { padding-left: 15px; }
.pr-3 { padding-right: 15px; }

.p-4 { padding: 20px; }
.pt-4 { padding-top: 20px; }
.pb-4 { padding-bottom: 20px; }
.pl-4 { padding-left: 20px; }
.pr-4 { padding-right: 20px; }

.p-5 { padding: 30px; }
.pt-5 { padding-top: 30px; }
.pb-5 { padding-bottom: 30px; }
.pl-5 { padding-left: 30px; }
.pr-5 { padding-right: 30px; }

/* Display Utilities */
.d-none { display: none; }
.d-block { display: block; }
.d-inline { display: inline; }
.d-inline-block { display: inline-block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

/* Flex Utilities */
.flex-row { flex-direction: row; }
.flex-column { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }
.justify-content-start { justify-content: flex-start; }
.justify-content-end { justify-content: flex-end; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.justify-content-around { justify-content: space-around; }
.align-items-start { align-items: flex-start; }
.align-items-end { align-items: flex-end; }
.align-items-center { align-items: center; }
.align-items-stretch { align-items: stretch; }

/* Text Utilities */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }
.text-uppercase { text-transform: uppercase; }
.text-lowercase { text-transform: lowercase; }
.text-capitalize { text-transform: capitalize; }
.font-weight-light { font-weight: 300; }
.font-weight-normal { font-weight: 400; }
.font-weight-medium { font-weight: 500; }
.font-weight-bold { font-weight: 700; }
.font-italic { font-style: italic; }

/* Color Utilities */
.text-white { color: var(--white); }
.text-dark { color: var(--text-dark); }
.text-soft { color: var(--text-soft); }
.text-light { color: var(--text-light); }
.text-primary { color: var(--primary-pink); }

.bg-white { background-color: var(--white); }
.bg-cream { background-color: var(--secondary-cream); }
.bg-blush { background-color: var(--secondary-blush); }
.bg-primary { background-color: var(--primary-pink); }
.bg-primary-light { background-color: var(--primary-pink-light); }
.bg-charcoal { background-color: var(--charcoal-grey); }

/* Border Utilities */
.border-none { border: none; }
.border { border: 1px solid var(--primary-pink-light); }
.border-top { border-top: 1px solid var(--primary-pink-light); }
.border-bottom { border-bottom: 1px solid var(--primary-pink-light); }
.border-primary { border-color: var(--primary-pink); }

.rounded-sm { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-circle { border-radius: var(--radius-circle); }
.rounded-pill { border-radius: var(--radius-pill); }

/* Shadow Utilities */
.shadow-none { box-shadow: none; }
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-soft { box-shadow: var(--shadow-soft); }
.shadow-medium { box-shadow: var(--shadow-medium); }
.shadow-hard { box-shadow: var(--shadow-hard); }

/* Width Utilities */
.w-100 { width: 100%; }
.w-75 { width: 75%; }
.w-50 { width: 50%; }
.w-25 { width: 25%; }
.w-auto { width: auto; }

/* Height Utilities */
.h-100 { height: 100%; }
.h-75 { height: 75%; }
.h-50 { height: 50%; }
.h-25 { height: 25%; }
.h-auto { height: auto; }

/* Position Utilities */
.position-relative { position: relative; }
.position-absolute { position: absolute; }
.position-fixed { position: fixed; }
.position-sticky { position: sticky; }

/* Z-index Utilities */
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

/* Overflow Utilities */
.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }
.overflow-scroll { overflow: scroll; }
.overflow-visible { overflow: visible; }

/* Cursor Utilities */
.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }
.cursor-not-allowed { cursor: not-allowed; }

/* Opacity Utilities */
.opacity-0 { opacity: 0; }
.opacity-25 { opacity: 0.25; }
.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }
.opacity-100 { opacity: 1; }

/* Transition Utilities */
.transition-base { transition: var(--transition-base); }
.transition-fast { transition: var(--transition-fast); }
.transition-slow { transition: var(--transition-slow); }

/* Hover Utilities */
.hover-scale:hover {
  transform: scale(1.05);
  transition: var(--transition-base);
}

.hover-lift:hover {
  transform: translateY(-5px);
  transition: var(--transition-base);
}

.hover-shadow:hover {
  box-shadow: var(--shadow-medium);
  transition: var(--transition-base);
}

/* Current Year */
.current-year {
  display: inline-block;
}

/*--------------------------------------------------------------
# 21. Print Styles
--------------------------------------------------------------*/
@media print {
  .header,
  .footer,
  .whatsapp-float,
  .scroll-top,
  .btn-book,
  .hero-buttons,
  .booking,
  .hero-video-wrapper,
  .video-overlay {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
    font-size: 12pt;
  }
  
  .container {
    max-width: 100%;
    padding: 0;
  }
  
  a {
    text-decoration: underline;
    color: black;
  }
  
  h1, h2, h3, h4, h5, h6 {
    color: black;
    page-break-after: avoid;
  }
  
  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }
  
  .hero {
    min-height: auto;
    padding: 20px 0;
    background: none !important;
    color: black;
  }
  
  .hero h1, .hero p, .hero h4 {
    color: black !important;
    text-shadow: none;
  }
  
  .hero h1 span {
    color: black !important;
  }
  
  @page {
    margin: 2cm;
  }
}

/*--------------------------------------------------------------
# 22. Placeholder Styles (Temporary - Remove when images are added)
--------------------------------------------------------------*/
.about-image img:not([src]), 
.about-image img[src=""],
.gallery-item img:not([src]), 
.gallery-item img[src=""],
.blog-image img:not([src]), 
.blog-image img[src=""],
.author-image img:not([src]), 
.author-image img[src=""] {
  background: linear-gradient(135deg, var(--primary-pink-light), var(--primary-pink));
  min-height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: bold;
}

.about-image img:not([src])::after, 
.about-image img[src=""]::after {
  content: "Image Coming Soon";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-size: 14px;
}