/* ============================================================
   Han Cleaning - Main Stylesheet (hc-style.css)
   ============================================================ */

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

:root {
  --hc-primary: #1a3a5c;
  --hc-primary-dark: #0f2540;
  --hc-primary-light: #2a5490;
  --hc-accent: #34a853;
  --hc-accent-light: #4cbb6b;
  --hc-accent-dark: #2d8e47;
  --hc-neutral-50: #f8fafc;
  --hc-neutral-100: #f1f5f9;
  --hc-neutral-200: #e2e8f0;
  --hc-neutral-300: #cbd5e1;
  --hc-neutral-400: #94a3b8;
  --hc-neutral-500: #64748b;
  --hc-neutral-600: #475569;
  --hc-neutral-700: #334155;
  --hc-neutral-800: #1e293b;
  --hc-neutral-900: #0f172a;
  --hc-white: #ffffff;
  --hc-shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --hc-shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --hc-shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
  --hc-shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --hc-radius-sm: 6px;
  --hc-radius-md: 12px;
  --hc-radius-lg: 20px;
  --hc-radius-xl: 32px;
  --hc-font-heading: 'Poppins', sans-serif;
  --hc-font-body: 'Inter', sans-serif;
  --hc-transition: 0.3s ease;
}

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

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

body {
  font-family: var(--hc-font-body);
  color: var(--hc-neutral-700);
  background: var(--hc-white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--hc-font-heading);
  color: var(--hc-primary);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
a { color: var(--hc-primary); text-decoration: none; transition: color var(--hc-transition); }
a:hover { color: var(--hc-accent); }

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

ul { list-style: none; padding: 0; }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */

.hc-section { padding: 80px 0; }
.hc-section-sm { padding: 50px 0; }
.hc-section-lg { padding: 120px 0; }

.hc-bg-white { background: var(--hc-white); }
.hc-bg-light { background: var(--hc-neutral-50); }
.hc-bg-primary { background: var(--hc-primary); }
.hc-bg-gradient {
  background: linear-gradient(135deg, var(--hc-primary) 0%, var(--hc-primary-light) 100%);
}

.hc-text-center { text-align: center; }
.hc-text-white { color: var(--hc-white); }
.hc-text-accent { color: var(--hc-accent); }
.hc-text-primary { color: var(--hc-primary); }
.hc-text-muted { color: var(--hc-neutral-500); }

.hc-section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--hc-accent);
  margin-bottom: 12px;
}

.hc-section-title {
  font-family: var(--hc-font-heading);
  margin-bottom: 16px;
}

.hc-section-subtitle {
  font-size: 1.05rem;
  color: var(--hc-neutral-500);
  max-width: 600px;
  margin: 0 auto 40px;
}

.hc-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--hc-accent), var(--hc-accent-light));
  border-radius: 2px;
  margin: 16px auto 32px;
}

.hc-divider-left {
  margin-left: 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.hc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--hc-radius-md);
  font-family: var(--hc-font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--hc-transition);
  white-space: nowrap;
  text-decoration: none;
  width: max-content;
}

.hc-btn-primary {
  background: var(--hc-primary);
  color: var(--hc-white);
  border-color: var(--hc-primary);
}
.hc-btn-primary:hover {
  background: var(--hc-primary-dark);
  border-color: var(--hc-primary-dark);
  color: var(--hc-white);
  transform: translateY(-2px);
  box-shadow: var(--hc-shadow-lg);
}

.hc-btn-accent {
  background: var(--hc-accent);
  color: var(--hc-white);
  border-color: var(--hc-accent);
}
.hc-btn-accent:hover {
  background: var(--hc-accent-dark);
  border-color: var(--hc-accent-dark);
  color: var(--hc-white);
  transform: translateY(-2px);
  box-shadow: var(--hc-shadow-lg);
}

