/* =============================================
   PRO CLEAN MASTER MY — PREMIUM STYLESHEET
   ============================================= */

/* ---- CSS Custom Properties ---- */
:root {
  --blue-deep:    #0f2a5e;
  --blue-mid:     #1e3a6e;
  --blue-light:   #2d5be3;
  --gold:         #c9a84c;
  --gold-light:   #e6c97a;
  --gold-pale:    #f9f0d8;
  --white:        #ffffff;
  --grey-50:      #f8f9fc;
  --grey-100:     #f0f2f8;
  --grey-200:     #e2e6f0;
  --grey-300:     #c8cfe0;
  --grey-500:     #8490a8;
  --grey-700:     #4a5568;
  --grey-900:     #1a202c;
  --shadow-sm:    0 2px 8px rgba(15,42,94,0.06);
  --shadow-md:    0 8px 24px rgba(15,42,94,0.10);
  --shadow-lg:    0 20px 50px rgba(15,42,94,0.14);
  --shadow-xl:    0 30px 70px rgba(15,42,94,0.18);
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    36px;
  --transition:   all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --nav-height:   76px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--grey-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ---- Typography ---- */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

/* ---- Utility ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-accent { color: var(--gold); }
.text-accent-light { color: var(--gold-light); }
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.section-label.light {
  background: rgba(201,168,76,0.15);
  color: var(--gold-light);
  border-color: rgba(201,168,76,0.3);
}
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--grey-500); font-size: 1.05rem; }
.desktop-br { display: block; }

/* =============================================
   LOADER
   ============================================= */
#loader {
  position: fixed;
  inset: 0;
  background: var(--blue-deep);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  animation: autoHideLoader 3.5s forwards;
}
#loader.hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
@keyframes autoHideLoader {
  0%   { opacity: 1; visibility: visible; }
  80%  { opacity: 1; visibility: visible; }
  100% { opacity: 0; visibility: hidden;  pointer-events: none; }
}
.loader-inner { text-align: center; }
.loader-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: white;
  margin-bottom: 32px;
  justify-content: center;
}
.loader-logo i { font-size: 2.5rem; color: var(--gold); }
.loader-logo span { font-size: 1.6rem; font-weight: 800; letter-spacing: -0.02em; }
.loader-bar {
  width: 200px;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 100px;
  overflow: hidden;
  margin: 0 auto;
}
.loader-progress {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 100px;
  animation: loadProgress 1.6s ease forwards;
}
@keyframes loadProgress {
  0% { width: 0; }
  100% { width: 100%; }
}

/* =============================================
   NAVBAR
   ============================================= */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: transparent;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
  height: 68px;
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo .logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  box-shadow: 0 4px 14px rgba(15,42,94,0.25);
}
.nav-logo .logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo .logo-main { font-size: 1rem; font-weight: 800; color: white; transition: var(--transition); }
.nav-logo .logo-sub { font-size: 0.7rem; font-weight: 700; color: var(--gold); letter-spacing: 0.08em; }
#navbar.scrolled .nav-logo .logo-main { color: var(--blue-deep); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover { color: white; background: rgba(255,255,255,0.1); }
#navbar.scrolled .nav-links a { color: var(--grey-700); }
#navbar.scrolled .nav-links a:hover { color: var(--blue-deep); background: var(--grey-100); }
.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.btn-phone {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.88rem; font-weight: 600;
  color: rgba(255,255,255,0.9);
  padding: 9px 16px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.btn-phone:hover { background: rgba(255,255,255,0.1); color: white; border-color: rgba(255,255,255,0.6); }
#navbar.scrolled .btn-phone { color: var(--blue-mid); border-color: var(--grey-200); }
#navbar.scrolled .btn-phone:hover { background: var(--grey-50); }
.btn-book {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.88rem; font-weight: 700;
  background: linear-gradient(135deg, var(--gold), #b8952e);
  color: white;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(201,168,76,0.35);
}
.btn-book:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(201,168,76,0.45); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2.5px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}
#navbar.scrolled .hamburger span { background: var(--blue-deep); }
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: white;
  box-shadow: var(--shadow-lg);
  padding: 20px 24px 28px;
  border-top: 3px solid var(--gold);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; margin-bottom: 20px; }
