@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Poppins:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Outfit:wght@400;700;800&display=swap');
/* Import Google Material Symbols */
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0');

:root {
  --color-primary: #2b2b2b;
  --color-secondary: #B76E79; /* Rose Gold / Pink */
  --color-accent: #D4AF37; /* Gold */
  --color-secondary-light: #e8c4ca;
  --color-secondary-dark: #944a55;
  
  --color-text-main: #333333;
  --color-text-light: #ffffff;
  
  --glass-bg: rgba(255, 255, 255, 0.75); 
  --glass-border: rgba(255, 255, 255, 0.5);
  --glass-blur: blur(20px); 
  --glass-shadow: 0 15px 35px 0 rgba(0, 0, 0, 0.06);

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Section backgrounds for rhythm */
  --bg-white: #ffffff;
  --bg-cream: #fdf8f4;
  --bg-rose-tint: #fdf2f4;
  --bg-dark: #1a1a1a;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-main);
  line-height: 1.8;
  overflow-x: hidden;
  font-size: 16px;
  background-color: var(--bg-white);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
}

h1 { font-size: 4rem; }
h2 { font-size: 3rem; }
h3 { font-size: 2rem; }
p { margin-bottom: 2rem; font-size: 1.1rem; }

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* ===== MATERIAL SYMBOLS ===== */
.material-symbols-outlined {
  font-size: 3.5rem;
  color: var(--color-secondary);
  margin-bottom: 1.5rem;
  display: block;
}

/* ===== GRADIENT TEXT HIGHLIGHTS ===== */
.highlight {
  background: linear-gradient(135deg, var(--color-secondary), #d18a96, var(--color-accent));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  animation: gradientShift 6s ease infinite;
}

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

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.section-padding { padding: 6rem 0; }
.accent-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
  margin: 1.5rem auto 3rem;
  border-radius: 2px;
}
.accent-line.left { margin-left: 0; }

/* Section background variants */
.section-cream { background-color: var(--bg-cream); }
.section-rose { background-color: var(--bg-rose-tint); }
.section-dark {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: var(--color-text-light);
}
.section-dark h1, .section-dark h2, .section-dark h3 {
  color: var(--color-text-light);
}
.section-dark p { color: rgba(255,255,255,0.85); }

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== TOP BAR ===== */
.top-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(135deg, var(--color-primary) 0%, #3a3a3a 100%);
  color: #fff;
  text-align: center;
  padding: 0.8rem;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ===== HEADER (Glass – scroll-responsive) ===== */
header {
  padding: 1.5rem 5%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  margin-top: -1px;
  z-index: 999;
  transition: padding 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}
header.scrolled {
  padding: 0.8rem 5%;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  background: rgba(255, 255, 255, 0.98);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}
.logo-container img { 
  height: 50px; 
  transition: height 0.4s ease;
}
header.scrolled .logo-container img {
  height: 40px;
}
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-secondary);
  letter-spacing: 1px;
}

/* ===== NAVIGATION & HAMBURGER ===== */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.nav-menu a {
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  color: var(--color-primary);
  padding-bottom: 4px;
}
/* Animated underline on hover/active */
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.nav-menu a:hover::after, .nav-menu a.active::after {
  width: 100%;
}
.nav-menu a:hover, .nav-menu a.active {
  color: var(--color-secondary);
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--color-primary);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.5) 50%,
    rgba(0,0,0,0.75) 100%
  );
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 2rem;
}
.hero-content h1 {
  color: #fff;
  font-size: 4.5rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
  margin-bottom: 1rem;
}
.hero-content p {
  color: rgba(255,255,255,0.9);
  font-size: 1.5rem;
  font-family: var(--font-heading);
}
.hero-badges {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-badge {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-buttons {
  margin-top: 3rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Staggered hero animation */
.hero-content .hero-icon { animation: heroFadeIn 0.8s ease forwards; opacity: 0; }
.hero-content h1 { animation: heroFadeIn 0.8s 0.2s ease forwards; opacity: 0; }
.hero-content > p { animation: heroFadeIn 0.8s 0.4s ease forwards; opacity: 0; }
.hero-badges { animation: heroFadeIn 0.8s 0.6s ease forwards; opacity: 0; }
.hero-buttons { animation: heroFadeIn 0.8s 0.8s ease forwards; opacity: 0; }

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

/* Scroll down indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: scrollBounce 2s infinite;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  text-decoration: none;
}
.scroll-indicator .material-symbols-outlined {
  font-size: 2.5rem;
  color: rgba(255,255,255,0.8);
  margin: 0;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(12px); }
}

/* ===== STANDALONE BANNER (sub-pages) ===== */
.banner-image-container {
  width: 100%;
  height: 45vh;
  min-height: 280px;
  background: var(--color-primary);
  display: block;
  overflow: hidden;
  position: relative;
}
.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
}

/* ===== ICON BADGES ===== */
.icon-badge {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-secondary), #d18a96);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 25px rgba(183, 110, 121, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.icon-badge .material-symbols-outlined {
  font-size: 2.2rem;
  color: #fff;
  margin: 0;
}
.icon-badge:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(183, 110, 121, 0.4);
}

