/*
Theme Name: Cruz House Cleaning | Deep & Standard Cleaning | Spring Lake, Neptune, Belmar
Theme URI: https://produx.cloud
Author: Produx Cloud
Author URI: https://produx.cloud
Description: Cruz House Cleaning offers professional cleaning services in Spring Lake, Neptune, and Belmar. Services include Deep Cleaning and Standard Cleaning.
Version: 1.0.124
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cruz
Tags: cleaning, business, responsive, professional
Copyright: 2026 Produx Cloud

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.
*/

/* ===== CSS Variables ===== */
:root {
  --color-primary: #7B3FF2;
  --color-secondary: #FFD700;
  --color-accent: #5A2BB8;
  --color-text: #1a1a1a;
  --color-text-light: #4A5568;
  --color-bg: #ffffff;
  --color-bg-light: #F3E5F5;
  --color-border: #e0e0e0;

  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

/* ===== Keyframes for Animations ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in-scale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slide-in-right {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== Reset & Base Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  visibility: hidden;
}

body.loaded {
  visibility: visible;
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

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

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  transition: var(--transition);
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 15px 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Logo */
.logo {
  flex-shrink: 0;
  transition: var(--transition);
}

.logo img {
  height: 150px;
  width: auto;
  transition: var(--transition);
}

.header.scrolled .logo img {
  height: 100px;
}

/* Navigation */
.nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-accent);
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  position: relative;
}

.header:not(.scrolled) .nav-link {
  color: var(--color-accent);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-secondary);
  transition: var(--transition);
}

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

.dropdown-icon {
  transition: var(--transition);
}

.nav-item.has-dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  padding: 12px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  margin-top: 10px;
  list-style: none;
}

.nav-item.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  margin-top: 20px;
}

.dropdown li {
  padding: 0;
}

.dropdown a {
  display: block;
  padding: 10px 20px;
  color: var(--color-text);
  font-size: 14px;
  transition: var(--transition);
}

.dropdown a:hover {
  background: var(--color-bg-light);
  color: var(--color-secondary);
}

/* Header Social */
.header-social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
  color: var(--color-primary);
  background: rgba(123, 63, 242, 0.1);
}

.header:not(.scrolled) .social-icon {
  color: var(--color-primary);
  background: rgba(123, 63, 242, 0.1);
}

.header.scrolled .social-icon {
  color: var(--color-primary);
  background: rgba(123, 63, 242, 0.1);
}

.social-icon:hover {
  background: var(--color-secondary);
  color: #000000;
  transform: translateY(-2px);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
  transition: var(--transition);
}

.header:not(.scrolled) .mobile-toggle span {
  background: var(--color-accent);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('./assets/cleaning_background.png');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #000;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-premium-gif {
  animation: fadeInUp 0.8s ease-out;
}

.hero-premium-gif img {
  max-width: 500px;
  width: 100%;
  height: auto;
}

.hero-title {
  text-shadow: none;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-title-sub {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: 1px;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
  color: var(--color-secondary);
}

.hero-title-main {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 1.8rem);
  font-weight: 400;
  letter-spacing: 2px;
  animation: fadeInUp 0.8s ease-out 0.3s backwards;
  color: var(--color-secondary);
}

.hero-title-location {
  font-family: var(--font-heading);
  font-size: clamp(0.85rem, 1.8vw, 1.2rem);
  font-weight: 700;
  margin-top: 8px;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
  line-height: 1.4;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  color: var(--color-secondary);
}

/* Hero CTA Button */
.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 45px;
  margin-top: 30px;
  background: var(--color-primary);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  white-space: nowrap;
  animation: fadeInUp 0.8s ease-out 0.6s backwards;
  border: 2px solid #000000;
}

.btn-hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
  background: #1a1a1a;
  color: #ffffff;
  border-color: #333333;
}

