/*
Theme Name: TFG Cleaning Services Theme
Theme URI: http://www.tfgcleaningservices.com
Author: Antigravity AI
Author URI: https://github.com/google-deepmind
Description: A premium, fast, mobile-first WordPress theme designed for cleaning services, combining custom vanilla CSS aesthetics with local SEO optimizations, Customizer controls, and Before/After slider.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tfg-cleaning-theme
*/

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

:root {
  --navy: #003D7A;
  --navy-dark: #002856;
  --navy-deeper: #001A3E;
  --cyan: #00A8CC;
  --cyan-light: #00C4EE;
  --blue: #0066CC;
  --white: #FFFFFF;
  --off-white: #F0F4F8;
  --light-gray: #E8EEF4;
  --text-dark: #1A2B42;
  --text-muted: #6B7A8D;
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);
  --shadow-sm: 0 4px 16px rgba(0, 61, 122, 0.10);
  --shadow-md: 0 8px 32px rgba(0, 61, 122, 0.16);
  --shadow-lg: 0 20px 60px rgba(0, 61, 122, 0.22);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font: 'Montserrat', sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);

  /* Aliases used in PHP templates */
  --gray-light: #F0F4F8;
  --gray-dark: #4A5568;
  --gray-border: #E2E8F0;
}

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

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

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

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

ul { list-style: none; }

/* ============================================================
   UTILITY CLASSES
============================================================ */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-title span {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.8;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  letter-spacing: 0.03em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--blue) 100%);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(0, 168, 204, 0.40);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 168, 204, 0.55);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-navy:hover {
  background: var(--navy-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.38);
  font-size: 1rem;
  padding: 16px 38px;
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.50);
}

/* Scroll Animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   HEADER / NAVBAR
============================================================ */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
  padding: 22px 0;
}

#header.scrolled {
  background: rgba(0, 38, 80, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.22);
  padding: 12px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

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

.logo-text strong {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
}

.logo-text span {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--cyan);
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a, .nav-links li a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after, .nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyan);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-links a:hover, .nav-links li a:hover {
  color: var(--cyan);
}

.nav-links a:hover::after, .nav-links li a:hover::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
}

.header-phone svg {
  flex-shrink: 0;
}

.btn-book {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(0, 168, 204, 0.38);
}

.btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 168, 204, 0.52);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(0, 38, 80, 0.98);
  backdrop-filter: blur(20px);
  padding: 24px;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a, .mobile-nav li a {
  color: rgba(255,255,255,0.88);
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition);
  display: block;
}

.mobile-nav a:hover, .mobile-nav li a:hover {
  color: var(--cyan);
}

/* .mobile-link class for explicit link styling in mobile nav */
.mobile-link {
  color: rgba(255,255,255,0.88);
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition);
  display: block;
}

.mobile-link:hover {
  color: var(--cyan);
}

/* ============================================================
   HERO SECTION
============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  transform: scale(1.05);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 20, 55, 0.92) 0%,
    rgba(0, 38, 80, 0.85) 40%,
    rgba(0, 61, 122, 0.70) 70%,
    rgba(0, 102, 204, 0.50) 100%
  );
}

/* Geometric decorative shapes */
.hero-shape-1 {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 80px solid rgba(0, 168, 204, 0.08);
  pointer-events: none;
}

.hero-shape-2 {
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 60px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.hero-shape-3 {
  position: absolute;
  top: 20%;
  right: 8%;
  width: 140px;
  height: 140px;
  border-radius: var(--radius-lg);
  background: rgba(0, 168, 204, 0.10);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 168, 204, 0.20);
  transform: rotate(15deg);
  pointer-events: none;
  animation: floatBox 6s ease-in-out infinite;
}

@keyframes floatBox {
  0%, 100% { transform: rotate(15deg) translateY(0); }
  50% { transform: rotate(15deg) translateY(-14px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 80px;
  max-width: 750px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 168, 204, 0.15);
  border: 1px solid rgba(0, 168, 204, 0.35);
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 22px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--cyan), #66CCFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 38px;
  line-height: 1.85;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}

.hero-stat {
  padding: 20px 32px;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child { border-right: none; }

.hero-stat-number {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-indicator .mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 13px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
}

.scroll-indicator .wheel {
  width: 4px;
  height: 8px;
  background: var(--cyan);
  border-radius: 2px;
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* ============================================================
   TRUST BAR
============================================================ */
#trust-bar {
  background: var(--navy);
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 40px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.80);
  font-size: 0.85rem;
  font-weight: 600;
}

