/* ===== CSS VARIABLES ===== */
:root {
  --primary-black: #000000;
  --dark-gray: #1a1a1a;
  --medium-gray: #2a2a2a;
  --light-gray: #3a3a3a;
  --gold-accent: #D4AF37;
  --warm-gold: #B8860B;
  --light-beige: #F5F1EB;
  --cream: #FDF8F3;
  --white: #ffffff;
  --text-light: #f8f8f8;
  --text-muted: #cccccc;
  
  /* Typography */
  --font-primary: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;
  
  /* Spacing */
  --section-padding: 100px 0;
  --container-padding: 0 20px;
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background-color: var(--primary-black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 80px; /* Account for fixed header */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--container-padding);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
}


/* ===== HEADER & NAVIGATION ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  width: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  position: relative;
  gap: 20px;
  flex-wrap: wrap;
  transition: var(--transition-smooth);
}

.navbar-brand {
  text-decoration: none;
  z-index: 1001;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
}

.logo-accent {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  color: var(--gold-accent);
  letter-spacing: 4px;
  margin-top: -5px;
}

/* Logo Image Styling */
.logo-image {
  height: 100%;
  width: auto;
  max-width: 300px;
  object-fit: contain;
  margin-bottom: 15px;
  transition: var(--transition-smooth);
}

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

.footer-logo-image {
  height: 100%;
  width: auto;
  max-width: 300px;
  object-fit: contain;
  margin-bottom: 15px;
  transition: var(--transition-smooth);
}

.footer-logo-image:hover {
  transform: scale(1.05);
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1;
  justify-content: center;
  transition: var(--transition-smooth);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  transition: var(--transition-smooth);
  position: relative;
}

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

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

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

.nav-link.active {
  color: var(--gold-accent);
}

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

.booking-btn {
  background: var(--light-beige);
  color: var(--primary-black);
  padding: 12px 24px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  border-radius: 0;
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.booking-btn::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--primary-black);
  transition: var(--transition-smooth);
}

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

.booking-btn:hover::before {
  background: var(--white);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10001;
  position: relative;
  padding: 8px;
}

/* Mobile menu button hover effect */
.mobile-menu-btn:hover span {
  background: var(--gold-accent);
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: var(--white);
  transition: var(--transition-smooth);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

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

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  transform: translateX(-100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  padding: 20px;
  overflow-y: auto;
  pointer-events: none;
}

.mobile-nav.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

/* Body scroll lock when mobile menu is open */
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

/* Ensure mobile menu covers everything */
.mobile-nav.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 300px;
}

/* Hide content behind mobile menu */
body.menu-open .hero-section,
body.menu-open .services-section,
body.menu-open .welcome-section,
body.menu-open .quote-section,
body.menu-open .gallery-section {
  filter: blur(2px);
  pointer-events: none;
}

.mobile-nav-link {
  color: var(--white);
  text-decoration: none;
  font-size: 22px;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(20px);
  opacity: 0;
  display: block;
  margin: 8px 0;
  text-align: center;
  padding: 8px 16px;
  border-radius: 4px;
  min-width: 200px;
}

.mobile-nav-link:hover {
  color: var(--gold-accent);
  transform: translateY(15px) scale(1.05);
}

.mobile-nav-link.active {
  color: var(--gold-accent);
  transform: translateY(15px) scale(1.05);
}

/* Mobile navigation animations */
@keyframes slideInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Mobile Navigation Exit Button */
.mobile-nav-exit {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100000;
  opacity: 0;
  transform: translateY(-20px);
  animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.mobile-nav-exit:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold-accent);
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.mobile-nav-exit:active {
  transform: scale(0.95) rotate(90deg);
}

.mobile-nav-exit i {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-exit:hover i {
  transform: rotate(90deg);
}

/* Staggered animation for mobile nav links */
.mobile-nav.active .mobile-nav-link {
  opacity: 1;
  transform: translateY(0);
  animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.mobile-nav.active .mobile-nav-exit { 
  opacity: 1;
  transform: translateY(0);
  animation-delay: 0.1s;
}

.mobile-nav.active .mobile-nav-link:nth-child(2) { animation-delay: 0.2s; }
.mobile-nav.active .mobile-nav-link:nth-child(3) { animation-delay: 0.3s; }
.mobile-nav.active .mobile-nav-link:nth-child(4) { animation-delay: 0.4s; }
.mobile-nav.active .mobile-nav-link:nth-child(5) { animation-delay: 0.5s; }
.mobile-nav.active .mobile-nav-link:nth-child(6) { animation-delay: 0.6s; }
.mobile-nav.active .mobile-nav-link:nth-child(7) { animation-delay: 0.7s; }
.mobile-nav.active .mobile-nav-link:nth-child(8) { animation-delay: 0.8s; }
.mobile-nav.active .mobile-booking-btn { 
  animation-delay: 0.9s;
  opacity: 1;
  transform: translateY(0);
}

.mobile-booking-btn {
  background: var(--light-beige);
  color: var(--primary-black);
  padding: 15px 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  border-radius: 25px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  transform: translateY(20px);
  opacity: 0;
  animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  min-width: 200px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.mobile-booking-btn::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--primary-black);
  transition: var(--transition-smooth);
}

.mobile-booking-btn:hover {
  background: var(--gold-accent);
  color: var(--white);
  transform: translateY(15px) scale(1.05);
}

.mobile-booking-btn:hover::before {
  background: var(--white);
}

/* Hero Social Icons */
.hero-social-icons {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 10;
}

.hero-social-icons .social-icon {
  width: 40px;
  height: 40px;
  background: transparent;
  color: var(--light-beige);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--light-beige);
  text-decoration: none;
  font-size: 16px;
  transition: var(--transition-smooth);
  position: relative;
  
}

.hero-social-icons .social-icon:hover {
  background: var(--light-beige);
  color: gold;
  transform: scale(1.05);
}

.hero-social-icons .social-icon::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border: 1px solid var(--light-beige);
  opacity: 0;
  transition: var(--transition-smooth);
}

