/* ============================================
   FastClean Service — Premium Blue Design System
   Multi-Page Corporate Website
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* === CSS Variables === */
:root {
  --blue-50: #f0f7ff;
  --blue-100: #e0efff;
  --blue-200: #b9dfff;
  --blue-300: #7cc4ff;
  --blue-400: #36a9ff;
  --blue-500: #0090ff;
  --blue-600: #0070e0;
  --blue-700: #0058b5;
  --blue-800: #004a96;
  --blue-900: #003f7c;
  --blue-950: #002952;

  --white: #ffffff;
  --gray-25: #fcfcfd;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  --success: #22c55e;
  --warning: #f59e0b;
  --danger: #ef4444;
  --gold: #f59e0b;
  --gold-light: #fde68a;

  --font-thai: 'Kanit', sans-serif;
  --font-en: 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.03);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 8px 36px rgba(0, 0, 0, 0.06);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.08);
  --shadow-blue: 0 4px 20px rgba(0, 144, 255, 0.18);

  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* === Reset === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-thai);
  color: var(--gray-600);
  background: var(--white);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 300;
  letter-spacing: 0.01em;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul,
ol {
  list-style: none;
}

button {
  font-family: var(--font-thai);
  cursor: pointer;
  border: none;
}

input,
select,
textarea {
  font-family: var(--font-thai);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === Typography === */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-thai);
  font-weight: 600;
  line-height: 1.3;
  color: var(--gray-800);
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 500;
}

h4 {
  font-size: 1rem;
  font-weight: 500;
}

h5 {
  font-size: 0.92rem;
  font-weight: 500;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-50);
  color: var(--blue-500);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  font-family: var(--font-en);
  border: 1px solid var(--blue-100);
}

.section-label i {
  font-size: 0.7rem;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  margin-bottom: 10px;
}

.section-header p {
  color: var(--gray-400);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.8;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 26px;
  border-radius: var(--radius-full);
  font-weight: 400;
  font-size: 0.9rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.btn-blue {
  background: var(--blue-500);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}

.btn-blue:hover {
  background: var(--blue-600);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(0, 144, 255, 0.28);
}

.btn-white {
  background: var(--white);
  color: var(--blue-600);
  box-shadow: var(--shadow-sm);
}

.btn-white:hover {
  background: var(--blue-50);
  transform: translateY(-1px);
}

.btn-outline-blue {
  background: transparent;
  color: var(--blue-500);
  border: 1.5px solid var(--blue-200);
}

.btn-outline-blue:hover {
  background: var(--blue-50);
  border-color: var(--blue-400);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 0.95rem;
}

.btn i {
  font-size: 0.85em;
}

/* === Navbar (Floating Pill) === */
#header-placeholder {
  position: relative;
  z-index: 1000;
}

.navbar {
  position: fixed;
  top: 0.6rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  max-width: 1300px;
  z-index: 1000;
  padding: 0.5rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(0, 144, 255, 0.08);
  border-radius: 60px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.navbar.scrolled {
  top: 0.4rem;
  padding: 0.4rem 1.2rem;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo .logo-mark {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.85rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.nav-logo:hover .logo-mark {
  transform: scale(1.05);
  box-shadow: var(--shadow-blue);
}

.navbar.scrolled .logo-mark {
  width: 32px;
  height: 32px;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
}

.logo-text {
  font-family: var(--font-en);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-800);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.logo-text span {
  color: var(--blue-500);
  font-weight: 600;
}

.logo-sub {
  font-family: var(--font-en);
  font-size: 0.58rem;
  color: var(--gray-400);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--gray-400);
  transition: var(--transition);
  position: relative;
  padding: 0.45rem 1rem;
  border-radius: 50px;
}

.nav-links a::after {
  display: none;
}

.nav-links a:hover {
  color: var(--gray-700);
  background: var(--blue-50);
}

.nav-links a.active {
  background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
  color: var(--white);
  font-weight: 500;
  box-shadow: 0 2px 12px rgba(0, 144, 255, 0.25);
}

/* CTA Button in Navbar */
.nav-cta {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600)) !important;
  color: var(--white) !important;
  padding: 0.45rem 1.2rem !important;
  border-radius: 50px;
  font-weight: 500 !important;
  font-size: 0.82rem !important;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  margin-left: 0.3rem;
  box-shadow: var(--shadow-blue);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 28px rgba(0, 144, 255, 0.35) !important;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600)) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 5px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* === Page Hero (Subpages) === */
