/* ============================================================
   CleanPro — Main Stylesheet
   Primary: #4CAF50 | Secondary: #2C3E50 | BG: #F5F7FA
   Fonts: Poppins (headings) + Open Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Open+Sans:wght@300;400;500;600&display=swap');

/* ── CSS Custom Properties ─────────────────────────────────── */
:root {
  --primary:       #4CAF50;
  --primary-dark:  #388E3C;
  --primary-light: #C8E6C9;
  --secondary:     #2C3E50;
  --secondary-light:#34495E;
  --accent:        #F39C12;
  --bg:            #F5F7FA;
  --bg-card:       #ffffff;
  --text:          #333333;
  --text-muted:    #6c757d;
  --border:        #E8ECF0;
  --shadow-sm:     0 2px 8px rgba(0,0,0,.07);
  --shadow:        0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:     0 8px 40px rgba(0,0,0,.14);
  --radius:        12px;
  --radius-sm:     8px;
  --transition:    all .3s cubic-bezier(.25,.8,.25,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 15px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--secondary);
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Layout Utilities ──────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header .badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;
}
.section-header h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 14px; }
.section-header p { color: var(--text-muted); max-width: 560px; margin: 0 auto; font-size: 15px; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76,175,80,.35);
}
.btn-outline {
  background: transparent;
  color: var(--secondary);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}
.btn-white {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
}
.btn-white:hover {
  background: #fff;
  color: var(--secondary);
  border-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255,255,255,0.2);
}
.btn-lg { padding: 16px 36px; font-size: 15px; }
.btn-sm { padding: 9px 20px; font-size: 13px; }
.btn-block { width: 100%; justify-content: center; }

/* ── Navbar ────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.92);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--secondary);
}
.navbar-brand .logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.navbar-brand span { color: var(--primary); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 14px;
  color: var(--text);
  font-family: 'Poppins', sans-serif;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); background: var(--primary-light); }

.nav-cta { margin-left: 12px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Hero Fresh (Professional Light) ───────────────────────── */
.hero-fresh {
  min-height: 100vh;
  background: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
}
.hero-bg-accent {
  position: absolute;
  top: 0; right: 0;
  width: 45%; height: 100%;
  background: #F8FAFC;
  z-index: 0;
}

.hero-fresh-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 10;
}

.badge-premium-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.pulse-dot-green {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  position: relative;
}
.pulse-dot-green::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.4;
  animation: pulse 2s infinite;
}

.hero-fresh-title {
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 900;
  color: var(--secondary);
  line-height: 1.05;
  margin-bottom: 30px;
  letter-spacing: -0.04em;
}
.hero-fresh-title .text-primary { color: var(--primary); }

.hero-fresh-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 45px;
  max-width: 520px;
}

.hero-fresh-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
}

.btn-ghost-dark {
  padding: 16px 36px;
  border-radius: 12px;
  border: 2px solid var(--border);
  color: var(--secondary);
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
  background: transparent;
  text-decoration: none;
}
.btn-ghost-dark:hover {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
  transform: translateY(-3px);
}

.hero-fresh-stats {
  display: flex;
  align-items: center;
  gap: 40px;
}
.hfs-item { display: flex; flex-direction: column; }
.hfs-num { font-size: 32px; font-weight: 900; color: var(--secondary); line-height: 1; }
.hfs-plus { font-size: 20px; color: var(--primary); font-weight: 800; margin-left: 2px; }
.hfs-label { font-size: 12px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 5px; }
.hfs-sep { height: 40px; width: 1px; background: var(--border); }

/* ── Trust Strip ── */
.hero-fresh-trust {
  margin-top: 45px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}
.hero-fresh-trust span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 18px;
}
.hft-logos {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.hft-logos img {
  height: 20px;
  opacity: 0.4;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}
.hft-logos img:hover { opacity: 1; filter: grayscale(0%); transform: scale(1.05); }

/* ── Visual Panel ── */
.hero-fresh-visual { position: relative; }
.hfv-image-container {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.1);
  height: 600px;
}
.hfv-img { width: 100%; height: 100%; object-fit: cover; }

