:root {
  --deep-green: #0b3b2e;
  --olive: #6b8a58;
  --gold: #c69b3b;
  --cream: #fff6ea;
  --brown: #603a2e;
  --accent: var(--gold);
  --max-width: 1200px;
  --rose-gold: #b76e79;
  --dark-brown: #4a2c26;
  --light-cream: #fffbf5;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: Montserrat, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
  line-height: 1.6;
  color: var(--deep-green);
  background: linear-gradient(
    135deg,
    var(--light-cream) 0%,
    #fef3e6 50%,
    #fef9f0 100%
  );
  background-attachment: fixed;
  overflow-x: hidden;
  position: relative;
}

/* Traditional Mehandi Pattern Background */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 20% 50%,
      rgba(198, 155, 59, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(11, 59, 46, 0.02) 0%,
      transparent 50%
    ),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400" viewBox="0 0 400 400"><defs><pattern id="mehandi" width="200" height="200" patternUnits="userSpaceOnUse"><circle cx="100" cy="100" r="2" fill="%23c69b3b" opacity="0.08"/><path d="M50 100 Q100 50 150 100 T250 100" stroke="%230b3b2e" stroke-width="0.5" fill="none" opacity="0.04"/><path d="M100 50 Q150 100 100 150 T100 250" stroke="%236b8a58" stroke-width="0.5" fill="none" opacity="0.04"/></pattern></defs><rect width="400" height="400" fill="url(%23mehandi)"/></svg>');
  background-size: 400px 400px;
  pointer-events: none;
  z-index: 0;
}

main,
header,
footer {
  position: relative;
  z-index: 1;
}

/* Global Link Styling */
a {
  color: var(--deep-green);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}

a:hover {
  color: var(--gold);
}

/* Footer Links */
.footer-links {
  color: var(--gold) !important;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}

.footer-links:hover {
  color: var(--cream) !important;
  text-shadow: 0 0 8px rgba(198, 155, 59, 0.5);
}

/* Contact section links */
.contact-quick a,
.booking-card a {
  color: var(--deep-green);
  font-weight: 600;
  border-bottom: 2px solid var(--gold);
  transition: var(--transition);
}

.contact-quick a:hover,
.booking-card a:hover {
  color: var(--gold);
  border-bottom-color: var(--deep-green);
}
.container {
  width: calc(100% - 40px);
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 99;
  background: linear-gradient(
    180deg,
    rgba(255, 251, 245, 0.98),
    rgba(255, 246, 234, 0.95)
  );
  backdrop-filter: saturate(120%) blur(8px);
  border-bottom: 2px solid rgba(198, 155, 59, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.logo img {
  height: 56px;
}
.logo.small img {
  height: 44px;
}
.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 18px;
}
.nav a {
  color: var(--deep-green);
  text-decoration: none;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.nav a:hover {
  background: rgba(198, 155, 59, 0.12);
  transform: translateY(-3px);
  color: var(--brown);
}

.nav a:focus {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}
.top-contacts {
  display: flex;
  gap: 10px;
  align-items: center;
}
.icon-link {
  background: linear-gradient(135deg, var(--gold), #d6b85a);
  color: white;
  padding: 10px 16px;
  border-radius: 24px;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 16px rgba(198, 155, 59, 0.3);
}

.icon-link i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.icon-link .link-text {
  display: inline-block;
}

.icon-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(198, 155, 59, 0.4);
}

.icon-link:hover i {
  transform: scale(1.15);
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  font-size: 22px;
}

/* Hero */
.hero {
  min-height: 75vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 60px 0;
  background: linear-gradient(
    135deg,
    rgba(255, 251, 245, 0.8),
    rgba(255, 246, 234, 0.9)
  );
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(198, 155, 59, 0.08), transparent);
  border-radius: 50%;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-repeat: repeat;
  background-position: center;
  background-size: 300px 300px;
  opacity: 0.12;
  pointer-events: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="300" height="300" viewBox="0 0 300 300"><defs><pattern id="mehandi-hero" width="150" height="150" patternUnits="userSpaceOnUse"><circle cx="75" cy="75" r="3" fill="%23c69b3b" opacity="0.15"/><path d="M30 75 Q75 30 120 75" stroke="%230b3b2e" stroke-width="1" fill="none" opacity="0.08"/><path d="M75 30 Q120 75 75 120" stroke="%236b8a58" stroke-width="1" fill="none" opacity="0.08"/><path d="M30 75 Q75 120 120 75" stroke="%23c69b3b" stroke-width="0.8" fill="none" opacity="0.06"/></pattern></defs><rect width="300" height="300" fill="url(%23mehandi-hero)"/></svg>');
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 251, 245, 0.4),
    rgba(255, 246, 234, 0.2)
  );
  pointer-events: none;
}

