/* SH Top Notch design system */
:root {
	--obsidian: #0b0f17;
	--charcoal: #131926;
	--ink: #111722;
	--slate: #657080;
	--muted: #9ca7b5;
	--line: #dbe1e8;
	--paper: #f4f6f8;
	--white: #fff;
	--cyan: #00d2ff;
	--cyan-deep: #087da5;
	--amber: #f5b84b;
	--shadow: 0 20px 60px rgba(11, 15, 23, .14);
	--glow: 0 0 28px rgba(0, 210, 255, .22);
	--radius: 12px;
	--transition: 180ms cubic-bezier(.2, .8, .2, 1);
	--max: 1180px;
	color: var(--ink);
	background: var(--paper);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	line-height: 1.5;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 16px; top: 16px; z-index: 10; padding: 10px 14px; background: var(--cyan); }

.site-header { position: sticky; top: 0; z-index: 5; background: rgba(11, 15, 23, .94); color: var(--white); backdrop-filter: blur(14px); }
.site-header { border-bottom: 1px solid rgba(255,255,255,.08); }
.nav { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -.04em; }
.brand-mark { display: block; width: 52px; height: 52px; flex: 0 0 52px; overflow: hidden; border-radius: 50%; background: var(--obsidian) url("../images/logo.jpeg") center / contain no-repeat; font-size: 0; transform: none; }
.brand span:last-child { font-size: 17px; }
.nav-toggle { display: inline-grid; gap: 4px; padding: 8px; border: 0; background: transparent; color: var(--white); }
.nav-toggle i { display: block; width: 22px; height: 2px; background: currentColor; }
.nav-links { display: none; align-items: center; gap: 27px; font-size: 13px; font-weight: 700; }
.nav-links a { color: #c4ccd7; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--cyan); }
.nav-cta { padding: 11px 16px; background: var(--cyan); color: var(--obsidian) !important; }
.mobile-menu-open .nav-links { position: absolute; left: 0; right: 0; top: 72px; display: grid; gap: 0; padding: 12px 20px 20px; background: var(--obsidian); }
.mobile-menu-open .nav-links a { padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.1); }