.hfv-floating-card {
  position: absolute;
  bottom: 40px; left: 40px;
  background: #fff;
  padding: 20px 30px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  animation: float 6s infinite ease-in-out;
}
.hfv-card-icon { font-size: 30px; }
.hfv-card-text strong { display: block; font-size: 16px; color: var(--secondary); }
.hfv-card-text span { font-size: 12px; color: var(--text-muted); }

.hfv-decorator {
  position: absolute;
  top: -30px; right: -30px;
  width: 150px; height: 150px;
  background: var(--primary-light);
  border-radius: 30px;
  z-index: -1;
  animation: rotateSlow 20s linear infinite;
}
@keyframes rotateSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

@media (max-width: 992px) {
  .hero-fresh { padding-top: 140px; }
  .hero-fresh-grid { grid-template-columns: 1fr; text-align: center; gap: 60px; }
  .hero-bg-accent { width: 100%; height: 35%; top: auto; bottom: 0; }
  .badge-premium-light, .hero-fresh-actions, .hero-fresh-stats { justify-content: center; margin-left: auto; margin-right: auto; }
  .hero-fresh-subtitle { margin-left: auto; margin-right: auto; }
  .hfv-image-container { height: 450px; }
}

/* ── Scroll Cue Removed for Fresh Style ── */

/* ── Premium Utilities ─────────────────────────────────────── */
.section-lg { padding: 120px 0; }
@media (max-width: 768px) {
  .section-lg { padding: 40px 0; }
}
.bg-soft-gradient { background: linear-gradient(180deg, #F5F7FA 0%, #FFFFFF 100%); }

.section-header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 30px;
}
@media (max-width: 768px) {
  .section-header-wrap { flex-direction: column; align-items: flex-start; gap: 10px; margin-bottom: 25px; }
}
.section-header-left { flex: 1; width: 100%; }
.section-header-right { flex: 0 0 450px; }
@media (max-width: 768px) {
  .section-header-right { flex: 1; width: 100%; }
}
.section-header-right p { color: var(--text-muted); font-size: 16px; margin-bottom: 12px; }

/* ── Page Hero Fresh ────────────────────────────────────────── */
.svc-page-hero {
  padding: 160px 0 80px;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.svc-hero-bg {
  position: absolute;
  top: 0; right: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at 100% 0%, #F8FAFC 0%, transparent 60%);
}
.h1-title-large {
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 900;
  color: var(--secondary);
  line-height: 1.05;
  margin-bottom: 25px;
  letter-spacing: -0.04em;
}
.svc-hero-desc {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 600px;
}

.breadcrumb-fresh {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.breadcrumb-fresh a { color: var(--primary); text-decoration: none; transition: 0.3s; }
.breadcrumb-fresh a:hover { color: var(--primary-dark); }
.breadcrumb-fresh .sep { color: var(--border); }
.breadcrumb-fresh span:last-child { color: var(--text-muted); }

/* ── Service Detail Fresh ───────────────────────────────────── */
.svc-detail-fresh-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: flex-start;
}
@media (max-width: 992px) {
  .svc-detail-fresh-grid { grid-template-columns: 1fr; gap: 60px; }
}

.svc-detail-img-box {
  position: relative;
  background: #fff;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.1);
  height: 500px;
  margin-bottom: 60px;
}
.svc-main-img { width: 100%; height: 100%; object-fit: cover; }
.svc-img-decorator {
  position: absolute;
  bottom: -40px; left: -40px;
  width: 200px; height: 200px;
  background: var(--primary-light);
  border-radius: 40px;
  z-index: -1;
  opacity: 0.15;
}

.svc-detail-section-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 25px;
  letter-spacing: -0.03em;
}

.svc-detail-p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* ── Checklist Grid ── */
.svc-checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 30px;
  margin-bottom: 60px;
}
.svc-checklist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 500;
}
.svc-check-icon {
  width: 24px; height: 24px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── Specs Grid ── */
.svc-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding: 30px;
  background: #fff;
  border-radius: 30px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.svc-spec-item { display: flex; flex-direction: column; }
.svc-spec-label { font-size: 11px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 8px; }
.svc-spec-val { font-size: 14.5px; font-weight: 800; color: var(--secondary); }

/* ── Service Detail Sidebar ── */
.svc-sidebar-card {
  background: #fff;
  border-radius: 40px;
  padding: 40px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.1);
  border: 1px solid rgba(0,0,0,0.05);
  position: sticky; top: 110px;
}
.svc-sidebar-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 35px;
}
.svc-sidebar-icon {
  width: 65px; height: 65px;
  background: var(--primary);
  color: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(76,175,80,0.3);
}
.svc-sidebar-title h4 { font-size: 20px; font-weight: 800; color: var(--secondary); margin-bottom: 4px; }
.svc-sidebar-title span { font-size: 12px; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.1em; }

