/* ============================================
   SPARKLECLEAN MAID — Fresh Design System
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&family=Prompt:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #00a896;       /* Fresh Aqua Blue */
  --primary-light: #e0f2f1;
  --primary-dark: #00796b;
  --secondary: #ff7f50;     /* Warm Coral/Peach */
  --secondary-hover: #ff6333;
  --bg-white: #ffffff;
  --text-dark: #2f4f4f;     /* Dark Slate */
  --text-body: #546e7a;
  --bg-light: #f7fbfc;
  
  --line-green: #06C755;
  --glow-line: rgba(6, 199, 85, 0.4);

  --font-en: 'Nunito', sans-serif;
  --font-th: 'Prompt', sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  
  --shadow-sm: 0 4px 12px rgba(0, 168, 150, 0.08); /* soft aqua shadow */
  --shadow-md: 0 8px 25px rgba(0, 168, 150, 0.12);
  
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 50px;
}

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

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

body {
  font-family: var(--font-th);
  color: var(--text-body);
  background: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; border-radius: var(--radius-md); }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }

h1, h2, h3, h4 { color: var(--text-dark); font-weight: 700; line-height: 1.25; }

.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 var(--space-sm); }
.section { padding: var(--space-xl) 0; }
.text-center { text-align: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: none;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  font-family: var(--font-th);
}

.btn-coral { background: var(--secondary); color: var(--bg-white); box-shadow: 0 4px 15px rgba(255, 127, 80, 0.3); }
.btn-coral:hover { background: var(--secondary-hover); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(255, 127, 80, 0.4); }

