/* ProFlow Plumbing — Enhanced Styles v2 */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800&family=Barlow:wght@400;500;600;700&family=Manrope:wght@400;500;600;700&family=Noto+Sans+KR:wght@400;700&display=swap');

/* ── Tokens ── */
:root {
  --navy:        #0F2044;
  --navy-dark:   #0A1628;
  --navy-mid:    #162d5e;
  --orange:      #F97316;
  --orange-dark: #ea6a0a;
  --orange-glow: rgba(249,115,22,.25);
  --red:         #DC2626;
  --bg-light:    #F8FAFC;
  --bg-white:    #FFFFFF;
  --text-1:      #1E293B;
  --text-2:      #475569;
  --text-3:      #94A3B8;
  --border:      #E2E8F0;
  --border-dark: #CBD5E1;
  --green:       #16A34A;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:   0 4px 16px rgba(15,32,68,.1), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg:   0 12px 40px rgba(15,32,68,.15), 0 4px 12px rgba(0,0,0,.08);
  --shadow-xl:   0 20px 60px rgba(15,32,68,.2);
  --shadow-orange: 0 8px 24px rgba(249,115,22,.35);
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --transition:  all .22s cubic-bezier(.4,0,.2,1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', 'Noto Sans KR', sans-serif;
  font-size: 16px; line-height: 1.65;
  color: var(--text-1); background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}

/* ── Language ── */
.ko { display: none !important; }
body.lang-ko .ko { display: block !important; }
body.lang-ko .en { display: none !important; }
body.lang-ko { font-family: 'Noto Sans KR', 'Manrope', sans-serif; }

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
}
.reveal.revealed { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-scale {
  opacity: 0; transform: scale(.96);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal-scale.revealed { opacity: 1; transform: none; }

/* ── Emergency Strip ── */
#emergency-strip {
  background: var(--red);
  color: #fff; text-align: center;
  padding: 10px 48px 10px 16px;
  font-size: 13.5px; font-weight: 600;
  position: relative; z-index: 60;
  letter-spacing: .2px;
}
#emergency-strip a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.strip-close {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.15); border: none; border-radius: 4px;
  color: #fff; width: 24px; height: 24px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 16px;
  transition: background .2s;
}
.strip-close:hover { background: rgba(255,255,255,.25); }

/* ── Sticky Header ── */
#site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--navy);
  transition: box-shadow .3s;
}
#site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.35);
}
.header-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 28px; height: 68px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px; font-weight: 700; letter-spacing: .5px;
  white-space: nowrap; flex-shrink: 0;
}
.logo-icon {
  width: 36px; height: 36px; background: var(--orange);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  transition: transform .2s;
}
.logo:hover .logo-icon { transform: rotate(-5deg) scale(1.05); }
.logo-mark { color: var(--orange); }

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,.8); text-decoration: none;
  font-size: 14px; font-weight: 600; padding: 8px 12px; border-radius: var(--radius-sm);
  transition: var(--transition); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 4px; left: 12px; right: 12px;
  height: 2px; background: var(--orange); border-radius: 1px;
  transform: scaleX(0); transition: transform .22s ease; transform-origin: left;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: #fff; }
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.emergency-link { color: #fca5a5; }
.nav-links a.emergency-link:hover { background: rgba(220,38,38,.2); color: #fff; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 0;
  margin-top: 10px;                 /* visual gap (the bridge below keeps hover alive) */
  background: var(--navy-dark); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md); padding: 8px; min-width: 210px;
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
  /* Use opacity/visibility (not display) so we can add a forgiving close delay */
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
  transition-delay: .25s;           /* grace period before it closes */
  pointer-events: none;
}
/* Transparent bridge covering the gap so the cursor can travel down without losing hover */
.nav-dropdown-menu::before {
  content: ''; position: absolute; top: -14px; left: 0; right: 0; height: 14px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: none; pointer-events: auto;
  transition-delay: 0s;             /* open instantly */
}
.nav-dropdown-menu a {
  display: block; padding: 10px 12px; border-radius: var(--radius-sm);
  font-size: 13.5px;
}
.nav-dropdown-menu a::after { display: none; }

