:root {
  --beige: #E8D5C4;
  --beige-light: #F5E6D3;
  --salmon-primary: #FF8C94;
  --salmon-medium: #FFB3BA;
  --salmon-light: #FFD1D4;
  --salmon-dark: #FF6B9D;
  --salmon-pink: #FF8C94;
  --dark-gold: #C4A372;
  /* Hot pink & bright accents (no green) */
  --hot-pink: #FF1493;
  --hot-pink-light: #FF69B4;
  --hot-pink-soft: #FF85A2;
  --bright-gold: #FFD700;
  --gold-rich: #D4AF37;
  --gold-amber: #F5B041;
  --coral: #FF6B6B;
  --rose-gold: #E8B4B8;
  /* Legacy variable names for compatibility - now mapped to new colors */
  --gold: #E8D5C4;
  --gold-light: #F5E6D3;
  --dark-gray: #FF8C94;
  --medium-gray: #FFB3BA;
  --light-gray: #FFD1D4;
  --red-dark: #FF6B9D;
  --red-medium: #FF8C94;
  --red-primary: #FF8C94;
}



/* Global typography */
body {
  font-family: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-weight: 600;
}

/* Shiny Gold Effect for Headers - Brighter Gold + Hot Pink hint */
.shiny-gold {
  background: linear-gradient(135deg, #B8860B 0%, #FFD700 20%, #D4AF37 40%, #FF69B4 50%, #D4AF37 60%, #FFD700 80%, #B8860B 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.5),
               0 0 60px rgba(255, 105, 180, 0.25),
               0 0 90px rgba(212, 175, 55, 0.3);
  animation: shine 3s linear infinite;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
  color: transparent !important;
}

@keyframes shine {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

/* Dark gold for headings except in hero/white text sections */
.hero-intro h1,
.hero-intro h2,
.hero-intro h3,
.text-white h1,
.text-white h2,
.text-white h3 {
  color: white !important;
}

section:not(.hero-intro) h1,
section:not(.hero-intro) h2,
section:not(.hero-intro) h3,
section:not(.hero-intro) h4,
section:not(.hero-intro) h5 {
  color: var(--gold-rich) !important;
}

.gold-gradient {
  background: linear-gradient(135deg, #E8D5C4 0%, #F5E6D3 50%, #E8D5C4 100%);
}

/* Ticker banner before Our Work */
.ticker-banner-wrapper {
  background-color: transparent;
  padding: 0;
}

.ticker-banner {
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--bright-gold);
  border-bottom: 3px solid var(--bright-gold);
  background-color: var(--hot-pink);
  box-shadow: 0 8px 20px rgba(255, 20, 147, 0.35), 0 0 16px rgba(255, 215, 0, 0.35);
}

.ticker-track {
  display: inline-block;
  white-space: nowrap;
  padding: 0.6rem 0;
  animation: ticker-scroll 30s linear infinite;
}

.ticker-track span {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 25px;
  color: #ffffff;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-card {
  transition: all 0.3s ease;
}

.nav-link {
  color: white !important;
  font-size: 20px;
  position: relative;
}

/* Override nav colors inside mobile offcanvas menu */
.offcanvas .nav-link {
  color: var(--hot-pink) !important;
  font-size: 18px;
  font-family: 'Playfair Display', 'Times New Roman', serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.offcanvas .nav-link:hover,
.offcanvas .nav-link:focus {
  color: var(--bright-gold) !important;
}

@media (max-width: 600px) {
.nav-link {
    color: white !important;
    font-size: 20px;
  position: relative;
}
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background: linear-gradient(90deg, var(--hot-pink-light), var(--bright-gold));
  transition: width 0.3s ease;
}

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

.navbar.scrolled {
  background-color: rgba(232, 213, 196, 0.95) !important;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.navbar.scrolled .nav-link {
  color: black !important;
}

.navbar.scrolled .navbar-brand, .navbar.scrolled .btn {
  color: var(--gold-rich) !important;
}

.navbar.scrolled .navbar-toggler-icon {
  filter: invert(0%) !important;
}

.navbar .navbar-toggler-icon {
  transition: filter 0.3s ease;
}

/* Navbar Default - Transparent */
.navbar {
  background-color: transparent !important;
  padding: 15px 0;
  border-bottom: none !important;
}

.navbar-brand {
  color: white !important;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.75rem;
  letter-spacing: 2px;
}

.navbar-brand:hover {
  color: var(--gold) !important;
  text-decoration: none;
}

/* Text Logo Styling */
.text-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  transition: all 0.3s ease;
}

.logo-number {
  color: var(--bright-gold);
  font-size: 2rem;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.6), 0 0 20px rgba(255, 105, 180, 0.2);
  font-family: 'Playfair Display', 'Times New Roman', serif;
}

.logo-text {
  color: white;
  font-size: 1.75rem;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  font-family: 'Playfair Display', 'Times New Roman', serif;
}

.navbar-brand:hover .logo-number {
  color: var(--bright-gold);
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.9), 0 0 25px rgba(255, 20, 147, 0.3);
}

.navbar-brand:hover .logo-text {
  color: var(--hot-pink-light);
  text-shadow: 0 2px 8px rgba(255, 105, 180, 0.5);
}

.navbar-toggler {
  border-color: var(--gold);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28232, 213, 196, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.overlay {
  background-color: rgba(255, 140, 148, 0);
  opacity: 0;
  transition: all 0.3s ease;
}

.position-relative:hover .overlay {
  background: linear-gradient(135deg, rgba(255, 20, 147, 0.6), rgba(255, 215, 0, 0.25));
  opacity: 1;
}

.navbar.scroll-active {
  background-color: rgba(232, 213, 196, 0.95) !important;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 10px rgba(196, 163, 114, 0.3);
}

.navbar.scroll-active .nav-link {
  color: black !important;
}

.navbar.scroll-active .nav-link:hover,
.navbar.scroll-active .nav-link.active {
  color: black !important;
}

.navbar.scroll-active .navbar-brand {
  color: var(--gold-rich) !important;
}

.navbar.scroll-active .navbar-toggler-icon {
  filter: brightness(0) invert(0);
}

.navbar-nav .nav-link.active, .navbar-nav .show > .nav-link {
  color: white !important;
}

.navbar.scrolled .nav-link.active, .navbar.scrolled .nav-link:hover {
  color: black !important;
}

.nav-link:focus, .nav-link:hover {
  color: white !important;
}

.navbar.scrolled .nav-link:focus, .navbar.scrolled .nav-link:hover {
  color: black !important;
}

.btn-gold {
  background: linear-gradient(135deg, var(--hot-pink) 0%, var(--hot-pink-light) 50%, var(--salmon-dark) 100%);
  color: white;
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(255, 20, 147, 0.4);
}

.btn-gold:hover {
  color: white;
  background: linear-gradient(135deg, var(--hot-pink-light) 0%, var(--bright-gold) 50%, var(--hot-pink) 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.35), 0 4px 15px rgba(255, 105, 180, 0.4);
}

.service-card {
  background-color: white;
  border: 2px solid var(--hot-pink-soft);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.4s;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(255, 105, 180, 0.25), 0 8px 25px rgba(255, 215, 0, 0.15), inset 0 0 0 1px rgba(255, 215, 0, 0.2);
  height: 100%;
  color: black;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(255, 20, 147, 0.25), 0 10px 30px rgba(255, 215, 0, 0.2);
}

.service-icon {
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--hot-pink), var(--bright-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  transition: transform 0.5s;
}

.service-card:hover .service-icon {
  transform: rotateY(180deg);
}

.service-title {
  color: black !important;
  font-size: 1.5rem;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
}

.service-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--hot-pink-light), var(--bright-gold));
  border-radius: 2px;
}