.hc-btn-outline {
  background: transparent;
  color: var(--hc-primary);
  border-color: var(--hc-primary);
}
.hc-btn-outline:hover {
  background: var(--hc-primary);
  color: var(--hc-white);
  transform: translateY(-2px);
}

.hc-btn-outline-white {
  background: transparent;
  color: var(--hc-white);
  border-color: rgba(255,255,255,0.6);
}
.hc-btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  color: var(--hc-white);
  border-color: var(--hc-white);
}

.hc-btn-lg { padding: 18px 40px; font-size: 1rem; }
.hc-btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */

.hc-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s ease;
  background: transparent;
}

.hc-navbar.hc-scrolled {
  background: var(--hc-white);
  box-shadow: var(--hc-shadow-md);
  padding: 10px 0;
}

.hc-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hc-navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.hc-brand-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--hc-accent), var(--hc-accent-light));
  border-radius: var(--hc-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.hc-brand-text {
  display: flex;
  flex-direction: column;
}

.hc-brand-name {
  font-family: var(--hc-font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--hc-white);
  line-height: 1;
  transition: color var(--hc-transition);
}

.hc-brand-tagline {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color var(--hc-transition);
}

.hc-scrolled .hc-brand-name { color: var(--hc-primary); }
.hc-scrolled .hc-brand-tagline { color: var(--hc-neutral-400); }

.hc-nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.hc-nav-link {
  padding: 8px 14px;
  border-radius: var(--hc-radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: all var(--hc-transition);
  text-decoration: none;
  white-space: nowrap;
}

.hc-scrolled .hc-nav-link { color: var(--hc-neutral-600); }

.hc-nav-link:hover,
.hc-nav-link.active {
  background: rgba(255,255,255,0.15);
  color: var(--hc-white);
}

.hc-scrolled .hc-nav-link:hover,
.hc-scrolled .hc-nav-link.active {
  background: var(--hc-neutral-100);
  color: var(--hc-primary);
}

.hc-nav-cta {
  margin-left: 8px;
}

.hc-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}

.hc-nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--hc-white);
  border-radius: 2px;
  transition: all var(--hc-transition);
  display: block;
}

.hc-scrolled .hc-nav-toggle span { background: var(--hc-primary); }

/* ============================================================
   HERO SECTION
   ============================================================ */

.hc-hero-cleaning {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hc-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hc-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(15, 37, 64, 0.88) 0%,
    rgba(26, 58, 92, 0.75) 60%,
    rgba(42, 84, 144, 0.5) 100%);
}

.hc-hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}

.hc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(52, 168, 83, 0.2);
  border: 1px solid rgba(52, 168, 83, 0.4);
  color: #7dcc96;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hc-hero-title {
  color: var(--hc-white);
  margin-bottom: 20px;
  font-weight: 800;
}

.hc-hero-title span { color: #7dcc96; }

.hc-hero-description {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.8;
}

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

.hc-hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.hc-hero-stat {
  text-align: left;
}

.hc-hero-stat-value {
  font-family: var(--hc-font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--hc-white);
  line-height: 1;
}

.hc-hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}

.hc-hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hc-scroll-indicator {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.hc-scroll-dot {
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: hc-scroll-anim 2s infinite;
}

@keyframes hc-scroll-anim {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.3; }
}

/* ============================================================
   TRUST BAR
   ============================================================ */

.hc-trust-bar {
  background: var(--hc-white);
  padding: 24px 0;
  box-shadow: var(--hc-shadow-md);
  position: relative;
  z-index: 10;
}

.hc-trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.hc-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--hc-neutral-600);
}

.hc-trust-item i {
  color: var(--hc-accent);
  font-size: 1.1rem;
}

/* ============================================================
   SERVICE SELECTOR WIDGET
   ============================================================ */

.hc-service-selector-section {
  background: var(--hc-neutral-50);
  padding: 80px 0;
}