.header-right { display: flex; align-items: center; gap: 8px; }
.lang-toggle {
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.15);
  padding: 6px 11px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 600; cursor: pointer;
  transition: var(--transition);
}
.lang-toggle:hover { background: rgba(255,255,255,.15); color: #fff; }
.header-icon-btn {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.8); text-decoration: none;
  transition: var(--transition);
}
.header-icon-btn:hover { background: rgba(255,255,255,.15); color: #fff; }
.header-phone {
  color: rgba(255,255,255,.85); text-decoration: none;
  font-size: 13.5px; font-weight: 600;
  display: flex; align-items: center; gap: 6px;
  padding: 6px 10px; border-radius: var(--radius-sm);
  transition: var(--transition);
}
.header-phone:hover { color: #fff; background: rgba(255,255,255,.08); }
.btn-book-header {
  background: var(--orange); color: #fff; text-decoration: none;
  padding: 9px 18px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 14px;
  transition: background .2s, box-shadow .2s, transform .15s;
  white-space: nowrap;
}
.btn-book-header:hover {
  background: var(--orange-dark);
  box-shadow: var(--shadow-orange);
  transform: translateY(-1px);
}

/* Mobile */
.mobile-menu-btn {
  display: none; background: none; border: none; color: #fff;
  cursor: pointer; padding: 8px; border-radius: var(--radius-sm);
  transition: background .2s;
}
.mobile-menu-btn:hover { background: rgba(255,255,255,.1); }
#mobile-nav {
  display: none; background: var(--navy-dark);
  padding: 12px 20px 20px; border-top: 1px solid rgba(255,255,255,.08);
}
#mobile-nav a {
  display: block; color: rgba(255,255,255,.8); text-decoration: none;
  padding: 11px 0; font-weight: 600; font-size: 15px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .2s;
}
#mobile-nav a:hover { color: var(--orange); }
.nav-cta-mobile {
  display: block; background: var(--orange); color: #fff !important;
  text-align: center; padding: 14px; border-radius: var(--radius-md);
  margin-top: 14px; font-weight: 700; border: none;
}

/* Floating */
.floating-btns { position: fixed; bottom: 24px; z-index: 40; display: flex; flex-direction: column; gap: 12px; }
.floating-btns.right { right: 20px; }
.floating-btns.left { left: 20px; }
.float-call, .float-emergency {
  width: 56px; height: 56px; border-radius: 50%; border: none;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: transform .2s, box-shadow .2s;
  cursor: pointer;
}
.float-call { background: var(--orange); color: #fff; box-shadow: 0 4px 20px rgba(249,115,22,.5); }
.float-emergency { background: var(--red); color: #fff; box-shadow: 0 4px 20px rgba(220,38,38,.5); }
.float-call:hover, .float-emergency:hover { transform: scale(1.1); }

/* ── Footer ── */
#site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.75);
}
.footer-top-bar {
  background: var(--orange);
  height: 4px;
}
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 60px 28px 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand p { color: rgba(255,255,255,.55); font-size: 14px; margin-top: 10px; line-height: 1.7; }
.footer-col h4 {
  color: #fff; font-weight: 700; font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 16px;
  padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-col a {
  display: block; color: rgba(255,255,255,.6); text-decoration: none;
  font-size: 14px; padding: 5px 0; transition: color .2s, padding-left .2s;
}
.footer-col a:hover { color: var(--orange); padding-left: 4px; }
.footer-hours { font-size: 13px; width: 100%; }
.footer-hours td { padding: 4px 0; color: rgba(255,255,255,.55); }
.footer-hours td:first-child { padding-right: 16px; color: rgba(255,255,255,.8); font-weight: 600; }
.footer-areas {
  padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: 13px; color: rgba(255,255,255,.4); line-height: 2;
}
.footer-areas strong { color: rgba(255,255,255,.6); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; flex-wrap: wrap; gap: 12px;
  font-size: 12.5px; color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.4); text-decoration: none; transition: color .2s; }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }
.trust-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.trust-badge {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  padding: 4px 10px; border-radius: 20px; font-size: 11.5px;
  color: rgba(255,255,255,.55); display: flex; align-items: center; gap: 5px;
}
.trust-badge .dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; flex-shrink: 0; }

