/*
Theme Name: Casabella Cleaning Services | House Cleaning in Garland, TX
Theme URI: https://produx.cloud
Author: Produx Cloud
Author URI: https://produx.cloud
Description: Professional house cleaning in Garland, TX. Standard cleaning, deep cleaning & move in/out services for homes across the DFW metroplex. Call (469) 797-3320 for a free quote.
Version: 1.0.230
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: casabella
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 {
  /* Casabella Color Palette - Warm Terracotta & Cream */
  --primary-terracotta: #C4956A;
  --secondary-brown: #A67B5B;
  --accent-yellow: #f7c865;
  --terracotta-light: #D4A97A;
  --dark-brown: #2C1810;
  --active-h2: #A67B5B;

  /* Legacy mappings */
  --primary-purple: var(--primary-terracotta);
  --secondary-green: var(--secondary-brown);
  --purple-light: var(--terracotta-light);
  --purple-dark: var(--dark-brown);
  --white: #ffffff;
  --gray-lavender: #e0e1eb;
  --sage-light: #FDF5ED;
  /* Warm Cream Background */

  /* Legacy mappings */
  --color-primary: var(--primary-purple);
  --color-secondary: var(--secondary-green);
  --color-accent: var(--purple-dark);
  --color-text: rgba(60, 40, 25, 0.8);
  --color-text-light: rgba(60, 40, 25, 0.6);
  --color-bg: var(--white);
  --color-bg-light: var(--sage-light);
  --color-border: #D1C4B5;

  --primary-celeste: var(--secondary-green);
  --secondary-navy: var(--purple-dark);
  --cta-yellow: var(--accent-yellow);

  --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;
}

h2,
.section-title,
.services-title,
.philosophy-title {
  color: var(--active-h2) !important;
}

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

body.loading {
  visibility: hidden;
}

body.loaded {
  visibility: visible;
}

@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 {
  flex-shrink: 0;
  transition: var(--transition);
}

.logo img {
  height: 130px;
  width: auto;
  transition: var(--transition);
  mix-blend-mode: multiply;
}

.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(--secondary-navy);
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  position: relative;
}

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

.nav-link:hover {
  color: var(--primary-celeste);
}

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

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

/* 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(--secondary-navy);
  background: rgba(196, 149, 106, 0.15);
}

.social-icon:hover {
  background: var(--primary-celeste);
  color: white;
  transform: translateY(-2px);
}

.navbar-book-now {
  display: inline-block;
  padding: 10px 22px;
  background: var(--primary-celeste);
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.navbar-book-now:hover {
  opacity: 0.85;
  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(--secondary-navy);
  border-radius: 2px;
  transition: var(--transition);
}

.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;
  filter: brightness(0) invert(1) drop-shadow(1px 1px 0 rgba(0, 0, 0, 0.4)) drop-shadow(-1px -1px 0 rgba(0, 0, 0, 0.4)) drop-shadow(1px -1px 0 rgba(0, 0, 0, 0.4)) drop-shadow(-1px 1px 0 rgba(0, 0, 0, 0.4));
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.hero-title::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -20px;
  right: -20px;
  bottom: -10px;
  background: rgba(44, 24, 16, 0.7);
  backdrop-filter: blur(5px);
  border-radius: 8px;
  z-index: -1;
}

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

.hero-title-main {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 1.8rem);
  font-weight: 900;
  letter-spacing: 2px;
  animation: fadeInUp 0.8s ease-out 0.3s backwards;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.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: #FFFFFF;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

/* Hero CTA Button */
.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 45px;
  margin-top: 30px;
  background: var(--cta-yellow);
  color: var(--secondary-navy);
  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(247, 208, 79, 0.4);
  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 var(--secondary-navy);
}

.btn-hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(196, 149, 106, 0.6);
  background: var(--primary-celeste);
  color: white;
  border-color: var(--secondary-navy);
}

/* ===== Modern Scroll-Driven Animations ===== */
@supports (animation-timeline: view()) {
  .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-description {
    animation: fade-in-up linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
  }

}

/* ===== 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;
}

/* ===== Take Your Time Back Section ===== */
.time-back-section {
  padding: 100px 0;
  background: #F5F3F0;
  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%, var(--primary-celeste) 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%, var(--primary-celeste) 50%, transparent 100%);
  opacity: 0.5;
}

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

.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: brightness(1) sepia(30%) saturate(80%) hue-rotate(-10deg) brightness(.85);
  transition: all 0.4s ease;
}

.seal-item:hover img {
  filter: brightness(1) sepia(30%) saturate(80%) hue-rotate(-10deg) brightness(.95);
}

.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(--secondary-navy);
  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;
}

/* Gallery Section */
.gallery-section {
  padding: 80px 0;
  background: #ffffff;
}