/* ===== Modern Scroll-Driven Animations (2025) ===== */
@supports (animation-timeline: view()) {

  /* Apply scroll-driven animations to elements */
  .about-text {
    animation: fade-in-up linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
  }

  .services-title {
    animation: fade-in-scale linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 35%;
  }

  .services-subtitle {
    animation: fade-in-scale linear both;
    animation-timeline: view();
    animation-range: entry 5% cover 40%;
  }

  .services-cta-title {
    animation: slide-in-left linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
  }

  .services-cta-gif {
    animation: fade-in-scale linear both;
    animation-timeline: view();
    animation-range: entry 10% cover 45%;
  }

  .service-card {
    animation: fade-in-up linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
  }

  .service-wide-image {
    animation: fade-in-scale linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 35%;
  }

  .service-description {
    animation: fade-in-up linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
  }

  .service-link {
    animation: slide-in-right linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
  }

  /* Deep cleaning page animations */
  .deep-info-text {
    animation: fade-in-up linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
  }

  .features-gif img {
    animation: fade-in-scale linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
  }

  .feature-card {
    animation: fade-in-up linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
  }

  .features-wide-image {
    animation: fade-in-scale linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 35%;
  }

  .features-description {
    animation: fade-in-up linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
  }

  .service-icon-card {
    animation: fade-in-up linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
  }

  .services-light-image,
  .services-dark-gif {
    animation: fade-in-scale linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 35%;
  }

  .services-dark-title,
  .services-light-title {
    animation: fade-in-scale linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 35%;
  }
}

/* ===== About Section ===== */
.about {
  padding: 120px 0;
  background: #ffffff;
  position: relative;
}

.about-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
  position: relative;
}

.about-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #3a3a3a;
  margin-bottom: 35px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
  position: relative;
}

.about-text:nth-child(1) {
  animation-delay: 0.2s;
}

.about-text:nth-child(2) {
  animation-delay: 0.4s;
}

.about-text:nth-child(3) {
  animation-delay: 0.6s;
}

.about-text:nth-child(4) {
  animation-delay: 0.8s;
}

.about-text:first-child {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.about-text:last-child {
  margin-bottom: 0;
  margin-top: 45px;
  padding-top: 35px;
  border-top: 2px solid #e8e8e8;
}

.about-text strong {
  color: #1a1a1a;
  font-weight: 600;
  font-size: 1.25rem;
  display: block;
  margin-bottom: 15px;
  font-family: var(--font-heading);
  letter-spacing: -0.5px;
}

.about-text:first-child strong {
  font-size: 2.2rem;
  color: #000000;
  margin-bottom: 25px;
  font-weight: 500;
  letter-spacing: -1px;
}

.about-text em {
  color: #5a5a5a;
  font-style: italic;
  font-weight: 500;
}

/* ===== Take Your Time Back Section ===== */
.time-back-section {
  padding: 100px 0;
  background: #F5F7FA;
  position: relative;
  overflow: hidden;
}

.time-back-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #CFAE5E 50%, transparent 100%);
  opacity: 0.5;
}

.time-back-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #CFAE5E 50%, transparent 100%);
  opacity: 0.5;
}

.seals-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.seal-item {
  opacity: 0;
  transform: scale(0.8) rotateY(180deg);
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.seal-item.visible {
  opacity: 1;
  transform: scale(1) rotateY(0deg);
}

.seal-item:hover {
  transform: scale(1.1) rotateZ(5deg);
}

.seal-item img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  /* Filter for Blue #7B3FF2 */
  filter: brightness(1) hue-rotate(190deg) saturate(60%) brightness(0.8);
  transition: all 0.4s ease;
}

.seal-item:hover img {
  filter: brightness(1) hue-rotate(190deg) saturate(80%) brightness(0.9);
}

.time-back-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  text-align: center;
  color: #5B5B5B;
  font-weight: 400;
  font-style: italic;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.8s forwards;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
  letter-spacing: 0.5px;
}

/* ===== Philosophy Section ===== */
.philosophy-section {
  padding: 100px 0;
  background: var(--color-accent);
  position: relative;
}

.philosophy-content {
  text-align: center;
  position: relative;
  max-width: 850px;
  margin: 0 auto;
  padding: 0;
}

.philosophy-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.2s forwards;
}

.philosophy-quote {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 400;
  color: #e0e0e0;
  line-height: 1.9;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.4s forwards;
  font-style: italic;
}

.philosophy-signature {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: #a0a0a0;
  font-weight: 500;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.6s forwards;
}

/* ===== Services Section ===== */
.services {
  padding: 80px 0;
  background: var(--color-bg-light);
}

.services-header {
  text-align: center;
  margin-bottom: 40px;
}

