/* ==========================================================================
   PARADISE SPA - Imperial Sapphire & Rose Gold Design System
   ========================================================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* CSS Variables / Theme Tokens */
:root {
  --bg-primary: #0B132B;       /* Midnight Navy */
  --bg-surface: #1C2541;       /* Velvet Sapphire */
  --bg-surface-elevated: #232E4E;
  --accent-primary: #C98C7A;   /* Rose Gold */
  --accent-secondary: #A46D5E; /* Copper Dusk */
  --accent-glow: rgba(201, 140, 122, 0.35);
  --accent-glow-strong: rgba(201, 140, 122, 0.6);
  --text-primary: #FAF8F5;     /* Cream */
  --text-muted: #94A3B8;       /* Slate Taupe */
  --border-subtle: rgba(201, 140, 122, 0.2);
  --border-glow: rgba(201, 140, 122, 0.5);
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --transition-fast: 0.25s ease;
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.6);
  --shadow-rose: 0 8px 30px rgba(201, 140, 122, 0.25);
}

/* Reset & Global Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

/* Typography Elements */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.2;
}

p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

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

ul {
  list-style: none;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: #1C2541;
  border: 2px solid var(--bg-primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-secondary);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section-title-wrap {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.section-subtitle {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-primary);
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.75rem;
  margin-bottom: 1rem;
}

.section-description {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Common Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: none;
  outline: none;
  transition: all var(--transition-normal);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background-color: var(--accent-primary);
  color: #0B132B;
  box-shadow: var(--shadow-rose);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  z-index: -1;
  transition: opacity var(--transition-fast);
  opacity: 0;
}

.btn-primary:hover {
  background-color: var(--accent-secondary);
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(201, 140, 122, 0.45);
}

.btn-secondary {
  background: rgba(28, 37, 65, 0.7);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(10px);
}

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

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
}

/* Glassmorphism Card Style */
.glass-card {
  background: rgba(28, 37, 65, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.glass-card:hover {
  border-color: var(--border-glow);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px var(--accent-glow);
  transform: translateY(-6px);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 990;
  transition: all var(--transition-normal);
  animation: floatPulse 3s infinite ease-in-out;
}

.floating-whatsapp:hover {
  transform: scale(1.12) rotate(8deg);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
  color: #FFFFFF;
}

@keyframes floatPulse {
  0%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  }
  50% {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 16px 35px rgba(37, 211, 102, 0.6);
  }
}

/* Header & Sticky Glass Navbar */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--transition-normal);
}