/* ── Buttons ── */
.btn-primary {
  background: var(--orange); color: #fff; text-decoration: none;
  padding: 14px 28px; border-radius: var(--radius-md);
  font-weight: 700; font-size: 15.5px;
  display: inline-flex; align-items: center; gap: 8px;
  cursor: pointer; border: none;
  transition: background .2s, box-shadow .2s, transform .15s;
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.12);
  opacity: 0; transition: opacity .2s;
}
.btn-primary:hover { background: var(--orange-dark); box-shadow: var(--shadow-orange); transform: translateY(-2px); }
.btn-primary:hover::after { opacity: 1; }
.btn-primary:active { transform: translateY(0); }

.btn-outline-white {
  background: transparent; color: #fff; text-decoration: none;
  padding: 13px 26px; border-radius: var(--radius-md);
  font-weight: 700; font-size: 15.5px;
  border: 2px solid rgba(255,255,255,.5);
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  transition: var(--transition);
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.1); transform: translateY(-2px); }

.btn-outline-navy {
  background: transparent; color: var(--navy); text-decoration: none;
  padding: 13px 26px; border-radius: var(--radius-md);
  font-weight: 700; font-size: 15px;
  border: 2px solid var(--navy);
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  transition: var(--transition);
}
.btn-outline-navy:hover { background: var(--navy); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-red {
  background: var(--red); color: #fff; text-decoration: none;
  padding: 16px 32px; border-radius: var(--radius-md);
  font-weight: 700; font-size: 18px;
  display: inline-flex; align-items: center; gap: 10px; cursor: pointer; border: none;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(220,38,38,.4);
}
.btn-red:hover { background: #b91c1c; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(220,38,38,.5); }

.btn-whatsapp {
  background: #25D366; color: #fff; text-decoration: none;
  padding: 13px 24px; border-radius: var(--radius-md);
  font-weight: 700; font-size: 15px;
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer; border: none;
  transition: background .2s, transform .15s;
}
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); }

/* ── Layout ── */
.section { padding: 88px 28px; }
.section-sm { padding: 52px 28px; }
.container { max-width: 1200px; margin: 0 auto; }
.container-sm { max-width: 820px; margin: 0 auto; }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--orange); margin-bottom: 14px;
}
.section-eyebrow::before {
  content: ''; width: 24px; height: 2px; background: var(--orange); border-radius: 1px;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 700; color: var(--navy); line-height: 1.08;
  margin-bottom: 18px;
}
.section-title .accent { color: var(--orange); }
.section-title.white { color: #fff; }
.section-sub {
  font-size: 17px; color: var(--text-2); line-height: 1.75;
  max-width: 600px; margin-bottom: 44px;
}
.section-sub.white { color: rgba(255,255,255,.72); }
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ── Hero ── */
.hero {
  background: var(--navy);
  padding: 100px 28px 110px;
  position: relative; overflow: hidden;
}
/* Decorative grid pattern */
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
/* Warm glow */
.hero::after {
  content: ''; position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,.12) 0%, transparent 70%);
  top: -100px; right: -100px; pointer-events: none;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(249,115,22,.15); border: 1px solid rgba(249,115,22,.3);
  color: #ffb380; padding: 6px 14px; border-radius: 20px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-eyebrow .pulse {
  width: 6px; height: 6px; background: var(--orange); border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(.7); } }

.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(46px, 6vw, 76px);
  font-weight: 800; color: #fff; line-height: 1.02; margin-bottom: 22px;
}
.hero-title .accent { color: var(--orange); }
.hero-sub {
  font-size: 17.5px; color: rgba(255,255,255,.7);
  line-height: 1.7; margin-bottom: 38px; max-width: 480px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }

.trust-strip { display: flex; flex-wrap: wrap; gap: 20px; }
.trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.7);
}
.trust-item .check-icon { color: var(--orange); }

/* Hero visual panel */
.hero-visual {
  position: relative;
}
.hero-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl); padding: 40px;
  backdrop-filter: blur(8px); position: relative; overflow: hidden;
}
.hero-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), rgba(249,115,22,.2));
}
.hero-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hero-stat {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md); padding: 20px 16px; text-align: center;
}
.hero-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 38px; font-weight: 700; color: var(--orange); line-height: 1;
}
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,.55); margin-top: 5px; font-weight: 600; }