.services-title {
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 400;
  letter-spacing: 3px;
  color: #3a3a3a;
  margin-bottom: 16px;
}

.services-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 2px;
}

.services-cta {
  text-align: center;
  margin: 60px 0;
}

.services-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 1px;
  color: #3a3a3a;
  margin-bottom: 30px;
}

.services-cta-gif {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

.services-cta-gif img {
  max-width: 450px;
  width: 100%;
  height: auto;
}

/* Service Types */
.service-types {
  text-align: center;
  margin: 60px 0 40px;
}

.service-types-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  color: #6a6a6a;
  margin-bottom: 30px;
}

.service-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.service-link {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 400;
  color: #3a3a3a;
  text-decoration: none;
  transition: var(--transition);
  padding: 8px 16px;
  border-radius: 4px;
}

.service-link:hover {
  color: #1a1a1a;
  background: #f5f5f5;
}

/* Gallery Container */
.gallery-container {
  margin: 60px 0;
}

.gallery-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  color: var(--color-text);
  margin-bottom: 40px;
}

/* Service Gallery - Grid Layout */
.service-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

/* Gallery Items */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

/* Gallery Overlay */
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-icon-svg {
  width: 50px;
  height: 50px;
  stroke: white;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
}

/* Hidden gallery items */
.gallery-hidden {
  display: none;
}

/* Load More Button */
.gallery-load-more {
  text-align: center;
  margin: 40px 0 20px;
}

.btn-load-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 40px;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-secondary) 0%, #B89A56 100%);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(200, 169, 102, 0.3);
  background: linear-gradient(135deg, var(--color-accent) 0%, #2A4D70 100%);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(27, 58, 92, 0.3);
}

.btn-load-more:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(27, 58, 92, 0.5);
  background: linear-gradient(135deg, #B89A56 0%, var(--color-secondary) 100%);
}

.btn-load-more svg {
  transition: transform 0.3s ease;
}

.btn-load-more:hover svg {
  transform: translateY(3px);
}

.btn-load-more.hidden {
  display: none;
}

/* Gallery Modal */
.gallery-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  overflow: auto;
  animation: fadeIn 0.3s ease;
}

.gallery-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Modal Close Button */
.modal-close {
  position: absolute;
  top: 30px;
  right: 50px;
  color: #fff;
  font-size: 50px;
  font-weight: 300;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 10001;
}

.modal-close:hover,
.modal-close:focus {
  color: var(--color-secondary);
}

/* Modal Navigation Buttons */
.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: none;
  padding: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10001;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-nav:hover {
  background: rgba(200, 169, 102, 0.5);
}

.modal-nav svg {
  display: block;
}

.modal-prev {
  left: 30px;
}

.modal-next {
  right: 30px;
}

/* Modal Content */
.modal-content-wrapper {
  position: relative;
  max-width: 90%;
  max-height: 85vh;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.modal-video {
  display: none;
  width: 90vw;
  height: 50vw;
  max-width: 1200px;
  max-height: 675px;
}

.modal-video.active {
  display: block;
}

.modal-video-player {
  display: none;
  width: 90vw;
  height: auto;
  max-width: 1200px;
  max-height: 80vh;
}

.modal-video-player.active {
  display: block;
}

#modalImage.active {
  display: block;
}

#modalImage {
  display: none;
}

/* Modal Caption */
.modal-caption {
  text-align: center;
  color: #fff;
  padding: 20px;
  font-size: 1.2rem;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  border-radius: 5px;
  max-width: 80%;
}

/* Service Description */
.service-description {
  max-width: 900px;
  margin: 60px auto;
  text-align: center;
}

.service-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #3a3a3a;
}

/* Service CTA Button */
.service-cta-button {
  text-align: center;
  margin: 60px 0;
}

.btn-primary {
  display: inline-block;
  padding: 14px 40px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
  color: #d6d6d6;
  background: #3d3d3d;
  border: 1px solid #000;
  border-radius: 3px;
  text-decoration: none;
  transition: var(--transition);
  text-transform: lowercase;
}