.header.scrolled {
  padding: 0.8rem 0;
  background: rgba(28, 37, 65, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.brand-logo .logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.brand-logo span.highlight {
  color: var(--accent-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  flex-wrap: wrap;
  justify-content: center;
  flex: 1;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
  opacity: 0.85;
  position: relative;
  padding: 0.3rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--accent-primary);
  transition: width var(--transition-fast);
  border-radius: 2px;
}

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

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

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

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001;
}

/* Mobile Nav Drawer */
.mobile-nav-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100vh;
  background: rgba(11, 19, 43, 0.8);
  backdrop-filter: blur(10px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: var(--bg-surface);
  border-left: 1px solid var(--border-subtle);
  z-index: 999;
  padding: 6rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: right var(--transition-normal);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 480px) {
  .mobile-nav-drawer {
    width: 100%;
    max-width: 100%;
    right: -100%;
    padding: 5rem 1.5rem 2rem;
  }

  .mobile-nav-link {
    font-size: 1.1rem;
    padding: 0.75rem 0;
  }
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-drawer.active {
  right: 0;
}

.mobile-nav-link {
  font-size: 1.2rem;
  font-family: var(--font-heading);
  color: var(--text-primary);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mobile-nav-link:hover {
  color: var(--accent-primary);
  padding-left: 0.5rem;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 7rem;
  background: linear-gradient(180deg, rgba(11, 19, 43, 0.6) 0%, rgba(11, 19, 43, 0.95) 100%),
              url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?auto=format&fit=crop&w=1920&q=85') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(201, 140, 122, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  max-width: 780px;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(201, 140, 122, 0.15);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--accent-primary);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.hero-title span.italic {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-primary);
}

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  max-width: 650px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item h3 {
  font-size: 2.25rem;
  color: var(--accent-primary);
  margin-bottom: 0.25rem;
}

.stat-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* About Us Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-img-accent {
  position: absolute;
  bottom: -2.5rem;
  right: -2.5rem;
  width: 240px;
  height: 240px;
  border-radius: var(--radius-md);
  object-fit: cover;
  border: 4px solid var(--bg-primary);
  box-shadow: var(--shadow-md);
}

.about-badge-card {
  position: absolute;
  top: 2rem;
  left: -2rem;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 220px;
}

.about-badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-glow);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.about-badge-text h4 {
  font-size: 1.1rem;
  line-height: 1.2;
}

.about-badge-text p {
  font-size: 0.8rem;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-box {
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-box i {
  color: var(--accent-primary);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.feature-box h4 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.feature-box p {
  font-size: 0.875rem;
}

/* Services Section (15 Cards Grid) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
}

.service-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

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

.service-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(11, 19, 43, 0.85);
  backdrop-filter: blur(8px);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-primary);
}

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

.service-title {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  transition: color var(--transition-fast);
}

.service-card:hover .service-title {
  color: var(--accent-primary);
}

.service-desc {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: auto;
}

.service-meta {
  display: flex;
  flex-direction: column;
}

.service-duration {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.service-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-primary);
  font-family: var(--font-heading);
}

/* Gallery Section & Lightbox */
.gallery-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.55rem 1.4rem;
  background: rgba(28, 37, 65, 0.5);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent-primary);
  color: #0B132B;
  border-color: var(--accent-primary);
  font-weight: 600;
  box-shadow: var(--shadow-rose);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 260px;
  cursor: pointer;
  border: 1px solid var(--border-subtle);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11, 19, 43, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

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

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

.gallery-info h4 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.gallery-info p {
  font-size: 0.85rem;
  color: var(--accent-primary);
}

.gallery-icon-zoom {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201, 140, 122, 0.85);
  color: #0B132B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(11, 19, 43, 0.95);
  backdrop-filter: blur(15px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  padding: 2rem;
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 900px;
  width: 100%;
  text-align: center;
}

.lightbox-img {
  max-height: 75vh;
  max-width: 100%;
  object-fit: contain;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glow);
  box-shadow: var(--shadow-lg);
}

.lightbox-caption {
  margin-top: 1rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-primary);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(28, 37, 65, 0.8);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.3rem;
  transition: all var(--transition-fast);
}

.lightbox-close {
  top: -60px;
  right: 0;
}

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

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

@media (max-width: 768px) {
  .lightbox-modal {
    padding: 1rem;
  }

  .lightbox-img {
    max-height: 70vh;
  }

  .lightbox-close {
    top: -50px;
    right: 0;
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  .lightbox-prev {
    left: 5px;
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  .lightbox-next {
    right: 5px;
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  .lightbox-caption {
    font-size: 1.1rem;
  }
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--accent-primary);
  color: #0B132B;
}

/* Special Offers Section */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.offer-card {
  position: relative;
  padding: 2.5rem 2rem;
  border: 2px solid var(--accent-primary);
  box-shadow: 0 0 25px var(--accent-glow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.offer-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: #0B132B;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
}

.offer-header {
  margin-bottom: 1.5rem;
}

.offer-title {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.offer-price-tag {
  font-size: 2.25rem;
  font-family: var(--font-heading);
  color: var(--accent-primary);
  font-weight: 700;
  margin-bottom: 1rem;
}

.offer-price-tag span.original {
  font-size: 1.2rem;
  text-decoration: line-through;
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 0.5rem;
}

.offer-features {
  margin-bottom: 2rem;
}

.offer-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.offer-features li i {
  color: var(--accent-primary);
}

/* Customer Reviews Carousel */
.reviews-slider-wrap {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
  overflow: hidden;
  padding: 1rem 0 3rem;
}

.reviews-track {
  display: flex;
  transition: transform var(--transition-slow);
}

.review-card {
  min-width: 100%;
  padding: 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.review-stars {
  color: #F59E0B;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  display: flex;
  gap: 0.35rem;
}

.review-quote {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

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

.author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-primary);
}

.author-info {
  text-align: left;
}

.author-name {
  font-size: 1.1rem;
  font-weight: 600;
}

.author-tag {
  font-size: 0.85rem;
  color: var(--accent-primary);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.slider-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slider-btn:hover {
  background: var(--accent-primary);
  color: #0B132B;
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.dot.active {
  background: var(--accent-primary);
  width: 24px;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .slider-btn {
    width: 48px;
    height: 48px;
  }

  .dot {
    width: 12px;
    height: 12px;
  }

  .dot.active {
    width: 28px;
  }
}

/* Contact & Map Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
}

.contact-info-wrap h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin: 2rem 0;
}

.contact-item {
  display: flex;
  gap: 1.25rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: rgba(201, 140, 122, 0.15);
  border: 1px solid var(--border-subtle);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.contact-details p,
.contact-details a {
  font-size: 0.95rem;
  color: var(--text-muted);
}

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

.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  height: 220px;
  margin-top: 1.5rem;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-form-wrap {
  padding: 2.5rem;
}

.contact-form-wrap h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

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

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: rgba(11, 19, 43, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  outline: none;
}

@media (max-width: 768px) {
  .form-input,
  .form-select,
  .form-textarea {
    font-size: 1rem; /* Prevents zoom on iOS */
    padding: 1rem 1.25rem;
  }

  .contact-form-wrap {
    padding: 2rem 1.5rem;
  }
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 10px var(--accent-glow);
}

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

/* Footer Section */
.footer {
  background: #070D1E;
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-subtle);
}

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

.footer-brand p {
  margin: 1rem 0 1.5rem;
  font-size: 0.95rem;
}

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

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-icon:hover {
  background: var(--accent-primary);
  color: #0B132B;
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--accent-primary);
}

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

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

.footer-links a:hover {
  color: var(--accent-primary);
  padding-left: 0.25rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Scroll Animation Utility Classes */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.2rem;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-img-accent {
    right: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .nav-links {
    gap: 1.5rem;
  }

  .brand-logo {
    font-size: 1.4rem;
  }

  .brand-logo .logo-img {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-actions .btn {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .brand-logo {
    font-size: 1.3rem;
  }

  .brand-logo .logo-img {
    width: 36px;
    height: 36px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

  .about-features {
    grid-template-columns: 1fr;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

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

  .about-badge-card {
    left: 0;
  }

  .container {
    padding: 0 1rem;
  }

  .section {
    padding: 4rem 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero {
    min-height: 100vh;
    padding-top: 6rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }

  .stat-item h3 {
    font-size: 1.75rem;
  }

  .about-img-main {
    height: 350px;
  }

  .about-img-accent {
    width: 160px;
    height: 160px;
    bottom: -1.5rem;
    right: -1.5rem;
  }

  .about-badge-card {
    padding: 1rem;
    max-width: 180px;
  }

  .service-img-wrap {
    height: 200px;
  }

  .gallery-item {
    height: 220px;
  }

  .gallery-filters {
    gap: 0.5rem;
  }

  .filter-btn {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
  }

  .offer-card {
    padding: 2rem 1.5rem;
  }

  .offer-title {
    font-size: 1.5rem;
  }

  .offer-price-tag {
    font-size: 1.75rem;
  }

  .review-card {
    padding: 2rem 1.5rem;
  }

  .review-quote {
    font-size: 1.15rem;
  }

  .contact-grid {
    gap: 2rem;
  }

  .contact-form-wrap {
    padding: 2rem 1.5rem;
  }

  .map-container {
    height: 250px;
  }

  .lightbox-close {
    top: -50px;
    right: 0;
  }

  .lightbox-prev {
    left: 5px;
  }

  .lightbox-next {
    right: 5px;
  }

  .floating-whatsapp {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    bottom: 1.25rem;
    right: 1.25rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .brand-logo {
    font-size: 1.15rem;
  }

  .brand-logo .logo-img {
    width: 32px;
    height: 32px;
  }

  .nav-container {
    gap: 0.5rem;
  }

  .service-content {
    padding: 1.25rem;
  }

  .service-title {
    font-size: 1.2rem;
  }

  .gallery-item {
    height: 200px;
  }

  .review-quote {
    font-size: 1rem;
  }

  .contact-form-wrap {
    padding: 1.5rem 1rem;
  }

  .footer-col h4 {
    font-size: 1.1rem;
  }

  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .floating-whatsapp {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
    bottom: 1rem;
    right: 1rem;
  }
}

/* Touch & Interaction Optimizations */
@media (hover: none) and (pointer: coarse) {
  .service-card:hover .service-img,
  .gallery-item:hover img {
    transform: none;
  }

  .gallery-item .gallery-overlay {
    opacity: 1;
    background: linear-gradient(180deg, transparent 40%, rgba(11, 19, 43, 0.85) 100%);
  }

  .glass-card:hover {
    transform: none;
    box-shadow: var(--shadow-md);
  }

  .btn-primary:hover {
    transform: none;
  }

  .filter-btn:active {
    transform: scale(0.98);
  }

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

  .mobile-nav-link:active {
    color: var(--accent-primary);
  }
}

/* Smooth scrolling for mobile */
@media (max-width: 768px) {
  html {
    scroll-behavior: smooth;
  }

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

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

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

/* Prevent text size adjustment on orientation change */
@media (max-width: 768px) {
  html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }
}

/* Ensure proper tap targets */
@media (max-width: 768px) {
  a, button, .filter-btn, .slider-btn, .mobile-nav-link {
    min-height: 44px;
    min-width: 44px;
  }
}
