@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ==========================================
   DESIGN SYSTEM & VARIABLES
   ========================================== */
:root {
  /* Colors - Modern Luxury */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-tertiary: #f1f3f5;
  --text-primary: #121212;
  --text-secondary: #495057;
  --text-muted: #868e96;
  --accent-color: #212529;
  --accent-light: #e9ecef;
  --platinum: #e2e8f0;
  --silver-glow: rgba(0, 0, 0, 0.03);
  --success: #2b8a3e;
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --container-max-width: 1200px;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --border-radius: 8px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-normal);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* ==========================================
   LAYOUT UTILITIES
   ========================================== */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 8rem 0;
}

.section-bg {
  background-color: var(--bg-secondary);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-header .subtitle {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  font-weight: 600;
  display: block;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

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

/* Grid columns helper */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 1.1rem 2.2rem;
  border-radius: var(--border-radius);
  transition: all var(--transition-normal);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--accent-color);
  color: var(--bg-primary);
}

.btn-primary:hover {
  background-color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border-color: var(--platinum);
}

.btn-secondary:hover {
  border-color: var(--text-primary);
  background-color: var(--bg-secondary);
  transform: translateY(-2px);
}

.btn-group {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

/* ==========================================
   HEADER / NAVIGATION
   ========================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid var(--platinum);
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background-color var(--transition-normal), padding var(--transition-normal);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  transition: height var(--transition-normal);
}

header.scrolled .nav-container {
  height: 70px;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo .brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-primary);
  line-height: 1;
}

.logo .brand-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
  font-weight: 600;
}

/* New Brand Logo Container Styles */
.logo-container {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: gap var(--transition-normal);
}

.logo-image {
  height: 48px;
  width: 48px;
  object-fit: contain;
  transition: transform var(--transition-normal), height var(--transition-normal), width var(--transition-normal);
}

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

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text .brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-primary);
  line-height: 1;
  transition: font-size var(--transition-normal);
}

.logo-text .brand-sub {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
  font-weight: 600;
  transition: font-size var(--transition-normal), letter-spacing var(--transition-normal);
}

/* Scrolled Header Adjustments */
header.scrolled .logo-image {
  height: 38px;
  width: 38px;
}

header.scrolled .logo-text .brand-name {
  font-size: 1.25rem;
}

header.scrolled .logo-text .brand-sub {
  font-size: 0.55rem;
  letter-spacing: 0.35em;
}

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

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--text-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

/* Hamburger mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--text-primary);
  transition: transform var(--transition-normal), opacity var(--transition-normal);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--text-primary);
  color: var(--bg-primary);
  overflow: hidden;
  padding-top: 90px;
}

.hero-img-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-img-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.75) 30%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 2;
}

.hero-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 650px;
}

.hero-content .subtitle {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--platinum);
  margin-bottom: 1.5rem;
  display: block;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.hero-content p {
  font-size: 1.1rem;
  color: #d1d5db;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

/* ==========================================
   ABOUT PREVIEW / VALUE PROPOSITIONS
   ========================================== */
.value-card {
  padding: 3rem 2rem;
  background-color: var(--bg-primary);
  border: 1px solid var(--platinum);
  border-radius: var(--border-radius);
  transition: all var(--transition-normal);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
  border-color: var(--text-primary);
}

.value-card .icon-wrapper {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--bg-secondary);
}

.value-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.value-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ==========================================
   SERVICES PREVIEW
   ========================================== */
.service-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--platinum);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  border-color: var(--text-primary);
}

.service-img-wrapper {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.service-card-content {
  padding: 2.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.service-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.service-features-list {
  margin-bottom: 2rem;
}

.service-features-list li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-features-list li::before {
  content: '✓';
  color: var(--text-primary);
  font-weight: bold;
}

/* ==========================================
   BEFORE & AFTER SLIDER (PAINT CORRECTION)
   ========================================== */
.slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--platinum);
}

.slider-before, .slider-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  user-select: none;
}

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

.slider-after {
  width: 50%;
  overflow: hidden;
  z-index: 2;
  border-right: 2px solid var(--bg-primary);
}