.mobile-menu ul a {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--grey-700);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.mobile-menu ul a:hover { background: var(--grey-50); color: var(--blue-deep); }
.mob-cta { display: flex; flex-direction: column; gap: 10px; }
.btn-phone-mob {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 600; color: var(--blue-mid);
  border: 2px solid var(--blue-mid);
  padding: 13px 20px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.btn-phone-mob:hover { background: var(--blue-mid); color: white; }
.btn-book-mob {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--gold), #b8952e);
  color: white; font-weight: 700;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  text-align: center;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,25,58,0.88) 0%,
    rgba(15,42,94,0.75) 50%,
    rgba(15,42,94,0.40) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 140px 32px 100px;
  max-width: 760px;
  padding-left: 32px;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  backdrop-filter: blur(8px);
  color: var(--gold-light);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 28px;
}
.hero-badge .stars { font-size: 0.9rem; }
.hero h1 {
  color: white;
  margin-bottom: 24px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.headline-accent {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  max-width: 560px;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), #b8952e);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(201,168,76,0.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(201,168,76,0.5); }
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover { background: #20BD5C; transform: translateY(-3px); box-shadow: 0 12px 30px rgba(37,211,102,0.4); }
.hero-info {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
}
.hero-info-item i { color: var(--gold); font-size: 0.95rem; }
.hero-info-item a { color: rgba(255,255,255,0.8); transition: var(--transition); }
.hero-info-item a:hover { color: var(--gold-light); }
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll a {
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  color: white;
  font-size: 1rem;
  animation: bounce 2s infinite;
  transition: var(--transition);
}
.hero-scroll a:hover { background: rgba(255,255,255,0.1); border-color: white; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  background: var(--blue-deep);
  padding: 18px 0;
}
.trust-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.9);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 6px 24px;
}
.trust-item i { color: var(--gold); }
.trust-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.15);
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services {
  padding: 100px 0;
  background: var(--grey-50);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-mid), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured {
  background: linear-gradient(160deg, var(--blue-deep) 0%, var(--blue-mid) 100%);
  color: white;
  border: none;
}
.service-card.featured h3 { color: white; }
.service-card.featured p { color: rgba(255,255,255,0.8); }
.service-card.featured .service-list li { color: rgba(255,255,255,0.85); }
.service-card.featured .service-list i { color: var(--gold-light); }
.service-card.featured::before { display: none; }
.service-card.featured .service-cta { color: var(--gold-light); }
.service-card.featured .service-cta:hover { color: white; }
.featured-tag {
  position: absolute;
  top: 20px;
  right: -28px;
  background: linear-gradient(135deg, var(--gold), #b8952e);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 40px;
  transform: rotate(45deg);
  transform-origin: top right;
}
.service-icon-wrap {
  width: 64px; height: 64px;
  background: var(--grey-100);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  color: var(--blue-mid);
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card.featured .service-icon-wrap {
  background: rgba(255,255,255,0.12);
  color: var(--gold-light);
}
.service-card:hover .service-icon-wrap {
  background: var(--blue-deep);
  color: var(--gold);
  transform: scale(1.05);
}
.service-card.featured:hover .service-icon-wrap { transform: scale(1.05); background: rgba(255,255,255,0.18); }
.service-card h3 { margin-bottom: 12px; color: var(--blue-deep); }
.service-card p { color: var(--grey-500); font-size: 0.93rem; margin-bottom: 18px; line-height: 1.65; }
.service-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.service-list li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--grey-700); }
.service-list i { color: var(--gold); font-size: 0.75rem; flex-shrink: 0; }
.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue-mid);
  transition: var(--transition);
}
.service-cta:hover { gap: 12px; }
.service-cta-card {
  background: linear-gradient(160deg, var(--gold-pale), #fdf5e0);
  border: 2px dashed rgba(201,168,76,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-card-inner { text-align: center; }
.cta-card-inner i { font-size: 2.5rem; color: var(--gold); margin-bottom: 16px; }
.cta-card-inner h3 { color: var(--blue-deep); margin-bottom: 10px; }
.cta-card-inner p { color: var(--grey-500); font-size: 0.9rem; margin-bottom: 22px; }
.btn-primary-sm {
  display: inline-flex; align-items: center; gap: 9px;
  background: #25D366; color: white;
  font-weight: 700; font-size: 0.92rem;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(37,211,102,0.3);
}
.btn-primary-sm:hover { background: #20BD5C; transform: translateY(-2px); }

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-us {
  padding: 100px 0;
  background: white;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.why-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.why-img-wrap img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.why-img-wrap:hover img { transform: scale(1.04); }
.why-img-badge {
  position: absolute;
  top: 32px; right: 32px;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid));
  color: white;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(255,255,255,0.1);
}
.badge-number { font-size: 2rem; font-weight: 900; color: var(--gold); line-height: 1; }
.badge-text { font-size: 0.8rem; font-weight: 600; opacity: 0.85; }
.why-img-card {
  position: absolute;
  bottom: 32px; left: 32px;
  background: white;
  border-radius: var(--radius-md);
  padding: 16px 24px;
  box-shadow: var(--shadow-lg);
}
.rating-big { font-size: 1.8rem; margin-bottom: 2px; }
.rating-text { font-size: 1rem; font-weight: 700; color: var(--blue-deep); }
.rating-sub { font-size: 0.78rem; color: var(--grey-500); }
.why-content-col h2 { margin-bottom: 14px; }
.why-intro { color: var(--grey-500); font-size: 1rem; margin-bottom: 36px; line-height: 1.7; }
.why-features { display: flex; flex-direction: column; gap: 20px; }
.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.why-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.why-icon.gold { background: var(--gold-pale); color: var(--gold); }
.why-icon.blue { background: var(--grey-100); color: var(--blue-mid); }
.why-feature h4 { font-size: 0.97rem; font-weight: 700; color: var(--blue-deep); margin-bottom: 4px; }
.why-feature p { font-size: 0.88rem; color: var(--grey-500); line-height: 1.6; }

/* =============================================
   STATS
   ============================================= */
.stats-section {
  background: linear-gradient(135deg, var(--blue-deep), #163068);
  padding: 64px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.stat-item {
  text-align: center;
  position: relative;
}
.stat-item::after {
  content: '';
  position: absolute;
  right: 0; top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.12);
}
.stat-item:last-child::after { display: none; }
.stat-number {
  font-size: 3.2rem;
  font-weight: 900;
  color: white;
  display: inline;
  line-height: 1;
}
.stat-plus, .stat-decimal {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  display: inline;
}
.stat-label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  margin-top: 8px;
  letter-spacing: 0.04em;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  padding: 100px 0;
  background: var(--grey-50);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-200);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.testimonial-card.featured-review {
  background: linear-gradient(160deg, var(--blue-deep), var(--blue-mid));
  border: none;
  color: white;
}
.testimonial-card.featured-review p { color: rgba(255,255,255,0.88); }
.testimonial-card.featured-review .testimonial-author strong { color: white; }
.testimonial-card.featured-review .testimonial-author span { color: rgba(255,255,255,0.6); }
.testimonial-card.featured-review .testimonial-quote i { color: var(--gold); }
.testimonial-quote { margin-bottom: 12px; }
.testimonial-quote i { font-size: 1.5rem; color: var(--grey-200); }
.testimonial-stars { font-size: 0.9rem; margin-bottom: 14px; }
.testimonial-card p { font-size: 0.92rem; line-height: 1.7; color: var(--grey-700); margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 0.78rem;
  font-weight: 800;
  flex-shrink: 0;
}
.testimonial-card.featured-review .author-avatar {
  background: rgba(255,255,255,0.2);
  color: var(--gold-light);
}
.author-info strong { display: block; font-size: 0.92rem; color: var(--blue-deep); }
.author-info span { font-size: 0.78rem; color: var(--grey-500); }
.review-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 48px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-200);
  gap: 32px;
}
.overall-rating { text-align: center; }
.big-stars { font-size: 1.5rem; margin-bottom: 6px; }
.rating-score { font-size: 2rem; font-weight: 900; color: var(--blue-deep); line-height: 1; }
.rating-count { font-size: 0.82rem; color: var(--grey-500); margin-top: 4px; }

/* =============================================
   GALLERY
   ============================================= */
.gallery { padding: 100px 0; background: white; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,25,58,0.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: white;
  font-size: 0.88rem;
  font-weight: 600;
  background: rgba(201,168,76,0.8);
  padding: 6px 14px;
  border-radius: 100px;
}

/* =============================================
   BOOKING SECTION
   ============================================= */
.booking {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--blue-deep) 0%, #163068 100%);
  position: relative;
  overflow: hidden;
}
.booking::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.booking::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(45,91,227,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.booking-left h2 { color: white; margin-bottom: 16px; }
.booking-left p { color: rgba(255,255,255,0.75); font-size: 1rem; margin-bottom: 32px; line-height: 1.7; }
.booking-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px; }
.bf-item { display: flex; align-items: center; gap: 12px; }
.bf-item i { color: var(--gold); font-size: 1rem; }
.bf-item span { color: rgba(255,255,255,0.85); font-size: 0.93rem; font-weight: 500; }
.booking-contact p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 14px; }
.booking-contact { display: flex; flex-direction: column; gap: 12px; }
.booking-contact p { margin-bottom: 0; }
.btn-phone-big {
  display: inline-flex; align-items: center; gap: 12px;
  color: white; font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.25);
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.btn-phone-big:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); }
.btn-wa-big {
  display: inline-flex; align-items: center; gap: 12px;
  background: #25D366; color: white; font-weight: 700;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.btn-wa-big:hover { background: #20BD5C; transform: translateY(-2px); }

/* Form */
.booking-form-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  box-shadow: var(--shadow-xl);
}
.booking-form-card h3 {
  font-size: 1.5rem;
  color: var(--blue-deep);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--grey-100);
}
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--grey-700);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-sm);
  font-size: 0.93rem;
  color: var(--grey-900);
  background: var(--grey-50);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-mid);
  background: white;
  box-shadow: 0 0 0 3px rgba(30,58,110,0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--grey-300); }