.trust-item svg {
  color: var(--cyan);
  flex-shrink: 0;
}

.trust-divider {
  width: 1px;
  height: 22px;
  background: rgba(255,255,255,0.15);
}

/* ============================================================
   SERVICES SECTION
============================================================ */
#services {
  padding: 100px 0;
  background: var(--off-white);
}

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

.services-header .section-subtitle {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

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

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.service-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,30,70,0.6) 0%, transparent 60%);
}

.service-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
}

.service-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(0,168,204,0.12), rgba(0,102,204,0.12));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.4rem;
}

.service-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--cyan);
  font-size: 0.85rem;
  font-weight: 700;
  transition: gap var(--transition);
}

.service-link:hover {
  gap: 10px;
}

/* No-image service cards (fallback gradient) */
.service-card-img.gradient-1 { background: linear-gradient(135deg, #003D7A, #0066CC); }
.service-card-img.gradient-2 { background: linear-gradient(135deg, #00A8CC, #003D7A); }

/* ============================================================
   WHY CHOOSE US
============================================================ */
#why-us {
  padding: 100px 0;
  background: var(--white);
}

.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-us-visual {
  position: relative;
}

.why-us-photos {
  position: relative;
  height: 520px;
}

.why-photo-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 72%;
  height: 380px;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.why-photo-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 56%;
  height: 260px;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  border: 5px solid var(--white);
}

.why-badge-float {
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  z-index: 4;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  min-width: 120px;
}

.why-badge-float .num {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  display: block;
}

.why-badge-float .lbl {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  opacity: 0.9;
  display: block;
}

.why-us-content .section-subtitle {
  margin-bottom: 40px;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
}

.trust-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 22px;
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}

.trust-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-color: rgba(0,168,204,0.25);
  transform: translateY(-3px);
}

.trust-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.trust-card h4 {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.trust-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   BEFORE & AFTER SLIDER (ADDITION FOR COMPARATOR)
============================================================ */
#before-after {
  padding: 100px 0;
  background: var(--white);
}

.before-after-header {
  text-align: center;
  margin-bottom: 50px;
}

.before-after-header .section-subtitle {
  margin: 0 auto;
}

.before-after-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.before-after-tab-btn {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  color: var(--text-dark);
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}

.before-after-tab-btn.active, .before-after-tab-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.before-after-slider-wrapper {
  display: none;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  user-select: none;
}

.before-after-slider-wrapper.active {
  display: block;
}

.before-after-slider-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.before-after-clipped {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.before-after-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--white);
  cursor: ew-resize;
  z-index: 10;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.before-after-handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 61, 122, 0.25);
  pointer-events: none;
  border: 1px solid var(--light-gray);
}

.before-after-handle-button::before,
.before-after-handle-button::after {
  content: '';
  border: solid var(--text-dark);
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
}

.before-after-handle-button::before {
  transform: rotate(135deg);
  margin-right: 4px;
}

.before-after-handle-button::after {
  transform: rotate(-45deg);
  margin-left: 4px;
}

.before-after-label {
  position: absolute;
  top: 20px;
  background: rgba(0, 38, 80, 0.85);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 4px;
  z-index: 5;
  pointer-events: none;
  backdrop-filter: blur(4px);
}

.before-after-label.before {
  left: 20px;
}

.before-after-label.after {
  right: 20px;
  background: rgba(0, 168, 204, 0.85);
}

/* ============================================================
   GALLERY
============================================================ */
#gallery {
  padding: 100px 0;
  background: var(--navy-deeper);
}

#gallery .section-title {
  color: var(--white);
}

.gallery-header {
  text-align: center;
  margin-bottom: 56px;
}

.gallery-header .section-subtitle {
  color: rgba(255,255,255,0.65);
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

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

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,30,70,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

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

.gallery-item-label {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
}

.gallery-item:nth-child(1) { grid-column: 1 / 6; grid-row: 1 / 2; }
.gallery-item:nth-child(2) { grid-column: 6 / 9; grid-row: 1 / 2; }
.gallery-item:nth-child(3) { grid-column: 9 / 13; grid-row: 1 / 2; }
.gallery-item:nth-child(4) { grid-column: 1 / 4; grid-row: 2 / 3; }
.gallery-item:nth-child(5) { grid-column: 4 / 8; grid-row: 2 / 3; }
.gallery-item:nth-child(6) { grid-column: 8 / 13; grid-row: 2 / 3; }

/* ============================================================
   SERVICE AREAS
============================================================ */
#service-areas {
  padding: 90px 0;
  background: var(--off-white);
}

