/* CSS Variables */
:root {
  --primary: #AF8E54;
  --secondary: #2A6F6C;
  --accent: #C7DCD4;
  --bg: #FFFFFF;
  --text: #222;
  --text-light: #666;
  --shadow: rgba(0, 0, 0, 0.1);
  --shadow-hover: rgba(0, 0, 0, 0.15);
  --gradient-primary: linear-gradient(135deg, var(--primary), #C4A574);
  --gradient-secondary: linear-gradient(135deg, var(--secondary), #3A8F8C);
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-primary: 'Montserrat', sans-serif;
  --font-display: 'Playfair Display', serif;
}

/* Promotional Bar */
.promo-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--gradient-primary);
  color: white;
  z-index: 1001;
  padding: 0.4rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.promo-bar.hidden {
  transform: translateY(-100%);
}

.promo-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 2rem;
  position: relative;
}

.promo-text {
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.promo-text i {
  color: rgba(255, 255, 255, 0.9);
}

.promo-close {
  position: absolute;
  right: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 4px;
  transition: var(--transition);
  opacity: 0.8;
}

.promo-close:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
}

/* Adjust header position when promo bar is visible */
#header {
  top: 36px;
}

#header.promo-hidden {
  top: 0;
}

/* Mobile promo bar adjustments */
@media (max-width: 768px) {
  .promo-bar {
    padding: 0;
  }
  
  #header {
    top: 36px; /* Adjusted for mobile promo bar with no padding */
  }
  
  #header.promo-hidden {
    top: 0;
  }
}

/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  box-sizing: border-box;
}

/* Loading Screen */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader {
  text-align: center;
  animation: fadeInUp 1s ease;
}

.nail-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: bounce 2s infinite;
}

.loading-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  font-family: var(--font-display);
}

/* Header */
#header {
  position: fixed;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(175, 142, 84, 0.1);
  z-index: 1000;
  transition: var(--transition);
}

#header.scrolled {
  box-shadow: 0 2px 20px var(--shadow);
}

#header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

.logo img {
  height: 70px;
  transition: var(--transition);
}

.logo-text {
  font-family: var(--font-display);
}

.logo-main {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary);
  display: block;
}

.logo-sub {
  font-size: 1.1rem;
  color: var(--secondary);
  font-weight: 400;
}

.nav-list {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

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

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

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

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

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-booking-btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  white-space: nowrap;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

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

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-image-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('hero_section.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: var(--transition);
}

.hero-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.2) 20%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

.hero-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  padding: 4rem 2rem;
}