.form-group textarea { resize: vertical; min-height: 80px; }
.btn-submit {
  width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(135deg, var(--gold), #b8952e);
  color: white;
  font-size: 1rem;
  font-weight: 700;
  padding: 16px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
  margin-top: 8px;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(201,168,76,0.45); }
.btn-submit:active { transform: translateY(0); }

/* =============================================
   SUCCESS MODAL
   ============================================= */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(10,25,58,0.7);
  backdrop-filter: blur(6px);
  z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  transition: opacity 0.3s ease;
}
.modal-overlay.hidden { display: none; }
.modal-box {
  background: white;
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-xl);
  animation: modalIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.85) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-icon i {
  font-size: 4rem;
  color: #25D366;
  margin-bottom: 20px;
  display: block;
}
.modal-box h3 { font-size: 1.6rem; color: var(--blue-deep); margin-bottom: 14px; }
.modal-box p { color: var(--grey-500); margin-bottom: 28px; line-height: 1.7; }
.modal-close {
  display: block;
  margin: 16px auto 0;
  font-size: 0.88rem;
  color: var(--grey-500);
  cursor: pointer;
  transition: var(--transition);
  background: none; border: none;
}
.modal-close:hover { color: var(--grey-900); }

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact { padding: 100px 0; background: var(--grey-50); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.contact-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--grey-100);
}
.contact-item:last-child { border-bottom: none; }
.contact-icon {
  width: 46px; height: 46px;
  background: var(--grey-50);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-mid);
  font-size: 1rem;
  flex-shrink: 0;
  border: 1px solid var(--grey-200);
}
.contact-item strong { display: block; font-size: 0.88rem; color: var(--blue-deep); margin-bottom: 4px; font-weight: 700; }
.contact-item p { font-size: 0.92rem; color: var(--grey-500); line-height: 1.6; }
.contact-item a { color: var(--blue-mid); font-weight: 600; transition: var(--transition); }
.contact-item a:hover { color: var(--gold); }
.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.social-btn {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  color: white;
}
.social-btn.wa { background: #25D366; }
.social-btn.fb { background: #1877F2; }
.social-btn.ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn.gg { background: #EA4335; }
.social-btn:hover { transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0,0,0,0.2); }
.map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--grey-200);
}
.map-container iframe { display: block; }