/* Hero Carousel */
.hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 800ms ease-in-out, transform 800ms ease-in-out;
  transform: scale(1.02);
  will-change: opacity, transform;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 0;
}

/* Hero fade keyframes removed; JS will control timing now */

.hero-blur-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(11, 59, 46, 0.5),
    rgba(96, 58, 46, 0.5)
  );
  backdrop-filter: blur(1px);
  z-index: 1;
}

.hero-text-wrapper {
  animation: slideInUp 0.8s ease-out;
  z-index: 10;
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 20px 12px;
  max-width: 900px;
  margin: 0 auto;
  z-index: 10;
}
.hero-title {
  font-family: "Great Vibes", serif;
  font-size: 72px;
  margin: 0;
  color: #fff;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4), 0 0 20px rgba(198, 155, 59, 0.6);
  animation: fadeInDown 0.8s ease;
  font-weight: 700;
  letter-spacing: 2px;
}

.hero-sub {
  font-family: "Lora", serif;
  font-size: 24px;
  margin: 12px 0;
  color: #fff;
  font-weight: 600;
  animation: fadeInUp 0.8s ease 0.1s both;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}

.hero-location {
  color: #ffd700;
  font-weight: 700;
  font-size: 15px;
  animation: fadeInUp 0.8s ease 0.2s both;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-desc {
  color: #fff;
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease 0.3s both;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-ctas {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-features {
  list-style: none;
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 16px;
  padding: 0;
  flex-wrap: wrap;
}
.hero-features li {
  background: linear-gradient(
    90deg,
    rgba(11, 59, 46, 0.04),
    rgba(198, 155, 59, 0.03)
  );
  padding: 8px 12px;
  border-radius: 20px;
  font-weight: 600;
  color: var(--deep-green);
  display: flex;
  gap: 8px;
  align-items: center;
}
.hero-features li:before {
  content: "\f06a";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--gold);
}
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 16px;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transition: left 0.35s ease;
  z-index: 0;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--deep-green), #0a2f26);
  color: var(--cream);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.btn-primary:active {
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--deep-green);
  border: 2px solid var(--gold);
  box-shadow: 0 4px 12px rgba(198, 155, 59, 0.1);
}

.btn-outline:hover {
  background: linear-gradient(135deg, var(--gold), #d6b85a);
  color: white;
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #d6b85a;
}

.email {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

/* Sections */
section {
  padding: 60px 0;
  position: relative;
}

/* About Section */
.about {
  background: linear-gradient(135deg, #fff9f0 0%, #fef5e7 50%, #fff0e6 100%);
  border-top: 1px solid rgba(198, 155, 59, 0.2);
  border-bottom: 1px solid rgba(198, 155, 59, 0.2);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.about::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(198, 155, 59, 0.05), transparent);
  border-radius: 50%;
  pointer-events: none;
}

.about::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(183, 110, 121, 0.04), transparent);
  border-radius: 50%;
  pointer-events: none;
}

/* Services Section */
.services {
  background: linear-gradient(135deg, #f5f9f7 0%, #f0f8f5 100%);
  border-top: 1px solid rgba(11, 59, 46, 0.1);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.services::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(11, 59, 46, 0.04), transparent);
  border-radius: 50%;
  pointer-events: none;
}

.services::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(198, 155, 59, 0.04), transparent);
  border-radius: 50%;
  pointer-events: none;
}