.page-hero {
  /* Using a solid fallback background, the actual gradient and image will be inline or in ::before */
  background-color: var(--blue-700);
  padding: 120px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Base style for the background image layer to allow blurring */
.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  /* Blur to smooth out AI image pixelation when stretched to 1920px */
  filter: blur(2px);
  transform: scale(1.02);
  /* prevent white edges from blur */
  /* The actual background-image will be set inline in HTML so each page can have a different one */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* We still keep the decorative circles, but change them to ::after and another element if needed. 
   For now, we'll just use ::after for the gradient overlay to ensure text readability */
.page-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  /* This gradient overlay sits ON TOP of the blurred image */
  background: linear-gradient(135deg, rgba(0, 88, 181, 0.55) 0%, rgba(0, 112, 224, 0.48) 50%, rgba(0, 74, 150, 0.62) 100%);
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 10px;
  position: relative;
  z-index: 3;
  /* Above the overlay */
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.page-hero h1 i {
  margin-right: 8px;
  opacity: 0.9;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  font-weight: 300;
  position: relative;
  z-index: 3;
  /* Above the overlay */
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.page-hero .breadcrumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 0.82rem;
  position: relative;
  z-index: 3;
  /* Above the overlay */
  transition: var(--transition);
}

.page-hero .breadcrumb a:hover {
  color: var(--white);
}

/* === Home Hero === */
.hero {
  background: linear-gradient(135deg, var(--blue-50) 0%, var(--white) 40%, var(--gray-50) 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 144, 255, 0.06), transparent);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--blue-100);
  padding: 6px 16px 6px 6px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  box-shadow: var(--shadow-xs);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.hero-badge span {
  font-size: 0.82rem;
  color: var(--gray-600);
  font-weight: 500;
}

.hero h1 {
  margin-bottom: 14px;
}

.hero h1 .text-blue {
  color: var(--blue-400);
}

.hero-desc {
  color: var(--gray-400);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 28px;
  font-weight: 300;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-stats {
  display: flex;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--gray-100);
}

.hero-stat-item {
  text-align: left;
}

.hero-stat-number {
  font-family: var(--font-en);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gray-800);
  line-height: 1;
}

.hero-stat-number span {
  color: var(--blue-400);
  font-weight: 600;
}

.hero-stat-label {
  font-size: 0.82rem;
  color: var(--gray-400);
  margin-top: 4px;
}

.hero-visual {
  position: relative;
}

.hero-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.08);
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.hero-float {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  z-index: 5;
  animation: float 4s ease-in-out infinite;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.hero-float.card-1 {
  top: 40px;
  left: -20px;
  animation-delay: 0s;
}

.hero-float.card-2 {
  bottom: 60px;
  right: -20px;
  animation-delay: 0.8s;
}

.hero-float-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-float-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.hero-float-icon.blue {
  background: var(--blue-50);
  color: var(--blue-500);
}

.hero-float-icon.green {
  background: #ecfdf5;
  color: var(--success);
}

.hero-float-label {
  font-size: 0.78rem;
  color: var(--gray-400);
}

.hero-float-value {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-700);
}

/* === Trust Bar === */
.trust-bar {
  background: var(--white);
  padding: 28px 0;
  border-top: 1px solid var(--gray-50);
  border-bottom: 1px solid var(--gray-50);
  position: relative;
}

.trust-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 144, 255, 0.1), transparent);
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-500);
  font-size: 0.84rem;
  font-weight: 400;
  transition: var(--transition);
}

.trust-item:hover {
  color: var(--blue-500);
}

.trust-item i {
  color: var(--blue-300);
  font-size: 0.95rem;
  transition: var(--transition);
}

.trust-item:hover i {
  color: var(--blue-500);
  transform: scale(1.15);
}