.hc-service-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hc-service-tab {
  padding: 12px 24px;
  border-radius: 50px;
  border: 2px solid var(--hc-neutral-200);
  background: var(--hc-white);
  color: var(--hc-neutral-600);
  font-family: var(--hc-font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--hc-transition);
}

.hc-service-tab:hover,
.hc-service-tab.active {
  background: var(--hc-primary);
  border-color: var(--hc-primary);
  color: var(--hc-white);
  box-shadow: var(--hc-shadow-md);
}

.hc-service-panel {
  display: none;
  animation: hc-fade-in 0.4s ease;
}

.hc-service-panel.active { display: block; }

.hc-service-panel-inner {
  background: var(--hc-white);
  border-radius: var(--hc-radius-lg);
  overflow: hidden;
  box-shadow: var(--hc-shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hc-service-panel-img {
  height: 400px;
  overflow: hidden;
}

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

.hc-service-panel-img:hover img { transform: scale(1.04); }

.hc-service-panel-content {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hc-service-panel-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--hc-accent), var(--hc-accent-light));
  border-radius: var(--hc-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.hc-service-panel-content h3 { margin-bottom: 12px; }
.hc-service-panel-content p { color: var(--hc-neutral-500); margin-bottom: 20px; }

.hc-service-includes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.hc-service-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--hc-neutral-600);
}

.hc-service-includes li i {
  color: var(--hc-accent);
  font-size: 0.85rem;
  width: 16px;
}

/* ============================================================
   FEATURED SERVICES CARDS
   ============================================================ */

.hc-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.hc-service-card-deep,
.hc-service-card-home,
.hc-service-card-office,
.hc-service-card-movein,
.hc-service-card-kitchen,
.hc-service-card-bath {
  background: var(--hc-white);
  border-radius: var(--hc-radius-lg);
  overflow: hidden;
  box-shadow: var(--hc-shadow-sm);
  transition: all 0.4s ease;
  border: 1px solid var(--hc-neutral-100);
}

.hc-service-card-deep:hover,
.hc-service-card-home:hover,
.hc-service-card-office:hover,
.hc-service-card-movein:hover,
.hc-service-card-kitchen:hover,
.hc-service-card-bath:hover {
  transform: translateY(-8px);
  box-shadow: var(--hc-shadow-xl);
  border-color: transparent;
}

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

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

.hc-service-card-deep:hover .hc-service-card-img img,
.hc-service-card-home:hover .hc-service-card-img img,
.hc-service-card-office:hover .hc-service-card-img img,
.hc-service-card-movein:hover .hc-service-card-img img,
.hc-service-card-kitchen:hover .hc-service-card-img img,
.hc-service-card-bath:hover .hc-service-card-img img {
  transform: scale(1.06);
}

.hc-service-card-body {
  padding: 28px;
}

.hc-service-card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--hc-primary), var(--hc-primary-light));
  border-radius: var(--hc-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hc-white);
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.hc-service-card-body h4 { margin-bottom: 8px; font-size: 1.1rem; }
.hc-service-card-body p { font-size: 0.9rem; color: var(--hc-neutral-500); margin-bottom: 16px; }

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

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

/* ============================================================
   BEFORE / AFTER SLIDER
   ============================================================ */

.hc-before-after-section {
  background: var(--hc-primary);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hc-before-after-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}

.hc-comparison-wrapper {
  position: relative;
  border-radius: var(--hc-radius-lg);
  overflow: hidden;
  box-shadow: var(--hc-shadow-xl);
  max-width: 800px;
  margin: 0 auto;
  cursor: ew-resize;
  user-select: none;
}

.hc-comparison-wrapper img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

.hc-comparison-before {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  overflow: hidden;
}

.hc-comparison-before img { width: auto; min-width: 800px; }

.hc-comparison-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  background: var(--hc-white);
  z-index: 10;
}

.hc-comparison-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--hc-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--hc-shadow-lg);
  color: var(--hc-primary);
  font-size: 1rem;
}