/* Gold variant */
.icon-badge.gold {
  background: linear-gradient(135deg, var(--color-accent), #e6c84b);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}
.icon-badge.gold:hover {
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

/* Step number badges */
.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 6px 20px rgba(183, 110, 121, 0.3);
}

/* ===== GLASS PANELS ===== */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 4rem;
  box-shadow: var(--glass-shadow);
  transition: transform 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
}
.glass-panel:hover {
  transform: translateY(-6px);
  border-color: rgba(183, 110, 121, 0.15);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/* Card with colored top border */
.card-accent {
  border-top: 4px solid var(--color-secondary);
}
.card-accent.gold {
  border-top-color: var(--color-accent);
}
.card-accent.dark {
  border-top-color: var(--color-primary);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}
.btn .material-symbols-outlined {
  font-size: 1.5rem;
  margin: 0;
  color: inherit;
}

/* Shimmer effect */
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.25),
    transparent
  );
  transition: left 0.6s ease;
}
.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-secondary), #d18a96);
  color: #FFF;
  box-shadow: 0 10px 20px rgba(183, 110, 121, 0.3);
}
.btn-primary:hover {
  transform: translateY(-4px) scale(1.03); 
  box-shadow: 0 15px 35px rgba(183, 110, 121, 0.45);
}
.btn-outline {
  background: #FFF;
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
}
.btn-outline:hover {
  background: var(--color-secondary);
  color: #FFF;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 15px 35px rgba(183, 110, 121, 0.3);
}

/* ===== GRID LAYOUTS ===== */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}

/* ===== IMAGES ===== */
.img-fluid {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  border: 4px solid #fff;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.img-fluid:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* ===== SERVICE BLOCKS ===== */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 8rem;
}
.service-block:nth-child(even) {
  direction: rtl;
}
.service-block:nth-child(even) > * {
  direction: ltr;
}
.service-block img {
  height: 500px;
  object-fit: cover;
}

/* ===== WAVE DIVIDER ===== */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: 80px;
}
.wave-divider.flip {
  transform: rotate(180deg);
  margin-top: 0;
  margin-bottom: -1px;
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #FFF;
  padding: 5rem 5% 2rem;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-col h3 {
  color: var(--color-secondary);
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
}
.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
  border-radius: 2px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 1rem; opacity: 0.85; font-size: 1.05rem; }
.footer-col a { transition: color 0.3s ease, padding-left 0.3s ease; }
.footer-col a:hover { color: var(--color-secondary); opacity: 1; padding-left: 5px; }
.footer-bottom {
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.95rem;
  opacity: 0.7;
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: white;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
  z-index: 1000;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  animation: whatsappPulse 3s infinite;
}
.whatsapp-btn .material-symbols-outlined {
  font-size: 2.5rem;
  color: white;
  margin: 0;
}
.whatsapp-btn:hover {
  transform: scale(1.15) rotate(-10deg);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
  animation: none;
}
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35), 0 0 0 12px rgba(37, 211, 102, 0.15); }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-secondary), #d18a96);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(183, 110, 121, 0.3);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
  cursor: pointer;
  border: none;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(183, 110, 121, 0.5);
}
.back-to-top .material-symbols-outlined {
  font-size: 1.8rem;
  color: #fff;
  margin: 0;
}