/* Gallery Section */
.gallery {
  background: linear-gradient(135deg, #fff9f0 0%, #fef5e7 100%);
  border-top: 1px solid rgba(198, 155, 59, 0.2);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.gallery::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(198, 155, 59, 0.05), transparent);
  border-radius: 50%;
  pointer-events: none;
}

.gallery::after {
  content: "";
  position: absolute;
  bottom: -50%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(183, 110, 121, 0.04), transparent);
  border-radius: 50%;
  pointer-events: none;
}

/* Reviews Section */
.reviews {
  background: linear-gradient(135deg, #f5f9f7 0%, #f0f8f5 100%);
  border-top: 1px solid rgba(11, 59, 46, 0.1);
}

/* Contact Section */
.contact {
  background: linear-gradient(135deg, #fff9f0 0%, #fef5e7 100%);
  border-top: 1px solid rgba(198, 155, 59, 0.2);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.contact::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(198, 155, 59, 0.05), transparent);
  border-radius: 50%;
  pointer-events: none;
}

.contact::after {
  content: "";
  position: absolute;
  bottom: -50%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(183, 110, 121, 0.04), transparent);
  border-radius: 50%;
  pointer-events: none;
}

h2 {
  font-family: "Lora", serif;
  font-size: 48px;
  margin: 0 0 12px;
  color: var(--deep-green);
  animation: slideInDown 0.8s ease-out;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  transition: var(--transition);
}

h2:hover {
  transform: scale(1.05);
  color: var(--gold);
}

h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--rose-gold));
  border-radius: 2px;
  transition: width 0.6s ease;
}

h2:hover::after {
  width: 120px;
}

.section-sub {
  color: var(--brown);
  margin-bottom: 32px;
  font-size: 18px;
  animation: slideInUp 0.8s ease-out 0.1s both;
  font-weight: 500;
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}
.about-img {
  position: relative;
  animation: slideInLeft 0.8s ease-out;
}

.about-img::before {
  content: "";
  position: absolute;
  inset: -12px;
  background: linear-gradient(135deg, var(--gold), var(--rose-gold));
  border-radius: 16px;
  z-index: -1;
  opacity: 0.3;
}

.about-img img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(11, 59, 46, 0.25);
  max-height: 520px;
  object-fit: cover;
  transition: var(--transition);
  border: 3px solid var(--gold);
  display: block;
}

.about-img img:hover {
  transform: scale(1.02) rotate(1deg);
  box-shadow: 0 30px 80px rgba(11, 59, 46, 0.35);
}

.about-content {
  animation: slideInRight 0.8s ease-out;
}

.about-content h2 {
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 24px;
}

.about-content h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--rose-gold));
  border-radius: 2px;
}

.about-content .lead {
  font-size: 18px;
  color: #3b3b3b;
  margin-bottom: 16px;
  animation: slideInUp 0.8s ease-out 0.1s both;
  font-weight: 600;
  line-height: 1.8;
}

.about-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
  animation: slideInUp 0.8s ease-out 0.2s both;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.about-stats div {
  background: linear-gradient(135deg, var(--gold) 0%, var(--rose-gold) 100%);
  padding: 28px 20px;
  border-radius: 12px;
  text-align: center;
  border: none;
  transition: var(--transition);
  animation: slideInUp 0.8s ease-out 0.3s both;
  box-shadow: 0 8px 24px rgba(198, 155, 59, 0.3);
  position: relative;
  overflow: hidden;
}

.about-stats div::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  pointer-events: none;
}

.about-stats div:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 16px 40px rgba(198, 155, 59, 0.4);
}

.about-stats strong {
  display: block;
  font-size: 40px;
  color: white;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.about-stats span {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.95);
  margin-top: 8px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin-top: 12px;
}
.contact-list li {
  margin-bottom: 8px;
}
.social {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 10px;
  color: var(--deep-green);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  padding: 8px 12px;
  border-radius: 8px;
}

.social:hover {
  color: var(--gold);
  background: rgba(198, 155, 59, 0.1);
}