.hero-badge-float {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--orange); color: #fff;
  border-radius: var(--radius-md); padding: 14px 18px;
  box-shadow: var(--shadow-orange); font-size: 13px; font-weight: 700;
  display: flex; align-items: center; gap: 8px;
}

/* ── Stats Bar ── */
.stats-bar {
  background: var(--orange);
  padding: 28px;
}
.stats-bar-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.stat-item {
  text-align: center; padding: 8px 20px;
  border-right: 1px solid rgba(255,255,255,.2);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 40px; font-weight: 700; color: #fff; line-height: 1; display: block;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,.8); font-weight: 600; margin-top: 3px; }

/* ── Emergency Bar ── */
.emergency-bar {
  background: linear-gradient(135deg, #7f1d1d 0%, #991b1b 50%, #7f1d1d 100%);
  padding: 52px 28px; position: relative; overflow: hidden;
}
.emergency-bar::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 40px,
    rgba(255,255,255,.015) 40px, rgba(255,255,255,.015) 80px
  );
}
.emergency-inner { position: relative; z-index: 1; }

/* ── Section Divider ── */
.divider-wave {
  background: var(--navy);
  clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%);
  margin-bottom: -1px;
}

/* ── Cards ── */
.card {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: box-shadow .25s, transform .25s, border-color .25s;
  cursor: pointer; position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--orange); transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, rgba(249,115,22,.12), rgba(249,115,22,.06));
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; color: var(--orange);
  transition: background .2s, transform .2s;
}
.card:hover .card-icon { background: rgba(249,115,22,.18); transform: scale(1.05); }
.card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.card p { font-size: 14px; color: var(--text-2); line-height: 1.65; }
.card-link {
  color: var(--orange); font-weight: 700; font-size: 13.5px;
  text-decoration: none; display: inline-flex; align-items: center; gap: 4px;
  margin-top: 14px; transition: gap .2s;
}
.card:hover .card-link { gap: 8px; }

/* Emergency card variant */
.card-emergency {
  border-color: rgba(220,38,38,.3);
  background: linear-gradient(135deg, rgba(220,38,38,.03), var(--bg-white));
}
.card-emergency::before { background: var(--red); }
.card-emergency:hover { border-color: rgba(220,38,38,.2); }

/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ── Feature Blocks ── */
.feature-block {
  display: flex; gap: 20px; padding: 24px;
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: box-shadow .25s, transform .25s;
}
.feature-block:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.feature-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center; color: var(--orange);
}
.feature-block h4 { font-weight: 700; font-size: 16px; color: var(--navy); margin-bottom: 5px; }
.feature-block p { font-size: 14px; color: var(--text-2); line-height: 1.6; }

