:root {
  --primary-gold: #d4af37;       /* Champagne/Gold accent */
  --primary-rose: #db2777;       /* Elegant Rose Pink */
  --primary-rose-light: #fff1f2; /* Soft light backdrop */
  --dark-charcoal: #1f2937;      /* Neutral dark gray */
  --light-bg: #fafafa;
  --white: #ffffff;
  --shadow-subtle: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --shadow-premium: 0 20px 40px -15px rgba(219, 39, 119, 0.15);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Outfit', 'Poppins', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-sans);
  scroll-behavior: smooth;
}

body {
  background: var(--light-bg);
  color: var(--dark-charcoal);
  overflow-x: hidden;
}

/* ✅ Navbar */
header {
  width: 100%;
  position: fixed;
  top: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
}

.navbar {
  display: flex;
  justify-content: space-between;
  padding: 20px 60px;
  align-items: center;
}

.logo {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--dark-charcoal);
  text-decoration: none;
}

.logo span {
  color: var(--primary-rose);
  font-family: var(--font-serif);
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark-charcoal);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-rose);
  transform-origin: bottom right;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav-links a:hover {
  color: var(--primary-rose);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.menu-icon {
  display: none;
  font-size: 22px;
  color: var(--dark-charcoal);
  cursor: pointer;
  transition: transform 0.3s ease;
}

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

/* ✅ Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(-45deg, #0f051d, #3c096c, #db2777, #ff7e67, #e0a96d);
  background-size: 400% 400%;
  animation: gradientBG 12s ease infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero-content {
  text-align: center;
  color: white;
  max-width: 700px;
  padding: 20px;
  animation: fadeInUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.hero-content h1 {
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 15px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-content p {
  margin: 15px 0 35px;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 1px;
}

.btn {
  background: linear-gradient(135deg, var(--primary-rose) 0%, #ec4899 100%);
  padding: 15px 35px;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: inline-block;
  box-shadow: 0 8px 25px rgba(219, 39, 119, 0.3);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(219, 39, 119, 0.5);
  background: linear-gradient(135deg, #ec4899 0%, var(--primary-rose) 100%);
}

.hero-content .btn {
  animation: pulseGlow 2s infinite;
}

/* ✅ Section Title */
.section-title {
  font-family: var(--font-serif);
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: var(--dark-charcoal);
  margin: 80px 0 40px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--primary-rose);
  margin: 15px auto 0;
  border-radius: 10px;
}

/* ✅ Services Section */
.services {
  background: #fbf7f4;
  padding: 80px 0;
}

.service-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 20px 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  color: var(--dark-charcoal);
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.view-btn {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-rose);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 5px;
  transition: gap 0.3s ease;
}

.service-card:hover .view-btn {
  gap: 12px;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-gold), var(--primary-rose));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(219, 39, 119, 0.1);
}

.service-card:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.service-card i {
  font-size: 44px;
  color: var(--primary-rose);
  transition: transform 0.4s ease;
}

.service-card:hover i {
  transform: scale(1.15) rotate(5deg);
  color: var(--primary-gold);
}

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 5px;
}

.service-card p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
}

/* About section styles removed */

/* Gallery section styles removed */

/* ✅ Booking Section */
.booking {
  padding: 100px 60px;
  text-align: center;
  background: var(--primary-rose-light);
}

.booking-form {
  max-width: 550px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--white);
  padding: 40px;
  border-radius: 24px;
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.booking-form input,
.booking-form select {
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  outline: none;
  font-size: 15px;
  background: white;
  transition: all 0.3s ease;
}

.booking-form input:focus,
.booking-form select:focus {
  border-color: var(--primary-rose);
  box-shadow: 0 0 0 4px rgba(219, 39, 119, 0.1);
}

#successMsg {
  margin-top: 25px;
  font-weight: 600;
  color: #059669;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#successMsg.show {
  opacity: 1;
  transform: translateY(0);
}