.svc-sidebar-pricing {
  padding: 30px 0;
  border-top: 1px dashed var(--border);
  border-bottom: 1px dashed var(--border);
  margin-bottom: 35px;
}
.svc-sidebar-price { font-size: 28px; font-weight: 900; color: var(--secondary); display: flex; flex-direction: column; gap: 4px; }
.svc-sidebar-price small { font-size: 12px; font-weight: 600; color: var(--text-muted); text-transform: none; letter-spacing: 0; }

.svc-sidebar-benefits { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.svc-sidebar-benefit-item { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; font-weight: 600; color: var(--secondary); line-height: 1.4; }
.svc-sidebar-benefit-item svg { color: var(--primary); flex-shrink: 0; margin-top: 2px; }

.btn-xl { padding: 22px 36px; border-radius: 20px; font-size: 16px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; }

.svc-sidebar-help { text-align: center; margin-top: 25px; font-size: 13.5px; color: var(--text-muted); font-weight: 500; }
.svc-sidebar-help a { color: var(--primary); font-weight: 700; text-decoration: none; }

.svc-sidebar-trust-box {
  margin-top: 25px;
  padding: 20px;
  background: var(--bg-soft);
  border-radius: 24px;
}
.svc-trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-muted);
}
.svc-trust-badge svg { color: var(--primary); }

@media (max-width: 992px) {
  .svc-sidebar-card { position: relative; top: 0; }
  .svc-checklist-grid { grid-template-columns: 1fr; }
}

/* ── Services Fresh Grid ───────────────────────────────────── */
.services-fresh-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 35px;
}

.svc-fresh-card {
  background: #fff;
  border-radius: 35px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}
.svc-fresh-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
  border-color: var(--primary-light);
}

.svc-fresh-img {
  height: 250px;
  position: relative;
  overflow: hidden;
}
.svc-fresh-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.svc-fresh-card:hover .svc-fresh-img img { transform: scale(1.1); }
.svc-fresh-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 60%);
}
.svc-fresh-price {
  position: absolute; top: 25px; right: 25px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 14px;
  color: var(--secondary);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.svc-fresh-body {
  padding: 35px 30px;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.svc-fresh-icon-wrap {
  width: 65px; height: 65px;
  background: var(--primary);
  color: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -65px;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 25px rgba(76,175,80,0.3);
  margin-bottom: 25px;
  transition: all 0.3s ease;
}
.svc-fresh-card:hover .svc-fresh-icon-wrap {
  transform: rotate(-5deg) scale(1.1);
}

.svc-fresh-body h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.svc-fresh-body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.svc-fresh-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 25px;
  border-top: 1px solid var(--border);
}
.svc-fresh-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--secondary);
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.svc-fresh-link:hover { color: var(--primary); gap: 12px; }

@media (max-width: 576px) {
  .services-fresh-grid { grid-template-columns: 1fr; }
}

/* ── CTA Fresh Card ────────────────────────────────────────── */
.svc-cta-fresh { background: #fff; }
.cta-fresh-card {
  background: var(--secondary);
  border-radius: 40px;
  padding: 80px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.15);
}
.cta-fresh-content h2 {
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 25px;
  letter-spacing: -0.03em;
}
.cta-fresh-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 45px;
  max-width: 520px;
}
.cta-fresh-btns { display: flex; gap: 20px; }
.cta-fresh-btns .btn-ghost-dark {
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}
.cta-fresh-btns .btn-ghost-dark:hover {
  background: #fff;
  color: var(--secondary);
  border-color: #fff;
}