.hc-comparison-label {
  position: absolute;
  top: 20px;
  padding: 6px 14px;
  background: rgba(0,0,0,0.5);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 50px;
}

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

/* ============================================================
   STATS COUNTER
   ============================================================ */

.hc-stats-section {
  padding: 70px 0;
  background: var(--hc-neutral-50);
}

.hc-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.hc-stat-card {
  background: var(--hc-white);
  border-radius: var(--hc-radius-lg);
  padding: 36px 24px;
  box-shadow: var(--hc-shadow-sm);
  border: 1px solid var(--hc-neutral-100);
  transition: all var(--hc-transition);
}

.hc-stat-card:hover {
  box-shadow: var(--hc-shadow-lg);
  transform: translateY(-4px);
}

.hc-stat-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--hc-primary), var(--hc-primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hc-white);
  font-size: 1.3rem;
  margin: 0 auto 16px;
}

.hc-counter-value {
  font-family: var(--hc-font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--hc-primary);
  line-height: 1;
  display: block;
}

.hc-stat-label {
  font-size: 0.85rem;
  color: var(--hc-neutral-500);
  margin-top: 6px;
}

/* ============================================================
   TEAM CARDS
   ============================================================ */

.hc-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.hc-team-member-card {
  background: var(--hc-white);
  border-radius: var(--hc-radius-lg);
  overflow: hidden;
  box-shadow: var(--hc-shadow-sm);
  border: 1px solid var(--hc-neutral-100);
  transition: all 0.4s ease;
  text-align: center;
}

.hc-team-member-card:hover {
  box-shadow: var(--hc-shadow-xl);
  transform: translateY(-6px);
}

.hc-team-photo {
  height: 240px;
  overflow: hidden;
}

.hc-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}

.hc-team-member-card:hover .hc-team-photo img { transform: scale(1.04); }

.hc-team-info {
  padding: 24px 20px;
}

.hc-team-name {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.hc-team-role {
  font-size: 0.82rem;
  color: var(--hc-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.hc-team-bio {
  font-size: 0.85rem;
  color: var(--hc-neutral-500);
  line-height: 1.6;
}

.hc-team-social {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.hc-team-social a {
  width: 34px;
  height: 34px;
  background: var(--hc-neutral-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hc-neutral-500);
  font-size: 0.8rem;
  transition: all var(--hc-transition);
}

.hc-team-social a:hover {
  background: var(--hc-primary);
  color: white;
}

/* ============================================================
   TESTIMONIAL CAROUSEL
   ============================================================ */

.hc-testimonials-section {
  background: var(--hc-neutral-50);
  padding: 80px 0;
}

.hc-testimonial-carousel {
  position: relative;
  overflow: hidden;
}

.hc-testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}

.hc-testimonial-card {
  background: var(--hc-white);
  border-radius: var(--hc-radius-lg);
  padding: 36px;
  box-shadow: var(--hc-shadow-sm);
  border: 1px solid var(--hc-neutral-100);
  min-width: calc(33.333% - 16px);
  flex-shrink: 0;
}

.hc-testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.hc-testimonial-stars i { color: #fbbf24; font-size: 0.9rem; }

.hc-testimonial-text {
  font-size: 0.95rem;
  color: var(--hc-neutral-600);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

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

.hc-testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
}

.hc-testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--hc-primary);
  margin-bottom: 2px;
}

.hc-testimonial-city {
  font-size: 0.8rem;
  color: var(--hc-neutral-400);
}

.hc-carousel-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.hc-carousel-btn {
  width: 44px;
  height: 44px;
  border: 2px solid var(--hc-neutral-200);
  background: var(--hc-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--hc-neutral-600);
  transition: all var(--hc-transition);
  font-size: 0.9rem;
}

.hc-carousel-btn:hover {
  background: var(--hc-primary);
  border-color: var(--hc-primary);
  color: white;
}

.hc-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.hc-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hc-neutral-300);
  cursor: pointer;
  transition: all var(--hc-transition);
}