/* =============================================
   FOOTER
   ============================================= */
.footer-top {
  background: var(--blue-deep);
  padding: 72px 0 48px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer-brand .footer-logo {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.footer-brand .logo-icon {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
}
.footer-brand .logo-main { color: white; font-size: 1rem; font-weight: 800; }
.footer-brand .logo-sub { color: var(--gold); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.footer-col h4 {
  color: white; font-size: 0.95rem;
  font-weight: 700; margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(201,168,76,0.25);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
}
.footer-contact-item i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.7); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--gold-light); }
.btn-footer-book {
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--gold), #b8952e);
  color: white; font-weight: 700; font-size: 0.88rem;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  margin-top: 8px;
  transition: var(--transition);
}
.btn-footer-book:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(201,168,76,0.35); }
.footer-bottom {
  background: rgba(0,0,0,0.2);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.82rem; }
.footer-badge {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
}

/* =============================================
   STICKY BUTTONS
   ============================================= */
.sticky-wa {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 900;
  background: var(--blue-mid);
  color: white;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 24px rgba(30,58,110,0.45);
  transition: var(--transition);
  overflow: hidden;
}
.sticky-wa-text {
  display: none;
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
}
.sticky-wa:hover {
  width: auto;
  border-radius: 100px;
  padding: 0 24px;
  gap: 10px;
}
.sticky-wa:hover .sticky-wa-text { display: block; }
.sticky-wa:hover { box-shadow: 0 10px 30px rgba(30,58,110,0.5); }