.cta-fresh-visual { position: relative; }
.cta-visual-bubble {
  position: absolute;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.15;
}
.cta-visual-bubble.blur-1 { width: 250px; height: 250px; top: -50px; right: -50px; filter: blur(50px); }
.cta-visual-bubble.blur-2 { width: 180px; height: 180px; bottom: -30px; left: 10%; filter: blur(40px); background: #fff; opacity: 0.05; }
.cta-visual-bubble.blur-3 { width: 120px; height: 120px; top: 20%; right: 40%; filter: blur(30px); }

@media (max-width: 992px) {
  .cta-fresh-card { grid-template-columns: 1fr; padding: 60px 40px; text-align: center; }
  .cta-fresh-content h2 { font-size: clamp(30px, 8vw, 40px); }
  .cta-fresh-content p, .cta-fresh-btns { margin-left: auto; margin-right: auto; justify-content: center; }
}
@media (max-width: 576px) {
  .cta-fresh-btns { flex-direction: column; width: 100%; }
  .cta-fresh-btns .btn { width: 100%; justify-content: center; text-align: center; }
}

.svc-empty-fresh {
  text-align: center;
  padding: 100px 0;
}
.svc-empty-icon { font-size: 60px; margin-bottom: 25px; }
.svc-empty-fresh h3 { font-size: 30px; font-weight: 800; color: var(--secondary); margin-bottom: 15px; }
.svc-empty-fresh p { color: var(--text-muted); margin-bottom: 35px; max-width: 500px; margin-left: auto; margin-right: auto; }

.badge-premium {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.h1-title {
  font-size: clamp(36px, 5.5vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--secondary);
  margin: 0;
  letter-spacing: -0.02em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--primary);
  font-size: 14px;
  transition: var(--transition);
}
.text-link:hover { gap: 12px; }

/* ── Services Premium Grid ─────────────────────────────────── */
.services-grid-premium {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.service-card-premium {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}
.service-card-premium:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
  border-color: var(--primary-light);
}

.card-img-container {
  height: 240px;
  position: relative;
  overflow: hidden;
}
.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card-premium:hover .card-img { transform: scale(1.1); }
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.4) 100%);
}
.card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #fff;
  color: var(--secondary);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.card-content {
  padding: 30px;
  position: relative;
}
.card-icon-wrap {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: #fff;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -60px;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(76,175,80,0.3);
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card-premium:hover .card-icon-wrap {
  transform: scale(1.1) rotate(-5deg);
}
.card-content {
  padding: 35px 30px 30px;
  background: #fff;
  position: relative;
  z-index: 1;
}
.card-content h3 { font-size: 22px; font-weight: 700; color: var(--secondary); margin-bottom: 12px; }
.card-content p { color: var(--text-muted); font-size: 14.5px; line-height: 1.6; margin-bottom: 25px; }

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.btn-text {
  font-weight: 700;
  color: var(--secondary);
  font-size: 14px;
  transition: var(--transition);
}
.btn-text:hover { color: var(--primary); }

/* ── Why Choose Us Redesign ────────────────────────────────── */
.why-premium { background: #fff; }
.why-grid-premium {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.why-visual-wrap {
  position: relative;
}
.why-img-mask {
  border-radius: 40px;
  overflow: hidden;
  height: 550px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.15);
}
@media (max-width: 992px) {
  .why-grid-premium { grid-template-columns: 1fr; gap: 60px; }
  .why-content-premium { text-align: center; }
  .why-content-premium .badge-premium, .why-content-premium .h1-title { margin-left: auto; margin-right: auto; }
  .why-img-mask { height: 400px; }
  .why-experience-badge { left: 20px; top: -30px; }
  .why-floating-card { right: 20px; bottom: -30px; }
}
.why-img { width: 100%; height: 100%; object-fit: cover; }

.why-experience-badge {
  position: absolute;
  top: 40px;
  left: -40px;
  background: var(--primary);
  color: #fff;
  padding: 25px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(76,175,80,0.4);
}
.eb-num { font-size: 36px; font-weight: 800; line-height: 1; }
.eb-text { font-size: 13px; font-weight: 600; opacity: 0.9; margin-top: 5px; }

.why-floating-card {
  position: absolute;
  bottom: 40px;
  right: -30px;
  background: #fff;
  padding: 20px 25px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  border: 1px solid var(--border);
  animation: float 6s ease-in-out infinite;
}
.fc-icon { font-size: 28px; }
.why-floating-card h5 { font-size: 16px; margin-bottom: 2px; }
.why-floating-card p { font-size: 12px; color: var(--text-muted); }

.why-content-premium .section-desc { font-size: 18px; color: var(--text-muted); margin: 20px 0 40px; line-height: 1.8; }

.premium-features {
  display: grid;
  gap: 25px;
}
.premium-feature-item {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: var(--bg);
  border-radius: 20px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.premium-feature-item:hover {
  background: #fff;
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
@media (max-width: 768px) {
  .premium-feature-item { flex-direction: column; text-align: center; align-items: center; }
  .pf-text { margin-top: 15px; }
  .premium-feature-item:hover { transform: translateY(-5px); }
}
.pf-icon {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.pf-text h4 { font-size: 18px; margin-bottom: 5px; }
.pf-text p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ── Testimonials Fresh ────────────────────────────────────── */
.testimonials-fresh-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.testimonial-fresh-card {
  background: #F8FAFC;
  padding: 40px;
  border-radius: 35px;
  transition: all 0.4s ease;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
}
.testimonial-fresh-card:hover {
  background: #fff;
  border-color: var(--primary-light);
  box-shadow: 0 30px 60px rgba(0,0,0,0.06);
  transform: translateY(-10px);
}

.tfs-stars {
  display: flex;
  gap: 4px;
  color: #FBB03B;
  margin-bottom: 25px;
}

.tfs-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--secondary);
  font-weight: 500;
  font-style: italic;
  margin-bottom: 35px;
  flex: 1;
}

.tfs-author {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 25px;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.tfs-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-soft);
}
.tfs-avatar img { width: 100%; height: 100%; object-fit: cover; }

.tfs-info h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 2px;
}
.tfs-info span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── CTA Premium (Fresh Edition) ─────────────────────────────── */
.cta-premium { padding: 100px 0; background: #F8FAFC; }
.cta-card {
  background: #fff;
  border-radius: 50px;
  padding: 80px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.02);
}
.cta-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%; height: 100%;
  background: linear-gradient(135deg, rgba(76,175,80,0.03) 0%, rgba(76,175,80,0.08) 100%);
  z-index: 1;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  position: relative; z-index: 5;
}
@media (max-width: 992px) {
  .cta-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .cta-content p { margin-left: auto; margin-right: auto; }
}
.cta-content h2 {
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 900;
  color: var(--secondary);
  margin-bottom: 25px;
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.cta-content p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 45px;
  max-width: 500px;
}
.cta-actions { display: flex; align-items: center; gap: 20px; }
@media (max-width: 576px) {
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}