/* === Services Grid === */
.services-section {
  padding: 88px 0;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.service-card .service-card-icon {
  margin-left: auto;
  margin-right: auto;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-300), var(--blue-500));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 144, 255, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
  border-color: var(--blue-100);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 20px;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover .service-card-icon {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.service-card-icon.blue {
  background: var(--blue-50);
  color: var(--blue-500);
}

.service-card-icon.green {
  background: #ecfdf5;
  color: var(--success);
}

.service-card-icon.amber {
  background: #fffbeb;
  color: var(--warning);
}

.service-card-icon.purple {
  background: #f5f3ff;
  color: #8b5cf6;
}

.service-card-icon.rose {
  background: #fff1f2;
  color: #f43f5e;
}

.service-card-icon.cyan {
  background: #ecfeff;
  color: #06b6d4;
}

.service-card h3 {
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 1.05rem;
}

.service-card p {
  color: var(--gray-400);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 14px;
}

.service-card .price-tag {
  font-size: 0.78rem;
  color: var(--gray-400);
  padding-top: 12px;
  border-top: 1px solid var(--gray-50);
}

.service-card .price-tag strong {
  font-size: 1.05rem;
  color: var(--blue-500);
  font-weight: 600;
}

/* === Why Choose === */
.why-section {
  padding: 88px 0;
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  text-align: center;
  padding: 32px 22px;
  border-radius: var(--radius-lg);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid var(--gray-100);
  background: var(--white);
}

.why-card:hover {
  background: var(--white);
  box-shadow: 0 16px 48px rgba(0, 144, 255, 0.06), 0 4px 12px rgba(0, 0, 0, 0.03);
  border-color: var(--blue-100);
  transform: translateY(-4px);
}

.why-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: var(--blue-50);
  color: var(--blue-400);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.why-card:hover .why-card-icon {
  transform: scale(1.15) translateY(-4px);
  background: var(--blue-500);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(0, 144, 255, 0.2);
}

.why-card h3 {
  margin-bottom: 6px;
}

.why-card p {
  color: var(--gray-400);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.7;
}

/* === Process === */
.process-section {
  padding: 88px 0;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.process-section .section-label {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.12);
}

.process-section .section-header h2 {
  color: var(--white);
}

.process-section .section-header p {
  color: rgba(255, 255, 255, 0.55);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

.process-card {
  text-align: center;
  padding: 24px 16px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.process-card-step {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
}

.process-card:hover .process-card-step {
  background: rgba(255, 255, 255, 0.95);
  color: var(--blue-600);
  transform: scale(1.05);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.15);
}

.process-card h3 {
  color: var(--white);
  margin-bottom: 6px;
  font-weight: 400;
  font-size: 1rem;
}

.process-card p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.6;
}

/* === Testimonials === */
.testimonials-section {
  padding: 88px 0;
  background: var(--gray-50);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--gray-100);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 3.5rem;
  font-family: Georgia, serif;
  color: var(--blue-50);
  line-height: 1;
  pointer-events: none;
}

.testimonial-card:hover {
  box-shadow: 0 16px 48px rgba(0, 144, 255, 0.06), 0 4px 12px rgba(0, 0, 0, 0.03);
  transform: translateY(-4px);
  border-color: var(--blue-100);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
  font-size: 0.75rem;
  margin-bottom: 14px;
}

.testimonial-text {
  color: var(--gray-500);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 18px;
  font-style: normal;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-500);
  font-weight: 500;
  font-size: 0.85rem;
}

.testimonial-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-700);
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--gray-400);
  font-weight: 300;
}

/* === CTA === */
.cta-section {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--blue-500) 0%, var(--blue-600) 50%, var(--blue-700) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 500;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
}

.cta-content p {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 28px;
  font-weight: 300;
  font-size: 0.95rem;
}

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === Maid Selection === */
.maid-selection-section {
  padding: 72px 0 32px;
  background: var(--white);
}

.maid-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.maid-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  border: 1.5px solid var(--gray-100);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.maid-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--blue-200);
}

.maid-card.selected {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(0, 144, 255, 0.12), 0 12px 40px rgba(0, 144, 255, 0.1);
  background: linear-gradient(135deg, rgba(0, 144, 255, 0.02), rgba(0, 144, 255, 0.05));
}

.maid-card.selected::after {
  content: '✓';
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  background: var(--blue-500);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  animation: checkBounce 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes checkBounce {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

/* Badge */
.maid-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  z-index: 2;
}

.maid-badge.recommend {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  color: var(--white);
}

.maid-badge.popular {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: var(--white);
}

.maid-badge.new {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: var(--white);
}

/* Avatar */
.maid-avatar {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 14px;
}

.maid-avatar-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 600;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.maid-card:hover .maid-avatar-placeholder {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.maid-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.maid-card:hover .maid-avatar img {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.maid-status {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 3px solid var(--white);
  z-index: 2;
}

.maid-status.online {
  background: #22c55e;
}

.maid-status.offline {
  background: var(--gray-300);
}

/* Name */
.maid-name {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-800);
  margin-bottom: 2px;
}

.maid-nickname {
  font-size: 0.78rem;
  color: var(--gray-400);
  font-weight: 300;
  margin-bottom: 10px;
}

/* Rating */
.maid-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 12px;
}

.maid-rating .stars {
  display: flex;
  gap: 1px;
  color: #fbbf24;
  font-size: 0.7rem;
}

.maid-rating span {
  font-size: 0.78rem;
  color: var(--gray-500);
  font-weight: 400;
}

/* Stats */
.maid-stats {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}

.maid-stat {
  font-size: 0.75rem;
  color: var(--gray-500);
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 4px;
}

.maid-stat i {
  font-size: 0.65rem;
  color: var(--blue-400);
}

/* Skills */
.maid-skills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  margin-bottom: 16px;
}