.hc-carousel-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--hc-primary);
}

/* ============================================================
   PHOTO GALLERY
   ============================================================ */

.hc-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}

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

.hc-gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.hc-gallery-item:nth-child(5) { grid-column: span 2; }

.hc-gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

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

.hc-gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 58, 92, 0.5);
  opacity: 0;
  transition: opacity var(--hc-transition);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

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

/* ============================================================
   QUIZ SECTION
   ============================================================ */

.hc-quiz-section {
  background: linear-gradient(135deg, var(--hc-primary) 0%, var(--hc-primary-light) 100%);
  padding: 80px 0;
  color: var(--hc-white);
}

.hc-quiz-wrapper {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--hc-radius-xl);
  padding: 56px;
  max-width: 700px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
}

.hc-quiz-step { display: none; }
.hc-quiz-step.active { display: block; animation: hc-fade-in 0.4s ease; }

.hc-quiz-question {
  font-family: var(--hc-font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--hc-white);
  margin-bottom: 28px;
}

.hc-quiz-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hc-quiz-option {
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: var(--hc-radius-md);
  padding: 16px 20px;
  cursor: pointer;
  transition: all var(--hc-transition);
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hc-quiz-option:hover,
.hc-quiz-option.selected {
  background: rgba(52, 168, 83, 0.25);
  border-color: var(--hc-accent);
  color: var(--hc-white);
}

.hc-quiz-option-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--hc-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.hc-quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
}

.hc-quiz-progress {
  display: flex;
  gap: 6px;
}

.hc-quiz-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transition: background var(--hc-transition);
}

.hc-quiz-dot.active { background: var(--hc-accent); }

.hc-quiz-result {
  text-align: center;
  padding: 20px 0;
}

.hc-quiz-result-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--hc-accent), var(--hc-accent-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
}

.hc-quiz-result h3 {
  color: var(--hc-white);
  margin-bottom: 12px;
}

.hc-quiz-result p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
}

/* ============================================================
   CLEANLINESS SCORE TEST
   ============================================================ */

.hc-score-test-section {
  background: var(--hc-neutral-50);
  padding: 80px 0;
}

.hc-score-wrapper {
  background: var(--hc-white);
  border-radius: var(--hc-radius-xl);
  padding: 56px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: var(--hc-shadow-lg);
}

.hc-score-question {
  margin-bottom: 28px;
}

.hc-score-q-text {
  font-family: var(--hc-font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--hc-primary);
  margin-bottom: 16px;
}

.hc-score-options {
  display: flex;
  gap: 10px;
}

.hc-score-option {
  flex: 1;
  padding: 12px 8px;
  border: 2px solid var(--hc-neutral-200);
  border-radius: var(--hc-radius-md);
  cursor: pointer;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--hc-neutral-600);
  transition: all var(--hc-transition);
}

.hc-score-option:hover,
.hc-score-option.selected {
  border-color: var(--hc-primary);
  background: var(--hc-primary);
  color: white;
}

.hc-score-result-box {
  display: none;
  text-align: center;
  padding: 20px 0;
}

.hc-score-meter {
  width: 160px;
  height: 160px;
  position: relative;
  margin: 0 auto 24px;
}

.hc-score-meter svg { transform: rotate(-90deg); }

.hc-score-circle-bg { stroke: var(--hc-neutral-200); }
.hc-score-circle-fill {
  stroke: var(--hc-accent);
  stroke-linecap: round;
  transition: stroke-dashoffset 1.5s ease;
}

.hc-score-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--hc-font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--hc-primary);
}

.hc-score-grade {
  font-family: var(--hc-font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--hc-primary);
  margin-bottom: 8px;
}