/* ── CTA Rating Box (Professional Fresh) ── */
.cta-rating-box {
  background: #fff;
  padding: 40px;
  border-radius: 35px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
  text-align: center;
  position: relative;
  z-index: 5;
  border: 1px solid rgba(0,0,0,0.03);
}
.cta-rating-box .stars {
  font-size: 26px;
  color: #FBB03B;
  letter-spacing: 6px;
  margin-bottom: 12px;
  display: block;
}
.cta-rating-box p {
  font-size: 14px;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 992px) {
  .cta-card { grid-template-columns: 1fr; padding: 60px 40px; text-align: center; border-radius: 40px; }
  .cta-card::before { width: 100%; height: 150px; top: auto; bottom: 0; }
  .cta-content p, .cta-actions { margin-left: auto; margin-right: auto; justify-content: center; }
  .cta-rating-box { margin-top: 40px; padding: 30px; }
}

/* ── Service Detail Page ───────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--secondary), #1a2a3a);
  padding: 120px 0 60px;
  color: #fff;
}
.page-hero h1 { color: #fff; font-size: clamp(28px, 4vw, 44px); margin-bottom: 12px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.6); }
.breadcrumb a { color: var(--primary); }
.breadcrumb .sep { color: rgba(255,255,255,.3); }

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
  padding: 60px 0;
}
.detail-image {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: var(--shadow);
}
.detail-image img { width: 100%; height: 400px; object-fit: cover; }
.detail-features { margin: 24px 0; }
.detail-features h3 { font-size: 20px; margin-bottom: 16px; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  font-size: 14px;
  border: 1px solid var(--border);
}
.feature-item::before { content: '✓'; color: var(--primary); font-weight: 700; flex-shrink: 0; }

.booking-sidebar {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: sticky;
  top: 90px;
}
.booking-sidebar h3 { font-size: 20px; margin-bottom: 6px; }
.sidebar-price {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  margin: 16px 0;
}
.sidebar-price small { font-size: 14px; color: var(--text-muted); font-weight: 400; }
.sidebar-meta { display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.sidebar-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  padding: 10px 14px;
  background: var(--bg);
  border-radius: var(--radius-sm);
}
.sidebar-meta-item .icon { font-size: 18px; }

/* ── Booking Form (Modal) ──────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.modal-overlay.active { opacity: 1; visibility: visible; }

.modal {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px;
  transform: scale(.95) translateY(20px);
  transition: var(--transition);
  position: relative;
}
.modal-overlay.active .modal { transform: scale(1) translateY(0); }

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg);
  border: none;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--text-muted);
}
.modal-close:hover { background: #ffe0e0; color: #e74c3c; }

.modal-header { margin-bottom: 28px; }
.modal-header h2 { font-size: 22px; margin-bottom: 4px; }
.modal-header p  { color: var(--text-muted); font-size: 14px; }
.modal-service-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;
}

/* ── Form Styles ───────────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 7px;
  font-family: 'Poppins', sans-serif;
}
.form-label .req { color: #e74c3c; }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: #fff;
  transition: var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(76,175,80,.15); }
.form-control::placeholder { color: #adb5bd; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
textarea.form-control { resize: vertical; min-height: 100px; }

/* ── Floating Contact Actions ────────────────────────────── */
.floating-actions {
  position: fixed;
  bottom: 85px; /* Above the sticky booking bar if present */
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 997;
}
.action-btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.action-btn:hover { transform: scale(1.1) translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.2); }