.hero-text {
  max-width: 450px;
  text-align: center;
  margin-top: 5rem;
  animation: fadeInRight 1s ease 0.3s both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.title-line {
  display: block;
  color: white;
}

.title-highlight {
  display: block;
  color: var(--primary);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  animation: shimmer 3s ease-in-out infinite;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  line-height: 1.6;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  justify-content: center;
  flex-wrap: nowrap;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  animation: fadeInRight 1s ease 0.8s both;
  justify-content: center;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
  font-family: var(--font-display);
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-arrow {
  width: 2px;
  height: 30px;
  background: var(--primary);
  position: relative;
}

.scroll-arrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(45deg);
}

/* Hero Booking Form */
.hero-booking-form {
  max-width: 380px;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  padding: 0;
  overflow: hidden;
  animation: slideInRight 0.5s ease both;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4rem; /* Adjust this value to move form up/down */
}



.booking-form {
  padding: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 2px solid var(--accent);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: var(--font-primary);
  transition: var(--transition);
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(175, 142, 84, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 70px;
}

.form-buttons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.form-buttons .btn {
  flex: 1;
  justify-content: center;
  padding: 0.875rem 1.5rem;
}

/* Form animations */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

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

.hero-text.slide-out {
  animation: slideOutLeft 0.5s ease both;
}

.hero-text.slide-in {
  animation: slideInLeft 0.5s ease both;
}

.hero-booking-form.slide-out {
  animation: slideOutRight 0.5s ease both;
}

/* Hero Thank You Message */
.hero-thank-you {
  max-width: 380px;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  padding: 0;
  overflow: hidden;
  animation: slideInRight 0.5s ease both;
}

.thank-you-content {
  padding: 2rem;
  text-align: center;
}

.thank-you-icon {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 1rem;
  animation: bounceIn 0.8s ease 0.3s both;
}

.thank-you-title {
  font-family: var(--font-secondary);
  font-size: 1.75rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.thank-you-message {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.thank-you-details {
  background: rgba(175, 142, 84, 0.1);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.thank-you-details p {
  margin: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.thank-you-details i {
  color: var(--primary);
  width: 16px;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-thank-you.slide-out {
  animation: slideOutRight 0.5s ease both;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 15px rgba(175, 142, 84, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(175, 142, 84, 0.4);
}

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

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

/* Section Titles */
.section-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.title-decoration {
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  margin: 0 auto 3rem;
  border-radius: 2px;
}

/* About Section */
.about {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(199, 220, 212, 0.05), transparent);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
  animation: fadeInLeft 1s ease both;
}

.about-image img {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 20px 40px var(--shadow);
  transition: var(--transition);
}

.image-frame {
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border: 3px solid var(--primary);
  border-radius: 50%;
  opacity: 0.3;
  animation: rotate 20s linear infinite;
}

.about-text {
  animation: fadeInRight 1s ease 0.2s both;
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.feature i {
  color: var(--primary);
  font-size: 1.2rem;
}

/* Services Section */
.services {
  padding: 6rem 0;
  background: var(--bg);
}

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

.service-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px var(--shadow);
  text-align: center;
  position: relative;
  transition: var(--transition);
  animation: fadeInUp 1s ease both;
}

.service-card:nth-child(2) { animation-delay: 0.1s; }
.service-card:nth-child(3) { animation-delay: 0.2s; }
.service-card:nth-child(4) { animation-delay: 0.3s; }
.service-card:nth-child(5) { animation-delay: 0.4s; }

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

.service-card.featured {
  background: var(--gradient-primary);
  color: white;
  transform: scale(1.05);
}

.featured-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}

.service-card.featured .service-icon {
  background: rgba(255, 255, 255, 0.2);
}

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

.service-card.featured .service-icon i {
  color: white;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.service-card.featured .service-title {
  color: white;
}

.service-description {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-card.featured .service-description {
  color: rgba(255, 255, 255, 0.9);
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-display);
}

.service-card.featured .service-price {
  color: white;
}

.service-duration {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.service-card.featured .service-duration {
  color: rgba(255, 255, 255, 0.8);
}

.service-category {
  margin-bottom: 4rem;
}

.service-category:last-child {
  margin-bottom: 0;
}

.category-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--secondary);
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.category-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.service-note {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-top: 0.5rem;
  font-style: italic;
}

.service-card.featured .service-note {
  color: rgba(255, 255, 255, 0.8);
}

/* Portfolio Section */
.portfolio {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(175, 142, 84, 0.03), transparent);
}

.carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.carousel-wrapper {
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.4s ease;
}

.carousel-slide {
  flex: 0 0 280px;
  height: 350px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.carousel-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.carousel-btn {
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(175, 142, 84, 0.3);
  z-index: 10;
}

.carousel-btn:hover {
  background: #9A7A47;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(175, 142, 84, 0.4);
}

.carousel-btn:active {
  transform: scale(0.95);
}



/* Touch/Swipe support */
.gallery-track {
  touch-action: pan-y;
}

.gallery-slide {
  user-select: none;
  -webkit-user-drag: none;
}

/* Responsive adjustments for portfolio */
@media (max-width: 768px) {
  .carousel-container {
    gap: 1rem;
  }
  
  .carousel-slide {
    flex: 0 0 260px;
    height: 320px;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .carousel-track {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .carousel-container {
    gap: 0.5rem;
  }
  
  .carousel-slide {
    flex: 0 0 220px;
    height: 280px;
  }
  
  .carousel-btn {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  
  .carousel-track {
    gap: 0.75rem;
  }
  
  .portfolio {
    padding: 4rem 0;
  }
}

/* Reviews Section */
.reviews {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(199, 220, 212, 0.05), transparent);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.review-card {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px var(--shadow);
  position: relative;
  transition: var(--transition);
  animation: fadeInUp 1s ease both;
}

.review-card:nth-child(2) { animation-delay: 0.1s; }
.review-card:nth-child(3) { animation-delay: 0.2s; }

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--shadow-hover);
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary);
  font-family: var(--font-display);
  line-height: 1;
}

.review-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.review-stars i {
  color: #FFD700;
  font-size: 1.1rem;
}

.review-text {
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
}

.author-name {
  font-weight: 600;
  color: var(--secondary);
}

/* Contact Section */
.contact {
  padding: 6rem 0;
  background: var(--bg);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  animation: fadeInLeft 1s ease both;
}

.contact-item:nth-child(2) { animation-delay: 0.1s; }
.contact-item:nth-child(3) { animation-delay: 0.2s; }
.contact-item:nth-child(4) { animation-delay: 0.3s; }
.contact-item:nth-child(5) { animation-delay: 0.4s; }

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  color: white;
  font-size: 1.2rem;
}

.contact-details h4 {
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: var(--text-light);
}

.contact-details a {
  color: var(--secondary);
  text-decoration: none;
  transition: var(--transition);
}

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

.contact-map {
  background: white;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px var(--shadow);
  animation: fadeInRight 1s ease both;
}

.contact-map h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  text-align: center;
}

.map-container {
  margin-bottom: 1.5rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  transition: var(--transition);
}

.map-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.map-info p {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Special Offer Block */
.special-offer-block {
  background: var(--gradient-primary);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: 0 15px 40px rgba(175, 142, 84, 0.2);
  animation: fadeInUp 1s ease both;
  position: relative;
  overflow: hidden;
}

.special-offer-block::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

.offer-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.offer-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.offer-icon i {
  font-size: 1.5rem;
  color: white;
  animation: bounce 2s infinite;
}

.offer-text {
  flex: 1;
  color: white;
}

.offer-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.offer-text p {
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.5;
  opacity: 0.95;
}

.offer-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature i {
  color: white;
  font-size: 0.9rem;
}

.feature span {
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
}

.offer-btn {
  background: white;
  color: var(--primary);
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-transform: none;
}

.offer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  background: var(--accent);
}

.offer-btn i {
  margin-right: 0.5rem;
}

.map-info i {
  color: var(--primary);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

/* Footer */
.footer {
  background: var(--secondary);
  color: white;
  padding: 1rem 0;
  text-align: center;
}

.footer p {
  margin: 0;
  color: var(--accent);
  font-size: 0.9rem;
}

/* Back to Top Button */


/* 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 bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

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

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

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    width: 55%;
    padding: 1.5rem;
  }
  
  .hero-text {
    max-width: 400px;
  }
  
  .about {
    padding: 2rem 0 0rem 0;
  }
  
  .services {
    padding: 0rem 0 2rem 0;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-left {
    gap: 2rem;
  }
}

/* Hide mobile navigation on desktop */
.mobile-nav,
.mobile-nav-overlay {
  display: none;
}

@media (max-width: 768px) {
  /* Show mobile navigation on mobile devices */
  .mobile-nav,
  .mobile-nav-overlay {
    display: block;
  }
  * {
    max-width: 100vw;
    box-sizing: border-box;
  }
  
  html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
  }
  
  .container {
    padding: 0 1rem;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
  }
  
  .promo-content {
    padding: 0 1rem;
    min-height: 48px;
    align-items: center;
  }
  
  .promo-text {
    font-size: 0.8rem;
    padding-right: 2rem;
    line-height: 1.3;
    text-align: center;
  }
  
  .promo-close {
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .nav-list {
    display: none;
  }
  
  .nav-booking-btn {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
    position: relative;
    z-index: 1001;
  }
  
  /* Hide original navigation list on mobile */
  .nav-list {
    display: none;
  }
  
  .nav-booking-btn {
    display: none;
  }
  
  /* Mobile Navigation Menu */
  .mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--bg);
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: left 0.3s ease;
    overflow-y: auto;
  }
  
  .mobile-nav.active {
    left: 0;
  }
  
  .mobile-nav-content {
    padding: 6rem 0 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .mobile-nav-list li {
    border-bottom: 1px solid rgba(175, 142, 84, 0.1);
  }
  
  .mobile-nav-link {
    display: block;
    padding: 1rem 2rem;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
  }
  
  .mobile-nav-link:hover {
    background: rgba(175, 142, 84, 0.1);
    color: var(--primary);
  }
  
  .mobile-nav-actions {
    padding: 2rem;
    border-top: 1px solid rgba(175, 142, 84, 0.1);
  }
  
  .mobile-nav-booking {
    width: 100%;
    margin-bottom: 1.5rem;
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .mobile-nav-social {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .mobile-social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text);
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    border: 1px solid rgba(175, 142, 84, 0.2);
  }
  
  .mobile-social-link:hover {
    background: rgba(175, 142, 84, 0.1);
    color: var(--primary);
    border-color: var(--primary);
  }
  
  .mobile-social-link i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
  }
  
  .mobile-social-link span {
    font-weight: 500;
  }
  
  /* Mobile menu overlay */
  .mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  #header .container {
    padding: 0 1rem;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
  }
  
  .hero-content {
    position: relative;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: center;
    width: 100%;
    max-width: 100vw;
    height: auto;
    padding: 1rem 1rem 4rem;
    box-sizing: border-box;
  }
  
  .hero-text {
    text-align: center;
    padding-right: 0;
    max-width: 100%;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .stat {
    text-align: center;
  }
  
  .hero-booking-form {
    max-width: calc(100vw - 2rem);
    margin: 6rem 1rem 0 1rem; /* Increased top margin for mobile */
    box-sizing: border-box;
  }
  
  .booking-form {
    padding: 1.5rem;
  }
  
  .form-buttons {
    flex-direction: column;
  }
  
  .form-buttons .btn {
    width: 100%;
  }
  
  .hero-thank-you {
    max-width: calc(100vw - 2rem);
    margin: 0 1rem;
    box-sizing: border-box;
  }
  
  .thank-you-content {
    padding: 1.5rem;
  }
  
  .thank-you-icon {
    font-size: 3rem;
  }
  
  .thank-you-title {
    font-size: 1.5rem;
  }
  
  .thank-you-details {
    padding: 0.75rem;
  }
  
  .thank-you-details p {
    font-size: 0.85rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .special-offer-block {
    padding: 1.25rem;
  }
  
  .offer-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .offer-icon {
    width: 50px;
    height: 50px;
  }
  
  .offer-icon i {
    font-size: 1.25rem;
  }
  
  .offer-text h3 {
    font-size: 1.25rem;
  }
  
  /* Ensure all sections stay within viewport */
  section {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
  }
  
  .hero {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }
  
  .hero-background,
  .hero-image-bg {
    width: 100%;
    max-width: 100vw;
  }
  
  .hero-overlay {
    width: 100%;
    max-width: 100vw;
    background: linear-gradient(
      to bottom,
      transparent 0%,
      rgba(0, 0, 0, 0.3) 30%,
      rgba(0, 0, 0, 0.7) 100%
    ) !important;
  }
  
  .hero-text {
    background: rgba(0, 0, 0, 0.25);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  }
  
  .hero-title {
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  }
  
  .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .review-card {
    padding: 1.5rem;
  }
  
  .contact-map {
    padding: 1.5rem;
  }
  
  .special-offer-block {
    padding: 1rem;
  }
  
  .offer-text h3 {
    font-size: 1.125rem;
  }
  
  .offer-text p {
    font-size: 0.9rem;
  }
  
  .offer-btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
  }
}

/* ===== CHAT WIDGET STYLES ===== */
#samanta-chat-container {
  --chat-primary: #AF8E54;
  --chat-secondary: #2A6F6C;
  --chat-accent: #C7DCD4;
  --chat-white: #FFFFFF;
  --chat-text: #333333;
  --chat-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  --chat-border-radius: 16px;
  
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10000;
  font-family: 'Montserrat', sans-serif;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#samanta-chat-container.show {
  opacity: 1;
  visibility: visible;
}

/* Chat Launcher Button */
#samanta-chat-launcher {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--chat-primary) 0%, #B8965C 100%);
  border: 3px solid var(--chat-white);
  box-shadow: var(--chat-shadow);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

#samanta-chat-launcher:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

#samanta-chat-launcher:active {
  transform: scale(0.95);
}

#samanta-chat-launcher i {
  font-size: 28px;
  color: var(--chat-white);
  transition: all 0.3s ease;
}

#samanta-chat-launcher:hover i {
  transform: scale(1.1);
}