.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 40px;
  height: 100%;
  transform: translateX(-50%);
  z-index: 10;
  cursor: ew-resize;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-handle-button {
  width: 40px;
  height: 40px;
  background-color: var(--text-primary);
  color: var(--bg-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border: 2px solid var(--bg-primary);
  transition: background-color var(--transition-normal);
}

.slider-handle:hover .slider-handle-button {
  background-color: #000000;
}

.slider-label {
  position: absolute;
  bottom: 20px;
  padding: 0.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
  z-index: 5;
  pointer-events: none;
}

.label-before {
  right: 20px;
}

.label-after {
  left: 20px;
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonial-card {
  background-color: var(--bg-primary);
  padding: 3rem;
  border: 1px solid var(--platinum);
  border-radius: var(--border-radius);
  transition: all var(--transition-normal);
}

.testimonial-card:hover {
  border-color: var(--text-primary);
}

.testimonial-stars {
  font-size: 1.1rem;
  color: #ffc000;
  margin-bottom: 1.5rem;
}

.testimonial-card p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.7;
}

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

.testimonial-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
}

.testimonial-author-info h4 {
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.testimonial-author-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================
   CTA BANNER SECTION
   ========================================== */
.cta-banner {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--platinum);
  border-bottom: 1px solid var(--platinum);
  text-align: center;
  padding: 6rem 0;
}

.cta-banner h2 {
  font-size: 2.5rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--platinum);
  padding: 6rem 0 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-about .logo {
  margin-bottom: 1.5rem;
}

.footer-about p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--platinum);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition-normal);
}

.footer-social-link:hover {
  background-color: var(--text-primary);
  color: var(--bg-primary);
  border-color: var(--text-primary);
}

.footer-heading {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

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

.footer-contact li {
  margin-bottom: 1rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  display: flex;
  gap: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid var(--platinum);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================
   REFACTORED PAGE HERO & MAIN CONTAINERS
   ========================================== */
.page-hero-section {
  padding-top: 12rem;
  padding-bottom: 4rem;
}

.page-hero-title {
  font-size: 3.5rem;
  text-transform: uppercase;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.page-hero-desc {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 1.1rem;
  font-weight: 300;
}

.booking-main {
  padding-top: 10rem;
  padding-bottom: 8rem;
}

/* ==========================================
   SERVICES PAGE CUSTOMS
   ========================================== */
.services-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.tab-btn {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.8rem 1.8rem;
  border: 1px solid var(--platinum);
  background: transparent;
  cursor: pointer;
  border-radius: 30px;
  transition: all var(--transition-normal);
}

.tab-btn:hover, .tab-btn.active {
  background-color: var(--text-primary);
  color: var(--bg-primary);
  border-color: var(--text-primary);
}

.services-list-container {
  margin-top: 3rem;
}

.services-category-section {
  display: none;
}

.services-category-section.active {
  display: block;
  animation: fadeIn 0.4s ease-out;
}

.detailed-packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.detail-package-card {
  border: 1px solid var(--platinum);
  background-color: var(--bg-primary);
  border-radius: var(--border-radius);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: all var(--transition-normal);
}

.detail-package-card:hover {
  border-color: var(--text-primary);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.detail-package-card.featured {
  border: 2px solid var(--text-primary);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--text-primary);
  color: var(--bg-primary);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 20px;
}

.detail-package-card h3 {
  font-size: 1.75rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.detail-package-card .package-duration {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  display: block;
}

.detail-package-card .price {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.detail-package-card .price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
}

.package-features {
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.package-features li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.package-features li::before {
  content: '✓';
  color: var(--text-primary);
  font-weight: 700;
  margin-top: 1px;
}

/* A la carte custom list */
.alacarte-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 3rem;
  margin-top: 2rem;
}

.alacarte-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--platinum);
}

.alacarte-item-info h4 {
  font-size: 1.15rem;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.alacarte-item-info p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.alacarte-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
}

/* Maintenance section styles */
.maintenance-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem auto;
  color: var(--text-secondary);
}

/* ==========================================
   GALLERY PAGE CUSTOMS
   ========================================== */
.gallery-filter-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--platinum);
  background: transparent;
  cursor: pointer;
  border-radius: 4px;
  transition: all var(--transition-normal);
}

.filter-btn:hover, .filter-btn.active {
  background-color: var(--text-primary);
  color: var(--bg-primary);
  border-color: var(--text-primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--border-radius);
  border: 1px solid var(--platinum);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--bg-primary);
  transition: opacity var(--transition-normal);
  padding: 2rem;
  text-align: center;
  z-index: 2;
}

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

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay h4 {
  font-size: 1.25rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  transform: translateY(10px);
  transition: transform var(--transition-normal);
}

.gallery-item-overlay p {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: #cccccc;
  transform: translateY(10px);
  transition: transform var(--transition-normal) 0.05s;
}