/* ── Review Cards ── */
.review-card {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: box-shadow .25s, transform .25s;
  position: relative;
}
.review-card::before {
  content: '"'; position: absolute; top: 20px; right: 24px;
  font-family: Georgia, serif; font-size: 80px; color: rgba(249,115,22,.1);
  line-height: 1; pointer-events: none;
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.review-stars { color: #F59E0B; font-size: 17px; margin-bottom: 12px; letter-spacing: 1px; }
.review-text { font-size: 14.5px; color: var(--text-2); line-height: 1.75; margin-bottom: 18px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 16px; flex-shrink: 0;
}
.review-name { font-weight: 700; font-size: 14px; color: var(--navy); }
.review-source { font-size: 12px; color: var(--text-3); margin-top: 1px; }

/* ── Steps ── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 26px; left: 10%; right: 10%;
  height: 2px; background: linear-gradient(90deg, var(--orange), rgba(249,115,22,.2));
  z-index: 0;
}
.step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--orange); color: #fff;
  font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; box-shadow: 0 4px 16px rgba(249,115,22,.4);
  border: 3px solid var(--bg-white);
  transition: transform .2s;
}
.step:hover .step-num { transform: scale(1.1); }
.step h4 { font-weight: 700; font-size: 15px; color: var(--navy); margin-bottom: 7px; }
.step p { font-size: 13.5px; color: var(--text-2); line-height: 1.6; }

/* ── Pricing Table ── */
.pricing-table { width: 100%; border-collapse: collapse; }
.pricing-table th {
  background: var(--navy); color: #fff;
  padding: 15px 20px; text-align: left; font-size: 13px;
  letter-spacing: .5px; text-transform: uppercase;
}
.pricing-table th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.pricing-table th:last-child { border-radius: 0 var(--radius-sm) 0 0; }
.pricing-table td { padding: 15px 20px; border-bottom: 1px solid var(--border); font-size: 14.5px; }
.pricing-table tr:hover td { background: rgba(249,115,22,.04); }
.pricing-table tr:last-child td { border-bottom: none; }
.price { font-weight: 700; color: var(--orange); font-size: 16px; white-space: nowrap; }

/* ── Accordion ── */
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-btn {
  width: 100%; background: none; border: none; text-align: left;
  padding: 20px 0; font-size: 16px; font-weight: 600; color: var(--navy);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  transition: color .2s; gap: 16px;
}
.accordion-btn:hover { color: var(--orange); }
.accordion-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(249,115,22,.1); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background .2s, transform .3s;
  font-size: 18px; font-weight: 400; line-height: 1;
}
.accordion-btn.open .accordion-icon { background: var(--orange); color: #fff; transform: rotate(45deg); }
.accordion-body { display: none; padding-bottom: 20px; color: var(--text-2); line-height: 1.75; font-size: 15px; }
.accordion-body.open { display: block; }

/* ── Forms ── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-weight: 600; font-size: 13.5px; color: var(--navy); margin-bottom: 7px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 13px 16px;
  border: 2px solid var(--border); border-radius: var(--radius-md);
  font-size: 15px; font-family: 'Manrope', sans-serif;
  color: var(--text-1); background: var(--bg-white);
  transition: border-color .2s, box-shadow .2s; outline: none;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,.15);
}
.form-input:hover, .form-select:hover, .form-textarea:hover { border-color: var(--border-dark); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-required { color: var(--red); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Multi-step booking */
.progress-bar { display: flex; gap: 0; margin-bottom: 40px; border-radius: var(--radius-md); overflow: hidden; }
.progress-step {
  flex: 1; text-align: center; padding: 13px 8px; font-size: 13px; font-weight: 600;
  background: var(--bg-light); color: var(--text-3);
  border-bottom: 3px solid transparent; transition: var(--transition);
  position: relative;
}
.progress-step.active { color: var(--orange); border-bottom-color: var(--orange); background: rgba(249,115,22,.06); }
.progress-step.done { color: var(--green); border-bottom-color: var(--green); background: rgba(22,163,74,.05); }

.service-select-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 24px; }
.service-option {
  border: 2px solid var(--border); border-radius: var(--radius-md); padding: 15px;
  cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; gap: 12px;
  font-weight: 600; color: var(--navy); background: var(--bg-white); font-size: 14.5px;
}
.service-option:hover { border-color: var(--orange); background: rgba(249,115,22,.04); transform: translateY(-1px); }
.service-option.selected { border-color: var(--orange); background: rgba(249,115,22,.08); }
.service-option.emergency { border-color: rgba(220,38,38,.3); }
.service-option.emergency.selected { background: rgba(220,38,38,.08); border-color: var(--red); }
.service-icon-sm {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: rgba(15,32,68,.07); display: flex; align-items: center; justify-content: center;
  color: var(--navy); flex-shrink: 0; transition: background .2s;
}
.service-option:hover .service-icon-sm { background: rgba(249,115,22,.15); color: var(--orange); }

/* ── Emergency Page ── */
.emergency-hero {
  background: linear-gradient(135deg, #450a0a 0%, #7f1d1d 50%, #991b1b 100%);
  padding: 88px 28px;
  position: relative; overflow: hidden;
}
.emergency-hero::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 60px, rgba(255,255,255,.015) 60px, rgba(255,255,255,.015) 120px);
}
.live-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  padding: 8px 16px; border-radius: 20px; color: #fff; font-size: 13.5px; font-weight: 700;
  margin-bottom: 24px;
}
.live-dot { width: 9px; height: 9px; background: #4ade80; border-radius: 50%; animation: pulse-dot 1.5s ease-in-out infinite; }

/* ── Checklist ── */
.checklist { list-style: none; }
.checklist li {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 8px 0; font-size: 15px; color: var(--text-1);
}
/* Orange arrow marker in front of every checklist item */
.checklist li::before {
  content: '';
  width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px;
  background:
    rgba(249,115,22,.12)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F97316' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E")
    center / 13px no-repeat;
  border-radius: 50%;
}
/* If an explicit .check element is used, hide the auto marker to avoid doubling */
.checklist li:has(.check)::before { display: none; }
.checklist li .check {
  width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px;
  background: rgba(22,163,74,.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--green);
}

/* ── CTA Section ── */
.cta-section {
  background: var(--navy-dark);
  padding: 88px 28px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center bottom, rgba(249,115,22,.1) 0%, transparent 60%);
}
.cta-section > * { position: relative; z-index: 1; }
.cta-section h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(34px, 5vw, 54px); font-weight: 700; color: #fff; margin-bottom: 16px;
}
.cta-section p { color: rgba(255,255,255,.65); font-size: 17.5px; margin-bottom: 38px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Page Hero ── */
.page-hero {
  background: var(--navy); padding: 72px 28px;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; right: 0;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,.08) 0%, transparent 70%);
  transform: translate(30%, 30%);
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(38px, 5.5vw, 64px); font-weight: 700; color: #fff;
  line-height: 1.08; margin-bottom: 16px;
}
.page-hero p { font-size: 17.5px; color: rgba(255,255,255,.7); max-width: 600px; margin-bottom: 28px; line-height: 1.7; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,.45); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,.45); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { margin: 0 6px; }