/* Greeting Balloon */
#samanta-greeting {
  position: absolute;
  bottom: 85px;
  right: 0;
  background: var(--chat-white);
  padding: 16px;
  border-radius: var(--chat-border-radius);
  box-shadow: var(--chat-shadow);
  max-width: 320px;
  min-width: 280px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: samanta-fade-in-up 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--chat-accent);
}

.samanta-greeting-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--chat-primary);
  flex-shrink: 0;
}

.samanta-greeting-text {
  flex: 1;
}

.samanta-greeting-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: var(--chat-text);
  font-weight: 500;
}

#samanta-close-greeting {
  background: none;
  border: none;
  font-size: 20px;
  color: #999;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

#samanta-close-greeting:hover {
  background: #f5f5f5;
  color: #666;
}

/* Chat Panel */
#samanta-chat-panel {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 340px;
  max-width: calc(100vw - 40px);
  max-height: 500px;
  background: var(--chat-white);
  border-radius: var(--chat-border-radius);
  box-shadow: var(--chat-shadow);
  overflow: hidden;
  display: none;
  flex-direction: column;
  animation: samanta-slide-in-up 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--chat-accent);
}

.samanta-panel-header {
  background: linear-gradient(135deg, var(--chat-primary) 0%, #B8965C 100%);
  color: var(--chat-white);
  padding: 20px;
  display: flex;
  align-items: center;
  position: relative;
}

.samanta-panel-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--chat-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.samanta-header-text {
  margin-left: 16px;
  flex: 1;
}

.samanta-header-text h3 {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
}

.samanta-header-text p {
  margin: 0;
  font-size: 13px;
  opacity: 0.9;
  font-weight: 400;
}

#samanta-close-panel {
  background: none;
  border: none;
  color: var(--chat-white);
  font-size: 24px;
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

#samanta-close-panel:hover {
  background: rgba(255, 255, 255, 0.2);
}