.hc-score-message {
  color: var(--hc-neutral-500);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

/* ============================================================
   WHY CHOOSE SECTION
   ============================================================ */

.hc-why-section {
  padding: 80px 0;
  background: var(--hc-white);
}

.hc-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hc-why-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hc-why-feature {
  display: flex;
  gap: 20px;
}

.hc-why-feature-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(52, 168, 83, 0.1), rgba(52, 168, 83, 0.2));
  border-radius: var(--hc-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hc-accent);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.hc-why-feature-text h5 { margin-bottom: 4px; }
.hc-why-feature-text p { font-size: 0.9rem; color: var(--hc-neutral-500); margin: 0; }

.hc-why-image {
  position: relative;
}

.hc-why-image img {
  border-radius: var(--hc-radius-xl);
  width: 100%;
  object-fit: cover;
  height: 520px;
}

.hc-why-badge {
  position: absolute;
  bottom: 32px;
  left: -24px;
  background: var(--hc-white);
  border-radius: var(--hc-radius-lg);
  padding: 20px 24px;
  box-shadow: var(--hc-shadow-xl);
  display: flex;
  align-items: center;
  gap: 16px;
}

.hc-why-badge-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--hc-accent), var(--hc-accent-light));
  border-radius: var(--hc-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
}

.hc-why-badge-text strong {
  display: block;
  font-family: var(--hc-font-heading);
  font-size: 1.5rem;
  color: var(--hc-primary);
}

.hc-why-badge-text span {
  font-size: 0.8rem;
  color: var(--hc-neutral-400);
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */

.hc-areas-section {
  background: var(--hc-primary);
  padding: 80px 0;
  color: var(--hc-white);
}

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

.hc-area-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--hc-radius-md);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all var(--hc-transition);
}

.hc-area-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateX(4px);
}

.hc-area-card i {
  color: var(--hc-accent);
  font-size: 1.1rem;
  width: 20px;
}

.hc-area-card span {
  font-size: 0.95rem;
  font-weight: 500;
}

/* ============================================================
   BOOKING CTA
   ============================================================ */

.hc-booking-widget {
  background: linear-gradient(135deg, var(--hc-accent-dark), var(--hc-accent));
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hc-booking-widget::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/cta.webp') center/cover;
  opacity: 0.08;
}

.hc-booking-widget .container { position: relative; z-index: 2; }

.hc-booking-widget h2 {
  color: var(--hc-white);
  margin-bottom: 16px;
}

.hc-booking-widget p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 36px;
}

/* ============================================================
   FOOTER
   ============================================================ */

.hc-footer {
  background: var(--hc-neutral-900);
  color: var(--hc-neutral-400);
}

.hc-footer-main {
  padding: 70px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hc-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.hc-footer-brand-text {
  font-size: 0.9rem;
  color: var(--hc-neutral-400);
  line-height: 1.8;
  margin: 16px 0 24px;
}

.hc-footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 0.85rem;
}

.hc-footer-contact li i {
  color: var(--hc-accent);
  margin-top: 3px;
  width: 14px;
  flex-shrink: 0;
}

.hc-footer-heading {
  font-family: var(--hc-font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--hc-white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.hc-footer-links li { margin-bottom: 10px; }
.hc-footer-links a {
  color: var(--hc-neutral-400);
  font-size: 0.9rem;
  transition: color var(--hc-transition);
}
.hc-footer-links a:hover { color: var(--hc-accent); }

.hc-footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.hc-footer-bottom p { font-size: 0.82rem; margin: 0; }
.hc-footer-legal {
  display: flex;
  gap: 20px;
}
.hc-footer-legal a {
  font-size: 0.82rem;
  color: var(--hc-neutral-400);
}
.hc-footer-legal a:hover { color: var(--hc-accent); }

.hc-social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.hc-social-links a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hc-neutral-400);
  font-size: 0.85rem;
  transition: all var(--hc-transition);
}

.hc-social-links a:hover {
  background: var(--hc-accent);
  color: white;
}

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */

.hc-page-header {
  background: linear-gradient(135deg, var(--hc-primary-dark) 0%, var(--hc-primary) 100%);
  padding: 140px 0 70px;
  position: relative;
  overflow: hidden;
}

.hc-page-header::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--hc-white);
  clip-path: ellipse(60% 100% at 50% 100%);
}

.hc-page-header-content { position: relative; z-index: 2; }

.hc-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.hc-breadcrumb a { color: rgba(255,255,255,0.6); }
.hc-breadcrumb a:hover { color: rgba(255,255,255,0.9); }
.hc-breadcrumb i { font-size: 0.7rem; }
.hc-breadcrumb .current { color: rgba(255,255,255,0.9); }

.hc-page-header h1 { color: var(--hc-white); }
.hc-page-header p { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-top: 12px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.hc-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

.hc-contact-info-card {
  background: var(--hc-primary);
  border-radius: var(--hc-radius-lg);
  padding: 40px;
  color: var(--hc-white);
}

.hc-contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.hc-contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--hc-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hc-accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hc-contact-info-item h5 { color: rgba(255,255,255,0.6); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.hc-contact-info-item p { color: var(--hc-white); margin: 0; font-size: 0.95rem; }

.hc-hours-grid {
  background: rgba(255,255,255,0.05);
  border-radius: var(--hc-radius-md);
  padding: 20px;
  margin-top: 20px;
}

.hc-hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.9rem;
}

.hc-hours-row:last-child { border-bottom: none; }
.hc-hours-row span:first-child { color: rgba(255,255,255,0.65); }
.hc-hours-row span:last-child { color: var(--hc-white); font-weight: 500; }

.hc-contact-form-card {
  background: var(--hc-white);
  border-radius: var(--hc-radius-lg);
  padding: 40px;
  box-shadow: var(--hc-shadow-lg);
}

.hc-form-group {
  margin-bottom: 20px;
}

.hc-form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--hc-neutral-700);
  margin-bottom: 6px;
}

.hc-form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--hc-neutral-200);
  border-radius: var(--hc-radius-md);
  font-family: var(--hc-font-body);
  font-size: 0.9rem;
  color: var(--hc-neutral-700);
  transition: border-color var(--hc-transition);
  background: var(--hc-white);
}

.hc-form-control:focus {
  outline: none;
  border-color: var(--hc-primary);
}

.hc-form-control.error { border-color: #e53e3e; }

.hc-form-error {
  font-size: 0.8rem;
  color: #e53e3e;
  margin-top: 4px;
  display: none;
}

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

.hc-map-container {
  border-radius: var(--hc-radius-lg);
  overflow: hidden;
  height: 380px;
  margin-top: 48px;
  box-shadow: var(--hc-shadow-md);
}

.hc-map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================
   ARTICLE PAGES
   ============================================================ */

.hc-article-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

.hc-article-body h2 { margin: 32px 0 16px; }
.hc-article-body h3 { margin: 24px 0 12px; }
.hc-article-body p { margin-bottom: 20px; line-height: 1.85; }
.hc-article-body ul { margin: 0 0 20px 20px; }
.hc-article-body ul li { list-style: disc; margin-bottom: 8px; line-height: 1.7; }

.hc-article-image {
  border-radius: var(--hc-radius-lg);
  overflow: hidden;
  margin: 28px 0;
}

.hc-article-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.hc-article-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hc-article-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--hc-neutral-500);
}

.hc-article-meta-item i { color: var(--hc-accent); }

.hc-article-sidebar {
  position: sticky;
  top: 100px;
}

.hc-sidebar-widget {
  background: var(--hc-white);
  border-radius: var(--hc-radius-lg);
  padding: 28px;
  box-shadow: var(--hc-shadow-sm);
  border: 1px solid var(--hc-neutral-100);
  margin-bottom: 24px;
}