.areas-header {
  text-align: center;
  margin-bottom: 50px;
}

.areas-header .section-subtitle {
  margin: 0 auto;
}

.areas-map-wrap {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 56px;
  display: flex;
  gap: 60px;
  align-items: center;
  box-shadow: var(--shadow-lg);
}

.areas-list {
  flex: 1;
}

.areas-list h3 {
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 28px;
}

.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.area-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 50px;
  transition: var(--transition);
}

.area-pill:hover {
  background: rgba(0, 168, 204, 0.20);
  border-color: var(--cyan);
  color: var(--cyan);
}

.area-pill::before {
  content: '📍';
  font-size: 0.88rem;
}

.area-note {
  color: rgba(255,255,255,0.60);
  font-size: 0.83rem;
  line-height: 1.7;
}

.areas-cta {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.areas-cta-box {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  max-width: 260px;
}

.areas-cta-box h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.areas-cta-box p {
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
  margin-bottom: 22px;
  line-height: 1.6;
}

/* ============================================================
   TESTIMONIALS
============================================================ */
#testimonials {
  padding: 100px 0;
  background: var(--white);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 56px;
}

.testimonials-header .section-subtitle {
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(0,168,204,0.25);
}

.testimonial-quote {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--cyan);
  opacity: 0.25;
  font-family: Georgia, serif;
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.stars span {
  color: #FFB800;
  font-size: 1rem;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 22px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
}

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

.google-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 48px;
  padding: 18px 32px;
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  transition: var(--transition);
}

.google-badge:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(0,168,204,0.3);
}

.google-badge img {
  height: 28px;
  width: auto;
}

.google-badge span {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
}

/* ============================================================
   CONTACT / CTA SECTION
============================================================ */
#contact {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy-deeper) 0%, var(--navy) 50%, #004A96 100%);
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 100px solid rgba(0, 168, 204, 0.06);
  pointer-events: none;
}

#contact::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 70px solid rgba(255,255,255,0.03);
  pointer-events: none;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
  position: relative;
  z-index: 1;
}

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

.contact-info .section-subtitle {
  color: rgba(255,255,255,0.68);
  margin-bottom: 40px;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  color: var(--white);
  transition: var(--transition);
  text-decoration: none;
}

.contact-channel:hover {
  background: rgba(255,255,255,0.13);
  border-color: var(--cyan);
  transform: translateX(6px);
}

.channel-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.channel-icon.phone { background: linear-gradient(135deg, var(--cyan), var(--blue)); }
.channel-icon.wa    { background: linear-gradient(135deg, #25D366, #128C7E); }
.channel-icon.email { background: linear-gradient(135deg, #FF6B6B, #CC0000); }

.channel-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.channel-text span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  transform: translateY(-3px);
}

/* Form */
.contact-form-wrap {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--radius-xl);
  padding: 44px;
  backdrop-filter: blur(12px);
}

.contact-form-wrap h3 {
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.contact-form-wrap p {
  color: rgba(255,255,255,0.60);
  font-size: 0.85rem;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group label {
  display: block;
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.88rem;
  transition: var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
  background: rgba(0,168,204,0.08);
  box-shadow: 0 0 0 3px rgba(0,168,204,0.15);
}

.form-group select option {
  background: var(--navy);
  color: var(--white);
}

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

.form-submit {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(0,168,204,0.35);
  margin-top: 6px;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0,168,204,0.50);
}

.form-note {
  color: rgba(255,255,255,0.40) !important;
  font-size: 0.73rem !important;
  text-align: center;
  margin-top: 12px !important;
  margin-bottom: 0 !important;
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.50);
  transition: var(--transition);
  animation: waBounce 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.65);
}

@keyframes waBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}

.wa-pulse {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  background: #FF3B30;
  border-radius: 50%;
  border: 2px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-pulse::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid rgba(255, 59, 48, 0.5);
  animation: waPulse 2s infinite;
}

@keyframes waPulse {
  from { transform: scale(1); opacity: 1; }
  to { transform: scale(2); opacity: 0; }
}