.price {
  color: var(--gold-rich);
  font-weight: 600;
  font-size: 1.2rem;
  margin: 15px 0;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.price-range {
  font-size: 0.9rem;
  color: black;
}

.testimonial {
  background: linear-gradient(145deg, var(--hot-pink-soft) 0%, var(--salmon-medium) 50%, rgba(255, 215, 0, 0.15) 100%);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(255, 20, 147, 0.25), 0 4px 15px rgba(255, 215, 0, 0.15);
  margin-bottom: 30px;
  position: relative;
  color: white;
  border: 1px solid rgba(255, 215, 0, 0.4);
}

.testimonial::before {
  content: '\201C';
  font-family: Georgia, serif;
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 5rem;
  color: rgba(232, 213, 196, 0.2);
  line-height: 1;
}

.client-info {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.client-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hot-pink-light), var(--bright-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(255, 105, 180, 0.4);
}

.client-name {
  font-weight: 600;
  margin-bottom: 5px;
}

.section-title {
  font-size: 2.5rem;
  position: relative;
  margin-bottom: 50px;
  padding-bottom: 20px;
  text-align: center;
  color: var(--gold-rich) !important;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--hot-pink-light), var(--bright-gold), var(--hot-pink-light), transparent);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(255, 105, 180, 0.4);
}