.eyebrow { margin: 0 0 12px; color: var(--cyan-deep); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.on-dark .eyebrow { color: var(--cyan); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.05; letter-spacing: -.045em; }
h1 { max-width: 760px; margin-bottom: 20px; font-size: clamp(42px, 9vw, 78px); }
h2 { margin-bottom: 16px; font-size: clamp(31px, 5vw, 52px); }
h3 { font-size: 22px; }
.lede { max-width: 580px; color: var(--muted); font-size: 17px; }
.on-dark .lede { color: #b8c2cf; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 18px; border: 1px solid transparent; border-radius: 4px; background: var(--cyan); color: var(--obsidian); font-size: 13px; font-weight: 800; transition: transform var(--transition), box-shadow var(--transition), filter var(--transition); }
.button:hover { filter: brightness(.98); transform: translateY(-2px); box-shadow: var(--glow); }
.button:not(.secondary) { position: relative; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; will-change: transform; }
.button:not(.secondary)::after, .btn-primary::after { content: ""; position: absolute; top: -50%; left: 0; width: 40%; height: 200%; background: linear-gradient(60deg, rgba(255,255,255,0) 20%, rgba(255,255,255,.45) 50%, rgba(255,255,255,0) 80%); transform: translate3d(-240%, 0, 0) rotate(25deg); will-change: transform; }
.button:not(.secondary):hover, .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 20px rgba(0,210,255,.45); }
.button:not(.secondary):hover::after, .btn-primary:hover::after { transform: translate3d(340%, 0, 0) rotate(25deg); transition: transform .65s cubic-bezier(.16,1,.3,1); }
.button.secondary { border-color: rgba(255,255,255,.28); background: transparent; color: var(--white); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.button.secondary:hover { border-color: var(--cyan); box-shadow: 0 0 18px rgba(0,210,255,.2); }
.button.secondary:active { transform: translateY(0); }
.button.dark { background: var(--obsidian); color: var(--white); }
.button.text { min-height: auto; padding: 0; background: none; color: var(--cyan-deep); }

@keyframes heroKenBurns {
	0% { transform: scale(1) translate3d(0, 0, 0); }
	50% { transform: scale(1.04) translate3d(-10px, -5px, 0); }
	100% { transform: scale(1) translate3d(0, 0, 0); }
}
@keyframes ambientGlow {
	0%, 100% { opacity: .25; transform: scale(.95); }
	50% { opacity: .55; transform: scale(1.05); }
}
@keyframes fadeSlideUp {
	from { opacity: 0; transform: translate3d(0, 24px, 0); }
	to { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes radarPulse {
	0%, 100% { opacity: .8; transform: scale(.95); }
	70% { opacity: 1; transform: scale(1); }
}
.hero { position: relative; overflow: hidden; min-height: 650px; display: grid; align-items: end; background: var(--obsidian); color: var(--white); }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,15,23,.98) 0%, rgba(11,15,23,.8) 43%, rgba(11,15,23,.18) 100%), url("../images/home.jpg") center/cover; opacity: .96; animation: heroKenBurns 18s ease-in-out infinite alternate; will-change: transform; }
.hero::after { content: ""; position: absolute; right: -12%; bottom: -22%; width: 58vw; height: 58vw; border-radius: 50%; background: radial-gradient(circle, rgba(0,136,178,.24), rgba(0,136,178,0) 68%); animation: ambientGlow 8s ease-in-out infinite; will-change: transform, opacity; }
.hero-content { position: relative; z-index: 1; padding: 90px 0 74px; }
.hero .eyebrow, .hero h1, .hero .lede, .hero .actions, .hero .stat-strip, .hero .hero-note { animation: fadeSlideUp .75s cubic-bezier(.16,1,.3,1) both; will-change: transform, opacity; }
.hero .eyebrow { animation-delay: .1s; }
.hero h1 { animation-delay: .25s; }
.hero .lede { animation-delay: .4s; }
.hero .actions { animation-delay: .55s; }
.hero .stat-strip, .hero .hero-note { animation-delay: .7s; }
.hero-note { display: inline-flex; align-items: center; gap: 8px; color: #dce4ec; font-size: 12px; font-weight: 700; }
.hero-note::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 5px rgba(245,184,75,.18); animation: radarPulse 2.2s ease-out infinite; will-change: transform, opacity; }
.stat-strip { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 20px 0 30px; border-top: 1px solid rgba(255,255,255,.16); }
.stat { transition: transform .2s ease; }
.stat:hover { transform: translateY(-3px); }
.stat:hover strong { text-shadow: 0 0 12px rgba(0,210,255,.5); }
.stat strong { display: block; color: var(--cyan); font-size: 24px; }
.stat span { color: #b8c2cf; font-size: 12px; }
.section { padding: 82px 0; }
.section-head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 35px; }
.section-head > div { max-width: 650px; }
.section-head p { color: var(--slate); }
.dark-section { background: var(--obsidian); color: var(--white); }
.tint-section { background: #e8edf1; }

.card-grid { display: grid; gap: 16px; }
.service-card, .review-card, .form-panel, .trust-item { background: var(--white); border: 1px solid var(--line); transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.service-card:hover, .review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(0,210,255,.55); }
.package-card { background: var(--white); border: 1px solid var(--line); }
.service-card { overflow: hidden; }
.service-card-media { aspect-ratio: 16/10; overflow: hidden; background: #ccd5dc; }
.service-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.service-card:hover img { transform: scale(1.04); }
.service-card-body { padding: 22px; }
.service-card-body p { color: var(--slate); font-size: 14px; }
.price { display: block; margin-top: 17px; font-size: 14px; font-weight: 800; }
.price em { color: var(--slate); font-size: 12px; font-style: normal; font-weight: 500; }
/* Seamless Trust Divider Bar */
.trust-bar-section { padding: 32px 0; background: #07090e; border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); position: relative; z-index: 5; }
.trust-bar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; align-items: center; }
.trust-bar-item { display: flex; align-items: center; gap: 14px; padding: 8px 12px; position: relative; transition: transform .2s ease; }
.trust-bar-item:not(:last-child)::after { content: ""; position: absolute; right: -12px; top: 20%; height: 60%; width: 1px; background: rgba(255,255,255,.08); }
.trust-bar-item:hover { transform: translateY(-2px); }
.trust-icon-wrap { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; min-width: 42px; background: rgba(0,210,255,.06); border: 1px solid rgba(0,210,255,.25); border-radius: 8px; transition: background .2s ease, border-color .2s ease, box-shadow .2s ease; }
.trust-bar-item:hover .trust-icon-wrap { background: rgba(0,210,255,.15); border-color: #00d2ff; box-shadow: 0 0 14px rgba(0,210,255,.3); }
.trust-icon-wrap svg { stroke: #00d2ff; }
.trust-text { display: flex; flex-direction: column; }
.trust-text strong { font-size: 14px; font-weight: 600; color: #ffffff; letter-spacing: -.01em; }
.trust-text span { margin-top: 2px; color: #94a3b8; font-size: 12px; }
/* Compact Location Module */
.location-compact-section {
  padding: 40px 0 60px;
  background: var(--paper);
}

.location-card {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(17, 23, 34, 0.05);
}

.location-summary {
  padding: 42px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-summary h2 {
  font-size: clamp(24px, 3.5vw, 32px);
  color: var(--ink);
  margin-bottom: 12px;
}

.location-desc {
  color: var(--slate);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.location-quick-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.loc-tag {
  display: inline-flex;
  padding: 6px 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--slate);
}

.button.secondary-dark {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
  min-height: 42px;
  padding: 0 16px;
  font-size: 12px;
  font-weight: 800;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  transition: all var(--transition);
}

.button.secondary-dark:hover {
  background: var(--ink);
  color: var(--white);
}

.location-map-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 340px;
  overflow: hidden;
}

.location-map-container iframe {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 800px) {
  .location-card {
    grid-template-columns: 1fr;
  }
  .location-summary {
    padding: 28px 20px;
  }
  .location-map-container {
    height: 260px;
    min-height: 260px;
  }
}

@media (max-width: 1024px) { .trust-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } .trust-bar-item::after { display: none; } }
@media (max-width: 540px) { .trust-bar-grid { grid-template-columns: 1fr; gap: 12px; } }
.reviews-shell { display: grid; gap: 24px; }
.google-badge { display: inline-flex; align-items: center; gap: 7px; color: var(--slate); font-size: 12px; font-weight: 800; }
.google-g { display: grid; place-items: center; width: 21px; height: 21px; border: 2px solid #4285f4; border-radius: 50%; color: #4285f4; font-size: 11px; font-weight: 900; }
.review-card { padding: 24px; }
.dark-section .review-card { background: #ffffff; color: #0f172a; }
.dark-section .review-card .review-author strong, .dark-section .review-card blockquote { color: #0f172a; }
.dark-section .review-card .review-author small, .dark-section .review-card .review-time { color: #334155; }
.review-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.review-author { display: grid; gap: 3px; }
.review-author strong { font-size: 15px; }
.review-author small, .review-time { color: var(--slate); font-size: 11px; }
.review-new { display: inline-block; margin-left: 5px; padding: 2px 5px; border-radius: 3px; background: rgba(0,210,255,.14); color: var(--cyan-deep); font-size: 9px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.stars-row { display: flex; align-items: center; gap: 2px; margin: 16px 0 13px; color: #fbbc04; }
.stars-row svg { width: 16px; height: 16px; fill: currentColor; }
.stars-row > svg[viewBox="0 0 120 24"] { width: 120px; height: 24px; }
.review-card blockquote { margin: 0 0 19px; font-size: 15px; font-weight: 550; letter-spacing: -.015em; }
.review-card cite { color: var(--slate); font-size: 12px; font-style: normal; }
.owner-response { margin-top: 20px; padding: 16px; border-left: 2px solid var(--cyan-deep); background: #eef2f4; color: var(--slate); font-size: 13px; }
.owner-response strong { display: block; margin-bottom: 7px; color: var(--ink); font-size: 11px; letter-spacing: .04em; text-transform: uppercase; }
.owner-response p { margin: 0; }
.google-review-btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 18px; border-radius: 4px; background: var(--cyan); color: var(--obsidian); font-size: 13px; font-weight: 800; transition: transform var(--transition), box-shadow var(--transition); }
.google-review-btn:hover { transform: translateY(-2px); box-shadow: var(--glow); }
.review-banner { display: grid; gap: 18px; padding: 28px; background: linear-gradient(135deg, #111c2b, #0b0f17); border: 1px solid rgba(0,210,255,.34); color: var(--white); }
.review-banner h2 { margin-bottom: 8px; font-size: clamp(28px, 5vw, 42px); }
.review-banner p { max-width: 620px; margin-bottom: 0; color: #b8c2cf; }
.review-summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 24px; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.12); }
.review-summary div { padding: 16px 12px; background: rgba(11,15,23,.74); }
.review-summary strong { display: block; color: var(--cyan); font-size: 21px; }
.review-summary span { color: #b8c2cf; font-size: 10px; }
.review-grid.full-reviews { grid-template-columns: 1fr; }
.verified-badge { display: inline-flex; align-items: center; gap: 6px; color: #4285f4; font-size: 11px; font-weight: 800; }
.verified-badge::before { content: "✓"; display: grid; place-items: center; width: 16px; height: 16px; border-radius: 50%; background: #4285f4; color: white; font-size: 10px; }
.review-cta { display: grid; gap: 22px; padding: 30px; background: linear-gradient(135deg, #111c2b, #0b0f17); border: 1px solid rgba(0,210,255,.32); color: var(--white); }
.review-cta .google-g { width: 42px; height: 42px; background: var(--white); border: 0; font-size: 21px; }
.review-cta .stars { font-size: 22px; }
.review-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; color: var(--slate); font-size: 12px; }

.page-hero { padding: 90px 0 72px; background: var(--obsidian); color: var(--white); }
.page-hero h1 { font-size: clamp(40px, 7vw, 68px); }
.page-header { position: relative; overflow: hidden; background-color: #0b0f17; background-size: cover; background-position: center; background-repeat: no-repeat; }
.page-header::before { content: ""; position: absolute; inset: -10px; background-size: cover; background-position: center; background-repeat: no-repeat; animation: headerDrift 16s ease-in-out infinite alternate; will-change: transform; z-index: 1; }
.page-header::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,9,14,.7) 0%, rgba(7,9,14,.92) 100%); z-index: 2; pointer-events: none; }
.page-header > * { position: relative; z-index: 3; }
.header-services::before { background-image: url("../images/1.jpg"); }
.header-gallery::before { background-image: url("../images/2.jpg"); }
.header-booking::before { background-image: url("../images/3.jpg"); }
@keyframes headerDrift {
	0% { transform: scale(1) translate3d(0, 0, 0); }
	100% { transform: scale(1.04) translate3d(-8px, -4px, 0); }
}
.page-header h1 { animation: headerTextFade .6s cubic-bezier(.16,1,.3,1) both; }
.page-header p { animation: headerTextFade .6s cubic-bezier(.16,1,.3,1) .15s both; }
.page-header ~ .section .button { transition: none; will-change: auto; }
.page-header ~ .section .button:hover { filter: none; transform: none; box-shadow: none; }
.page-header ~ .section .button:not(.secondary)::after { display: none; }
.page-header ~ .section .segment { transition: none; }
@keyframes headerTextFade {
	from { opacity: 0; transform: translate3d(0, 16px, 0); }
	to { opacity: 1; transform: translate3d(0, 0, 0); }
}
.breadcrumb { margin-bottom: 18px; color: var(--cyan); font-size: 12px; font-weight: 800; }
.package-grid, .pricing-grid { display: grid; gap: 16px; }
.service-view-panel { display: none; opacity: 0; transform: translate3d(0,10px,0); transition: opacity .22s cubic-bezier(.16,1,.3,1), transform .22s cubic-bezier(.16,1,.3,1); will-change: opacity, transform; }
.service-view-panel.active { display: grid; opacity: 1; transform: translate3d(0,0,0); }
.service-toggle-btn { transition: background-color .2s ease, color .2s ease, box-shadow .2s ease; }
.package-card { padding: 25px; }
.package-card.featured { border-color: var(--cyan-deep); box-shadow: 0 10px 30px rgba(21,156,154,.1); }
.package-card ul, .checklist { padding: 0; margin: 22px 0; list-style: none; }
.package-card li, .checklist li { display: flex; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--line); color: var(--slate); font-size: 13px; }
.package-card li::before, .check { content: "✓"; color: var(--cyan-deep); font-weight: 900; }
.price-large { margin: 20px 0; font-size: 31px; font-weight: 800; }
.price-large span { color: var(--slate); font-size: 12px; font-weight: 500; }
.mobile-request-banner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; margin: 32px 0 40px; padding: 24px 28px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 4px 16px rgba(11,15,23,.04); }
.mobile-request-content { max-width: 600px; }
.mobile-request-content h3 { margin: 0 0 6px; color: var(--ink); font-size: 20px; }
.mobile-request-content p { margin: 0; color: var(--slate); font-size: 14px; }
.whatsapp-btn { background: #25d366 !important; color: #ffffff !important; border: none; font-weight: 700; letter-spacing: -.01em; box-shadow: 0 4px 14px rgba(37,211,102,.25); transition: transform var(--transition), box-shadow var(--transition), filter var(--transition); }
.whatsapp-btn:hover { filter: brightness(.96); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,.4); }
@media (max-width: 768px) { .mobile-request-banner { flex-direction: column; align-items: flex-start; } .mobile-request-action, .whatsapp-btn { width: 100%; } }
.ceramic-category { margin-top: -82px; padding: 0 0 80px; background: #f8fafc; }
.ceramic-category .category-header { display: none; }
.category-header { max-width: 600px; margin: 0 auto 40px; text-align: center; }
.category-header h2 { margin: 8px 0; color: #0f172a; font-size: 28px; font-weight: 700; }
.category-header p { color: #64748b; font-size: 15px; }
.ceramic-stages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stage-card { display: flex; flex-direction: column; min-height: 100%; padding: 28px 24px; background: #ffffff; border: 1px solid #e2e8f0; border-radius: 12px; box-shadow: 0 4px 16px rgba(0,0,0,.04); }
.stage-card.highlight-stage { border-color: #0ea5e9; box-shadow: 0 6px 20px rgba(14,165,233,.08); }
.stage-num { margin-bottom: 8px; color: #0ea5e9; font-size: 13px; font-weight: 700; letter-spacing: .05em; }
.stage-card h3 { min-height: 48px; margin: 0 0 16px; color: #0f172a; font-size: 18px; font-weight: 600; }
.stage-card .service-features { padding: 0; margin: 0; list-style: none; }
.stage-card .service-features li { padding: 8px 0; border-bottom: 1px solid #f1f5f9; color: #64748b; font-size: 13px; }
.ceramic-footer-banner { display: flex; justify-content: space-between; align-items: center; gap: 24px; margin-top: 36px; padding: 24px 32px; background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 12px; }
.pricing-notice h4 { margin: 6px 0 4px; color: #0f172a; font-size: 18px; }
.pricing-notice p { margin: 0; color: #64748b; font-size: 13px; }
.status-pill { color: #0284c7; font-size: 11px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
.quote-badge { display: inline-block; margin-top: 8px; color: #0284c7; font-size: 11px; font-weight: 700; }
.ceramic-footer-banner .btn-primary { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 18px; border-radius: 4px; background: var(--cyan); color: var(--obsidian); font-size: 13px; font-weight: 800; }
.ceramic-footer-banner .btn-primary:hover { background: #0284c7; color: #ffffff; }
.ceramic-category .eyebrow-tag { color: var(--slate); }
@media (max-width: 900px) { .ceramic-stages-grid { grid-template-columns: 1fr; gap: 16px; } .ceramic-footer-banner { flex-direction: column; text-align: center; } }
.selector-group { display: grid; gap: 10px; margin-bottom: 24px; }
.selector-label { color: var(--slate); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.segmented-control { display: flex; flex-wrap: wrap; gap: 4px; padding: 4px; background: #e3e9ee; border-radius: 999px; }
.segment { flex: 1 1 120px; min-height: 42px; padding: 0 13px; border: 0; border-radius: 999px; background: transparent; color: var(--slate); font-size: 12px; font-weight: 800; transition: background var(--transition), color var(--transition), box-shadow var(--transition); }
.segment[aria-selected="true"] { background: var(--obsidian); color: var(--white); box-shadow: 0 3px 10px rgba(11,15,23,.18); }
.category-toggle-group { display: flex; width: fit-content; max-width: 100%; gap: 4px; padding: 4px; background: #eef2f6; border-radius: 9999px; }
.category-toggle-group .category-pill { flex: 0 1 auto; min-height: 0; padding: 10px 22px; border-radius: 9999px; background: transparent; color: #64748b; font-size: 14px; font-weight: 600; white-space: nowrap; }
.category-toggle-group .category-pill.active { background: #0f172a; color: #ffffff; box-shadow: 0 2px 8px rgba(0,0,0,.15); }
@media (max-width: 768px) { .category-toggle-group { flex-direction: column; width: 100%; border-radius: 14px; } .category-toggle-group .category-pill { text-align: center; white-space: normal; } }
#package-grid[hidden] { display: none; }
.service-desc { color: #64748b; font-size: 14px; }
.service-price-block { display: grid; gap: 4px; margin: 16px 0; }
.price-val { color: #0284c7; font-size: 17px; font-weight: 700; }
.price-sub { color: #64748b; font-size: 12px; }
.service-card .service-features { margin-top: auto; }
.card-tier-label, .card-eyebrow { color: var(--slate); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.card-title { color: #0f172a; }
.card-desc { color: #64748b; font-size: 14px; }
.card-price-row { display: flex; align-items: baseline; gap: 8px; margin: 16px 0; }
.price-amount { color: #0284c7; font-size: 17px; font-weight: 700; }
.price-unit { color: #64748b; font-size: 12px; }
.btn-service { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; margin-top: 20px; padding: 0 18px; border: 1px solid transparent; border-radius: 4px; background: var(--obsidian); color: var(--white); font-size: 13px; font-weight: 800; }
.btn-service:hover { background: var(--obsidian); color: var(--white); border-color: transparent; }
.single-card-grid { display: flex; justify-content: center; width: 100%; }
.single-card-grid .service-card { width: 100%; max-width: 480px; padding: 25px; background: var(--white); border: 1px solid var(--line); box-shadow: 0 4px 16px rgba(15,23,42,.06); }
.single-card-grid .service-features { padding: 0; margin: 22px 0 0; list-style: none; }
.single-card-grid .service-features li { display: flex; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--line); color: var(--slate); font-size: 13px; }
.single-card-grid .service-features li::before { content: "✓"; color: var(--cyan-deep); font-weight: 900; }
.single-card-grid .card-eyebrow { color: var(--slate); }
.single-card-grid .card-title { margin: 0 0 16px; color: #0f172a; font-size: clamp(31px, 5vw, 52px); font-weight: 700; line-height: 1.05; letter-spacing: -.045em; }
.single-card-grid .card-desc { margin-bottom: 0; color: var(--slate); font-size: 14px; }
.single-card-grid .card-price-row { display: flex; align-items: baseline; gap: 8px; margin: 20px 0 0; }
.single-card-grid .price-amount { color: #0f172a; font-size: 24px; font-weight: 800; }
.single-card-grid .price-unit { color: var(--slate); font-size: 12px; }
.maintenance-banner { display: grid; gap: 12px; margin-bottom: 28px; padding: 18px 20px; background: var(--charcoal); color: var(--white); border: 1px solid rgba(0,210,255,.3); }
.maintenance-banner strong { color: var(--cyan); }
.maintenance-offers { display: flex; flex-wrap: wrap; gap: 20px; color: #dbe4ed; font-size: 13px; font-weight: 750; }
.table-wrap { overflow-x: auto; background: var(--white); border: 1px solid var(--line); }
.comparison { width: 100%; min-width: 650px; border-collapse: collapse; }
.comparison th, .comparison td { padding: 16px; border-bottom: 1px solid var(--line); text-align: left; font-size: 13px; }
.comparison th { background: #eef2f4; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.comparison td:not(:first-child), .comparison th:not(:first-child) { text-align: center; }
.yes { color: var(--cyan-deep); font-weight: 900; } .no { color: #acb4bd; }

.filter-tabs { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 12px; margin-bottom: 28px; }
.filter-tab { flex: 0 0 auto; padding: 10px 14px; border: 1px solid var(--line); background: transparent; color: var(--slate); font-size: 12px; font-weight: 750; }
.filter-tab[aria-selected="true"] { border-color: var(--obsidian); background: var(--obsidian); color: var(--white); }
.gallery-section.light-bg { padding: 50px 0 80px; background-color: #f8fafc; }
.gallery-grid-4col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.gallery-item { background: #ffffff; border-radius: 10px; overflow: hidden; border: 1px solid #e2e8f0; box-shadow: 0 4px 12px rgba(0,0,0,.05); transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s ease; will-change: transform; content-visibility: auto; contain-intrinsic-size: 300px 400px; }
.gallery-item:hover { transform: translateY(-5px); box-shadow: 0 12px 24px rgba(0,0,0,.12); }
.gallery-image-box { width: 100%; aspect-ratio: 3 / 4; overflow: hidden; position: relative; background: #f1f5f9; content-visibility: auto; }
.gallery-image-box img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s cubic-bezier(.16,1,.3,1); will-change: transform; }
.gallery-item:hover .gallery-image-box img { transform: scale(1.04); }
@media (max-width: 1100px) { .gallery-grid-4col { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (max-width: 768px) { .gallery-grid-4col { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 480px) { .gallery-grid-4col { grid-template-columns: 1fr; gap: 12px; } }
.comparison-card { position: relative; overflow: hidden; aspect-ratio: 4/3; background: #d9dfe5; }
.comparison-card img { width: 100%; height: 100%; object-fit: cover; }
.comparison-card .after { position: absolute; inset: 0 0 0 50%; overflow: hidden; border-left: 2px solid var(--cyan); }
.comparison-card .after img { width: 200%; max-width: none; }
.comparison-range { position: absolute; inset: auto 12px 10px; width: calc(100% - 24px); accent-color: var(--cyan); }
.before-label, .after-label { position: absolute; top: 12px; padding: 5px 7px; background: rgba(11,15,23,.78); color: var(--white); font-size: 10px; font-weight: 800; }
.before-label { left: 12px; } .after-label { right: 12px; }
.lightbox { position: fixed; inset: 0; z-index: 20; display: none; place-items: center; padding: 20px; background: rgba(11,15,23,.92); }
.lightbox.open { display: grid; }
.lightbox img { max-height: 86vh; width: auto; max-width: 94vw; }
.lightbox-close { position: absolute; top: 18px; right: 20px; border: 0; background: none; color: var(--white); font-size: 32px; }

.booking-layout { display: grid; gap: 22px; }
.form-panel { padding: 24px; }
.progress { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; margin-bottom: 30px; }
.progress-step { padding-top: 10px; border-top: 3px solid var(--line); color: var(--slate); font-size: 11px; font-weight: 800; }
.progress-step.active { border-color: var(--cyan-deep); color: var(--ink); }
.form-step { display: none; } .form-step.active { display: block; }
.field-grid { display: grid; gap: 16px; }
.field label { display: block; margin-bottom: 7px; font-size: 12px; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; min-height: 48px; padding: 12px; border: 1px solid #cdd5de; border-radius: 2px; background: var(--white); color: var(--ink); }
.field textarea { min-height: 92px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--cyan); outline-offset: 1px; }
.booking-form { display: grid; gap: 16px; }
.booking-form .field input, .booking-form .field select, .booking-form .field textarea { background: rgba(11,15,23,.045); border-color: rgba(11,15,23,.18); }
.booking-form .field input:focus, .booking-form .field select:focus, .booking-form .field textarea:focus { outline: 2px solid #00d2ff; outline-offset: 1px; background: var(--white); }
#bookingDate { min-height: 52px; padding: 12px 14px; color: var(--ink); color-scheme: light; font-variant-numeric: tabular-nums; appearance: auto; }
#bookingDate::-webkit-calendar-picker-indicator { width: 20px; height: 20px; padding: 2px; cursor: pointer; opacity: .72; }
#bookingDate:focus::-webkit-calendar-picker-indicator { opacity: 1; }
.field-help, .field small { display: block; margin: 9px 0 0; color: var(--slate); font-size: 12px; }
.time-slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(84px, 1fr)); gap: 8px; margin-top: 8px; }
.time-slot { min-height: 42px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); color: var(--ink); font-size: 12px; font-weight: 800; }
.time-slot:hover { border-color: var(--cyan-deep); background: var(--obsidian); color: var(--white); }
.time-slot.selected {
  border-color: var(--cyan-deep) !important;
  background: var(--obsidian) !important;
  color: var(--white) !important;
}
.time-slot:disabled { border-color: #e2e5e8; background: #eef0f2; color: #9ca4ad; cursor: not-allowed; text-decoration: line-through; }
.slot-empty { grid-column: 1 / -1; margin: 0; padding: 14px; border: 1px dashed var(--line); color: var(--slate); font-size: 13px; }
.slots-loading {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  background: var(--white);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--slate);
  font-size: 13px;
  font-weight: 600;
}
.slots-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid var(--line);
  border-top-color: var(--cyan);
  border-radius: 50%;
  animation: spinSlot 0.6s linear infinite;
}
@keyframes spinSlot {
  to { transform: rotate(360deg); }
}
.closed-date { border-color: #b32929 !important; background: #f4e5e5 !important; }
.form-actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 25px; }
.form-error { margin-top: 15px; color: #b32929; font-size: 13px; }
.booking-aside { padding: 25px; background: var(--obsidian); color: var(--white); }
.booking-aside p, .booking-aside li { color: #b8c2cf; font-size: 13px; }
.booking-aside ul { padding-left: 18px; }
.confirmation { display: none; padding: 30px; background: #e5f7f4; border: 1px solid #a3ddd4; }
.confirmation.visible { display: block; }
.preloader { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; background: var(--obsidian); transition: opacity 220ms ease, visibility 220ms ease; }
.preloader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-bar { width: min(160px, 42vw); height: 2px; overflow: hidden; background: rgba(255,255,255,.18); }
.preloader-bar::after { content: ""; display: block; width: 45%; height: 100%; background: var(--cyan); animation: load 700ms cubic-bezier(.2,.8,.2,1) infinite alternate; }
@keyframes load { to { transform: translateX(125%); } }
.summary-modal { position: fixed; inset: 0; z-index: 30; display: none; place-items: center; padding: 20px; background: rgba(11,15,23,.78); }
.summary-modal.open { display: grid; }
.summary-modal-card { width: min(100%, 540px); padding: 28px; background: var(--white); box-shadow: var(--shadow); }
.summary-modal-close { float: right; border: 0; background: none; color: var(--slate); font-size: 26px; }
.summary-list { padding: 0; list-style: none; color: var(--slate); font-size: 14px; }
.summary-list li { padding: 9px 0; border-bottom: 1px solid var(--line); }
.confirmation-modal { position: fixed; inset: 0; z-index: 30; display: none; place-items: center; padding: 20px; background: rgba(11,15,23,.78); animation: modal-in 180ms ease both; }
.confirmation-modal.open { display: grid; }
@keyframes modal-in { from { opacity: 0; } to { opacity: 1; } }

/* Clean White Confirmation Page Theme */
body.light-theme, .confirmation-section.light-theme { background-color: #f8fafc; color: #0f172a; }
.eyebrow-tag { display: block; margin-bottom: 14px; color: var(--cyan); font-size: 11px; font-weight: 800; letter-spacing: .14em; }
.confirmation-section { padding: 60px 0 90px; }
.receipt-wrapper { max-width: 680px; margin: 40px auto 60px; padding: 36px; background: #ffffff; border: 1px solid #e2e8f0; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,.05); }
.receipt-wrapper > [hidden] { display: none; }
.receipt-title-block { margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid #f1f5f9; }
.receipt-title-block h2 { margin: 0 0 6px; color: #0f172a; font-size: 22px; font-weight: 700; }
.receipt-title-block p { margin: 0; color: #64748b; font-size: 14px; }
.receipt-header-row { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 20px; border-bottom: 1px solid #f1f5f9; }
.receipt-label { display: block; margin-bottom: 6px; color: #64748b; font-size: 11px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
.receipt-status { display: inline-flex; align-items: center; gap: 8px; padding: 4px 10px; background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; border-radius: 9999px; font-size: 13px; font-weight: 600; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: #10b981; }
.receipt-val.mono { color: #334155; font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; font-size: 14px; font-weight: 600; }
.receipt-details-table { padding: 10px 0; }
.receipt-row { display: flex; justify-content: space-between; align-items: baseline; padding: 14px 0; border-bottom: 1px solid #f1f5f9; font-size: 14px; }
.col-label { color: #64748b; font-weight: 500; }
.col-value { max-width: 60%; color: #0f172a; font-weight: 600; text-align: right; overflow-wrap: anywhere; }
.col-value.highlight { color: #0284c7; }
.receipt-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; padding-top: 24px; border-top: 1px solid #f1f5f9; }
.receipt-actions .btn-outline { grid-column: span 2; text-align: center; }
.receipt-actions .btn-primary { display: inline-flex; align-items: center; justify-content: center; padding: 12px 18px; background: #0ea5e9; color: #ffffff; border: 0; border-radius: 8px; font-weight: 600; text-align: center; text-decoration: none; transition: background .2s ease; }
.receipt-actions .btn-primary:hover { background: #0284c7; }
.receipt-actions .btn-secondary { padding: 12px 18px; background: #f1f5f9; color: #1e293b; border: 1px solid #cbd5e1; border-radius: 8px; font-weight: 600; transition: background .2s ease; }
.receipt-actions .btn-secondary:hover { background: #e2e8f0; }
.receipt-actions .btn-outline { padding-top: 6px; color: #64748b; font-size: 13px; text-decoration: none; }
.receipt-actions .btn-outline:hover { color: #0f172a; }
.dropoff-location-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 20px 0;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.dropoff-header .dropoff-address {
  display: block;
  font-size: 16px;
  color: var(--ink);
  margin-top: 4px;
}
.dropoff-header .dropoff-note {
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--slate);
}
.btn-directions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  background: var(--obsidian);
  color: var(--white);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
}
.btn-directions:hover {
  background: var(--charcoal);
  color: var(--cyan);
  transform: translateY(-2px);
}
.confirmation-fallback { margin: 24px 0 0; color: #64748b; }
@media (max-width: 600px) { .receipt-wrapper { padding: 24px; margin: 20px auto; } .receipt-row { flex-direction: column; gap: 4px; } .col-value { max-width: 100%; text-align: left; } .receipt-actions { grid-template-columns: 1fr; } .receipt-actions .btn-outline { grid-column: span 1; } }

.site-footer { padding: 52px 0 25px; background: var(--obsidian); color: var(--white); }
.footer-grid { display: grid; gap: 30px; padding-bottom: 35px; }
.footer-grid h3 { margin-bottom: 14px; color: var(--white); font-size: 14px; letter-spacing: 0; }
.footer-grid p, .footer-grid a { color: #aab5c1; font-size: 13px; }
.footer-links { display: grid; gap: 9px; }

.footer-bottom { padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); color: #788493; font-size: 11px; }
.footer-bottom-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.footer-bottom-content .copyright {
    margin: 0;
    color: #788493;
    font-size: 12px;
}
.footer-contact-group {
    display: flex;
    align-items: center;
    gap: 20px;
}
.footer-phone {
    color: #c4ccd7;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: color var(--transition);
}
.footer-phone:hover {
    color: var(--cyan);
}
.footer-socials {
    display: flex;
    align-items: center;
    gap: 12px;
}
.social-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #c4ccd7;
    transition: all var(--transition);
}
.social-icon-link:hover {
    color: var(--cyan);
    border-color: var(--cyan);
    background: rgba(0, 210, 255, 0.08);
    transform: translateY(-2px);
}
.social-icon-link svg {
    width: 20px;
    height: 20px;
}

.sticky-cta { position: fixed; right: 16px; bottom: 16px; z-index: 4; display: none; box-shadow: var(--shadow); }

@media (min-width: 700px) {
	.container { width: min(calc(100% - 64px), var(--max)); }
	.nav-toggle { display: none; } .nav-links { display: flex; }
	.stat-strip { grid-template-columns: repeat(4, 1fr); }
	.card-grid { grid-template-columns: repeat(3, 1fr); }
	.trust-grid { grid-template-columns: repeat(4, 1fr); }
	.reviews-shell { grid-template-columns: 1fr 2fr; align-items: start; }
	.review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
	.package-grid, .pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: start; }
	.gallery-grid { grid-template-columns: repeat(3, 1fr); }
	.booking-layout { grid-template-columns: 1.5fr .8fr; align-items: start; }
	.field-grid.two { grid-template-columns: repeat(2, 1fr); }
	.footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
	.sticky-cta { display: inline-flex; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