/* ✅ Floating Social Sidebar */
.social-sidebar {
  position: fixed;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 10px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  animation: slideInRight 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.social-item {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-charcoal);
  background: white;
  text-decoration: none;
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-item:hover {
  transform: scale(1.15) translateX(-5px);
  color: white;
}

.social-item.phone:hover {
  background: #10B981;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.5);
}

.social-item.whatsapp:hover {
  background: #25D366;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.5);
}

.social-item.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 0 15px rgba(220, 39, 119, 0.5);
}

.social-item.facebook:hover {
  background: #1877F2;
  box-shadow: 0 0 15px rgba(24, 119, 242, 0.5);
}

/* ✅ Footer */
footer {
  text-align: center;
  padding: 30px;
  background: var(--dark-charcoal);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* ✅ Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translate(60px, -50%);
  }
  to {
    opacity: 1;
    transform: translate(0, -50%);
  }
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(219, 39, 119, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(219, 39, 119, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(219, 39, 119, 0);
  }
}

/* ✅ Gallery Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(31, 41, 55, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.modal.show {
  display: flex;
  opacity: 1;
}

.modal-content {
  background-color: var(--white);
  margin: auto;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  width: 90%;
  max-width: 800px;
  max-height: 85vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal.show .modal-content {
  transform: scale(1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f3f4f6;
  padding-bottom: 20px;
  margin-bottom: 25px;
}

.modal-header h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--dark-charcoal);
  font-weight: 700;
}

.close-btn {
  color: #9ca3af;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: var(--primary-rose);
}

.modal-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.modal-img-container {
  position: relative;
  border-radius: 16px;
  height: 160px;
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

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

.modal-img-container:hover img {
  transform: scale(1.08);
}

.delete-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(239, 68, 68, 0.9);
  color: white;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s ease;
  font-size: 14px;
}

.modal-img-container:hover .delete-btn {
  opacity: 1;
}

.delete-btn:hover {
  transform: scale(1.1);
  background: rgb(220, 38, 38);
}

.modal-actions {
  display: flex;
  justify-content: center;
  border-top: 1px solid #f3f4f6;
  padding-top: 25px;
}

.add-photo-btn {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ✅ Glam Estimator Section */
.estimator {
  background: var(--white);
  padding: 80px 0;
}

.estimator-container {
  display: flex;
  gap: 40px;
  padding: 20px 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.estimator-grid {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.estimator-card {
  position: relative;
}

.estimator-card input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
}

.estimator-card label {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--light-bg);
  padding: 25px 20px;
  border-radius: 20px;
  border: 2px solid transparent;
  box-shadow: var(--shadow-subtle);
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  gap: 10px;
}

.estimator-card label i {
  font-size: 32px;
  color: #9ca3af;
  transition: all 0.3s ease;
}

.estimator-card label .est-name {
  font-weight: 600;
  font-size: 16px;
  color: var(--dark-charcoal);
}

.estimator-card label .est-details {
  font-size: 14px;
  color: #6b7280;
}

/* Checked state */
.estimator-card input[type="checkbox"]:checked + label {
  border-color: var(--primary-rose);
  background: var(--primary-rose-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-premium);
}

.estimator-card input[type="checkbox"]:checked + label i {
  color: var(--primary-rose);
  transform: scale(1.1);
}

/* Summary Card */
.estimator-summary {
  flex: 1;
  background: var(--white);
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.02);
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 100px;
}

.estimator-summary h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  border-bottom: 1px solid #f3f4f6;
  padding-bottom: 15px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  color: #4b5563;
}

.summary-row.total {
  border-top: 1px dashed #d1d5db;
  padding-top: 20px;
  margin-top: 10px;
  font-weight: 700;
  font-size: 18px;
  color: var(--dark-charcoal);
}

.summary-row.total #totalCost {
  color: var(--primary-rose);
  font-size: 24px;
  font-weight: 700;
}

/* ✅ Transformations Section */
.transformations {
  background: #111827; /* Luxury Dark Charcoal */
  padding: 80px 0;
  color: white;
}