.section {
  padding: 80px 0;
  background-color: white;
  color: black;
}

.section:not(.bg-gray):not(.bg-gray-dark):not(.bg-gray-medium) h1,
.section:not(.bg-gray):not(.bg-gray-dark):not(.bg-gray-medium) h2,
.section:not(.bg-gray):not(.bg-gray-dark):not(.bg-gray-medium) h3,
.section:not(.bg-gray):not(.bg-gray-dark):not(.bg-gray-medium) h4,
.section:not(.bg-gray):not(.bg-gray-dark):not(.bg-gray-medium) h5,
.section:not(.bg-gray):not(.bg-gray-dark):not(.bg-gray-medium) p,
.section:not(.bg-gray):not(.bg-gray-dark):not(.bg-gray-medium) span,
.section:not(.bg-gray):not(.bg-gray-dark):not(.bg-gray-medium) li {
  color: black !important;
}

.section#services h1,
.section#services h2,
.section#services h3,
.section#services p,
.section#services span,
.section#services li {
  color: black !important;
}

.bg-gray {
  background-color: var(--beige) !important;
  color: black !important;
}

.section.bg-gray h1,
.section.bg-gray h2,
.section.bg-gray h3,
.section.bg-gray h4,
.section.bg-gray h5,
.section.bg-gray p,
.section.bg-gray span,
.section.bg-gray li {
  color: white !important;
}

.bg-gray-dark {
  background-color: var(--beige-light) !important;
  color: black !important;
}

.bg-gray-light {
  background-color: var(--beige-light) !important;
  color: black !important;
}

.bg-gray-medium {
  background-color: var(--beige) !important;
  color: black !important;
}

.bg-gray-medium h1,
.bg-gray-medium h2,
.bg-gray-medium h3,
.bg-gray-medium h4,
.bg-gray-medium h5,
.bg-gray-medium h6,
.bg-gray-medium p,
.bg-gray-medium span,
.bg-gray-medium label,
.bg-gray-medium .text-dark,
.bg-gray-medium .text-secondary {
  color: black !important;
}

.bg-gray-medium .text-gold-light,
.bg-gray-medium .text-gold-medium {
  color: white !important;
}

/* Contact info round icon circles (address / phone / payment / hours, plus follow-us icons) */
.bg-gray-medium .bg-salmon-primary i {
  color: var(--hot-pink) !important;
}

.bg-dark {
  background-color: var(--dark-gray);
  color: white;
}

footer {
  background-color: var(--dark-gray);
  color: rgb(19, 19, 19);
  padding: 50px 0 20px;
  border-top: 2px solid var(--gold);
}

.footer-title {
  color: #b69112;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.footer-links a {
  color: rgb(19, 19, 19);
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  transition: color 0.3s;
}

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

.footer-links i {
  color: var(--hot-pink);
  margin-right: 6px;
}