/* ============================================================
   FAQ ACCORDION SECTION
============================================================ */
#faq {
  padding: 100px 0;
  background: var(--white);
}

.faq-header {
  text-align: center;
  margin-bottom: 64px;
}

.faq-header .section-subtitle {
  margin: 0 auto;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover, .faq-item.active {
  border-color: rgba(0, 168, 204, 0.35);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  background: var(--off-white);
  border: none;
  padding: 22px 28px;
  text-align: left;
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--white);
}

.faq-question-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 1.1rem;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: var(--white);
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 24px 28px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.8;
  border-top: 1px solid var(--light-gray);
}

/* ============================================================
   FOOTER
============================================================ */
#footer {
  background: var(--navy-deeper);
  padding: 70px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand img {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: 18px;
}

.footer-brand p {
  color: rgba(255,255,255,0.50);
  font-size: 0.82rem;
  line-height: 1.8;
  margin-bottom: 22px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--white);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a, .footer-col ul li {
  color: rgba(255,255,255,0.52);
  font-size: 0.82rem;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--cyan);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-contact-item svg {
  color: var(--cyan);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item span {
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  line-height: 1.6;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  transition: color var(--transition);
}

.footer-contact-item a:hover {
  color: var(--cyan);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: rgba(255,255,255,0.35);
  font-size: 0.78rem;
}

.footer-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-badge {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.55);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
}

.google-review-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 50px;
  transition: var(--transition);
}

.google-review-btn:hover {
  background: rgba(255,255,255,0.14);
  color: var(--white);
}

/* ============================================================
   PAYMENT SECTION
============================================================ */
.payment-section {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding: 18px 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
}

.payment-label {
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.payment-methods {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.payment-pill {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
}

/* ============================================================
   WORDPRESS COMPLIANCE CLASS OVERRIDES
============================================================ */
.aligncenter { text-align: center; margin-left: auto; margin-right: auto; display: block; }
.alignleft { float: left; margin-right: 1.5em; margin-bottom: 1.5em; }
.alignright { float: right; margin-left: 1.5em; margin-bottom: 1.5em; }
.wp-caption { background: #fff; border: 1px solid #f0f0f0; max-width: 96%; padding: 5px 3px 10px; text-align: center; }
.wp-caption img { border: 0 none; height: auto; margin: 0; padding: 0; width: auto; }
.wp-caption p.wp-caption-text { font-size: 11px; line-height: 17px; margin: 0; padding: 0 4px 5px; }
.screen-reader-text { border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal !important; }

/* Single Service Template Styles */
.service-details-section {
  padding: 80px 0;
  background: var(--off-white);
}

.service-details-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

@media (max-width: 900px) {
  .service-details-grid {
    grid-template-columns: 1fr;
  }
}

.service-content-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: 30px;
}

.service-sidebar-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 100px;
}

.service-objective-box {
  background: linear-gradient(135deg, rgba(0, 61, 122, 0.05), rgba(0, 168, 204, 0.05));
  border-left: 4px solid var(--cyan);
  padding: 24px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 32px;
  font-weight: 600;
  color: var(--navy);
}

.checklist-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
}

.service-checklist-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

@media (max-width: 600px) {
  .service-checklist-list {
    grid-template-columns: 1fr;
  }
}

.service-checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
}

.service-checklist-item::before {
  content: '✓';
  color: var(--cyan);
  font-weight: 800;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
  .why-us-inner { grid-template-columns: 1fr; gap: 50px; }
  .why-us-visual { display: none; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    height: 200px;
  }
  .areas-map-wrap { flex-direction: column; gap: 32px; }
  .areas-cta-box { max-width: 100%; }
}

@media (max-width: 768px) {
  .nav-wrap { display: none; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .header-phone { display: none; }
  .btn-book { display: none; }

  .hero-stats { gap: 0; }
  .hero-stat { padding: 14px 20px; }

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

  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  #gallery { padding: 60px 0; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery-item:nth-child(n) {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-content { padding: 120px 0 60px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 0; }
  .hero-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); padding: 14px 0; }
  .hero-stat:last-child { border-bottom: none; }
  .trust-bar-inner { gap: 10px 20px; }
  .trust-divider { display: none; }
  .areas-map-wrap { padding: 28px 20px; }
  .contact-form-wrap { padding: 28px 20px; }
}