.transformations .section-title {
  color: white;
}

.transformations p {
  color: #9ca3af !important;
}

.transformations .before-after-container {
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.slider-wrapper {
  display: flex;
  justify-content: center;
  padding: 20px;
}

.before-after-container {
  position: relative;
  width: 100%;
  max-width: 700px;
  aspect-ratio: 16/10;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  user-select: none;
  -webkit-user-select: none;
}

.img-before, .img-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.img-before img, .img-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-after {
  width: 50%;
  z-index: 1;
}

.label-badge {
  position: absolute;
  bottom: 20px;
  background: rgba(31, 41, 55, 0.7);
  color: white;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 3;
}

.label-before {
  right: 20px;
}

.label-after {
  left: 20px;
}

.slider-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: white;
  z-index: 2;
  pointer-events: none;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-rose);
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 3px solid var(--primary-rose-light);
}

.slider-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 4;
  margin: 0;
}

/* ✅ FAQ Section */
.faq {
  background: #faf5eb; /* Soft champagne gold */
  padding: 80px 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 60px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.02);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  color: var(--dark-charcoal);
  text-align: left;
  transition: color 0.3s ease;
}

.faq-question i {
  font-size: 14px;
  color: #9ca3af;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faq-question:hover {
  color: var(--primary-rose);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  padding: 0 28px;
}

.faq-answer p {
  padding-bottom: 22px;
  color: #4b5563;
  line-height: 1.7;
  font-size: 15px;
  font-weight: 300;
}

/* Active Accordion State */
.faq-item.active {
  background: var(--white);
  border-color: rgba(219, 39, 119, 0.1);
  box-shadow: var(--shadow-premium);
}

.faq-item.active .faq-question {
  color: var(--primary-rose);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--primary-rose);
}

.faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
}

/* ✅ Client Reviews Section */
.reviews {
  background: var(--white);
  padding: 80px 0;
}

.reviews-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 20px 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.review-card {
  background: var(--light-bg);
  padding: 40px 30px;
  border-radius: 24px;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(219, 39, 119, 0.08);
}

.review-stars {
  display: flex;
  gap: 4px;
}

.review-stars i {
  color: #fbbf24;
  font-size: 16px;
}

.review-text {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.8;
  font-style: italic;
  font-weight: 300;
}

.review-client {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-rose-light);
  color: var(--primary-rose);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  border: 1px solid rgba(219, 39, 119, 0.1);
}

.client-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-charcoal);
}

.client-info span {
  font-size: 13px;
  color: #6b7280;
}

/* Star Rating Input Styles */
.rating-input-container {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 5px 0;
}

.star-rating-input {
  display: flex;
  gap: 6px;
  font-size: 24px;
}

.star-rating-input i {
  color: #d1d5db;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.star-rating-input i.hovered {
  color: #fcd34d;
}

.star-rating-input i.selected {
  color: #fbbf24;
}

/* ✅ Responsive Styles */
@media (max-width: 1024px) {
  .navbar {
    padding: 20px 40px;
  }
  .service-box, .estimator-container, .faq-container, .reviews-container {
    padding: 20px 40px;
  }
  .estimator-container {
    flex-direction: column;
    gap: 30px;
  }
  .estimator-summary {
    position: static;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 20px 40px;
  }
  .service-box {
    padding: 20px 40px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 18px 25px;
  }

  .menu-icon {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: absolute;
    top: 74px;
    right: 25px;
    width: 240px;
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    gap: 20px;
  }

  .nav-links.active {
    display: flex;
    animation: fadeInUp 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  }

  .hero-content h1 {
    font-size: 44px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .service-box, .booking {
    padding: 60px 20px;
  }

  .social-sidebar {
    right: 15px;
    padding: 12px 8px;
    gap: 10px;
  }

  .social-item {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  /* Responsive Modal */
  .modal-content {
    padding: 24px;
    width: 95%;
  }

  .modal-gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 12px;
  }

  .modal-img-container {
    height: 120px;
  }
}