.hero-social-icons .social-icon:hover::before {
  opacity: 1;
}

/* ===== HERO SECTION ===== */
.hero-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  color: var(--white);
  pointer-events: none;
  width: 100%;
  max-width: 800px;
  transition: none;
  animation: none;
  will-change: auto;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 20px;
  color: #D4AF37; /* Fallback color for browsers that don't support background-clip */
  background: linear-gradient(135deg, #F5F1EB 0%, #D4AF37 25%, #ffd05b 50%, #D4AF37 75%, #F5F1EB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
  transition: none;
  animation: none;
}

.hero-tagline {
  font-size: 24px;
  font-weight: 300;
  color: #F5F1EB; /* Fallback color for browsers that don't support background-clip */
  background: linear-gradient(135deg, #FDF8F3 0%, #D4AF37 50%, #FDF8F3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
  opacity: 0.95;
  transition: none;
  animation: none;
}

.hero-pagination {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  z-index: 10;
}

.pagination-dot {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
  opacity: 0.6;
}

.pagination-dot.active,
.pagination-dot:hover {
  opacity: 1;
  color: var(--gold-accent);
}

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

.services-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
  min-height: 500px;
}

.services-content {
  flex: 1;
  max-width: 1200px;
}

.services-title {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--light-beige);
  font-style: italic;
  margin-bottom: 20px;
  font-weight: 400;
}

.services-line {
  width: 60px;
  height: 2px;
  background: var(--gold-accent);
  margin-bottom: 30px;
}

.services-description {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 30px;
  line-height: 1.8;
}

.read-more-btn {
  color: var(--light-beige);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  transition: var(--transition-smooth);
}

.read-more-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -25px;
  width: 20px;
  height: 2px;
  background: var(--light-beige);
  transform: translateY(-50%);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.read-more-btn:hover {
  color: var(--gold-accent);
}

.read-more-btn:hover::before {
  left: -25px;
  width: calc(100% + 50px);
  background: var(--gold-accent);
}

/* Services Carousel */
.services-carousel {
  flex: 1;
  position: relative;
  max-width: 600px;
  overflow: hidden;
}

.carousel-navigation {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 20px;
  padding-right: 10px;
}

.services-cards {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  position: relative;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  width: 100%;
  max-width: 100%;
}

.services-cards::-webkit-scrollbar {
  display: none; /* WebKit */
}

.service-card {
  background: var(--medium-gray);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  width: 280px;
  min-width: 280px;
  max-width: 280px;
  flex-shrink: 0;
  flex-grow: 0;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.service-card.active {
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--white) inset;
}

/* Hover border animation */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 1;
}

.service-card:hover::before {
  border-color: var(--gold-accent);
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
}

.service-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

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

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

.service-content {
  padding: 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.service-content h3 {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

/* Carousel Navigation */
.carousel-arrow {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
}

.carousel-arrow:hover {
  background: var(--gold-accent);
  color: var(--primary-black);
  transform: scale(1.1);
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

/* ===== WELCOME SECTION ===== */
.welcome-section {
  padding: var(--section-padding);
  background: var(--primary-black);
}

.welcome-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-gray);
  border-radius: 12px;
  overflow: hidden;
}

.beau-photo-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

  
 
  /* Gallery Grid Mobile */
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    grid-template-rows: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  

.beau-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
}

.beau-text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  pointer-events: none;
}