.whatsapp-float { background: #25D366; box-shadow: 0 10px 25px rgba(37,211,102,0.3); }
.call-float { background: var(--secondary); box-shadow: 0 10px 25px rgba(44,62,80,0.3); }

@media (max-width: 768px) {
  .floating-actions { bottom: 80px; right: 16px; }
}

/* Sticky Book Now - Mobile */
.sticky-book-btn {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 998;
  background: var(--primary);
  color: #fff;
  padding: 16px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  box-shadow: 0 -4px 20px rgba(76,175,80,.3);
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--secondary);
  color: rgba(255,255,255,.8);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand { font-family: 'Poppins', sans-serif; }
.footer-brand .logo { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 14px; }
.footer-brand .logo span { color: var(--primary); }
.footer-brand p { font-size: 14px; line-height: 1.8; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.8);
  font-size: 16px;
  transition: var(--transition);
}
.social-link:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }

.footer-col h4 { color: #fff; font-size: 15px; margin-bottom: 18px; font-family: 'Poppins', sans-serif; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.65); font-size: 14px; transition: var(--transition); }
.footer-links a:hover { color: var(--primary); transform: translateX(4px); }

.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: rgba(255,255,255,.7); }
.footer-contact-item .icon { font-size: 16px; margin-top: 2px; flex-shrink: 0; color: var(--primary); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,.45);
}

/* ── Booking Page ──────────────────────────────────────────── */
.booking-page { padding: 100px 0 60px; }
.booking-form-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

/* ── Status Badge ──────────────────────────────────────────── */
.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}
.status-pending   { background: #FFF3CD; color: #856404; }
.status-confirmed { background: #D1E7DD; color: #0A3622; }
.status-completed { background: #CFF4FC; color: #055160; }
.status-cancelled { background: #F8D7DA; color: #58151C; }

/* ── Utilities ─────────────────────────────────────────────── */
.text-primary { color: var(--primary); }
.text-muted   { color: var(--text-muted); }
.text-center  { text-align: center; }
.mt-1 { margin-top: 8px; }  .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; }
.flex { display: flex; } .items-center { align-items: center; } .gap-2 { gap: 8px; }

/* Animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-fadeInUp { animation: fadeInUp .6s ease forwards; }

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Lazy load */
img.lazy { opacity: 0; transition: opacity .4s ease; }
img.lazy.loaded { opacity: 1; }