/* 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 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.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 {
  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));
}

.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: var(--secondary-navy);
  background: var(--cta-yellow);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(247, 208, 79, 0.3);
}

.btn-load-more:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(196, 149, 106, 0.5);
  background: var(--primary-celeste);
  color: white;
}

.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 {
  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(--primary-celeste);
}

.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(196, 149, 106, 0.5);
}

.modal-nav svg {
  display: block;
}

.modal-prev {
  left: 30px;
}

.modal-next {
  right: 30px;
}

.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 {
  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: 15px 40px;
  background: var(--cta-yellow);
  color: var(--secondary-navy);
  border: 2px solid var(--secondary-navy);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--primary-celeste);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

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

.footer-logo img {
  max-width: 300px;
  height: auto;
  mix-blend-mode: multiply;
  filter: invert(1);
}

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

.footer-info p {
  font-size: 1rem;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.9);
  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(--primary-celeste);
  max-width: 800px;
  margin: 10px auto;
}

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

.footer-social-links a {
  width: 50px;
  height: 50px;
  background: rgba(196, 149, 106, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--primary-celeste);
}

.footer-social-links a:hover {
  background: var(--primary-celeste);
  color: white;
  transform: translateY(-5px);
}

.footer-text {
  font-size: 14px;
  opacity: 0.7;
  margin-top: 20px;
  color: var(--primary-celeste);
}

/* ===== Scroll to Top Button ===== */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--secondary-navy);
  color: #ffffff;
  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(44, 24, 16, 0.3);
  z-index: 999;
}

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

.scroll-to-top:hover {
  background: var(--primary-celeste);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(196, 149, 106, 0.5);
}

.scroll-to-top svg {
  stroke: #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(--secondary-navy);
}

.section-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 3px;
  background: var(--primary-celeste);
  margin: 20px auto 0;
}

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

.service-item {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--color-border);
  opacity: 0;
  transform: translateY(50px);
  box-shadow: var(--shadow-sm);
}

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

.service-item:hover {
  background: #ffffff;
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: var(--primary-celeste);
  border-radius: 50%;
  box-shadow: 0 5px 20px rgba(196, 149, 106, 0.3);
  transition: all 0.3s ease;
}

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

.service-item:hover .service-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 30px rgba(196, 149, 106, 0.5);
}

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

.service-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #5a5a5a;
}

/* ===== Why Choose Us Section ===== */
.why-choose-us {
  padding: 100px 0;
  background: #ffffff;
}

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

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

.reason-item {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 15px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all 0.4s 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) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.reason-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--primary-celeste);
  border-radius: 50%;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(196, 149, 106, 0.3);
}

.reason-icon svg {
  stroke: white;
  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(196, 149, 106, 0.5);
}

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

.reason-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #5a5a5a;
}

/* ===== Service Areas Section ===== */
.service-areas {
  padding: 80px 0;
  background: #F5F3F0;
}

.service-areas-intro {
  text-align: center;
  font-size: 1.1rem;
  color: var(--color-text-light);
  max-width: 700px;
  margin: -30px auto 40px;
  line-height: 1.7;
}

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

.area-item {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary-navy);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

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

.area-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background: var(--primary-celeste);
  color: white;
  border-color: var(--primary-celeste);
}

/* ===== Contact Section ===== */
.contact {
  padding: 100px 0;
  background: var(--color-bg-light);
}

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

.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: #ffffff;
  padding: 40px 30px;
  border-radius: 15px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(30px);
}

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

.contact-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: var(--primary-celeste);
  border-radius: 50%;
  box-shadow: 0 5px 20px rgba(196, 149, 106, 0.3);
  transition: all 0.3s ease;
}

.contact-icon svg {
  stroke: white;
}

.contact-card:hover .contact-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 30px rgba(196, 149, 106, 0.5);
}

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

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

.contact-link:hover {
  color: var(--primary-celeste);
  text-decoration: underline;
}

.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: var(--cta-yellow);
  color: var(--secondary-navy);
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 60px;
  box-shadow: 0 10px 40px rgba(247, 208, 79, 0.4);
  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(196, 149, 106, 0.6);
  background: var(--primary-celeste);
  color: white;
  animation: none;
}

.btn-book-now-large svg {
  width: 30px;
  height: 30px;
  stroke: var(--secondary-navy);
}


/* ===== 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;
  }

  .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;
  }

  .navbar-book-now {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}

@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;
  }

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

}

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

  .logo img {
    height: 40px;
  }

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

  .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;
  }

  .about {
    padding: 60px 0;
  }

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

  .services {
    padding: 60px 0;
  }

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

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

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

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

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

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

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

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

  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

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

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

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

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

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

  .areas-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

}