.hc-sidebar-widget h5 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid var(--hc-neutral-100);
  padding-bottom: 12px;
  margin-bottom: 16px;
}

.hc-sidebar-link {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--hc-neutral-100);
  text-decoration: none;
}

.hc-sidebar-link:last-child { border-bottom: none; }

.hc-sidebar-link img {
  width: 60px;
  height: 48px;
  object-fit: cover;
  border-radius: var(--hc-radius-sm);
  flex-shrink: 0;
}

.hc-sidebar-link-text span {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--hc-primary);
  line-height: 1.4;
  margin-bottom: 2px;
}

.hc-sidebar-link-text small {
  color: var(--hc-neutral-400);
  font-size: 0.75rem;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */

.hc-legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}

.hc-legal-content h2 { margin: 36px 0 14px; font-size: 1.35rem; }
.hc-legal-content h3 { margin: 24px 0 10px; font-size: 1.1rem; }
.hc-legal-content p { margin-bottom: 16px; line-height: 1.85; }
.hc-legal-content ul { margin: 0 0 16px 20px; }
.hc-legal-content ul li { list-style: disc; margin-bottom: 8px; line-height: 1.7; }

.hc-legal-last-updated {
  display: inline-block;
  background: var(--hc-neutral-100);
  color: var(--hc-neutral-500);
  font-size: 0.82rem;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 32px;
}

/* ============================================================
   THANK YOU PAGE
   ============================================================ */

.hc-thankyou-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
}

.hc-thankyou-box {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.hc-thankyou-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--hc-accent), var(--hc-accent-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin: 0 auto 24px;
  animation: hc-pop-in 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes hc-pop-in {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes hc-fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.hc-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}

.hc-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.hc-fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.7s ease;
}

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

.hc-fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.7s ease;
}

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

/* ============================================================
   SERVICES DETAIL PAGE
   ============================================================ */

.hc-service-detail {
  border-radius: var(--hc-radius-lg);
  overflow: hidden;
  background: var(--hc-white);
  box-shadow: var(--hc-shadow-sm);
  border: 1px solid var(--hc-neutral-100);
  margin-bottom: 40px;
}

.hc-service-detail-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hc-service-detail-img { height: 320px; overflow: hidden; }
.hc-service-detail-img img { width: 100%; height: 100%; object-fit: cover; }

.hc-service-detail-intro {
  padding: 40px;
  background: var(--hc-primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hc-service-detail-intro h2 { color: var(--hc-white); margin-bottom: 14px; }
.hc-service-detail-intro p { color: rgba(255,255,255,0.75); font-size: 0.95rem; }

.hc-service-detail-body { padding: 40px; }
.hc-service-detail-body h4 { margin-bottom: 12px; }
.hc-service-detail-body p { color: var(--hc-neutral-500); margin-bottom: 20px; }

.hc-service-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

.hc-service-checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--hc-neutral-600);
}

.hc-service-checklist li i { color: var(--hc-accent); font-size: 0.8rem; }

/* ============================================================
   COOKIE CONSENT
   ============================================================ */

.hc-cookie-consent {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 560px;
  background: var(--hc-white);
  border-radius: var(--hc-radius-lg);
  padding: 24px 28px;
  box-shadow: var(--hc-shadow-xl);
  z-index: 9999;
  border: 1px solid var(--hc-neutral-100);
  display: none;
}

.hc-cookie-consent.visible { display: flex; gap: 20px; align-items: flex-start; }

.hc-cookie-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.hc-cookie-text { flex: 1; }
.hc-cookie-text p { font-size: 0.85rem; color: var(--hc-neutral-600); margin-bottom: 12px; }
.hc-cookie-text a { color: var(--hc-accent); font-size: 0.85rem; }

.hc-cookie-actions { display: flex; gap: 10px; }

.logo{
  max-width: 200px;
  object-fit: contain;
}

html{
  overflow-x: hidden;
}

.social-links{
  display: none;
}