.sticky-book-mobile {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 800;
  background: white;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  padding: 12px 16px;
}
.sticky-book-mobile.visible { display: flex; gap: 10px; }
.sticky-book-btn {
  flex: 2;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, var(--gold), #b8952e);
  color: white; font-weight: 700; font-size: 0.95rem;
  padding: 14px;
  border-radius: var(--radius-sm);
}
.sticky-call-btn {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--blue-deep);
  color: white; font-weight: 700; font-size: 0.95rem;
  padding: 14px;
  border-radius: var(--radius-sm);
}

/* =============================================
   RESPONSIVE — TABLET (< 1024px)
   ============================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-image-col { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
  .review-cta { flex-direction: column; text-align: center; padding: 32px; }
  .nav-links { display: none; }
  .btn-phone { display: none; }
  .hamburger { display: flex; }
}

/* =============================================
   RESPONSIVE — MOBILE (< 768px)
   ============================================= */
@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 2; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item::after { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 130px 20px 90px; }
  .hero-sub { font-size: 1rem; }
  .hero-info { gap: 16px; }
  .hero-cta { gap: 12px; }
  .btn-primary, .btn-whatsapp { padding: 14px 24px; font-size: 0.93rem; }
  .booking-form-card { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-brand { grid-column: 1; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .sticky-book-mobile.visible { display: flex; }
  .sticky-wa { bottom: 90px; right: 20px; width: 52px; height: 52px; font-size: 1.5rem; }
  .sticky-wa:hover { width: 52px; padding: 0; border-radius: 50%; }
  .sticky-wa:hover .sticky-wa-text { display: none; }
  .trust-container { gap: 0; }
  .trust-item { padding: 6px 12px; font-size: 0.78rem; }
  .trust-divider { display: none; }
  .desktop-br { display: none; }
  .section-header { margin-bottom: 36px; }
  .why-feature { gap: 14px; }
  .contact-card { padding: 28px 20px; }
  .nav-container { padding: 0 16px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 2.4rem; }
  .hero-badge span { display: none; }
  .hero-badge { gap: 6px; }
}