.gallery-item:hover .gallery-item-overlay h4,
.gallery-item:hover .gallery-item-overlay p {
  transform: translateY(0);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 85%;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-caption {
  color: #ffffff;
  text-align: center;
  margin-top: 1rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 1rem;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
  background: transparent;
  border: none;
}

/* ==========================================
   ABOUT PAGE CUSTOMS
   ========================================== */
.about-hero {
  padding: 10rem 0 6rem 0;
  text-align: center;
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--platinum);
}

.about-hero h1 {
  font-size: 3.5rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.about-intro-text {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-weight: 300;
}

.about-story {
  padding: 8rem 0;
}

.about-story-text h3 {
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.about-story-text p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.about-story-img img {
  border-radius: var(--border-radius);
  border: 1px solid var(--platinum);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.pillars-grid {
  margin-top: 4rem;
}

/* ==========================================
   BOOKING PAGE CUSTOMS
   ========================================== */
.booking-layout {
  display: grid;
  grid-template-columns: 2.2fr 1.2fr;
  gap: 3.5rem;
  align-items: start;
}

.booking-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--platinum);
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

/* Multi-step logic styling */
.booking-step {
  display: none;
}

.booking-step.active {
  display: block;
  animation: fadeIn 0.4s ease-out;
}

.step-indicator {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3.5rem;
  position: relative;
}

.step-indicator::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--bg-tertiary);
  z-index: 1;
}

.step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--bg-tertiary);
  border: 2px solid var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-muted);
  position: relative;
  z-index: 2;
  transition: all var(--transition-normal);
}

.step-dot.active {
  background-color: var(--bg-primary);
  border-color: var(--text-primary);
  color: var(--text-primary);
}

.step-dot.completed {
  background-color: var(--text-primary);
  border-color: var(--text-primary);
  color: var(--bg-primary);
}

.step-title {
  font-size: 1.75rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.step-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}

/* Interactive Option Selection Cards */
.selection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.selection-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.selection-card {
  border: 1px solid var(--platinum);
  border-radius: var(--border-radius);
  padding: 2rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  background-color: var(--bg-primary);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.selection-card:hover {
  border-color: var(--text-primary);
  background-color: var(--bg-secondary);
}

.selection-card.selected {
  border-color: var(--text-primary);
  background-color: var(--bg-secondary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.selection-card .icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.selection-card h4 {
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.selection-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  flex-grow: 1;
}

.selection-card .price-tag {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
  font-size: 1.15rem;
}

/* Checkbox Add-ons */
.addons-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.addon-card-checkbox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border: 1px solid var(--platinum);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.addon-card-checkbox:hover {
  border-color: var(--text-primary);
}

.addon-card-checkbox.selected {
  border-color: var(--text-primary);
  background-color: var(--bg-secondary);
}

.addon-checkbox-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.addon-checkbox-left input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--text-primary);
  cursor: pointer;
}

.addon-details h4 {
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.addon-details p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Date and Time selectors */
.date-time-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

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

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.form-control {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 1px solid var(--platinum);
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  transition: border-color var(--transition-normal);
}

.form-control:focus {
  outline: none;
  border-color: var(--text-primary);
}

/* Custom time slot list */
.time-slots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-height: 350px;
  overflow-y: auto;
  padding-right: 5px;
}

.time-slot-btn {
  padding: 1rem;
  border: 1px solid var(--platinum);
  border-radius: var(--border-radius);
  background: transparent;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: center;
}

.time-slot-btn:hover {
  border-color: var(--text-primary);
}

.time-slot-btn.selected {
  background-color: var(--text-primary);
  color: var(--bg-primary);
  border-color: var(--text-primary);
}

/* Customer details page layout */
.customer-details-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.form-full-width {
  grid-column: span 2;
}

/* Step Navigation buttons */
.step-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  border-top: 1px solid var(--platinum);
  padding-top: 2rem;
}

/* Estimate Summary Sidebar */
.estimate-sidebar {
  position: sticky;
  top: 130px;
  border: 1px solid var(--platinum);
  border-radius: var(--border-radius);
  background-color: var(--bg-secondary);
  padding: 2.5rem;
}

.estimate-sidebar h3 {
  font-size: 1.25rem;
  text-transform: uppercase;
  border-bottom: 1px solid var(--platinum);
  padding-bottom: 1.25rem;
  margin-bottom: 1.5rem;
}

.estimate-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-bottom: 1px solid var(--platinum);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

.estimate-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.estimate-row.bold {
  font-weight: 600;
  color: var(--text-primary);
}

.estimate-row span:last-child {
  font-family: var(--font-heading);
  font-weight: 600;
}

.estimate-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.5rem;
}