.samanta-panel-content {
  padding: 15px;
  overflow-y: auto;
}

/* Form Styles */
.samanta-form-group {
  margin-bottom: 12px;
}

.samanta-form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: var(--chat-text);
  font-size: 13px;
}

.samanta-form-group input,
.samanta-form-group textarea {
  width: 100%;
  padding: 8px 12px;
  border: 2px solid var(--chat-accent);
  border-radius: 8px;
  font-family: inherit;
  font-size: 13px;
  transition: all 0.3s ease;
  background: #fafafa;
  box-sizing: border-box;
}

.samanta-form-group input:focus,
.samanta-form-group textarea:focus {
  outline: none;
  border-color: var(--chat-primary);
  background: var(--chat-white);
  box-shadow: 0 0 0 3px rgba(175, 142, 84, 0.1);
}

.samanta-form-group textarea {
  resize: vertical;
  min-height: 60px;
  font-family: inherit;
}

.samanta-disclaimer {
  margin: 10px 0;
  padding: 8px;
  background: #f8f9fa;
  border-radius: 6px;
  border-left: 3px solid var(--chat-accent);
}

.samanta-disclaimer p {
  margin: 0;
  font-size: 11px;
  color: #666;
  line-height: 1.3;
}

#samanta-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--chat-primary) 0%, #B8965C 100%);
  color: var(--chat-white);
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