/* ── Korean block ── */
.ko-block {
  background: rgba(15,32,68,.05); border-left: 3px solid var(--navy);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 18px 22px; margin-top: 18px;
}
.ko-block p { font-family: 'Noto Sans KR', sans-serif; font-size: 14.5px; color: var(--navy); line-height: 1.8; }

/* ── Blog ── */
.blog-card {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: box-shadow .25s, transform .25s;
  cursor: pointer;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--navy), rgba(249,115,22,.5));
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.25); font-size: 13px;
}
.blog-card-body { padding: 24px; }
.blog-card-body h3 { font-size: 16.5px; font-weight: 700; color: var(--navy); margin: 10px 0; line-height: 1.4; }
.blog-card-body p { font-size: 14px; color: var(--text-2); line-height: 1.65; }
.blog-meta { font-size: 12px; color: var(--text-3); display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Map ── */
.map-embed {
  width: 100%; height: 360px; background: #e8ecef;
  border-radius: var(--radius-lg); display: flex; align-items: center;
  justify-content: center; color: var(--text-3); font-size: 15px;
  overflow: hidden; border: 1px solid var(--border);
}
.map-embed iframe { width: 100%; height: 100%; border: none; border-radius: var(--radius-lg); }

/* ── City pill ── */
.city-pill {
  background: var(--bg-white); border: 1.5px solid var(--border);
  padding: 8px 18px; border-radius: 24px;
  font-size: 14px; font-weight: 600; color: var(--navy);
  text-decoration: none; transition: var(--transition); display: inline-block;
}
.city-pill:hover { background: var(--navy); color: #fff; border-color: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* ── Utility ── */
.bg-light { background: var(--bg-light); }
.bg-navy { background: var(--navy); }
.bg-navy-dark { background: var(--navy-dark); }
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 12px; border-radius: 20px; font-size: 12.5px; font-weight: 700;
}
.badge-orange { background: rgba(249,115,22,.12); color: var(--orange); }
.badge-navy { background: rgba(15,32,68,.1); color: var(--navy); }
.badge-green { background: rgba(22,163,74,.1); color: var(--green); }
.badge-red { background: rgba(220,38,38,.1); color: var(--red); }

.divider { height: 1px; background: var(--border); margin: 40px 0; }
.mt-8{margin-top:8px}.mt-16{margin-top:16px}.mt-24{margin-top:24px}.mt-32{margin-top:32px}.mt-40{margin-top:40px}
.mb-8{margin-bottom:8px}.mb-16{margin-bottom:16px}.mb-24{margin-bottom:24px}.mb-32{margin-bottom:32px}.mb-40{margin-bottom:40px}
.gap-8{gap:8px}.gap-12{gap:12px}.gap-16{gap:16px}.gap-24{gap:24px}.gap-32{gap:32px}
.flex{display:flex}.flex-center{display:flex;align-items:center;justify-content:center}
.flex-between{display:flex;align-items:center;justify-content:space-between}.wrap{flex-wrap:wrap}
.bold{font-weight:700}.fw-600{font-weight:600}.fs-14{font-size:14px}.fs-18{font-size:18px}

/* ── Section accent bar ── */
.accent-bar { width: 48px; height: 4px; background: var(--orange); border-radius: 2px; margin-bottom: 20px; }
.accent-bar.center { margin-left: auto; margin-right: auto; }

/* ── Dark glass card ── */
.glass-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: 28px; backdrop-filter: blur(8px);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps { grid-template-columns: repeat(2,1fr); }
  .steps::before { display: none; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .stats-bar-inner { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .hero-inner { gap: 48px; }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .nav-links, .header-right { display: none; }
  .mobile-menu-btn { display: flex; }
  .grid-2,.grid-3,.grid-6 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .service-select-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 20px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .stats-bar-inner { grid-template-columns: repeat(2,1fr); }
  .hero-card { padding: 28px 20px; }
  .hero-badge-float { display: none; }
  .progress-step { font-size: 11px; padding: 10px 4px; }
}
@media (max-width: 480px) {
  .hero { padding: 64px 20px 72px; }
  .hero-ctas { flex-direction: column; }
  .btn-primary,.btn-outline-white { width: 100%; justify-content: center; }
  .stats-bar-inner { grid-template-columns: repeat(2,1fr); }
}
@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { animation-duration:.01ms!important;transition-duration:.01ms!important; }
  .reveal,.reveal-scale { opacity:1!important;transform:none!important; }
}

/* ── Custom Booking Calendar ── */
.cal {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 22px 18px;
  max-width: 460px;
  user-select: none;
  box-shadow: var(--shadow-sm);
}
.cal-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.cal-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px; font-weight: 700; color: var(--navy); letter-spacing: .5px;
}
.cal-nav {
  width: 40px; height: 40px; border-radius: 10px;
  border: 2px solid var(--border); background: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); transition: var(--transition);
}
.cal-nav:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.cal-nav:disabled { opacity: .35; cursor: not-allowed; }
.cal-nav:disabled:hover { background: #fff; color: var(--navy); border-color: var(--border); }
.cal-weekdays {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px;
  margin-bottom: 8px;
}
.cal-weekdays span {
  text-align: center; font-size: 12px; font-weight: 700;
  color: var(--text-3); text-transform: uppercase; letter-spacing: .5px;
  padding: 6px 0;
}
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-day {
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 600; color: var(--text-1);
  border-radius: 10px; cursor: pointer; border: 2px solid transparent;
  transition: background .15s, color .15s, border-color .15s;
}
.cal-day:hover { background: rgba(249,115,22,.12); color: var(--orange); }
.cal-day.empty { cursor: default; }
.cal-day.empty:hover { background: none; }
.cal-day.past {
  color: var(--text-3); cursor: not-allowed; opacity: .45;
}
.cal-day.past:hover { background: none; color: var(--text-3); }
.cal-day.today { border-color: var(--orange); color: var(--orange); }
.cal-day.selected {
  background: var(--orange); color: #fff; border-color: var(--orange);
  box-shadow: 0 4px 12px rgba(249,115,22,.4);
}
.cal-day.selected:hover { background: var(--orange-dark); color: #fff; }
.cal-footer {
  margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 14px;
}
.cal-selected-label { color: var(--text-2); font-weight: 600; }
.cal-selected-label strong { color: var(--navy); }
.cal-clear {
  background: none; border: none; color: var(--orange); cursor: pointer;
  font-weight: 700; font-size: 14px; padding: 4px 8px; border-radius: 6px;
  transition: background .15s;
}
.cal-clear:hover { background: rgba(249,115,22,.1); }

/* Inline field error message */
.field-error {
  display: none; color: var(--red); font-size: 13px; font-weight: 600;
  margin-top: 8px;
}
.field-error.show { display: block; }
.form-input.invalid, .form-select.invalid, .form-textarea.invalid { border-color: var(--red); }
.cal.invalid { border-color: var(--red); }

@media (max-width: 520px) {
  .cal { padding: 16px 14px; }
  .cal-day { font-size: 14px; }
  .cal-title { font-size: 21px; }
}

/* ── Address Autocomplete ── */
.addr-wrap { position: relative; }
.addr-suggestions {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 30;
  background: #fff; border: 2px solid var(--border); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); overflow: hidden; max-height: 280px; overflow-y: auto;
  display: none;
}
.addr-suggestions.open { display: block; }
.addr-item {
  padding: 12px 16px; cursor: pointer; border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 11px; transition: background .12s;
}
.addr-item:last-child { border-bottom: none; }
.addr-item:hover, .addr-item.active { background: rgba(249,115,22,.08); }
.addr-item .pin { color: var(--orange); flex-shrink: 0; margin-top: 1px; }
.addr-item .addr-text { font-size: 14.5px; color: var(--text-1); font-weight: 600; line-height: 1.3; }
.addr-item .addr-sub { font-size: 12.5px; color: var(--text-3); margin-top: 2px; }
.addr-item .addr-text .hl { color: var(--orange); }
.addr-empty { padding: 14px 16px; font-size: 13.5px; color: var(--text-3); }

/* ── Custom field validation message (replaces native bubble) ── */
.field-error {
  display: none; align-items: center; gap: 6px;
  color: var(--red); font-size: 13px; font-weight: 600; margin-top: 7px;
}
.field-error.show { display: flex; }
.field-error::before {
  content: ''; width: 15px; height: 15px; flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23DC2626'%3E%3Cpath d='M12 2a10 10 0 100 20 10 10 0 000-20zm0 15a1.25 1.25 0 110-2.5A1.25 1.25 0 0112 17zm1-4a1 1 0 01-2 0V7a1 1 0 012 0z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ── Custom Select (styled replacement for native <select>) ── */
.cs { position: relative; }
.cs select.cs-native {
  position: absolute; opacity: 0; pointer-events: none; width: 0; height: 0;
}
.cs-trigger {
  width: 100%; padding: 13px 44px 13px 16px;
  border: 2px solid var(--border); border-radius: var(--radius-md);
  font-size: 15px; font-family: 'Manrope', 'Noto Sans KR', sans-serif;
  color: var(--text-1); background: var(--bg-white);
  text-align: left; cursor: pointer; transition: border-color .2s, box-shadow .2s;
  position: relative; display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
}
.cs-trigger:hover { border-color: var(--border-dark); }
.cs-trigger.placeholder { color: var(--text-3); }
.cs.open .cs-trigger { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(249,115,22,.15); }
.cs-trigger .cs-caret {
  flex-shrink: 0; color: var(--text-3); transition: transform .2s;
}
.cs.open .cs-trigger .cs-caret { transform: rotate(180deg); color: var(--orange); }
.cs-menu {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 35;
  background: #fff; border: 2px solid var(--border); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); padding: 6px; max-height: 280px; overflow-y: auto;
  display: none;
}
.cs.open .cs-menu { display: block; animation: dropdown-in .15s ease; }
.cs-option {
  padding: 11px 14px; border-radius: var(--radius-sm); cursor: pointer;
  font-size: 14.5px; color: var(--text-1); transition: background .12s, color .12s;
  display: flex; align-items: center; gap: 8px;
}
.cs-option:hover, .cs-option.active { background: rgba(249,115,22,.1); color: var(--orange); }
.cs-option.selected { font-weight: 700; color: var(--navy); }
.cs-option.selected::after {
  content: ''; margin-left: auto; width: 16px; height: 16px; flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F97316' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
}
.cs-option.cs-placeholder { color: var(--text-3); }