.estimate-total span:first-child {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.estimate-total-price {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-primary);
}

.estimate-terms {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Success Booking Modal */
.success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 3000;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.success-modal.active {
  display: flex;
  opacity: 1;
}

.success-modal-card {
  background-color: var(--bg-primary);
  border-radius: var(--border-radius);
  max-width: 550px;
  width: 90%;
  padding: 4rem 3rem;
  text-align: center;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--platinum);
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #ebfbee;
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 2rem auto;
}

.success-modal h3 {
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.success-modal p {
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

/* ==========================================
   CAROUSEL COMPONENT (PREMIUM STYLE)
   ========================================== */
.gallery-carousel-section {
  position: relative;
  overflow: hidden;
}

.carousel-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.carousel-main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--platinum);
}

.carousel-viewport {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform var(--transition-slow);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

/* Glassmorphism Navigation Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.05);
}

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

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

/* Thumbnails navigation */
.carousel-thumbnails-container {
  width: 100%;
  overflow-x: auto;
  padding: 0.5rem 0;
  cursor: grab;
  /* Hide scrollbar for Chrome, Safari and Opera */
  -webkit-overflow-scrolling: touch;
}

.carousel-thumbnails-container::-webkit-scrollbar {
  height: 6px;
}

.carousel-thumbnails-container::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 3px;
}

.carousel-thumbnails-container::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

.carousel-thumbnails-container::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.4);
}

.carousel-thumbnails {
  display: flex;
  gap: 10px;
  width: max-content;
  margin: 0 auto;
}

.thumbnail-item {
  width: 80px;
  aspect-ratio: 16 / 10;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.5;
  transition: all var(--transition-normal);
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

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

.thumbnail-item:hover {
  opacity: 0.8;
}

.thumbnail-item.active {
  opacity: 1;
  border-color: var(--text-primary);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .carousel-viewport {
    aspect-ratio: 4 / 3;
  }
  .carousel-btn {
    width: 40px;
    height: 40px;
  }
  .prev-btn {
    left: 10px;
  }
  .next-btn {
    right: 10px;
  }
  .thumbnail-item {
    width: 60px;
  }
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES
   ========================================== */
@media (max-width: 1024px) {
  .grid-3, .detailed-packages, .selection-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .booking-layout {
    grid-template-columns: 1fr;
  }
  
  .estimate-sidebar {
    position: static;
    margin-top: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }

  .section {
    padding: 5rem 0;
  }
  
  .section-header h2 {
    font-size: 2.25rem;
  }
  
  .grid-2, .grid-3, .detailed-packages, .selection-grid, .selection-grid-2, .alacarte-grid, .date-time-grid, .customer-details-form {
    grid-template-columns: 1fr;
  }

  /* Refactored Page Hero & Booking Main */
  .page-hero-section {
    padding-top: 6rem;
    padding-bottom: 2rem;
  }
  .page-hero-title {
    font-size: 2.25rem;
  }
  .about-hero {
    padding: 6rem 0 3rem 0;
  }
  .about-hero h1 {
    font-size: 2.25rem;
  }
  .booking-main {
    padding-top: 6rem;
    padding-bottom: 4rem;
  }

  /* Compact paddings for mobile card containers */
  .booking-card {
    padding: 1.5rem 1.25rem;
  }
  .estimate-sidebar {
    padding: 1.5rem;
  }
  .value-card {
    padding: 2rem 1.25rem;
  }
  .service-card-content {
    padding: 1.5rem;
  }
  .testimonial-card {
    padding: 2rem 1.5rem;
  }

  /* Services Tab Navigation Wrap & Spacing */
  .services-tabs-nav {
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
  }
  .tab-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
    border-radius: 20px;
  }

  /* Booking step dot sizes */
  .step-indicator {
    margin-bottom: 2rem;
  }
  .step-dot {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }

  /* Gallery mobile layout */
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .customer-details-form .form-full-width {
    grid-column: span 1;
  }
  
  .hero h1 {
    font-size: 2.75rem;
  }
  
  .nav-menu {
    position: fixed;
    top: 90px;
    left: 0;
    width: 100%;
    height: calc(100vh - 90px);
    background-color: var(--bg-primary);
    border-top: 1px solid var(--platinum);
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 2rem;
    align-items: flex-start;
    transform: translateX(-100%);
    transition: transform var(--transition-normal);
    z-index: 999;
  }
  
  header.scrolled .nav-menu {
    top: 70px;
    height: calc(100vh - 70px);
  }
  
  .nav-menu.active {
    transform: translateX(0);
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  .btn-group {
    flex-direction: column;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