#samanta-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(175, 142, 84, 0.3);
}

#samanta-submit:active {
  transform: translateY(0);
}

#samanta-submit:disabled {
  background: #cccccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Success Message */
#samanta-success {
  text-align: center;
  padding: 30px 15px;
}

.samanta-success-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.samanta-success-content i {
  font-size: 48px;
  color: var(--chat-secondary);
}

.samanta-success-content h4 {
  margin: 0;
  font-size: 20px;
  color: var(--chat-text);
  font-family: 'Playfair Display', serif;
}

.samanta-success-content p {
  margin: 0;
  font-size: 14px;
  color: #666;
}

/* Utility Classes */
.samanta-hidden {
  display: none !important;
}

/* Animations */
@keyframes samanta-fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes samanta-slide-in-up {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  #samanta-chat-container {
    bottom: 15px;
    right: 15px;
  }
  
  #samanta-chat-launcher {
    width: 60px;
    height: 60px;
  }
  
  .samanta-launcher-avatar {
    width: 42px;
    height: 42px;
  }
  
  #samanta-chat-panel {
    bottom: 85px;
    right: 15px;
    left: 15px;
    width: auto;
    max-width: calc(100vw - 30px);
    max-height: 70vh;
    box-sizing: border-box;
  }
  
  #samanta-greeting {
    bottom: 75px;
    right: -5px;
    max-width: 260px;
  }
  
  .samanta-panel-content {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  #samanta-chat-panel {
    bottom: 80px;
    max-height: 65vh;
  }
  
  .samanta-panel-header {
    padding: 16px;
  }
  
  .samanta-panel-avatar {
    width: 50px;
    height: 50px;
  }
  
  .samanta-header-text h3 {
    font-size: 16px;
  }
  
  .samanta-panel-content {
    padding: 14px;
  }
  
  #samanta-greeting {
    max-width: 240px;
    padding: 12px;
  }
  
  .samanta-greeting-avatar {
    width: 38px;
    height: 38px;
  }
}

/* Google Reviews Floating Button */
#google-floating {
  position: fixed;
  bottom: 5%;
  left: 5%;
  transform-origin: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#google-floating.show {
  opacity: 1;
  visibility: visible;
}

#google-floating a {
  background: #fff;
  display: inline-block;
  border: 2px solid var(--primary);
  border-radius: 10px;
  padding: 5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#google-floating a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

#google-floating img {
  display: block;
  width: 100px;
  height: auto;
}

/* Hide on mobile devices */
@media (max-width: 768px) {
  #google-floating {
    display: none;
  }
}