.btn-primary:hover {
  background: #161517;
  color: #ded5ad;
  border-color: #ded5ad;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===== Deep Cleaning Specific Styles ===== */
.hero-deep {
  background-image: url('https://assets.zyrosite.com/cdn-cgi/image/format=auto,w=1920,fit=crop/mjE70zoqNKsO5Vn9/q7-mePxV9oggkH4QZ3e.webp');
}

/* Deep Info Section */
.deep-info {
  padding: 80px 0;
  background: linear-gradient(180deg, rgb(164, 172, 167), rgb(214, 215, 211));
}

.deep-info-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 400;
  color: var(--color-text);
}

.deep-info-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.deep-info-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text);
}

/* Features Section */
.deep-features {
  padding: 80px 0;
  background: linear-gradient(180deg, rgb(211, 213, 214), rgb(215, 216, 211));
}

.features-header {
  text-align: center;
  margin-bottom: 60px;
}

.features-gif {
  margin-bottom: 30px;
}

.features-gif img {
  max-width: 300px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

.features-title {
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 300;
  color: var(--color-text);
}

.features-title strong {
  font-weight: 700;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.feature-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.feature-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

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

.features-wide-image {
  margin: 60px 0;
  border-radius: 12px;
  overflow: hidden;
}

.features-wide-image img {
  width: 100%;
  height: auto;
  display: block;
}

.features-description {
  max-width: 800px;
  margin: 60px auto;
  text-align: center;
}

.features-description p {
  font-size: 16px;
  line-height: 1.8;
  color: rgb(212, 212, 212);
}

.features-location {
  max-width: 800px;
  margin: 40px auto;
  text-align: center;
}

.features-location p {
  font-size: 12px;
  line-height: 1.6;
  color: rgb(212, 212, 212);
  font-weight: 300;
}

.features-cta {
  text-align: center;
  margin: 60px 0;
}

/* Services Dark Section */
.services-dark {
  padding: 80px 0;
  background: linear-gradient(0deg, rgb(27, 29, 30), rgb(0, 0, 0));
  color: white;
}

.services-dark-header {
  text-align: center;
  margin-bottom: 40px;
}

.services-dark-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  color: rgba(184, 184, 184, 0.81);
}

.services-dark-content {
  text-align: center;
}

.services-dark-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 40px;
}

.services-dark-gif {
  margin: 40px 0;
}

.services-dark-gif img {
  max-width: 450px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

.services-dark-icons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 60px auto;
}

.service-icon-card {
  border-radius: 8px;
  overflow: hidden;
}

.service-icon-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* Services Light Section */
.services-light {
  padding: 80px 0;
  background: linear-gradient(0deg, rgb(211, 213, 214), rgb(215, 216, 211));
}

.services-light-header {
  text-align: center;
  margin-bottom: 40px;
}

.services-light-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: rgba(184, 184, 184, 0.81);
}

.services-light-content {
  text-align: center;
}

.services-light-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: rgba(184, 184, 184, 0.81);
  margin-bottom: 40px;
}

.services-light-image {
  max-width: 900px;
  margin: 60px auto;
  border-radius: 12px;
  overflow: hidden;
}

.services-light-image img {
  width: 100%;
  height: auto;
  display: block;
}

.services-light-cta {
  text-align: center;
  margin: 60px 0;
}

/* ===== Footer ===== */
.footer {
  background: var(--color-accent);
  color: var(--color-secondary);
  padding: 60px 0 30px;
  text-align: center;
  border-top: 3px solid var(--color-secondary);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.footer-logo img {
  max-width: 300px;
  height: auto;
}

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

.footer-info p {
  font-size: 1rem;
  margin: 8px 0;
  color: #fff;
  line-height: 1.6;
}

.footer-info p:first-child {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.footer-info p:nth-child(2) {
  font-size: 0.95rem;
  color: var(--color-secondary);
  max-width: 800px;
  margin: 10px auto;
  font-weight: 500;
}

.footer-social-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.footer-social-links a {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  border: 1px solid var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--color-secondary);
}

.footer-social-links a:hover {
  background: var(--color-secondary);
  color: var(--color-accent);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.footer-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 30px;
  font-weight: 400;
}

/* ===== Scroll to Top Button ===== */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-accent) 0%, #2A4D70 100%);
  color: #000000;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(27, 58, 92, 0.4);
  z-index: 999;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: linear-gradient(135deg, #d4af37 0%, #f4d47c 100%);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
}

.scroll-to-top svg {
  stroke: #000000;
}