.social-icons a {
  color: var(--hot-pink);
  font-size: 1.5rem;
  margin-right: 15px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: var(--hot-pink-light);
}

.copyright {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.payment-methods i,
.payment-methods .fab {
  color: var(--hot-pink) !important;
  transition: color 0.3s;
}

.payment-methods i:hover,
.payment-methods .fab:hover {
  color: var(--hot-pink-light) !important;
}

.socials-btn i {
  color: var(--hot-pink);
}

.socials-btn:hover i {
  color: var(--hot-pink-light);
}

.text-dark-700 {
  color: white !important;
}

.booking-cta {
  background: linear-gradient(rgba(232, 213, 196, 0.836), rgba(245, 230, 211, 0.664)), url('../img/bg-3.jpg') center center;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.booking-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--hot-pink-light), var(--bright-gold), var(--hot-pink), var(--bright-gold), transparent);
  box-shadow: 0 0 15px rgba(255, 105, 180, 0.5);
}

.booking-cta::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--hot-pink-light), var(--bright-gold), var(--hot-pink), var(--bright-gold), transparent);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.booking-cta h2 {
  color: var(--gold-rich);
  margin-bottom: 25px;
  font-size: 2.5rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15), 0 0 20px rgba(255, 215, 0, 0.2);
}

.booking-cta p {
  color: #333;
  margin-bottom: 35px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
  line-height: 1.6;
}

.booking-cta .btn {
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(255, 20, 147, 0.35), 0 2px 10px rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
}

.booking-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 105, 180, 0.5), 0 4px 15px rgba(255, 215, 0, 0.35);
}

.category-tabs {
  margin-bottom: 40px;
}

.category-tabs .nav-link {
  color: black !important;
  border: none;
  padding: 15px 25px;
  font-weight: 500;
  border-radius: 0;
  position: relative;
  transition: all 0.3s;
}

.category-tabs .nav-link.active {
  color: var(--hot-pink) !important;
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.15), rgba(255, 215, 0, 0.1));
  font-weight: 600;
}

.category-tabs .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--hot-pink-light), var(--bright-gold));
  transition: all 0.3s;
  transform: translateX(-50%);
}

.category-tabs .nav-link.active::after {
  width: 80%;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.gold-divider {
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--hot-pink-light), var(--bright-gold), var(--hot-pink-light), transparent);
  margin: 40px auto;
  width: 50%;
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(255, 105, 180, 0.3);
}

.service-detail {
  display: none;
  padding: 20px;
  background: linear-gradient(180deg, rgba(255, 20, 147, 0.9) 0%, rgba(255, 105, 180, 0.85) 100%);
  border-radius: 0 0 10px 10px;
  border-top: 2px solid var(--bright-gold);
  color: white !important;
  box-shadow: inset 0 0 20px rgba(255, 215, 0, 0.1);
}

.service-detail p,
.service-detail ul,
.service-detail li {
  color: white !important;
}

.service-card.expanded .service-detail {
  display: block;
}

.service-card .card-body {
  padding: 25px;
  text-align: center;
}

.service-description {
  color: black !important;
  margin-bottom: 15px;
}

.badge-gold {
  background: linear-gradient(135deg, var(--hot-pink-light) 0%, var(--bright-gold) 100%);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-bottom: 15px;
  display: inline-block;
  box-shadow: 0 2px 10px rgba(255, 105, 180, 0.4);
}

.time-duration {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.time-duration i {
  margin-right: 5px;
  color: var(--bright-gold);
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border: 2px solid rgba(255, 105, 180, 0.35);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
}

.shape-1 {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 10%;
  animation: float 8s infinite ease-in-out;
}

.shape-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 10%;
  animation: float 12s infinite ease-in-out;
}

.shape-3 {
  width: 70px;
  height: 70px;
  bottom: 20%;
  left: 20%;
  animation: float 10s infinite ease-in-out;
}

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

.service-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 10px 10px 0 0;
}