.btn-outline-aqua { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline-aqua:hover { background: rgba(0, 168, 150, 0.05); transform: translateY(-3px); }

.title-accent {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header { position: sticky; top: 0; z-index: 1000; background: var(--bg-white); box-shadow: var(--shadow-sm); }

.top-bar { background: var(--primary); color: var(--bg-white); padding: 8px 0; font-size: 0.95rem; font-weight: 500; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-contact { display: flex; gap: 24px; align-items: center; }
.top-contact a { display: flex; align-items: center; gap: 6px; }
.top-contact a:hover { opacity: 0.8; }
.top-contact svg { width: 16px; height: 16px; fill: currentColor; }

.badge-verify { background: rgba(255,255,255,0.2); color: var(--bg-white); padding: 4px 12px; border-radius: var(--radius-full); font-weight: 600; font-size: 0.85rem; display: flex; align-items: center; gap: 6px; }

.main-nav { padding: 12px 0; }
.main-nav .container { display: flex; justify-content: space-between; align-items: center; }

.brand-logo { color: var(--text-dark); font-family: var(--font-en); font-size: 1.6rem; font-weight: 800; display: flex; align-items: center; gap: 8px; letter-spacing: -0.5px; }
.brand-logo svg { width: 32px; height: 32px; fill: var(--primary); }
.brand-logo span { color: var(--primary); }

.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { font-weight: 600; color: var(--text-body); }
.nav-links a:hover { color: var(--primary); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 25px; height: 3px; background: var(--text-dark); border-radius: 2px; }

/* ============================================
   HERO BANNER
   ============================================ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero .container { position: relative; z-index: 2; }

.hero-content {
  max-width: 650px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  animation: floatUp 1s ease-out;
}

@keyframes floatUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.hero-title { font-size: clamp(2rem, 4vw, 3rem); color: var(--text-dark); margin-bottom: 15px; }
.hero-subtitle { font-size: 1.15rem; color: var(--text-body); margin-bottom: 30px; font-weight: 400; }

.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }

/* ============================================
   WHY TRUST US
   ============================================ */
.trust-section { background: var(--bg-light); border-bottom: 1px solid #edf2f7; }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.trust-item {
  background: var(--bg-white);
  padding: 35px 25px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s;
}

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

.trust-icon {
  width: 75px; height: 75px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.trust-icon svg { width: 35px; height: 35px; fill: currentColor; }

.trust-item h3 { font-size: 1.3rem; margin-bottom: 10px; color: var(--text-dark); }

/* ============================================
   OUR SERVICES
   ============================================ */
.services-section { background: var(--bg-white); }

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

.service-card {
  background: var(--bg-white);
  padding: 30px 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-card:hover { border-color: var(--primary-light); background: #fafdfd; transform: translateY(-8px); box-shadow: var(--shadow-md); }

.s-icon { width: 60px; height: 60px; color: var(--primary); margin: 0 auto 15px; }
.s-icon svg { width: 100%; height: 100%; fill: currentColor; }

.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card p { font-size: 0.9rem; margin-bottom: 20px; }

.book-link { color: var(--secondary); font-weight: 700; display: inline-flex; align-items: center; gap: 5px; font-size: 0.95rem; }
.book-link svg { width: 16px; height: 16px; fill: currentColor; transition: transform 0.3s; }
.service-card:hover .book-link svg { transform: translateX(5px); }

/* ============================================
   PRICING TABLE
   ============================================ */
.pricing { background: var(--bg-light); }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }

.price-card {
  background: var(--bg-white);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
  border-top: 5px solid var(--primary-light);
}

.price-card.popular { border-top-color: var(--secondary); transform: scale(1.03); box-shadow: var(--shadow-md); }
.popular-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--secondary); color: var(--bg-white); padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; }

.price-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.p-amount { font-size: 2.5rem; font-weight: 800; color: var(--primary); font-family: var(--font-en); margin-bottom: 5px; }
.p-detail { color: var(--text-body); font-size: 0.95rem; margin-bottom: 25px; display: block; }

.price-card .btn { width: 100%; margin-top: 15px; }

/* ============================================
   HAPPY CLIENTS & BEFORE/AFTER
   ============================================ */
.clients { background: var(--bg-white); }

.clients-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin-top: 40px; }

/* CSS Before/After Slider */
.ba-slider {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  background: url('images/before.jpg') center/cover;
}

.ba-slider .after {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('images/after.jpg') center/cover;
  border-right: 4px solid var(--bg-white);
}

.ba-handle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 40px; height: 40px;
  background: var(--bg-white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  pointer-events: none;
  z-index: 10;
  color: var(--primary);
}
.ba-handle svg { width: 24px; height: 24px; fill: currentColor; }

.ba-slider input[type="range"] {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 20;
}

.reviews-stack { display: flex; flex-direction: column; gap: 20px; }

.r-card { background: var(--bg-light); padding: 25px; border-radius: var(--radius-md); border-left: 4px solid var(--primary); }
.r-stars { color: #facc15; margin-bottom: 10px; display: flex; gap: 4px; }
.r-stars svg { width: 18px; height: 18px; fill: currentColor; }
.r-text { font-size: 1.05rem; font-style: italic; margin-bottom: 15px; color: var(--text-dark); }
.r-author { font-weight: 600; font-size: 0.95rem; }

/* ============================================
   LOCATION & CONTACT (FOOTER)
   ============================================ */
.footer { background: var(--text-dark); color: #e2e8f0; padding: var(--space-xl) 0 0; }

.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 40px; }

.footer-col h3 { color: var(--bg-white); font-size: 1.4rem; margin-bottom: 25px; }

.service-areas { display: flex; flex-wrap: wrap; gap: 10px; }
.area-tag { background: rgba(0, 168, 150, 0.2); border: 1px solid var(--primary); padding: 6px 14px; border-radius: var(--radius-full); font-weight: 500; color: var(--primary-light); font-size: 0.9rem; }

.contact-list { display: flex; flex-direction: column; gap: 15px; }
.contact-item { display: flex; align-items: center; gap: 15px; font-size: 1.1rem; font-weight: 600; color: var(--bg-white); }
.contact-icon { width: 40px; height: 40px; background: rgba(255,255,255,0.05); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--primary); }
.contact-icon svg { width: 20px; height: 20px; fill: currentColor; }

.footer-bottom { text-align: center; padding: 25px 0; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; margin-top: 20px; opacity: 0.7; }

/* ============================================
   MANDATORY MASSIVE LINE CTA
   ============================================ */
.float-line-huge {
  position: fixed;
  bottom: 20px; right: 20px;
  background: var(--line-green); color: var(--bg-white);
  font-size: 1.25rem; font-weight: 700;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 0 35px var(--glow-line), 0 10px 20px rgba(0,0,0,0.25);
  border: 4px solid var(--bg-white);
  z-index: 9999;
  animation: pulse-friendly 2s infinite;
}

.float-line-huge svg { width: 32px; height: 32px; fill: currentColor; }

@keyframes pulse-friendly {
  0%, 100% { transform: translateY(0) scale(1); box-shadow: 0 0 25px rgba(6, 199, 85, 0.4), 0 5px 15px rgba(0,0,0,0.2); }
  50% { transform: translateY(-5px) scale(1.02); box-shadow: 0 0 45px rgba(6, 199, 85, 0.6), 0 15px 25px rgba(0,0,0,0.3); border-color: #f7fbfc; }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .hero-content { background: rgba(255, 255, 255, 0.95); }
  .trust-grid { gap: 20px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; gap: 20px; }
  .price-card.popular { transform: none; box-shadow: var(--shadow-sm); }
  .clients-grid { grid-template-columns: 1fr; gap: 40px; }
  .ba-slider { height: 300px; }
  .float-line-huge { font-size: 1.1rem; padding: 14px 28px; border-width: 2px; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .main-nav .btn-coral { display: none; }
  
  .hero-title { font-size: 2rem; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  
  .trust-grid { grid-template-columns: 1fr; gap: 15px; }
  .service-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  
  .float-line-huge { font-size: 1rem; padding: 12px 20px; bottom: 15px; right: 15px; }
  .float-line-huge svg { width: 24px; height: 24px; }
}