/* ===== What We Do Section ===== */
.what-we-do {
  padding: 100px 0;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  color: #ffffff;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  text-align: center;
  margin-bottom: 60px;
  font-weight: 600;
  letter-spacing: 2px;
  position: relative;
  color: var(--color-secondary);
}

.section-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-secondary) 100%);
  margin: 20px auto 0;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.service-item {
  background: rgba(255, 255, 255, 0.08);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateY(50px);
}

.service-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, var(--color-secondary) 0%, #B89A56 100%);
  border-radius: 50%;
  box-shadow: 0 5px 20px rgba(200, 169, 102, 0.4);
  transition: all 0.3s ease;
}

.service-icon svg {
  width: 50px;
  height: 50px;
  stroke: #ffffff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.service-icon-emoji {
  font-size: 3rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-item:hover .service-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 30px rgba(200, 169, 102, 0.6);
  background: linear-gradient(135deg, #d4af37 0%, #f4d47c 100%);
}

.service-item h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #ffffff;
}

.service-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

/* ===== Why Choose Us Section ===== */
.why-choose-us {
  padding: 100px 0;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.why-choose-us .section-title {
  color: var(--color-text);
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.reason-item {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(50px);
}

.reason-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.reason-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.reason-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, var(--color-secondary) 0%, #B89A56 100%);
  border-radius: 50%;
  box-shadow: 0 5px 20px rgba(200, 169, 102, 0.4);
  transition: all 0.3s ease;
}

.reason-icon svg {
  stroke: #ffffff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.reason-item:hover .reason-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 30px rgba(200, 169, 102, 0.6);
  background: linear-gradient(135deg, #d4af37 0%, #f4d47c 100%);
}

.reason-item h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--color-text);
}

.reason-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-light);
}

/* ===== Book Now Button (Header) ===== */
.btn-book-now {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  background: #ffffff;
  color: #000000;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-book-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 169, 102, 0.6);
  background: var(--color-secondary);
  color: #000000;
}

.header:not(.scrolled) .btn-book-now {
  background: #ffffff;
  color: #000000;
}

.header.scrolled .btn-book-now {
  background: #ffffff;
  color: #000000;
}

/* ===== Contact Section ===== */
.contact {
  padding: 100px 0;
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.contact .section-title {
  color: var(--color-text);
}

.contact-subtitle {
  text-align: center;
  font-size: 1.3rem;
  color: var(--color-text-light);
  margin-bottom: 60px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.contact-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
}

.contact-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, var(--color-secondary) 0%, #B89A56 100%);
  border-radius: 50%;
  box-shadow: 0 5px 20px rgba(200, 169, 102, 0.4);
  transition: all 0.3s ease;
}

.contact-icon svg {
  stroke: #ffffff;
}

.contact-card:hover .contact-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 30px rgba(200, 169, 102, 0.6);
  background: linear-gradient(135deg, #d4af37 0%, #f4d47c 100%);
}

.contact-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--color-text);
}

.contact-link {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-secondary);
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
  word-break: break-word;
  max-width: 100%;
}

.contact-link:hover {
  color: #d4af37;
  transform: scale(1.05);
}