.skill-tag {
  padding: 3px 8px;
  background: var(--blue-50);
  color: var(--blue-500);
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 400;
}

/* Select Button */
.btn-select-maid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 10px 0;
  background: var(--white);
  color: var(--blue-500);
  border: 1.5px solid var(--blue-200);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: var(--font-th);
}

.btn-select-maid:hover {
  background: var(--blue-500);
  color: var(--white);
  border-color: var(--blue-500);
  transform: scale(1.02);
  box-shadow: 0 4px 16px rgba(0, 144, 255, 0.25);
}

.maid-card.selected .btn-select-maid {
  background: var(--blue-500);
  color: var(--white);
  border-color: var(--blue-500);
}

/* === Booking Form === */
.booking-section {
  padding: 80px 0;
  background: var(--gray-50);
}

.booking-container {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
}

.booking-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
}

.booking-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-400), var(--blue-500), var(--blue-600));
}

.booking-form-card h2 {
  margin-bottom: 6px;
  font-size: 1.35rem;
}

.booking-form-card>p {
  color: var(--gray-500);
  margin-bottom: 32px;
  font-weight: 300;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-size: 0.84rem;
  font-weight: 400;
  color: var(--gray-500);
}

.form-group label .required {
  color: var(--danger);
}

.form-input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--gray-700);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  font-weight: 300;
}

.form-input:focus {
  border-color: var(--blue-300);
  box-shadow: 0 0 0 3px rgba(0, 144, 255, 0.06);
}

.form-input::placeholder {
  color: var(--gray-400);
}

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%239ca3af' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

textarea.form-input {
  resize: vertical;
  min-height: 100px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* === Payment Selection UI === */
.payment-group {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px dashed var(--gray-200);
}

.payment-label {
  display: block;
  margin-bottom: 12px;
  font-weight: 500;
  color: var(--gray-800);
}

.payment-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.payment-card {
  position: relative;
  cursor: pointer;
}

.payment-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.payment-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.payment-card-content i {
  font-size: 1.5rem;
  color: var(--gray-400);
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.payment-card-content span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 4px;
}

.payment-card-content small {
  font-size: 0.72rem;
  color: var(--gray-400);
}

.payment-card:hover .payment-card-content {
  border-color: var(--blue-300);
  background: var(--blue-50);
}

.payment-card input[type="radio"]:checked+.payment-card-content {
  border-color: var(--blue-500);
  background: rgba(0, 144, 255, 0.05);
  box-shadow: 0 4px 12px rgba(0, 144, 255, 0.1);
}

.payment-card input[type="radio"]:checked+.payment-card-content i {
  color: var(--blue-500);
  transform: scale(1.1);
}

.payment-slip-upload {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  margin-top: 12px;
  animation: fadeIn 0.4s ease;
}

.bank-details {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-bottom: 12px;
  line-height: 1.5;
}

.upload-btn {
  display: inline-block;
  padding: 8px 16px;
  background: var(--white);
  border: 1px dashed var(--blue-400);
  color: var(--blue-500);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.upload-btn:hover {
  background: var(--blue-50);
  border-style: solid;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .payment-options {
    grid-template-columns: 1fr;
  }
}

.booking-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--gray-100);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.sidebar-card h4 {
  margin-bottom: 16px;
  font-size: 1rem;
}

.sidebar-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-50);
  font-size: 0.9rem;
  color: var(--gray-600);
}

.sidebar-card ul li:last-child {
  border-bottom: none;
}

.sidebar-card ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  width: 100%;
  transition: var(--transition);
}

.sidebar-card ul li a:hover {
  color: var(--blue-500);
}

.sidebar-card ul li i {
  color: var(--blue-500);
  width: 18px;
}

.sidebar-card.highlight {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  color: var(--white);
  border: none;
}

.sidebar-card.highlight h4 {
  color: var(--white);
}