/* ===== STAT COUNTER ANIMATION ===== */
.stat-card {
  text-align: center;
  padding: 3rem 2rem;
}
.stat-card .stat-value {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}
.stat-card .stat-label {
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== GALLERY ===== */
/* Masonry-style gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.6) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.5rem;
}
.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}
.gallery-item-overlay .material-symbols-outlined {
  font-size: 2.5rem;
  color: #fff;
  margin: 0;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  cursor: pointer;
}
.lightbox.active {
  opacity: 1;
  visibility: visible;
}
.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transform: scale(0.9);
  transition: transform 0.4s ease;
}
.lightbox.active img {
  transform: scale(1);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  cursor: pointer;
}
.lightbox-close .material-symbols-outlined {
  font-size: 3rem;
  color: #fff;
  margin: 0;
}

/* ===== CONNECT PAGE CARDS ===== */
.connect-card {
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.connect-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-accent), var(--color-secondary));
  background-size: 200% 200%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: borderGlow 3s ease infinite;
}
.connect-card:hover::before {
  opacity: 1;
}
.connect-card:hover {
  transform: translateY(-8px);
}

.connect-card.whatsapp-card {
  animation: whatsappCardPulse 4s ease infinite;
}
@keyframes whatsappCardPulse {
  0%, 100% { box-shadow: 0 15px 35px rgba(37, 211, 102, 0.1); }
  50% { box-shadow: 0 15px 35px rgba(37, 211, 102, 0.25); }
}
@keyframes borderGlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ===== PAGE HEADER SECTION ===== */
.page-header {
  position: relative;
  z-index: 2;
  margin-top: -80px;
}
.page-header .glass-panel {
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* ===== Before/After Slider ===== */
.slider-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 24px;
  height: 500px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  border: 4px solid #fff;
}
.slider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.slider-after {
  z-index: 1;
}
.slider-before-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  z-index: 2;
  overflow: hidden;
  border-right: 4px solid var(--color-secondary);
}
.slider-before {
  width: 900px; 
  height: 100%;
  object-fit: cover;
}
.slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: ew-resize;
  z-index: 3;
  box-shadow: 0 0 25px rgba(183, 110, 121, 0.4);
  transition: transform 0.2s ease;
}
.slider-handle:hover {
  transform: translate(-50%, -50%) scale(1.15);
}
.slider-handle .material-symbols-outlined {
  font-size: 2rem;
  margin: 0;
  color: white;
}

/* ===== MOBILE RESPONSIVENESS ===== */
@media (max-width: 992px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.5rem; }
  .grid-2 { grid-template-columns: 1fr; gap: 3rem; }
  .service-block { grid-template-columns: 1fr; margin-bottom: 5rem; direction: ltr !important; }
  .service-block:nth-child(even) > * { direction: ltr; }
  .service-block img { height: 350px; }
  .glass-panel { padding: 2.5rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-row: span 1; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
  .hero-content h1 { font-size: 3.5rem; }
}

@media (max-width: 992px) {
  .top-bar {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none !important;
  }
  .hamburger {
    display: block;
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
  }
  .hamburger .material-symbols-outlined {
    font-size: 2rem;
  }
  .logo-text {
    display: none;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    gap: 2.5rem;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    z-index: 1001;
  }
  .nav-menu.active {
    right: 0;
  }
  .nav-menu a {
    font-size: 1.3rem;
  }
  /* Mobile menu overlay */
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
  }
  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  .section-padding { padding: 4rem 0; }
  .hero { min-height: 70vh; }
  .hero-content h1 { font-size: 2.5rem; }
  .hero-content p { font-size: 1.2rem; }
  .banner-image-container { height: 35vh; min-height: 250px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .page-header { margin-top: -50px; }
}

/* ===== DECORATIVE ELEMENTS ===== */
.section-with-orb {
  position: relative;
  overflow: hidden;
}
.section-with-orb::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183, 110, 121, 0.08) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  z-index: 0;
  pointer-events: none;
}
.section-with-orb::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
  bottom: -80px;
  left: -80px;
  z-index: 0;
  pointer-events: none;
}
.section-with-orb > * {
  position: relative;
  z-index: 1;
}