.beau {
  display: block;
  font-size: 72px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 4px;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.for-today {
  display: block;
  font-size: 32px;
  font-style: italic;
  color: var(--gold-accent);
  font-family: var(--font-display);
  margin-bottom: 10px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.tiful {
  display: block;
  font-size: 72px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
  letter-spacing: 4px;
  text-shadow: none;
}

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

.content-wrapper {
  position: relative;
  width: 100%;
}

.welcome-header {
  margin-bottom: 2rem;
}

.welcome-to {
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.business-name {
  font-size: 36px;
  color: var(--white);
  font-family: var(--font-display);
  margin-bottom: 10px;
}

.tagline {
  font-size: 18px;
  color: var(--gold-accent);
  font-style: italic;
  margin-bottom: 30px;
}

.welcome-text {
  margin-bottom: 30px;
}

.welcome-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 15px;
}

.welcome-text strong {
  color: var(--gold-accent);
}

/* Side Decorative PNG Placeholder */
.side-decorative-placeholder {
  position: absolute;
  right: -169px;
  top: 50%;
  transform: translateY(-120%);
  z-index: 10;
}

.side-decorative-png {
  width: 150px;
  height: 200px;
  object-fit: contain;
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .welcome-content {
    padding-left: 0;
    margin-top: 30px;
  }
  
  .welcome-visual {
    height: 400px;
  }
  
  .business-name {
    font-size: 28px;
  }
  
  .side-decorative-placeholder {
    display: none;
  }
  
  .beau {
    font-size: 48px;
  }
  
  .tiful {
    font-size: 48px;
  }
  
  .for-today {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .welcome-visual {
    height: 300px;
  }
  
  .business-name {
    font-size: 24px;
  }
  
  .tagline {
    font-size: 16px;
  }
  
  .beau {
    font-size: 36px;
  }
  
  .tiful {
    font-size: 36px;
  }
  
  .for-today {
    font-size: 18px;
  }
}

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

.decorative-leaf {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.leaf-sprig {
  width: 30px;
  height: 30px;
  background: #4a7c59;
  border-radius: 50% 0;
  opacity: 0.7;
}

/* ===== QUOTE SECTION ===== */
.quote-section {
  padding: var(--section-padding);
  position: relative;
}

.quote-background {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.quote-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}

.quote-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 40px;
}

.quote-content blockquote {
  font-size: 24px;
  color: var(--white);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.quote-icon {
  font-size: 32px;
  color: var(--gold-accent);
}

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

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

.gallery-title {
  font-size: 36px;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.gallery-subtitle {
  font-size: 18px;
  color: var(--gold-accent);
  font-style: italic;
}

.gallery-carousel {
  position: relative;
  margin-bottom: 40px;
}

.gallery-slider {
  margin: 0 -10px;
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 0;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.gallery-slider::-webkit-scrollbar {
  display: none; /* WebKit */
}

.gallery-slide {
  padding: 0 10px;
  height: 300px;
  width: 300px;
  min-width: 300px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.gallery-slide img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: var(--transition-smooth);
  border-radius: 8px;
}

.gallery-slide:hover img {
  transform: scale(1.05);
}

  
  /* Gallery Grid Responsive */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 15px;
  }
  
  .gallery-item img {
    height: 200px;
  }

/* Gallery Grid for Homepage */
.gallery-grid {
   display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  grid-template-rows: repeat(2, 1fr) !important;
  gap: 20px !important;
  padding: 20px !important;
  max-width: 1200px !important;
  margin: 0 auto !important;

}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: var(--transition-smooth);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition-smooth);
  border-radius: 12px;
}

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


/* Slick Slider Custom Styles */
.slick-prev,
.slick-next {
  width: 50px;
  height: 50px;
  background: var(--light-beige);
  color: var(--primary-black);
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition-smooth);
  z-index: 10;
}

.slick-prev:hover,
.slick-next:hover {
  background: var(--gold-accent);
  color: var(--white);
  transform: scale(1.1);
}

.slick-prev {
  left: -25px;
}

.slick-next {
  right: -25px;
}

.slick-prev:before,
.slick-next:before {
  display: none;
}

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

.view-more-btn {
  background: var(--light-beige);
  color: var(--primary-black);
  padding: 15px 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: var(--transition-smooth);
  display: inline-block;
}

.view-more-btn:hover {
  background: var(--gold-accent);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== FLOATING ACTION BUTTONS ===== */
.floating-actions {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 100;
  align-items: center;
}

.floating-btn {
  width: 60px;
  height: 60px;
  background: var(--light-beige);
  color: var(--primary-black);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  font-size: 20px;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  position: relative;
}

.floating-btn:hover {
  background: var(--gold-accent);
  color: var(--white);
  transform: scale(1.1);
}

/* Promo Button with NEW Badge */
.promo-btn {
  background: var(--gold-accent);
  color: var(--primary-black);
  animation: promoGlow 2s ease-in-out infinite alternate;
  position: relative;
  overflow: visible;
  padding: 0;
}

.promo-btn:hover {
  background: var(--warm-gold);
  animation: none;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.promo-badge {
  position: absolute;
  top: -8px;
  left: -8px;
  background: #ff4444;
  color: white;
  font-size: 10px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 10px;
  line-height: 1;
  animation: badgePulse 1.5s ease-in-out infinite;
  box-shadow: 0 2px 8px rgba(255, 68, 68, 0.4);
  z-index: 10;
}

/* Promo Carousel Container */
.promo-carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.promo-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.promo-carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-carousel-item.active {
  opacity: 1;
}

.promo-carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Promo Glow Animation */
@keyframes promoGlow {
  0% {
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3), 0 0 20px rgba(212, 175, 55, 0.2);
  }
  100% {
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5), 0 0 30px rgba(212, 175, 55, 0.4);
  }
}

/* Badge Pulse Animation */
@keyframes badgePulse {
  0% {
    transform: scale(1);
    box-shadow: 0 2px 8px rgba(255, 68, 68, 0.4);
  }
  100% {
    transform: scale(1.1);
    box-shadow: 0 2px 12px rgba(255, 68, 68, 0.6);
  }
}

/* Coupons Link Glow Effect */
.coupons-link.has-promotions {
  color: var(--gold-accent) !important;
  animation: couponsGlow 2s ease-in-out infinite alternate;
  position: relative;
}

.coupons-link.has-promotions::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-accent);
  animation: couponsGlow 1s ease-in-out infinite alternate;
}

/* Coupons Glow Animation */
@keyframes couponsGlow {
  0% {
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
   
  }
  100% {
    text-shadow: 0 0 45px rgba(240, 190, 28, 0.842);
   
  }
}

/* Mobile Coupons Link Glow */
.mobile-nav-link.coupons-link.has-promotions {
  color: var(--gold-accent) !important;
  animation: couponsGlow 2s ease-in-out infinite alternate;
}

/* ===== POPUP PROMO STYLES ===== */

/* Modal Styles */
#promoModal .modal-content {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 90vw;
}

#promoModal .modal-header {
  background: var(--gold-accent);
  color: var(--primary-black);
  border: none;
  padding: 20px 25px;
}

#promoModal .modal-title {
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0;
}

#promoModal .btn-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-black);
  opacity: 0.7;
  transition: var(--transition-smooth);
}

#promoModal .btn-close:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Modal Image Styles */
.promo-link {
  display: block;
  text-decoration: none;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #eee;
}

.promo-link:last-child {
  border-bottom: none;
}

.promo-link:hover {
  text-decoration: none;
  background: rgba(212, 175, 55, 0.05);
}

.promo-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: var(--transition-smooth);
}

.promo-link:hover .promo-img {
  transform: scale(1.02);
}

#promoModal .modal-footer {
  background: var(--light-gray);
  border: none;
  padding: 20px 25px;
}

#promoModal .form-check-label {
  color: var(--primary-black);
  font-weight: 500;
  margin-left: 8px;
}

#promoModal .btn-primary {
  background: var(--gold-accent);
  border: none;
  color: var(--primary-black);
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 25px;
  transition: var(--transition-smooth);
}

#promoModal .btn-primary:hover {
  background: var(--warm-gold);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  #promoModal .modal-dialog {
    margin: 10px;
    max-width: calc(100vw - 20px);
  }
  
  .promo-img {
    height: 250px;
  }
  
  #promoCarousel .carousel-control-prev,
  #promoCarousel .carousel-control-next {
    width: 40px;
    height: 40px;
  }
  
  #promoCarousel .carousel-control-prev {
    left: 10px;
  }
  
  #promoCarousel .carousel-control-next {
    right: 10px;
  }
  
  #promoCarousel .carousel-control-prev-icon,
  #promoCarousel .carousel-control-next-icon {
    width: 16px;
    height: 16px;
  }
}