.sidebar-card.highlight p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* === Contact === */
.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--gray-50);
  margin-bottom: 12px;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  border: 1px solid transparent;
}

.contact-info-card:hover {
  background: var(--blue-50);
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border-color: var(--blue-100);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-500);
  color: var(--white);
  font-size: 1.1rem;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-info-card:hover .contact-info-icon {
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.contact-info-card h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.contact-info-card p {
  color: var(--blue-500);
  font-size: 0.88rem;
  font-weight: 400;
}

a.contact-info-card:hover p {
  color: var(--blue-600);
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 250px;
  margin-top: 16px;
  border: 1px solid var(--gray-200);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* === LINE QR Card === */
.line-qr-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 28px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.05);
}

.line-qr-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-100);
}

.line-qr-header>i {
  font-size: 2rem;
  color: #06C755;
}

.line-qr-header h3 {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gray-800);
  margin-bottom: 2px;
}

.line-qr-header p {
  font-size: 0.82rem;
  color: var(--gray-400);
  font-weight: 300;
}

.line-qr-body {
  display: flex;
  align-items: center;
  gap: 24px;
}

.line-qr-image {
  flex-shrink: 0;
  padding: 12px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 2px solid #06C755;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.line-qr-image:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(6, 199, 85, 0.15);
}

.line-qr-image img {
  border-radius: 8px;
}

.line-qr-info {
  flex: 1;
  text-align: center;
}

.line-id {
  font-size: 0.92rem;
  color: var(--gray-500);
  margin-bottom: 14px;
}

.line-id strong {
  color: #06C755;
  font-size: 1.1rem;
  font-weight: 600;
}

.btn-line-add {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: #06C755;
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 500;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 16px rgba(6, 199, 85, 0.25);
}

.btn-line-add:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 24px rgba(6, 199, 85, 0.35);
  background: #05b34d;
}

.btn-line-add i {
  font-size: 1.1rem;
}

/* === Footer === */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 72px 0 28px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-400), var(--blue-500), var(--blue-600));
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand .logo-mark {
  background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 8px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--blue-500);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h5 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--gray-400);
}

.footer-col ul li a:hover {
  color: var(--blue-400);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.85rem;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: default;
}

.footer-contact li:hover {
  transform: translateX(6px);
  color: var(--blue-300);
}

.footer-contact li i {
  color: var(--blue-400);
  width: 16px;
  font-size: 0.8rem;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-contact li:hover i {
  transform: scale(1.2);
  color: var(--blue-300);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 300;
}

.footer-bottom a {
  color: var(--gray-400);
  text-decoration: underline;
}

.footer-bottom a:hover {
  color: var(--blue-400);
}

/* === Reviews Page === */
.reviews-stats {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px;
  border: 1px solid var(--gray-100);
  box-shadow: 0 8px 40px rgba(0, 144, 255, 0.04);
}

.reviews-score {
  text-align: center;
}

.reviews-score-number {
  font-family: var(--font-en);
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.reviews-score-stars {
  color: var(--gold);
  font-size: 1.2rem;
  margin: 8px 0;
}

.reviews-score-count {
  font-size: 0.85rem;
  color: var(--gray-400);
}

.reviews-bars {
  flex: 1;
}

.reviews-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.reviews-bar-label {
  font-size: 0.85rem;
  color: var(--gray-600);
  min-width: 50px;
}

.reviews-bar-track {
  flex: 1;
  height: 8px;
  background: var(--gray-100);
  border-radius: 4px;
  overflow: hidden;
}

.reviews-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue-400), var(--blue-500));
  border-radius: 4px;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reviews-bar-pct {
  font-size: 0.8rem;
  color: var(--gray-400);
  min-width: 35px;
  text-align: right;
}

/* === Animations === */
.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.97);
  transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

/* === Responsive === */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-desc {
    margin: 0 auto 32px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    margin-top: 24px;
  }

  .hero-float {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-container {
    grid-template-columns: 1fr;
  }

  .booking-sidebar {
    position: static;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .reviews-stats {
    grid-template-columns: 1fr;
  }

  .maid-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.2rem;
    padding: 12px 24px;
    color: var(--gray-600);
  }

  .nav-links a.active {
    background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
    color: var(--white);
  }

  .nav-cta {
    margin-left: 0 !important;
    margin-top: 8px;
  }

  .hamburger {
    display: flex;
  }


  .hero {
    padding: 100px 0 48px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-image img {
    height: 300px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .maid-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .trust-items {
    flex-direction: column;
    gap: 16px;
  }
}