.contact-text {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.contact-cta {
  text-align: center;
  margin-top: 60px;
}

.btn-book-now-large {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 25px 60px;
  background: linear-gradient(135deg, var(--color-secondary) 0%, #B89A56 100%);
  color: #000000;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 60px;
  box-shadow: 0 10px 40px rgba(200, 169, 102, 0.5);
  transition: all 0.4s ease;
  text-decoration: none;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.btn-book-now-large:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 15px 50px rgba(212, 175, 55, 0.7);
  background: linear-gradient(135deg, #d4af37 0%, #f4d47c 100%);
  color: #000000;
  animation: none;
}

.btn-book-now-large svg {
  width: 30px;
  height: 30px;
}

.btn-primary {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, var(--color-secondary) 0%, #B89A56 100%);
  color: #000000;
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #d4af37 0%, #f4d47c 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.contact-form .btn-primary {
  width: 100%;
}

/* ===== Scroll Animations ===== */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Responsive Design ===== */
@media (max-width: 968px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: white;
    padding: 100px 30px 30px;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
  }

  .nav.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid var(--color-border);
  }

  .nav-link {
    padding: 16px 0;
    color: var(--color-text) !important;
  }

  .dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    margin-top: 0;
    padding: 0 0 12px 20px;
    opacity: 1;
    visibility: visible;
    display: none;
  }

  .nav-item.has-dropdown.active .dropdown {
    display: block;
  }

  .mobile-toggle {
    display: flex;
  }

  .header {
    padding: 10px 0;
  }

  .logo img {
    height: 45px;
  }

  .header.scrolled .logo img {
    height: 40px;
  }

  .header-social {
    gap: 10px;
  }

  .social-icon {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 640px) {
  .header {
    padding: 8px 0;
  }

  .header-content {
    gap: 15px;
  }

  .logo img {
    height: 40px;
  }

  .header.scrolled .logo img {
    height: 35px;
  }

  .header-social {
    gap: 8px;
  }

  .social-icon {
    width: 32px;
    height: 32px;
  }

  .social-icon svg {
    width: 16px;
    height: 16px;
  }

  .service-gallery {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
  }

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

  .modal-close {
    top: 15px;
    right: 25px;
    font-size: 40px;
  }

  .modal-nav {
    padding: 12px;
  }

  .modal-nav svg {
    width: 25px;
    height: 25px;
  }

  .modal-prev {
    left: 15px;
  }

  .modal-next {
    right: 15px;
  }

  .modal-caption {
    font-size: 1rem;
    bottom: 15px;
  }

  .gallery-icon-svg {
    width: 40px;
    height: 40px;
  }

  .btn-load-more {
    padding: 12px 35px;
    font-size: 1rem;
  }

  .about {
    padding: 60px 0;
  }

  .about-content {
    padding: 0 30px;
  }

  .about-text {
    font-size: 1.05rem;
    margin-bottom: 30px;
  }

  .about-text:first-child {
    font-size: 1.1rem;
    margin-bottom: 35px;
  }

  .about-text:first-child strong {
    font-size: 1.8rem;
  }

  .about-text strong {
    font-size: 1.15rem;
  }

  .about-text:last-child {
    margin-top: 40px;
    padding-top: 30px;
  }

  .services {
    padding: 60px 0;
  }

  .what-we-do,
  .why-choose-us,
  .contact {
    padding: 60px 0;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .reasons-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }

  .footer-social-links a {
    width: 45px;
    height: 45px;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .time-back-section {
    padding: 60px 0;
  }

  .seals-wrapper {
    gap: 20px;
  }

  .seal-item img {
    width: 120px;
    height: 120px;
  }

  .time-back-subtitle {
    font-size: 1.2rem;
    padding: 0 20px;
  }

  .philosophy-section {
    padding: 60px 0;
  }

  .philosophy-content {
    padding: 0 30px;
  }

  .philosophy-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .philosophy-quote {
    font-size: 1.2rem;
    line-height: 1.8;
  }

  .philosophy-signature {
    font-size: 1rem;
  }

  .reason-icon {
    width: 70px;
    height: 70px;
  }

  .reason-icon svg {
    width: 45px;
    height: 45px;
  }

  .service-icon {
    width: 70px;
    height: 70px;
  }

  .service-icon svg {
    width: 45px;
    height: 45px;
  }

  .service-icon-emoji {
    font-size: 2.5rem;
  }

  .btn-book-now {
    display: none;
  }

  .btn-book-now-large {
    padding: 20px 40px;
    font-size: 1.4rem;
    gap: 10px;
  }

  .btn-book-now-large svg {
    width: 24px;
    height: 24px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .btn-hero-cta {
    padding: 16px 35px;
    font-size: 1.1rem;
    margin-top: 25px;
  }

  .seals-wrapper {
    gap: 30px;
    max-width: 400px;
    margin: 0 auto 40px;
  }

  .seal-item img {
    width: 150px;
    height: 150px;
  }

  .time-back-subtitle {
    font-size: 1.5rem;
    padding: 0 30px;
  }

  .services-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .contact-link {
    font-size: 1rem;
  }

  .contact-card {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .btn-hero-cta {
    padding: 14px 30px;
    font-size: 1rem;
    margin-top: 20px;
  }

  .about-content {
    padding: 0 20px;
  }

  .about-text {
    font-size: 1rem;
    margin-bottom: 28px;
    line-height: 1.75;
  }

  .about-text:first-child {
    font-size: 1.05rem;
    margin-bottom: 32px;
  }

  .about-text:first-child strong {
    font-size: 1.5rem;
  }

  .about-text strong {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  .about-text:last-child {
    margin-top: 35px;
    padding-top: 28px;
  }

  .seal-item img {
    width: 120px;
    height: 120px;
  }

  .time-back-subtitle {
    font-size: 1.1rem;
    line-height: 1.5;
    padding: 0 20px;
  }

  .service-gallery {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
  }

  .gallery-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }

  .gallery-icon-svg {
    width: 35px;
    height: 35px;
  }

  .btn-load-more {
    padding: 12px 30px;
    font-size: 0.95rem;
  }

  .modal-close {
    top: 10px;
    right: 15px;
    font-size: 35px;
  }

  .modal-nav {
    padding: 10px;
  }

  .modal-nav svg {
    width: 20px;
    height: 20px;
  }

  .modal-prev {
    left: 10px;
  }

  .modal-next {
    right: 10px;
  }

  .modal-caption {
    font-size: 0.9rem;
    bottom: 10px;
    padding: 10px;
  }

  .modal-video {
    width: 95vw;
    height: 53vw;
  }

  .modal-video-player {
    width: 95vw;
    max-height: 70vh;
  }

  .philosophy-section {
    padding: 60px 0;
  }

  .philosophy-content {
    padding: 0 20px;
  }

  .philosophy-title {
    font-size: 1.7rem;
    margin-bottom: 25px;
  }

  .philosophy-quote {
    font-size: 1.1rem;
    line-height: 1.75;
    margin-bottom: 25px;
  }

  .philosophy-signature {
    font-size: 0.95rem;
  }

  .services-list {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .reason-icon {
    width: 60px;
    height: 60px;
  }

  .reason-icon svg {
    width: 35px;
    height: 35px;
  }

  .contact-link {
    font-size: 0.85rem;
  }

  .contact-card {
    padding: 25px 15px;
  }

  .contact-icon {
    width: 70px;
    height: 70px;
  }

  .service-icon {
    width: 60px;
    height: 60px;
  }

  .service-icon svg {
    width: 35px;
    height: 35px;
  }

  .service-icon-emoji {
    font-size: 2rem;
  }

  .btn-book-now-large {
    padding: 18px 30px;
    font-size: 1.2rem;
  }

  .btn-book-now-large svg {
    width: 20px;
    height: 20px;
  }
}

/* ===== Before/After Comparison Section ===== */
.comparison-section {
  padding: 80px 0;
  background: var(--color-bg-light);
}

.comparison-section .section-title {
  text-align: center;
  margin-bottom: 20px;
}

.comparison-subtitle {
  text-align: center;
  color: var(--color-text-light);
  font-size: 1.1rem;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.comparison-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.comparison-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

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

.comparison-title {
  padding: 15px 20px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff;
  margin: 0;
}

.comparison-slider {
  position: relative;
  width: 100%;
  user-select: none;
}

.comparison-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: ew-resize;
}

.comparison-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}

.comparison-before-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
}

.comparison-before {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: #fff;
  z-index: 10;
  cursor: ew-resize;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.comparison-handle-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: #fff;
  transform: translateX(-50%);
}

.comparison-handle-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
}

.comparison-handle-circle svg {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
}

.comparison-handle:hover .comparison-handle-circle,
.comparison-handle.active .comparison-handle-circle {
  transform: translate(-50%, -50%) scale(1.1);
}

.comparison-labels {
  display: flex;
  justify-content: space-between;
  padding: 12px 20px;
  background: #f8f9fa;
}

.comparison-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.comparison-label-before {
  color: #dc3545;
}

.comparison-label-after {
  color: #28a745;
}

/* Responsive styles for comparison section */
@media (max-width: 768px) {
  .comparison-section {
    padding: 60px 0;
  }

  .comparison-gallery {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }

  .comparison-subtitle {
    font-size: 1rem;
    padding: 0 20px;
  }

  .comparison-handle-circle {
    width: 40px;
    height: 40px;
  }

  .comparison-handle-circle svg {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 480px) {
  .comparison-title {
    font-size: 1rem;
    padding: 12px 15px;
  }

  .comparison-labels {
    padding: 10px 15px;
  }

  .comparison-label {
    font-size: 0.75rem;
  }
}