/* ===== GALLERY NO PHOTOS MESSAGE ===== */
.no-photos-message {
      display: flex;
      grid-column: 1 / -1;
      text-align: center;
      padding: 80px 20px;
      background: var(--light-gray);
      border-radius: 15px;
      margin: 20px 0;
      justify-content: center;
      flex-direction: column;
      align-items: center;
}

.no-photos-icon {
  font-size: 4rem;
  color: var(--gold-accent);
  margin-bottom: 20px;
  opacity: 0.7;
}

.no-photos-message h3 {
  font-size: 2rem;
  color: var(--primary-black);
  margin-bottom: 15px;
  font-weight: 700;
}

.no-photos-message p {
  font-size: 1.1rem;
  color: white;
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.no-photos-message .contact-btn {
  display: inline-block;
  background: var(--gold-accent);
  color: var(--primary-black);
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-smooth);
  border: 2px solid var(--gold-accent);
  max-width: 230px;
}

.no-photos-message .contact-btn:hover {
  background: transparent;
  color: var(--gold-accent);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Responsive Design for No Photos Message */
@media (max-width: 768px) {
  .no-photos-message {
    padding: 60px 15px;
    margin: 15px 0;
  }
  
  .no-photos-icon {
    font-size: 3rem;
    margin-bottom: 15px;
  }
  
  .no-photos-message h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }
  
  .no-photos-message p {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  
  .no-photos-message .contact-btn {
    padding: 10px 25px;
    font-size: 14px;
  }
}

/* ===== DROPDOWN MENU STYLES ===== */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.dropdown-icon {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--primary-black);
  border: 1px solid var(--gold-accent);
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 10px 0;
  margin-top: 5px;
  display: block;
  list-style: none;
}

.dropdown:hover .dropdown-menu,
.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 12px 20px;
  color: var(--light-beige);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition-smooth);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-accent);
  padding-left: 25px;
}

/* Mobile Dropdown Styles */
.mobile-dropdown {
  position: relative;
  width: 100%;
}

.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px 20px;
  color: var(--light-beige);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: var(--transition-smooth);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  border: none;
  cursor: pointer;
}

.mobile-dropdown-toggle:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-accent);
}

.mobile-dropdown-toggle .dropdown-icon {
  font-size: 12px;
  transition: transform 0.3s ease;
  margin-left: 8px;
}

.mobile-dropdown-toggle.active .dropdown-icon {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  background: rgba(0, 0, 0, 0.9);
  border-left: 3px solid var(--gold-accent);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  position: relative;
  z-index: 10;
}

.mobile-dropdown-menu.active {
  max-height: 200px;
}

.mobile-dropdown-item {
  display: block;
  padding: 12px 40px;
  color: var(--light-beige);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition-smooth);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.mobile-dropdown-item:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-accent);
  padding-left: 45px;
}

.mobile-dropdown-item:last-child {
  border-bottom: none;
}

.mobile-dropdown-item::before {
  content: '•';
  color: var(--gold-accent);
  position: absolute;
  left: 25px;
  opacity: 0;
  transition: var(--transition-smooth);
}

.mobile-dropdown-item:hover::before {
  opacity: 1;
}

/* Mobile Navigation Improvements */
.mobile-nav-link {
  position: relative;
  overflow: hidden;
}

.mobile-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold-accent);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

.mobile-booking-btn {
  background: var(--gold-accent);
  color: var(--primary-black);
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition-smooth);
  border: 2px solid var(--gold-accent);
  margin-top: 10px;
  text-align: center;
  min-width: 200px;
}

.mobile-booking-btn:hover {
  background: transparent;
  color: var(--gold-accent);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* ===== SOCIAL MEDIA ICONS ===== */
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  color: var(--gold-accent);
  border: 2px solid var(--gold-accent);
  border-radius: 50%;
  text-decoration: none;
  font-size: 16px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.social-icon:hover {
  background: var(--gold-accent);
  color: goldenrod;
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.social-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--primary-black);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.social-icon:hover::before {
  width: 100%;
  height: 100%;
}

.about-social-media {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.about-social-media span {
  font-weight: 600;
  color: var(--gold-accent);
  margin-right: 12px;
  font-size: 14px;
  letter-spacing: 1px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-gray);
  padding: 60px 0 20px;
}

/* Breadcrumb Navigation in Footer */
.breadcrumb-container {
  background: rgba(0, 0, 0, 0.3);
  padding: 15px 0;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
}

.breadcrumb {
  background: transparent;
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  justify-content: center;
}

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

.breadcrumb-item a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.breadcrumb-item a:hover {
  color: var(--gold-accent);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: var(--gold-accent);
  font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: var(--gold-accent);
  font-weight: bold;
  margin: 0 10px;
}

.footer-connect {
  text-align: center;
  margin-bottom: 50px;
}

.connect-title {
  font-size: 24px;
  color: var(--gold-accent);
  font-style: italic;
  margin-bottom: 20px;
}

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

.social-link {
  width: 50px;
  height: 50px;
  background: var(--medium-gray);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  font-size: 18px;
  transition: var(--transition-smooth);
}

.social-link:hover {
  background: var(--gold-accent);
  color: var(--white);
  transform: scale(1.1);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo .logo-text {
  font-size: 24px;
}

.footer-logo .logo-accent {
  font-size: 14px;
}

.footer-address p {
  color: var(--text-muted);
  margin-bottom: 10px;
}

.footer-address a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-address a:hover {
  color: var(--gold-accent);
}

.footer-title {
  font-size: 18px;
  color: var(--gold-accent);
  font-style: italic;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition-smooth);
}

.footer-link:hover {
  color: var(--gold-accent);
}

.footer-hours p {
  color: var(--text-muted);
  margin-bottom: 10px;
}

/* Footer Map Small */
.footer-map-small {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--gold-accent);
}