.contact-phone {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.phone-num {
  display: flex;
  gap: 1rem;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.service-card {
  background: linear-gradient(135deg, #ffffff 0%, #f9faf8 100%);
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  animation: slideInUp 0.6s ease-out;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--rose-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

.service-card:hover {
  transform: translateY(-16px);
  box-shadow: 0 16px 40px rgba(11, 59, 46, 0.15);
  border-color: var(--gold);
}

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

.service-icon {
  font-size: 64px;
  margin-bottom: 20px;
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: linear-gradient(135deg, var(--gold), var(--rose-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 4px rgba(198, 155, 59, 0.2));
}

.service-card:hover .service-icon {
  transform: scale(1.3) rotate(12deg) translateY(-8px);
  filter: drop-shadow(0 6px 12px rgba(198, 155, 59, 0.4));
}

.service-card h3 {
  margin: 20px 0 12px;
  color: var(--deep-green);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.service-card p {
  color: #555;
  line-height: 1.8;
  font-size: 15px;
  font-weight: 500;
}

/* Gallery */
.carousel {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  margin-top: 24px;
}

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

.carousel-track {
  display: flex;
  gap: 16px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.card {
  min-width: 240px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  flex-shrink: 0;
  border: 2px solid transparent;
  position: relative;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(198, 155, 59, 0.15),
    rgba(183, 110, 121, 0.15)
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 2;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-14px) scale(1.02);
  box-shadow: 0 16px 40px rgba(11, 59, 46, 0.2);
  border-color: var(--gold);
}

.card:hover::before {
  opacity: 1;
}

.card-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.card-cap {
  padding: 16px;
  font-weight: 700;
  color: var(--deep-green);
  background: linear-gradient(135deg, #fff9f5 0%, #fffbf5 100%);
  font-size: 14px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  border-top: 1px solid rgba(198, 155, 59, 0.15);
}

.carousel-nav {
  background: linear-gradient(135deg, var(--deep-green), #0a2f26);
  color: var(--cream);
  border: 0;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}

.carousel-nav:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.carousel-nav:active {
  transform: translateY(-1px);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 24px;
  align-items: start;
}
.booking-card {
  background: linear-gradient(135deg, #fff9f5 0%, #fffbf5 100%);
  padding: 36px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(198, 155, 59, 0.2);
  transition: var(--transition);
  animation: slideInUp 0.8s ease-out;
}

.booking-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.booking-card h2 {
  margin-top: 0;
  font-size: 28px;
  color: var(--deep-green);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.booking-note {
  color: var(--brown);
  font-size: 15px;
  line-height: 1.8;
  font-weight: 500;
}

.booking-ctas {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.mini-pricing ul {
  list-style: none;
  padding: 0;
  margin: 8px 0;
}
.mini-pricing li {
  padding: 6px 0;
  color: #4b3c36;
}
.map iframe {
  width: 100%;
  height: 260px;
  border: 0;
  border-radius: 8px;
}

/* Contact quick block styles */
.contact-quick {
  margin-top: 16px;
}
.contact-encourage {
  margin: 0 0 8px 0;
  color: #42332b;
}
.contact-items {
  list-style: none;
  padding: 0;
  margin: 6px 0 12px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: center;
  color: #555;
  padding: 20px;
  border-radius: 12px;
  transition: var(--transition);
  animation: slideInUp 0.6s ease-out;
  background: linear-gradient(135deg, #ffffff 0%, #f9faf8 100%);
  border: 2px solid transparent;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.contact-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--rose-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

.contact-item:hover {
  background: linear-gradient(135deg, #fffbf5 0%, #fff9f5 100%);
  transform: translateX(8px);
  border-color: var(--gold);
  box-shadow: 0 12px 32px rgba(11, 59, 46, 0.15);
}

.contact-item:hover::before {
  transform: scaleX(1);
}

.contact-item i {
  color: white;
  background: linear-gradient(135deg, var(--deep-green), #0a2f26);
  padding: 14px;
  border-radius: 10px;
  min-width: 48px;
  text-align: center;
  font-size: 22px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
}

.contact-item:hover i {
  transform: scale(1.25) rotate(8deg);
  background: linear-gradient(135deg, var(--gold), var(--rose-gold));
}
.social-inline {
  display: flex;
  gap: 10px;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--gold), #d6b85a);
  color: var(--cream);
  text-decoration: none;
}
.social-btn i {
  font-size: 18px;
}

/* Reviews Section */
.reviews {
  padding: 80px 0;
  background: linear-gradient(135deg, #f9faf8 0%, #f5f9f7 100%);
  position: relative;
  border-top: 1px solid rgba(198, 155, 59, 0.15);
  overflow: hidden;
}

.reviews::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(11, 59, 46, 0.04), transparent);
  border-radius: 50%;
  pointer-events: none;
}

.reviews::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(198, 155, 59, 0.04), transparent);
  border-radius: 50%;
  pointer-events: none;
}

.reviews h2 {
  font-size: 48px;
  margin-bottom: 12px;
  color: var(--deep-green);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.reviews .section-sub {
  font-size: 18px;
  color: var(--brown);
  margin-bottom: 44px;
}

/* Reviews Carousel - Proper Infinite Scroll */
.reviews-carousel {
  position: relative;
  width: 100%;
  margin-top: 24px;
  margin-bottom: 44px;
}

.reviews-viewport {
  overflow: hidden;
  width: 100%;
  border-radius: 12px;
}

.reviews-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s ease-in-out;
  will-change: transform;
}

.reviews-grid::-webkit-scrollbar {
  display: none;
}

.review-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: box-shadow 0.3s ease;
  border: 1px solid #e8e8e8;
  position: relative;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  height: 320px;
  width: 280px;
}

.review-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-color: #dadce0;
}

.review-card::before {
  content: "✓";
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 16px;
  color: #4285f4;
  font-weight: bold;
}

/* Carousel Navigation Buttons */
.reviews-carousel .carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: linear-gradient(135deg, var(--deep-green), #0a2f26);
  color: var(--cream);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.reviews-carousel .carousel-nav.prev {
  left: 16px;
}

.reviews-carousel .carousel-nav.next {
  right: 16px;
}

.reviews-carousel .carousel-nav:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.reviews-carousel .carousel-nav:active {
  transform: translateY(-50%) scale(0.95);
}

.review-stars {
  font-size: 16px;
  color: #ffc107;
  margin-bottom: 8px;
  letter-spacing: 1px;
  font-weight: bold;
}

.review-text {
  font-size: 13px;
  line-height: 1.6;
  color: #202124;
  margin: 0 0 12px 0;
  font-weight: 400;
  flex-grow: 1;
  overflow-y: auto;
  max-height: 140px;
  padding-right: 8px;
}

.review-text::-webkit-scrollbar {
  width: 4px;
}

.review-text::-webkit-scrollbar-track {
  background: transparent;
}

.review-text::-webkit-scrollbar-thumb {
  background: #dadce0;
  border-radius: 2px;
}

.review-text::-webkit-scrollbar-thumb:hover {
  background: #bdc1c6;
}

.review-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid #e8e8e8;
}

.review-author strong {
  color: #202124;
  font-size: 12px;
  font-weight: 600;
}

.review-date {
  font-size: 11px;
  color: #5f6368;
  font-weight: 400;
}

.reviews-cta {
  text-align: center;
  padding: 48px;
  background: linear-gradient(135deg, #fff9f5 0%, #fffbf5 100%);
  border-radius: 12px;
  border: 1px solid rgba(198, 155, 59, 0.2);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  margin-top: 48px;
}

.reviews-cta:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.reviews-cta p {
  font-size: 18px;
  color: var(--deep-green);
  margin-bottom: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.reviews-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #0b3b2e 0%, #0a2f26 100%);
  padding: 40px 0;
  border-top: 1px solid rgba(198, 155, 59, 0.3);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.footer-grid p {
  color: #fff;
  font-weight: 500;
  line-height: 1.6;
}
.footer-grid h4 {
  color: var(--gold);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 600;
}
.footer-links a:hover {
  color: #fff;
  text-shadow: 0 0 8px rgba(198, 155, 59, 0.5);
}
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(198, 155, 59, 0.15);
  color: var(--gold);
  margin-right: 8px;
  text-decoration: none;
  transition: var(--transition);
}
.footer-socials a:hover {
  background: linear-gradient(90deg, var(--gold), #d6b85a);
  color: #fff;
  transform: translateY(-4px);
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(198, 155, 59, 0.2);
  margin-top: 20px;
  color: #fff;
  text-align: center;
}
.footer-bottom p {
  margin: 0;
  font-size: 14px;
}
.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition);
}
.footer-bottom a:hover {
  color: #fff;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(11, 59, 46, 0.92);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  animation: fadeIn 0.3s ease;
}

.lightbox[aria-hidden="false"] {
  display: flex;
}

.lb-image {
  max-width: 90%;
  max-height: 85%;
  border-radius: 12px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: zoomIn 0.4s ease;
}

.lb-image.zoomed {
  transform: scale(1.12);
}

.lb-close,
.lb-prev,
.lb-next {
  position: fixed;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--cream);
  font-size: 36px;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.lb-close:hover,
.lb-prev:hover,
.lb-next:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.lb-close {
  top: 24px;
  right: 24px;
}

.lb-prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.lb-next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

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

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

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

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

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

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(198, 155, 59, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(198, 155, 59, 0.6);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

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

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(198, 155, 59, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(198, 155, 59, 0);
  }
}

/* Responsive - Tablets & Medium Screens */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .card {
    min-width: 200px;
  }

  .card-image {
    height: 200px;
  }
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .carousel-track {
    gap: 12px;
  }

  .card {
    min-width: 180px;
  }

  .card-image {
    height: 180px;
  }

  .section-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .nav ul {
    display: none;
  }

  .nav-toggle {
    display: inline-block;
    color: var(--deep-green);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .nav-toggle:hover {
    transform: scale(1.1);
  }

  .nav.open ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 12px;
    right: 12px;
    top: 74px;
    background: linear-gradient(
      180deg,
      rgba(255, 251, 245, 0.98),
      rgba(255, 246, 234, 0.96)
    );
    padding: 16px 20px;
    border-radius: 14px;
    gap: 8px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(198, 155, 59, 0.1);
  }

  .nav.open ul li a {
    display: block;
    padding: 12px 14px;
    border-radius: 8px;
    transition: all 0.2s ease;
  }

  .nav.open ul li a:hover {
    background: rgba(198, 155, 59, 0.15);
  }
}
/* Desktop - Show 4 reviews (280px each) */
@media (min-width: 1200px) {
  .review-card {
    width: 280px;
  }
}

/* Laptop - Show 3 reviews (320px each) */
@media (min-width: 900px) and (max-width: 1199px) {
  .review-card {
    width: 320px;
  }
}

/* Tablet - Show 2 reviews (340px each) */
@media (min-width: 600px) and (max-width: 899px) {
  .review-card {
    width: 340px;
  }
}

/* Mobile - Show 1 review (full width) */
@media (max-width: 599px) {
  .review-card {
    width: calc(100vw - 100px);
  }
}

/* Mobile - Tablets */
@media (max-width: 768px) {
  .hero-title {
    font-size: 52px;
  }

  .hero-sub {
    font-size: 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .card {
    min-width: 160px;
  }

  h2::after {
    width: 60px;
  }

  .card-image {
    height: 160px;
  }
}

/* Mobile - Small Phones */
@media (max-width: 600px) {
  .hero-title {
    font-size: 40px;
  }

  .hero-sub {
    font-size: 18px;
  }

  .hero-desc {
    font-size: 15px;
  }

  .header-inner {
    gap: 8px;
    padding: 10px 0;
  }

  .logo img {
    height: 44px;
  }

  .top-contacts {
    display: none;
  }

  .carousel {
    gap: 8px;
  }

  .card {
    min-width: 140px;
  }

  .card-image {
    height: 140px;
  }

  .card-cap {
    padding: 10px;
    font-size: 12px;
  }

  .container {
    width: calc(100% - 24px);
  }

  .hero {
    padding: 32px 0;
    min-height: 65vh;
  }

  .hero-content {
    padding: 12px 8px;
  }

  .hero-ctas {
    gap: 8px;
  }

  .btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  .booking-card {
    padding: 16px;
  }

  .service-card {
    padding: 20px;
  }

  .service-icon {
    font-size: 40px;
  }

  h2 {
    font-size: 28px;
  }

  .section-sub {
    font-size: 14px;
  }

  .reviews-carousel .carousel-nav {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .reviews-carousel .carousel-nav.prev {
    left: 8px;
  }

  .reviews-carousel .carousel-nav.next {
    right: 8px;
  }

  .reviews-track {
    gap: 12px;
  }

  .reviews-grid {
    gap: 16px;
    padding-bottom: 0;
  }

  .review-card {
    padding: 16px;
    min-width: 260px;
    height: 300px;
  }

  .reviews-cta {
    padding: 24px;
  }

  .carousel-nav {
    padding: 8px 10px;
    font-size: 20px;
  }

  .lb-close,
  .lb-prev,
  .lb-next {
    font-size: 28px;
    padding: 8px 10px;
  }

  .lb-close {
    top: 16px;
    right: 16px;
  }

  .lb-prev {
    left: 12px;
  }

  .lb-next {
    right: 12px;
  }
}

/* Extra Small Phones */
@media (max-width: 420px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .hero-desc {
    font-size: 14px;
  }

  .hero-location {
    font-size: 13px;
  }

  .card-image {
    height: 120px;
  }

  .card {
    min-width: 120px;
  }

  .carousel-track {
    gap: 8px;
  }

  .nav.open ul {
    left: 8px;
    right: 8px;
  }

  .container {
    width: calc(100% - 16px);
  }

  .btn {
    padding: 10px 16px;
    font-size: 13px;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .service-card {
    padding: 16px;
  }

  .service-icon {
    font-size: 36px;
  }

  h2 {
    font-size: 20px;
  }

  .hero-features {
    flex-direction: column;
    gap: 8px;
  }

  .hero-features li {
    width: 100%;
    justify-content: center;
  }
}

/* === Responsive overflow & link fixes (overrides) === */
html,
body {
  width: 100%;
  overflow-x: hidden; /* strong guard against horizontal scroll */
}

/* Make images behave responsively everywhere (including gallery cards) */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Prevent long words/emails/phone numbers from creating horizontal scroll */
.hero-content,
.about-content,
.booking-card,
.contact-info,
.footer-grid,
.contact-quick,
.card-cap {
  word-break: break-word;
  overflow-wrap: break-word;
}

/* Lightbox: limit image to viewport minus comfortable gutters */
.lb-image {
  max-width: calc(100% - 48px) !important;
  max-height: calc(100% - 96px) !important;
  width: auto !important;
  height: auto !important;
}

/* Ensure the lightbox controls don't push layout on very small screens */
.lb-prev,
.lb-next,
.lb-close {
  max-width: 56px;
  padding: 6px 8px;
}

/* Footer: stack columns on smaller screens to avoid overflow */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Normalize phone / mailto / social link appearance (remove default blue underline) */

.booking-ctas-1 {
  color: #fff !important;
}

a[href^="tel:"],
a[href^="mailto:"],
.contact-list a,
.contact-items a,
.booking-ctas a,
.footer-links a,
.social,
.icon-link {
  text-decoration: none;
}

.booking-ctas-2 {
  color: #0b3b2e;
}
.booking-ctas-1:hover {
  background-color: #af9212;
}
.booking-ctas-2:hover {
  background-color: #af9212;
}

/* Hover state keeps clear visual affordance */
a[href^="tel:"]:hover,
a[href^="mailto:"]:hover,
.contact-list a:hover,
.contact-items a:hover,
.booking-ctas a:hover,
.footer-links a:hover,
.social:hover,
.icon-link:hover {
  color: #805804;
}

/* Ensure container respects viewport and does not cause side scroll */
.container {
  box-sizing: border-box;
}

/* Small mobile adjustments to avoid any accidental overflow */
@media (max-width: 420px) {
  .hero-title {
    font-size: 36px;
  }
  .card-image {
    height: 150px;
  }
  .carousel-track {
    gap: 8px;
  }
  .nav.open ul {
    left: 8px;
    right: 8px;
  }
}

/* End overrides */