.nail-art-image {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='200' viewBox='0 0 400 200'%3E%3Crect width='400' height='200' fill='%23555555'/%3E%3Cpath d='M50,100 Q200,50 350,100' stroke='%23d4af37' stroke-width='5' fill='none'/%3E%3Ccircle cx='200' cy='100' r='50' fill='none' stroke='%23d4af37' stroke-width='2'/%3E%3Cpath d='M150,100 Q200,150 250,100' stroke='white' stroke-width='2' fill='none'/%3E%3C/svg%3E");
}

.manicure-image {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='200' viewBox='0 0 400 200'%3E%3Crect width='400' height='200' fill='%23555555'/%3E%3Cpath d='M100,50 L300,50 L300,150 L100,150 Z' fill='none' stroke='%23d4af37' stroke-width='3'/%3E%3Cpath d='M150,100 L250,100' stroke='white' stroke-width='3'/%3E%3Ccircle cx='150' cy='100' r='20' fill='white' opacity='0.5'/%3E%3Ccircle cx='250' cy='100' r='20' fill='white' opacity='0.5'/%3E%3C/svg%3E");
}

.pedicure-image {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='200' viewBox='0 0 400 200'%3E%3Crect width='400' height='200' fill='%23555555'/%3E%3Cpath d='M100,100 C150,50 250,50 300,100 C250,150 150,150 100,100 Z' fill='none' stroke='%23d4af37' stroke-width='3'/%3E%3Ccircle cx='200' cy='100' r='30' fill='none' stroke='white' stroke-width='2'/%3E%3Cpath d='M170,100 L230,100' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
}

.spa-image {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='200' viewBox='0 0 400 200'%3E%3Crect width='400' height='200' fill='%23555555'/%3E%3Ccircle cx='200' cy='100' r='70' fill='none' stroke='%23d4af37' stroke-width='3'/%3E%3Cpath d='M150,80 Q200,120 250,80' stroke='white' stroke-width='2' fill='none'/%3E%3Cpath d='M160,120 Q200,140 240,120' stroke='white' stroke-width='2' fill='none'/%3E%3C/svg%3E");
}

.waxing-image {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='200' viewBox='0 0 400 200'%3E%3Crect width='400' height='200' fill='%23555555'/%3E%3Cpath d='M100,50 L300,150' stroke='%23d4af37' stroke-width='5'/%3E%3Cpath d='M100,150 L300,50' stroke='%23d4af37' stroke-width='5'/%3E%3Ccircle cx='200' cy='100' r='40' fill='none' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
}

.packages-image {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='200' viewBox='0 0 400 200'%3E%3Crect width='400' height='200' fill='%23555555'/%3E%3Crect x='120' y='60' width='160' height='80' fill='none' stroke='%23d4af37' stroke-width='3'/%3E%3Cpath d='M120,60 L200,100 L280,60' stroke='%23d4af37' stroke-width='3' fill='none'/%3E%3Cpath d='M200,100 L200,140' stroke='%23d4af37' stroke-width='3'/%3E%3Ccircle cx='200' cy='100' r='20' fill='none' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
}

/* Hero Carousel Styles */
#heroCarousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#heroCarousel .carousel-item {
  transition: opacity 1s ease-in-out;
}

#heroCarousel .carousel-item > div {
  animation: zoomIn 10s ease-in-out infinite alternate;
  background-size: cover !important;
  background-position: center !important;
}

#heroCarousel .carousel-item.active > div {
  animation: zoomIn 10s ease-in-out infinite alternate;
}

@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

#heroCarousel .carousel-item.active {
  opacity: 1;
}

#heroCarousel .carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}

#heroCarousel .carousel-fade .carousel-item.active,
#heroCarousel .carousel-fade .carousel-item-next.carousel-item-start,
#heroCarousel .carousel-fade .carousel-item-prev.carousel-item-end {
  opacity: 1;
}

#heroCarousel .carousel-fade .active.carousel-item-start,
#heroCarousel .carousel-fade .active.carousel-item-end {
  opacity: 0;
}