.footer-map-small iframe {
  display: block;
  width: 100%;
  height: 200px;
  border: none;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--medium-gray);
}

.copyright {
  color: var(--text-muted);
  font-size: 14px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  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 pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.8s ease-out;
}

.animate-fadeInLeft {
  animation: fadeInLeft 0.8s ease-out;
}

.animate-fadeInRight {
  animation: fadeInRight 0.8s ease-out;
}

.animate-pulse {
  animation: pulse 2s infinite;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
  .container {
    padding: 0 15px;
  }
  
  .services-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet and smaller screens */
@media (max-width: 1024px) {
  .navbar {
    gap: 15px;
    padding: 12px 0;
  }
  
  .navbar-nav {
    gap: 20px;
  }
  
  .nav-link {
    font-size: 14px;
  }
  
  /* Footer Tablet Centering */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  
  .footer-map-small iframe {
    height: 180px;
  }
  
  .footer-section,
  .footer-address,
  .footer-hours {
    text-align: center;
  }
  
  .footer-links {
    align-items: center;
  }
}

@media (max-width: 768px) {
  .navbar {
    gap: 10px;
    padding: 10px 0;
  }
  
  .navbar-nav {
    display: none;
  }
  
  .navbar-actions {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .logo-text {
    font-size: 24px;
  }
  
  .logo-accent {
    font-size: 10px;
  }
  
  .logo-image {
    height: 40px;
    max-width: 150px;
  }
  
  .footer-logo-image {
    height: 35px;
    max-width: 140px;
  }
  
  .hero-social-icons .social-icon {
    width: 35px;
    height: 35px;
    font-size: 14px;
    transform: translate(27px, -42px);
  }
  
  .services-wrapper {
    flex-direction: column;
    gap: 40px;
  }
  
  .services-content {
    text-align: center;
    max-width: 100%;
  }
  
  .services-carousel {
    max-width: 100%;
  }
  
  .services-cards {
    justify-content: flex-start;
  }
  
  .service-card {
    width: 250px;
    min-width: 250px;
    max-width: 250px;
  }
  
  .carousel-navigation {
    justify-content: center;
    margin-bottom: 15px;
    padding-right: 0;
  }
  
  .carousel-arrow {
    width: 35px;
    height: 35px;
  }
  
  .welcome-content {
    padding-left: 0;
    margin-top: 40px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .footer-section,
  .footer-address,
  .footer-hours {
    text-align: center;
  }
  
  .footer-links {
    align-items: center;
  }
  
  .floating-actions {
    right: 15px;
    bottom: 15px;
    gap: 12px;
  }
  
  .floating-btn {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }
  
  .promo-badge {
    font-size: 9px;
    padding: 1px 5px;
    top: -6px;
    left: -6px;
  }
  
  .promo-carousel-item img {
    border-radius: 50%;
  }
  
  .hero-pagination {
    bottom: 20px;
  }
  
  .hero-title {
    color: gold;
    font-size: 48px;
  }
  
  .hero-tagline {
    font-size: 18px;
  }
  
  .services-title {
    font-size: 36px;
  }
  
  .beau, .tiful {
    font-size: 48px;
  }
  
  .for-today {
    font-size: 24px;
  }
  
  .quote-content blockquote {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }
  
  .navbar {
    padding: 8px 0;
  }
  
  .logo-text {
    font-size: 20px;
  }
  
  .logo-accent {
    font-size: 8px;
  }
  
  .logo-image {
    height: 35px;
    max-width: 120px;
  }
  
  .footer-logo-image {
    height: 30px;
    max-width: 120px;
  }
  
  .mobile-nav-link {
    font-size: 20px;
    padding: 10px 20px;
    min-width: 180px;
  }
  
  .mobile-booking-btn {
    font-size: 16px;
    padding: 12px 25px;
    min-width: 180px;
  }
  
  .mobile-nav-exit {
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
  
  /* Footer Mobile Centering */
  .footer {
    padding: 40px 0 20px;
  }
  
  .breadcrumb-container {
    padding: 12px 0;
    margin-bottom: 25px;
  }
  
  .breadcrumb {
    font-size: 12px;
  }
  
  .breadcrumb-item + .breadcrumb-item::before {
    margin: 0 8px;
  }
  
  .footer-connect {
    margin-bottom: 30px;
  }
  
  .connect-title {
    font-size: 20px;
  }
  
  .footer-logo {
    margin-bottom: 15px;
  }
  
  .footer-logo .logo-text {
    font-size: 20px;
  }
  
  .footer-logo .logo-accent {
    font-size: 12px;
  }
  
  .footer-title {
    font-size: 16px;
    margin-bottom: 15px;
  }
  
  .footer-link {
    font-size: 13px;
  }
  
  .footer-address p,
  .footer-hours p {
    font-size: 13px;
  }
  
  .social-links {
    justify-content: center;
    gap: 15px;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .social-icon {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  
  .about-social-media {
    justify-content: center;
    margin-top: 20px;
  }
  
  .about-social-media span {
    font-size: 13px;
  }
  
  .services-title {
    font-size: 28px;
  }
  
  .beau, .tiful {
    font-size: 36px;
  }
  
  .for-today {
    font-size: 18px;
  }
  
  .business-name {
    font-size: 28px;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-tagline {
    font-size: 16px;
  }
  
  .gallery-slide {
    height: 250px;
    width: 250px;
    min-width: 250px;
  }
  
  .slick-prev {
    left: -15px;
  }
  
  .slick-next {
    right: -15px;
  }
  
  .slick-prev,
  .slick-next {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

/* ============================================
   BOOKING PAGE STYLES
   ============================================ */

/* Booking Section */
.booking-section {
  padding: 60px 0;
  background: var(--primary-black);
}

.booking-content {
  max-width: 1000px;
  margin: 0 auto;
}

.booking-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 2px solid var(--gold);
}

.booking-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.booking-description {
  font-size: 1.1rem;
  color: var(--light-gray);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.booking-details {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--medium-gray);
  border-radius: 25px;
  transition: var(--transition-smooth);
}

.detail-item:hover {
  background: var(--gold);
  color: var(--white);
}

.detail-item:hover i {
  color: var(--white);
}

.detail-item:hover span {
  color: var(--white);
}

.detail-item i {
  color: var(--gold);
  font-size: 1.1rem;
  width: 16px;
  text-align: center;
}

.detail-item span {
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
}

.detail-item a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.detail-item:hover a {
  color: var(--white);
}

.booking-widget {
  background: var(--white);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border: 2px solid var(--gold);
}

.booking-widget iframe {
  width: 100%;
  min-height: 700px;
  border: none;
  border-radius: 10px;
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

/* Page Header */
.page-header {
  padding: 217px 0 80px;
  background: linear-gradient(135deg, var(--dark-gray) 0%, var(--medium-gray) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* About Page Header Background */
.about-page .page-header {
  background: 
    linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(45, 45, 45, 0.8)),
    url('assets/img/home-1.jpg') center center/cover no-repeat;
}

/* Services Page Header Background */
.services-page .page-header {
  background: 
    linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(45, 45, 45, 0.8)),
    url('assets/img/home-2.jpg') center center/cover no-repeat;
}

/* Gallery Page Header Background */
.gallery-page .page-header {
  background: 
    linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(45, 45, 45, 0.8)),
    url('assets/img/home-3.jpg') center center/cover no-repeat;
}

/* Booking Page Header Background */
.booking-page .page-header {
  background: 
    linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(45, 45, 45, 0.8)),
    url('assets/img/home-4.jpg') center center/cover no-repeat;
}

/* Enhanced Page Header Styling */
.page-header {
  position: relative;
}

.page-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
  z-index: 1;
}

.page-header-content {
  position: relative;
  z-index: 2;
}

.page-title {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  margin-bottom: 1rem;
}

.page-subtitle {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.page-header-content {
  position: relative;
  z-index: 2;
  padding-top: 69px;
}

.page-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.page-subtitle {
  font-size: 1.2rem;
  color: lightgoldenrodyellow;
  font-weight: 300;
  letter-spacing: 1px;
}

/* About Section - Noir Nail Bar Inspired Design */
.about-section {
  padding: 0;
  background: #000;
  min-height: 100vh;
}

.about-visual {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  overflow: hidden;
}

.spa-background-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(45, 45, 45, 0.8)),
    url('assets/img/about-image.jpg') center center/cover no-repeat;
}

/* Beautiful Text Overlay */
.beautiful-text {
  position: relative;
  z-index: 10;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.beau {
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: -10px;
}

.for-today {
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold);
  font-style: italic;
  letter-spacing: 1px;
  margin: -5px 0 -10px 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.tiful {
  font-size: 4rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 2px #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: none;
  margin-top: -10px;
}

/* About Content */
.about-content {
  height: 100vh;
  background: #000;
  display: flex;
  align-items: center;
  padding: 0 60px;
}

.content-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
}

.about-header {
  margin-bottom: 2.5rem;
}

.welcome-to {
  font-size: 0.9rem;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 1rem;
}

.business-name {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.tagline {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--gold);
  font-style: italic;
  letter-spacing: 1px;
  margin-bottom: 0;
}

.about-text {
  line-height: 1.8;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

.about-text p {
  margin-bottom: 1.5rem;
}

.about-text strong {
  color: var(--gold);
  font-weight: 600;
}


/* Side Decorative Elements */
.decorative-side {
  position: absolute;
  right: -169px;
  top: 50%;
  transform: translateY(-120%);
}

.side-foliage {
  position: relative;
  width: 120px;
  height: 200px;
}

.side-leaf {
  position: absolute;
  width: 40px;
  height: 80px;
  background: linear-gradient(45deg, #2d5a27, #4a7c59);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  opacity: 0.9;
}

.side-leaf-1 {
  top: 10%;
  right: 20px;
  transform: rotate(-15deg);
}

.side-leaf-2 {
  top: 40%;
  right: 10px;
  transform: rotate(20deg);
}

.side-leaf-3 {
  bottom: 20%;
  right: 30px;
  transform: rotate(-25deg);
}

.spa-jar {
  position: absolute;
  bottom: 0;
  right: 40px;
}

.jar {
  width: 25px;
  height: 35px;
  background: #fff;
  border-radius: 3px;
  position: relative;
}

.jar::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -2px;
  right: -2px;
  height: 6px;
  background: #ccc;
  border-radius: 3px;
}

.stick {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 15px;
  background: #8b4513;
}

.dropper {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: #333;
  border-radius: 50%;
}

/* Story Section */
.story-section {
  padding: 100px 0;
  background: var(--light-gray);
}

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

.story-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: gold;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.story-line {
  width: 80px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 2rem;
}

.story-text {
  line-height: 1.8;
  color: var(--white);
  font-size: 1.1rem;
}

.story-text p {
  margin-bottom: 1.5rem;
}

/* Why Choose Us Section */
.why-choose-section {
  padding: 100px 0;
  background: var(--white);
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-line {
  width: 80px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto;
}

.feature-card {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2rem;
  border: 1px solid rgba(212, 175, 55, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-black), var(--dark-gray));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--gold);
  font-size: 2rem;
  transition: transform 0.3s ease;
}

.feature-icon i {
  color: var(--gold);
  font-size: 2rem;
  display: block;
}

.feature-icon:hover {
  transform: scale(1.1);
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.feature-description {
  color: var(--medium-gray);
  line-height: 1.6;
  font-size: 1rem;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Contact CTA Section */
.contact-cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark-gray) 0%, var(--medium-gray) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain2" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain2)"/></svg>');
  opacity: 0.3;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-description {
  font-size: 1.2rem;
  color: var(--light-gray);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-block;
  min-width: 200px;
  text-align: center;
}

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

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

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

.secondary-btn:hover {
  background: var(--white);
  color: var(--dark-gray);
  transform: translateY(-2px);
}

/* Responsive Design for Booking Page */
@media (max-width: 768px) {
  .booking-section {
    padding: 40px 0;
  }
  
  .booking-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
  }
  
  .booking-title {
    font-size: 1.8rem;
  }
  
  .booking-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .booking-details {
    gap: 15px;
    justify-content: center;
  }
  
  .detail-item {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
  
  .booking-widget {
    padding: 20px;
  }
  
  .booking-widget iframe {
    min-height: 600px;
  }
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
  .page-header {
    padding: 120px 0 60px;
  }
  
  .page-title {
    font-size: 2.5rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
  }
  
  /* About Section Mobile */
  .about-section .row {
    flex-direction: column;
  }
  
  .about-visual {
    height: 50vh;
    min-height: 400px;
  }
  
  .about-content {
    height: auto;
    padding: 60px 30px;
  }
  
  .beau {
    font-size: 3rem;
  }
  
  .tiful {
    font-size: 3rem;
  }
  
  .for-today {
    font-size: 1.4rem;
  }
  
  .business-name {
    font-size: 2.2rem;
  }
  
  .tagline {
    font-size: 1.1rem;
  }
  
  .decorative-side {
    display: none;
  }
  
  .story-title,
  .section-title {
    font-size: 2rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn {
    min-width: 250px;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
  
  /* Page Header Mobile Responsive */
  .page-header {
    padding: 120px 0 60px;
  }
  
  .page-title {
    font-size: 2.5rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .feature-icon i {
    font-size: 1.5rem;
  }
  
  .feature-title {
    font-size: 1.3rem;
  }
  
}

@media (max-width: 480px) {
  .page-header {
    padding: 100px 0 50px;
  }
  
  .page-title {
    font-size: 2rem;
  }
  
  .beau {
    font-size: 2.5rem;
  }
  
  .tiful {
    font-size: 2.5rem;
  }
  
  .for-today {
    font-size: 1.2rem;
  }
  
  .business-name {
    font-size: 1.8rem;
  }
  
  .about-content {
    padding: 40px 20px;
  }
  
  .about-text {
    font-size: 0.9rem;
  }
  
  /* Page Header Mobile Small Screens */
  .page-header {
    padding: 100px 0 50px;
  }
  
  .page-title {
    font-size: 2rem;
  }
  
  .page-subtitle {
    font-size: 0.9rem;
  }
}

.gallery-header { text-align: center; padding: 40px 0 20px; font-size: 2.5rem; color: #e9c1a5; }
    .filter-buttons { text-align: center; margin-bottom: 30px; }
    .filter-buttons a {
      display: inline-block;
      margin: 0 10px;
      padding: 10px 20px;
      border: 1px solid #e9c1a5;
      color: #e9c1a5;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    .filter-buttons a.active,
    .filter-buttons a:hover {
      background: #e9c1a5;
      color: #111;
    }
    .gallery-grid {
      display: grid;
      /*grid-template-columns: repeat(auto-fill);*/
      gap: 20px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }
    .gallery-grid img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-radius: 8px;
      cursor: pointer;
      transition: transform 0.3s ease;
    }
    .gallery-grid img:hover {
      transform: scale(1.05);
    }
    .pagination {
      text-align: center;
      margin: 30px 0;
    }
    .pagination a {
      margin: 0 5px;
      padding: 8px 14px;
      background: #222;
      color: #e9c1a5;
      text-decoration: none;
      border-radius: 5px;
      transition: all 0.3s ease;
    }
  .pagination a.active,
  .pagination a:hover {
    background: #e9c1a5;
    color: #111;
  }

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Contact Info Section */
.contact-info-section {
  padding: 80px 0;
  background: var(--dark-gray);
}

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

.contact-info-item {
  text-align: center;
  padding: 40px 20px;
  background: var(--medium-gray);
  border-radius: 12px;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
}

.contact-info-item:hover {
  transform: translateY(-5px);
  border-color: var(--gold-accent);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: var(--gold-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary-black);
  font-size: 24px;
}

.contact-info-item h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

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

.contact-info-item a {
  color: var(--gold-accent);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.contact-info-item a:hover {
  color: var(--white);
}

/* Map Section */
.map-section {
  padding: 0;
  background: var(--primary-black);
}

.map-section iframe {
  border-radius: 0;
  filter: grayscale(20%);
  transition: var(--transition-smooth);
}

.map-section iframe:hover {
  filter: grayscale(0%);
}

/* Contact Form Section */
.contact-form-section {
  padding: 80px 0;
  background: var(--primary-black);
}

.contact-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.contact-form-container {
  background: var(--medium-gray);
  border-radius: 15px;
  padding: 50px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-form-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-form-header h2 {
  color: var(--white);
  font-size: 32px;
  margin-bottom: 15px;
  font-weight: 600;
}

.contact-form-header p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
}

/* Form Styling */
.contact-form {
  margin-top: 30px;
}

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

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

.form-control {
  width: 100%;
  padding: 15px 20px;
  background: var(--dark-gray);
  border: 2px solid transparent;
  border-radius: 8px;
  color: var(--white);
  font-size: 16px;
  transition: var(--transition-smooth);
  font-family: var(--font-primary);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-accent);
  background: var(--light-gray);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

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

.form-control option {
  background: var(--dark-gray);
  color: var(--white);
}

/* Custom Checkbox */
.consent-group {
  margin-bottom: 30px;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
  cursor: pointer;
  position: relative;
}

.consent-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  background: var(--dark-gray);
  border: 2px solid var(--gold-accent);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.consent-label input[type="checkbox"]:checked + .checkmark {
  background: var(--gold-accent);
}

.consent-label input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  color: var(--primary-black);
  font-weight: bold;
  font-size: 12px;
}

.consent-label a {
  color: var(--gold-accent);
  text-decoration: none;
}

.consent-label a:hover {
  text-decoration: underline;
}

/* Submit Button */
.contact-submit-btn {
  background: var(--gold-accent);
  color: var(--primary-black);
  border: none;
  padding: 15px 40px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto;
  min-width: 200px;
  justify-content: center;
}

.contact-submit-btn:hover {
  background: var(--warm-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.contact-submit-btn:active {
  transform: translateY(0);
}

/* Form Messages */
.form-message-warning,
.form-message-success {
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: none;
}

.form-message-warning {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  color: #dc3545;
}

.form-message-success {
  background: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.3);
  color: #28a745;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contact-form-container {
    padding: 30px 20px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .contact-form-header h2 {
    font-size: 28px;
  }
  
  .contact-info-item {
    padding: 30px 15px;
  }
}

@media (max-width: 480px) {
  .contact-form-container {
    padding: 20px 15px;
  }
  
  .contact-form-header h2 {
    font-size: 24px;
  }
  
  .contact-submit-btn {
    width: 100%;
    min-width: auto;
  }
}

/* ============================================
   COUPONS PAGE STYLES
   ============================================ */

/* Promotions Section */
.promotions-section {
  padding: 80px 0;
  background: var(--primary-black);
}

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

.promotions-header h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 15px;
  font-weight: 600;
}

.promotions-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Promotions Grid */
.promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* Promo Card */
.promo-card {
  background: var(--medium-gray);
  border-radius: 15px;
  overflow: hidden;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
  position: relative;
}

.promo-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold-accent);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

/* Promo Image Container */
.promo-image-container {
  position: relative;
  overflow: hidden;
  height: 400px;
}

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

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

/* Promo Overlay */
.promo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.promo-card:hover .promo-overlay {
  opacity: 1;
}

.promo-actions {
  display: flex;
  gap: 15px;
  flex-direction: column;
  align-items: center;
}

.promo-btn {
display: flex
;
    align-items: center;
    gap: 8px;
    /* padding: 12px 24px; */
    /* border-radius: 25px; */
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    /* transition: var(--transition-smooth); */
    min-width: 50;
    justify-content: center;
}

.promo-btn.primary {
  /* background: var(--gold-accent); */
  color: var(--primary-black);
}

.promo-btn.primary:hover {
  /* background: var(--warm-gold); */
  transform: translateY(-2px);
}

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

.promo-btn.secondary:hover {
  background: var(--white);
  color: var(--primary-black);
  transform: translateY(-2px);
}

/* Promo Content */
.promo-content {
  padding: 20px;
}

.promo-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition-smooth);
  font-size: 16px;
}

.social-btn.facebook {
  background: #1877f2;
  color: var(--white);
}

.social-btn.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--white);
}

.social-btn.google {
  background: #db4437;
  color: var(--white);
}

.social-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* No Promotions State */
.no-promotions {
  text-align: center;
  padding: 80px 20px;
  grid-column: 1 / -1;
}

.no-promotions-icon {
  width: 100px;
  height: 100px;
  background: var(--gold-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 40px;
  color: var(--primary-black);
}

.no-promotions h3 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 15px;
}

.no-promotions p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  background: var(--gold-accent);
  color: var(--primary-black);
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition-smooth);
  display: inline-block;
}

.cta-btn:hover {
  background: var(--warm-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .promotions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .promotions-header h2 {
    font-size: 2rem;
  }
  
  .promo-image-container {
    height: 300px;
  }
  
  .promo-actions {
    flex-direction: row;
    gap: 10px;
  }
  
  .promo-btn {
    min-width: 120px;
    padding: 10px 20px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .promotions-header h2 {
    font-size: 1.8rem;
  }
  
  .promo-actions {
    flex-direction: column;
    gap: 10px;
  }
  
  .promo-btn {
    min-width: 140px;
  }
  
  .no-promotions h3 {
    font-size: 1.5rem;
  }
  
  .no-promotions p {
    font-size: 1rem;
  }
}

/* ============================================
   POLICIES PAGE STYLES
   ============================================ */

/* Policies Section */
.policies-section {
  padding: 80px 0;
  background: var(--primary-black);
}

.policies-intro {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.policies-intro h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 600;
}

.policies-intro p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Policies Grid */
.policies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

/* Policy Card */
.policy-card {
  background: var(--medium-gray);
  border-radius: 15px;
  padding: 30px;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.policy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold-accent);
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

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

.policy-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-accent);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}

/* Policy Icon */
.policy-icon {
  width: 60px;
  height: 60px;
  background: var(--gold-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary-black);
  font-size: 24px;
  transition: var(--transition-smooth);
}

.policy-card:hover .policy-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* Policy Content */
.policy-card h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 15px;
  font-weight: 600;
}

.policy-card p {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 1rem;
}

.policy-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.policy-card li {
  color: var(--text-light);
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
  font-size: 0.95rem;
}

.policy-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-accent);
  font-weight: bold;
  font-size: 14px;
}

/* Policies Contact */
.policies-contact {
  text-align: center;
  background: var(--dark-gray);
  padding: 50px 30px;
  border-radius: 15px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.policies-contact h3 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 15px;
  font-weight: 600;
}

.policies-contact p {
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition-smooth);
  min-width: 160px;
  justify-content: center;
}

.contact-btn.phone {
  background: var(--gold-accent);
  color: var(--primary-black);
}

.contact-btn.phone:hover {
  background: var(--warm-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

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

.contact-btn.email:hover {
  background: var(--white);
  color: var(--primary-black);
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .policies-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .policies-intro h2 {
    font-size: 2rem;
  }
  
  .policy-card {
    padding: 25px 20px;
  }
  
  .contact-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .policies-intro h2 {
    font-size: 1.8rem;
  }
  
  .policy-card {
    padding: 20px 15px;
  }
  
  .policy-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .policy-card h3 {
    font-size: 1.3rem;
  }
  
  .policies-contact {
    padding: 40px 20px;
  }
  
  .policies-contact h3 {
    font-size: 1.5rem;
  }
}