/* ==========================================================================
   Feniks Clean Main Styles – Black / Gold Theme (Lightened v1.1.1)
   Includes patch fixes:
   - Higher contrast for primary nav "Order" button
   - Configure buttons clickable (overlay pointer-events fix)
   - Date / time picker clickable + flatpickr layering
   - Improved Configure button contrast + focus ring
   - Slight overall lightening vs original dark
   ========================================================================== */

/* 01 RESET & GLOBAL ------------------------------------------------------- */
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
html,body{
  background:#0f1419;
  min-height:100%;
  -webkit-font-smoothing:antialiased;
}
body{
  font-family:'Inter',sans-serif;
  color:#f2f4f7;
  line-height:1.55;
  overflow-x:hidden;
  background:
    radial-gradient(circle at 18% 12%,rgba(197,154,58,.08),transparent 60%),
    radial-gradient(circle at 82% 78%,rgba(197,154,58,.06),transparent 65%),
    linear-gradient(180deg,#0f1419,#131a22 55%,#10171e);
}
body.loaded{animation:fadeIn .5s}

/* 02 THEME VARIABLES ------------------------------------------------------ */
:root{
  --black-00:#0f1419;
  --black-01:#141b23;
  --black-02:#1a222c;
  --black-03:#202a35;
  --black-04:#27323f;
  --black-05:#313d4a;

  --gold:#c59a3a;
  --gold-soft:#e3c065;
  --gold-soft-rgba:rgba(197,154,58,.35);
  --gold-fade-rgba:rgba(197,154,58,.22);
  --gold-glow:0 0 0 1px rgba(197,154,58,.6),0 0 0 4px rgba(197,154,58,.25);

  --text-primary:#f5f7fa;
  --text-secondary:#d1d7de;
  --text-dim:#a4afba;

  --border-color:#313c49;
  --border-color-soft:#262f3a;
  --border-glow:rgba(197,154,58,.4);

  --grad-header:linear-gradient(90deg,#121920,#18222b 55%,#202d38);
  --grad-hero:linear-gradient(135deg,#121920,#18222b 38%,#22313f 78%);
  --grad-hero-gold:
    radial-gradient(circle at 68% 28%,rgba(197,154,58,.22),transparent 62%),
    linear-gradient(135deg,#121920,#18222b 38%,#22313f 78%);
  --grad-card:linear-gradient(145deg,#18212a,#202b36);
  --grad-card-alt:linear-gradient(145deg,#1a2430,#232f3b);
  --grad-gold-btn:linear-gradient(92deg,#c59a3a,#ebcf7a);
  --grad-gold-hover:linear-gradient(92deg,#d9ad49,#f3d887);
  --grad-outline:linear-gradient(135deg,rgba(255,255,255,.08),rgba(255,255,255,0));

  --radius-sm:6px;
  --radius-md:12px;
  --radius-lg:20px;
  --radius-xl:28px;

  --shadow-soft:0 6px 18px -8px rgba(0,0,0,.55);
  --shadow-float:0 24px 46px -18px rgba(0,0,0,.65);
  --shadow-focus:0 0 0 2px rgba(197,154,58,.7);

  --focus-ring:0 0 0 2px rgba(197,154,58,.9),0 0 0 5px rgba(197,154,58,.25);
}

/* 03 LAYOUT --------------------------------------------------------------- */
.container{max-width:1280px;margin:0 auto;padding:0 2rem}

/* 04 HEADER --------------------------------------------------------------- */
.header{
  position:fixed;top:0;left:0;width:100%;z-index:1000;
  background:var(--grad-header);
  padding:.75rem 0;
  box-shadow:0 6px 22px -10px rgba(0,0,0,.7)
}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap}
.logo{display:flex;align-items:center;gap:.65rem;color:var(--text-primary);text-decoration:none}
.logo-image{height:44px;width:auto;filter:drop-shadow(0 6px 12px rgba(0,0,0,.5))}
.logo-text h1{font-size:1.05rem;letter-spacing:.5px;font-weight:600}
.tagline{font-size:.58rem;letter-spacing:.55px;opacity:.7;text-transform:uppercase;color:var(--gold-soft)}
.nav ul{list-style:none;display:flex;gap:1.3rem;align-items:center;flex-wrap:wrap}
.nav a{
  color:var(--text-secondary);font-size:.78rem;font-weight:600;
  padding:.55rem .85rem;border-radius:14px;
  transition:.35s;text-decoration:none;position:relative
}
.nav a:hover{color:var(--text-primary);background:rgba(255,255,255,.08)}

/* CONTRAST PATCH: Order button */
.nav-order-btn{
  background:linear-gradient(92deg,#d7b254,#c59a3a);
  color:#121417;
  font-weight:700;
  text-shadow:0 1px 0 rgba(255,255,255,.35);
  border:1px solid rgba(0,0,0,.35);
  box-shadow:0 4px 10px -4px rgba(0,0,0,.55),0 0 0 1px rgba(255,255,255,.08);
  transition:.35s;
}
.nav-order-btn:hover{
  background:linear-gradient(92deg,#e4c469,#d2a84a);
  box-shadow:0 6px 16px -6px rgba(0,0,0,.65),0 0 0 1px rgba(255,255,255,.1);
  transform:translateY(-2px);
}
.nav-order-btn:focus-visible{
  outline:none;
  box-shadow:0 0 0 2px #000,0 0 0 5px rgba(197,154,58,.6);
}

.lang-switch{position:relative}
.lang-current{
  display:flex;align-items:center;gap:.45rem;
  background:#1d262f;color:var(--text-secondary);
  border:1px solid var(--border-color);
  padding:.55rem .85rem;border-radius:16px;
  font-size:.68rem;font-weight:600;cursor:pointer;
  box-shadow:var(--shadow-soft);transition:.35s
}
.lang-current:hover{color:var(--text-primary);border-color:var(--gold);box-shadow:0 6px 20px -10px var(--gold-fade-rgba)}
.lang-menu{
  position:absolute;right:0;top:calc(100% + .45rem);
  background:#161e25;border:1px solid var(--border-color);
  border-radius:16px;list-style:none;padding:.4rem 0;min-width:160px;
  box-shadow:0 24px 50px -18px rgba(0,0,0,.75);display:none;z-index:1500
}
.lang-menu.show{display:block;animation:fadeInMenu .25s}
.lang-menu li{
  display:flex;align-items:center;gap:.55rem;
  padding:.55rem .85rem;font-size:.68rem;font-weight:500;
  color:var(--text-secondary);cursor:pointer;transition:.22s;
  border-bottom:1px solid rgba(255,255,255,.05)
}
.lang-menu li:last-child{border-bottom:none}
.lang-menu li:hover,.lang-menu li:focus{background:#202b35;color:var(--text-primary)}
.flag,.lang-flag{font-size:1rem}

/* 05 HERO --------------------------------------------------------------- */
.hero{
  padding:7.8rem 0 5rem;position:relative;color:var(--text-primary);
  overflow:hidden;background:var(--grad-hero)
}
.hero-gold{background:var(--grad-hero-gold)}
.hero-content{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center}
.hero-text h2{
  font-size:2.8rem;line-height:1.08;font-weight:700;
  background:linear-gradient(90deg,#ffffff,#ffe7b6 58%,#f8d98c);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;
  margin-bottom:1.25rem;letter-spacing:.5px
}
.hero-text p{font-size:1.1rem;opacity:.8;margin-bottom:2rem;max-width:560px;color:var(--text-secondary)}
.hero-buttons{display:flex;gap:1rem;flex-wrap:wrap}
.btn{
  display:inline-flex;align-items:center;gap:.55rem;
  font-weight:600;letter-spacing:.4px;font-size:.8rem;
  border:none;cursor:pointer;padding:.85rem 1.45rem;
  border-radius:16px;transition:.4s;text-decoration:none
}
.btn-primary{
  background:var(--grad-gold-btn);color:#1e2126;
  box-shadow:0 16px 34px -14px var(--gold-fade-rgba)
}
.btn-primary:hover{background:var(--grad-gold-hover);transform:translateY(-4px)}
.btn-outline{
  background:rgba(255,255,255,.09);color:var(--text-primary);
  border:1px solid rgba(255,255,255,.18)
}
.btn-outline:hover{background:rgba(255,255,255,.16)}
.hero-stats{display:flex;gap:1.15rem;margin-top:2rem;flex-wrap:wrap}
.stat{
  flex:1;min-width:140px;
  background:linear-gradient(135deg,rgba(255,255,255,.09),rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;padding:1.05rem .85rem;text-align:center;
  transition:.45s;backdrop-filter:blur(10px)
}
.stat:hover{transform:translateY(-6px);border-color:var(--gold-fade-rgba)}
.stat-number{font-size:1.9rem;font-weight:700;background:linear-gradient(90deg,#fff,#ffe5aa);-webkit-background-clip:text;-webkit-text-fill-color:transparent}
.stat-label{font-size:.6rem;letter-spacing:.55px;text-transform:uppercase;font-weight:600;color:var(--text-dim)}
.cleaning-showcase{position:relative;height:380px}
.showcase-card{
  position:absolute;background:rgba(255,255,255,.1);
  backdrop-filter:blur(12px);border:1px solid rgba(255,255,255,.18);
  border-radius:20px;padding:1rem;width:190px;
  animation:float 6s ease-in-out infinite;color:var(--text-secondary)
}
.showcase-card-1{top:0;left:0}
.showcase-card-2{top:60px;right:0;animation-delay:1s}
.showcase-card-3{bottom:0;left:60px;animation-delay:2s}
.card-icon{
  width:46px;height:46px;background:rgba(255,255,255,.18);
  border-radius:14px;display:flex;align-items:center;justify-content:center;
  margin-bottom:.7rem;color:var(--gold-soft)
}
.central-circle{
  position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);
  width:160px;height:160px;border-radius:50%;
  background:radial-gradient(circle at 35% 35%,#2a3541,#161e26 78%);
  display:flex;align-items:center;justify-content:center;
  animation:pulse 7.5s infinite;
  box-shadow:0 0 0 10px rgba(255,255,255,.06),0 0 42px -10px rgba(197,154,58,.36) inset
}
.gold-core{background:radial-gradient(circle at 35% 35%,#d0aa4d,#34414d 78%)}
.circle-content{display:flex;flex-direction:column;align-items:center;font-size:.8rem;font-weight:600;text-transform:uppercase;color:var(--gold-soft)}

.floating-shapes .shape{
  position:absolute;background:radial-gradient(circle at 30% 30%,rgba(197,154,58,.32),rgba(197,154,58,0) 70%);
  border-radius:50%;filter:blur(3px);animation:float 8s ease-in-out infinite;opacity:.18
}
.shape-1{width:160px;height:160px;top:12%;left:8%}
.shape-2{width:240px;height:240px;bottom:10%;right:8%;animation-delay:2s}
.shape-3{width:120px;height:120px;bottom:30%;left:22%;animation-delay:1s}
.shape-4{width:180px;height:180px;top:8%;right:25%;animation-delay:3s}

/* 06 SERVICES ------------------------------------------------------------- */
.services{
  padding:5.5rem 0 4.2rem;
  background:
    radial-gradient(circle at 85% 20%,rgba(197,154,58,.12),transparent 65%),
    linear-gradient(135deg,#12181e,#1a232c 55%,#1d2832)
}
.section-header{text-align:center;margin-bottom:2.7rem}
.section-header h2{
  font-size:2.25rem;font-weight:700;
  background:linear-gradient(90deg,var(--gold),#fff);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;
  margin-bottom:.75rem
}
.section-header p{color:var(--text-secondary);font-size:.95rem}
.services-category-tabs{display:flex;justify-content:center;gap:.8rem;flex-wrap:wrap;margin-bottom:1.7rem}
.category-tab{
  background:#182028;border:1px solid var(--border-color);color:var(--text-secondary);
  padding:.72rem 1.35rem;font-size:.7rem;font-weight:600;
  border-radius:40px;cursor:pointer;transition:.35s;position:relative
}
.category-tab.active,.category-tab:hover{
  background:linear-gradient(90deg,#2c3642,#4b3a20);
  color:var(--gold-soft);border-color:var(--gold-fade-rgba);
  box-shadow:0 10px 30px -14px rgba(0,0,0,.6)
}
.services-dynamic-grid{
  display:grid;grid-template-columns:repeat(auto-fill,minmax(250px,1fr));
  gap:1.45rem
}
.service-card{
  background:var(--grad-card);
  border:1px solid var(--border-color);
  border-radius:24px;
  padding:1.25rem 1.25rem 1.3rem;
  display:flex;flex-direction:column;
  /* overflow:visible allows tooltips to extend beyond card boundaries */
  position:relative;overflow:visible;transition:.45s
}
/* PATCH: overlay must not block clicks */
.service-card:before{
  content:"";position:absolute;inset:0;
  background:linear-gradient(145deg,rgba(255,255,255,.08),rgba(255,255,255,0));
  opacity:0;transition:.5s;
  pointer-events:none;
  border-radius:inherit;
}
.service-card:hover{
  transform:translateY(-7px);
  box-shadow:var(--shadow-float);
  border-color:var(--gold-fade-rgba)
}
.service-card:hover:before{opacity:1}
.service-card h3{font-size:.97rem;font-weight:600;color:var(--text-primary);margin-bottom:.45rem}
.service-desc{font-size:.74rem;color:var(--text-dim);margin-bottom:.65rem;line-height:1.5;flex:1}
.icon-wrap{
  width:52px;height:52px;border-radius:16px;
  background:linear-gradient(135deg,#31404d,#4c3a1e);
  display:flex;align-items:center;justify-content:center;
  color:var(--gold-soft);font-size:1.25rem;margin-bottom:.7rem;
  box-shadow:0 8px 18px -8px rgba(0,0,0,.55),0 0 0 1px rgba(197,154,58,.3)
}
.icon-wrap .icon-img{width:48px;height:48px;object-fit:contain}
.price-badge{
  background:#1d252d;border:1px solid #2f3944;color:var(--gold-soft);
  font-size:.6rem;padding:.38rem .65rem;border-radius:30px;
  font-weight:600;display:inline-flex;gap:.35rem;align-items:center;
  margin-bottom:.35rem
}
.card-actions{display:flex;align-items:center;justify-content:space-between;margin-top:.55rem}
/* BUTTON STACK: ensure on top */
.add-btn,
.configure-btn,
.solid-add{position:relative;z-index:2}

/* Configure + general action buttons */
.add-btn{
  background:linear-gradient(90deg,#47381e,#c59a3a);
  color:#fff;border:1px solid rgba(197,154,58,.45);
  border-radius:12px;font-size:.56rem;font-weight:600;
  padding:.55rem .95rem;display:inline-flex;gap:.45rem;align-items:center;
  cursor:pointer;transition:.3s;text-decoration:none
}
.add-btn:hover{filter:brightness(1.08);box-shadow:0 8px 26px -12px var(--gold-fade-rgba)}
.add-btn:focus-visible{outline:none;box-shadow:var(--focus-ring)}

/* PATCH: High contrast configure button */
.configure-btn{
  background:linear-gradient(90deg,#5a4728,#caa24b);
  border:1px solid rgba(197,154,58,.55);
  color:#fff;
  font-size:.58rem;
  font-weight:600;
  padding:.55rem .95rem;
  border-radius:14px;
  display:inline-flex;align-items:center;gap:.45rem;
  cursor:pointer;transition:.3s;
  box-shadow:0 4px 14px -6px rgba(0,0,0,.55),0 0 0 1px rgba(197,154,58,.25)
}
.configure-btn:hover{
  filter:brightness(1.08);
  box-shadow:0 6px 18px -8px rgba(0,0,0,.6),0 0 0 1px rgba(197,154,58,.35);
}
.configure-btn:focus-visible{
  outline:none;
  box-shadow:0 0 0 2px #000,0 0 0 5px rgba(197,154,58,.55);
}

.services-footer-cta{text-align:center;margin-top:1.5rem}

/* 07 ABOUT --------------------------------------------------------------- */
.minimal-about{
  background:linear-gradient(135deg,#151c23,#1d2630 55%,#202b36);
  padding:5.7rem 0 4.7rem
}
.about-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:1.4rem;margin-bottom:2.3rem}
.about-block{
  background:var(--grad-card-alt);
  border:1px solid var(--border-color);
  border-radius:24px;padding:1.4rem 1.5rem;display:flex;flex-direction:column;
  box-shadow:var(--shadow-soft)
}
.about-block h3{font-size:.92rem;color:var(--gold-soft);margin-bottom:.6rem}
.about-block p,.about-block li{font-size:.72rem;line-height:1.52;color:var(--text-dim)}
.check-list{list-style:none;display:grid;gap:.4rem}
.check-list li{position:relative;padding-left:1.1rem}
.check-list li::before{content:"✓";color:var(--gold);font-weight:700;position:absolute;left:0}
.process-steps{counter-reset:step;list-style:none;display:grid;gap:.5rem;padding:0}
.process-steps li{
  position:relative;padding-left:1.3rem;font-size:.7rem;color:var(--text-dim)
}
.process-steps li::before{
  counter-increment:step;content:counter(step);
  position:absolute;left:0;top:0;width:.9rem;height:.9rem;
  background:linear-gradient(135deg,#4a3a1e,#c59a3a);
  color:#fff;font-size:.56rem;display:flex;align-items:center;justify-content:center;
  border-radius:5px;font-weight:600
}
.guarantees{display:flex;flex-wrap:wrap;gap:.8rem}
.g-item{
  flex:1 1 150px;background:#1d252e;border:1px solid #2d3742;
  border-radius:18px;padding:.6rem .75rem;display:flex;
  align-items:center;gap:.55rem;font-size:.63rem;font-weight:600;
  color:var(--gold-soft)
}
.g-item i{font-size:.8rem;color:var(--gold-soft)}
.small-note{font-size:.55rem;color:var(--text-dim);margin-top:.9rem}

/* 09 FOOTER -------------------------------------------------------------- */
.footer{
  background:#0c1115;
  color:var(--text-secondary);padding:3.6rem 0 1.5rem;
  border-top:1px solid #1f2932;
  box-shadow:0 -8px 34px -18px rgba(0,0,0,.65) inset
}
.footer-content{display:grid;grid-template-columns:1fr 1fr;gap:2.2rem}
.footer h3{font-size:1.28rem;margin-bottom:.75rem;font-weight:600;color:var(--gold)}
.footer p{font-size:.7rem;line-height:1.52;color:var(--text-dim)}
.footer-bottom{display:flex;align-items:center;justify-content:center;gap:1.5rem;flex-wrap:wrap;text-align:center;margin-top:1.5rem;font-size:.6rem;opacity:.65;color:var(--text-secondary)}
.footer-social{display:flex;gap:.8rem}
.footer-social .social-link{display:inline-flex;align-items:center;justify-content:center;width:2rem;height:2rem;border-radius:50%;background:rgba(197,154,58,.15);color:var(--gold);transition:all .3s ease;border:1px solid rgba(197,154,58,.3)}
.footer-social .social-link:hover{background:var(--gold);color:var(--black-00);transform:translateY(-2px);box-shadow:0 4px 12px rgba(197,154,58,.4)}

/* 10 ORDER PAGE ---------------------------------------------------------- */
.order-body .header{position:sticky}
.order-container{display:grid;grid-template-columns:3fr 1fr;gap:1.8rem;margin-top:7.2rem}
.order-title{font-size:1.85rem;margin-bottom:.45rem;color:var(--gold-soft);font-weight:600}
.order-sub{font-size:.82rem;color:var(--text-dim);margin-bottom:1.25rem}
.order-grid .service-card{padding:1.05rem}
.order-cart{
  position:sticky;top:7rem;
  background:#1b242d;
  border:1px solid var(--border-color);
  border-radius:26px;padding:1.3rem 1.15rem;display:flex;flex-direction:column;
  gap:1rem;height:fit-content;max-height:calc(100vh - 9rem);
  box-shadow:var(--shadow-soft)
}
.order-cart h2{font-size:.9rem;color:var(--gold);margin:0 0 .15rem;font-weight:600}
#cartItems{display:flex;flex-direction:column;gap:.65rem}
.cart-item{
  background:#212b35;border:1px solid #2f3944;border-radius:16px;
  padding:.6rem .65rem;font-size:.6rem;
  display:grid;grid-template-columns:1fr auto auto;align-items:center;gap:.45rem
}
.cart-item h4{font-size:.62rem;margin:0;font-weight:600;color:var(--gold-soft)}
.qty-mini{display:flex;align-items:center;gap:.4rem}
.qty-mini button{
  width:24px;height:24px;border:none;background:linear-gradient(135deg,#364350,#52401f);
  color:var(--gold-soft);border-radius:7px;cursor:pointer;font-size:.58rem;
  font-weight:600;transition:.25s
}
.qty-mini button:hover{filter:brightness(1.17)}
.remove-mini{
  background:#4a2b26;color:#ffc2b9;border:none;
  width:24px;height:24px;border-radius:7px;cursor:pointer;
  font-weight:700;font-size:.6rem;transition:.25s
}
.remove-mini:hover{background:#5d342c}
.line-meta{
  grid-column:1/-1;font-size:.55rem;display:flex;
  justify-content:space-between;margin-top:.15rem;color:var(--text-dim)
}
.cart-totals{
  font-size:.63rem;background:#212a33;border:1px solid #303b48;
  border-radius:16px;padding:.65rem .75rem;display:flex;
  flex-direction:column;gap:.3rem;color:var(--text-secondary)
}
.order-form{display:flex;flex-direction:column;gap:.65rem}
.order-form label{
  display:flex;flex-direction:column;gap:.28rem;
  font-size:.58rem;font-weight:600;color:var(--gold-soft);
  letter-spacing:.5px;text-transform:uppercase
}
.order-form input,.order-form textarea{
  border:2px solid #303b48;border-radius:14px;
  padding:.65rem .75rem;font-size:.7rem;
  outline:none;transition:.3s;font-family:inherit;background:#161f27;
  color:var(--text-primary);cursor:text;
}
.order-form input:focus,.order-form textarea:focus{
  border-color:var(--gold);box-shadow:var(--focus-ring)
}
.full-width{width:100%}

/* PATCH: date/time field clickable */
.order-form input[type="date"]::-webkit-calendar-picker-indicator,
.order-form input[type="datetime-local"]::-webkit-calendar-picker-indicator,
.order-form input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(78%) sepia(64%) saturate(420%) hue-rotate(355deg) brightness(1.05) contrast(0.95);
  opacity: .95;
  cursor: pointer;
}
.order-form input::-webkit-calendar-picker-indicator{
  filter:invert(0) brightness(1.25);
  opacity:.9;
  cursor:pointer;
}

/* flatpickr (optional) */
.flatpickr-calendar{
  z-index:6500 !important;
  box-shadow:0 18px 40px -12px rgba(0,0,0,.55),0 0 0 1px rgba(197,154,58,.2);
  border:1px solid #303b48 !important;
  background:#1c252e !important;
  color:#f2f4f7 !important;
}
.flatpickr-day{color:#d1d7de;font-weight:500}
.flatpickr-day.today{
  border-color:var(--gold);
  color:#fff;
  background:linear-gradient(135deg,#4a3a1e,#c59a3a);
}
.flatpickr-day.selected{
  background:linear-gradient(135deg,#c59a3a,#e1c065);
  color:#1e2226;
  font-weight:600;
}

.privacy-box{
  margin-top:.95rem;display:flex;gap:.75rem;
  background:#1d262f;
  border:1px solid #2f3944;border-radius:18px;
  padding:.65rem .75rem;align-items:flex-start;
  position:relative;box-shadow:0 8px 24px -14px rgba(0,0,0,.5)
}
.privacy-icon{
  width:34px;height:34px;border-radius:12px;
  background:linear-gradient(135deg,#4a3a1e,#c59a3a);
  color:#fff;display:flex;align-items:center;justify-content:center;
  font-size:.85rem;box-shadow:0 6px 14px -6px rgba(0,0,0,.55)
}
.privacy-text{font-size:.6rem;line-height:1.4;color:var(--text-secondary);font-weight:500}

/* 11 CONFIG OVERLAY ------------------------------------------------------ */
.service-card.no-shift{position:relative;min-height:300px;padding-bottom:1.4rem}
.config-flyout{
  position:absolute;inset:0;background:rgba(14,19,25,.86);
  backdrop-filter:blur(8px);border-radius:inherit;
  display:flex;align-items:center;justify-content:center;
  opacity:0;pointer-events:none;transition:.35s;padding:.9rem;z-index:40
}
.config-flyout.open{opacity:1;pointer-events:auto}
.config-panel{
  background:#182128;border:1px solid #303b48;border-radius:18px;
  padding:1rem 1.05rem 1.1rem;width:100%;display:flex;
  flex-direction:column;gap:.85rem;box-shadow:var(--shadow-float)
}
.cfg-head{display:flex;justify-content:space-between;align-items:center}
.cfg-title{
  font-size:.72rem;font-weight:600;letter-spacing:.55px;
  text-transform:uppercase;color:var(--gold-soft)
}
.cfg-close{
  background:#222b34;border:1px solid #333f4c;
  width:34px;height:34px;border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;color:var(--text-secondary);font-size:.8rem;transition:.25s
}
.cfg-close:hover{background:#2b3640;color:var(--text-primary);border-color:var(--gold-fade-rgba)}
.cfg-field{display:flex;flex-direction:column;gap:.3rem}
.cfg-field span{
  font-size:.55rem;font-weight:600;letter-spacing:.45px;
  color:var(--gold-soft);text-transform:uppercase
}
.cfg-input{
  border:2px solid #303b48;border-radius:12px;
  padding:.5rem .6rem;font-size:.62rem;font-family:inherit;
  transition:.25s;background:#161e26;color:var(--text-primary)
}
.cfg-input:focus{border-color:var(--gold);outline:none;box-shadow:var(--focus-ring)}
.hint-line{font-size:.52rem;color:var(--text-dim)}
.cfg-actions{display:flex;gap:.55rem;flex-wrap:wrap}
.solid-add{
  background:linear-gradient(90deg,#4a3a1e,#c59a3a);color:#fff;
  border:none;font-size:.58rem;font-weight:600;
  padding:.55rem .85rem;border-radius:12px;
  display:inline-flex;align-items:center;gap:.45rem;cursor:pointer
}
.solid-add:hover{filter:brightness(1.08)}
.ghost-btn{
  background:#222b34;border:1px solid #333f4c;color:var(--text-secondary);
  font-size:.58rem;font-weight:600;padding:.55rem .85rem;
  border-radius:12px;cursor:pointer;display:inline-flex;align-items:center;gap:.4rem
}
.ghost-btn:hover{background:#2b3640;color:var(--text-primary)}
.meta-line{display:flex;flex-direction:column;gap:.45rem;margin:.9rem 0 .8rem}
.price-pill,.billing-pill{
  background:#222b34;border:1px solid #333f4c;font-size:.58rem;
  font-weight:600;padding:.4rem .65rem;border-radius:30px;
  display:inline-flex;align-items:center;gap:.35rem;color:var(--gold-soft)
}
.flat-note{font-size:.55rem;color:var(--text-dim)}

/* 12 CONTACT PAGE -------------------------------------------------------- */
.contact-full-wrapper{padding:7.5rem 0 4.5rem}
.contact-full{display:grid;grid-template-columns:1fr 1fr;gap:2rem}
.glass-card{
  background:linear-gradient(135deg,#1c252d,#25323d);
  border:1px solid #31404d;border-radius:30px;
  padding:2rem 1.8rem;color:var(--text-secondary);
  box-shadow:var(--shadow-soft)
}
.white-elevated{
  background:#1a232b;border:1px solid #2f3944;border-radius:34px;
  padding:2rem 2rem 2.3rem;box-shadow:var(--shadow-soft)
}
.contact-list{list-style:none;margin:1rem 0 1.4rem;padding:0;display:grid;gap:.6rem}
.contact-list li{
  display:flex;gap:.75rem;align-items:flex-start;
  font-size:.68rem;line-height:1.4;color:var(--text-secondary)
}
.contact-list li i{
  background:linear-gradient(135deg,#4a3a1e,#c59a3a);color:#fff;width:32px;height:32px;
  border-radius:10px;display:flex;align-items:center;justify-content:center;font-size:.8rem
}
.contact-full-form form label{
  display:flex;flex-direction:column;gap:.35rem;
  font-size:.6rem;font-weight:600;letter-spacing:.45px;
  text-transform:uppercase;color:var(--gold-soft);margin-bottom:.6rem
}
.contact-full-form form input,.contact-full-form form textarea{
  border:2px solid #303b48;border-radius:14px;padding:.6rem .7rem;font-size:.65rem;font-family:inherit;background:#161e26;color:var(--text-primary)
}
.contact-full-form form input:focus,
.contact-full-form form textarea:focus{border-color:var(--gold);box-shadow:var(--focus-ring)}
.two{display:grid;grid-template-columns:1fr 1fr;gap:.75rem}
.mini-cta{margin-top:.5rem}
.btn.slim{padding:.6rem 1.2rem;font-size:.65rem;border-radius:14px}

/* 13 ACCESSIBILITY / LINKS ---------------------------------------------- */
a:focus-visible,button:focus-visible{outline:none;box-shadow:var(--focus-ring)}
.add-btn,.add-btn:link,.add-btn:visited{text-decoration:none}
.add-btn:hover,.add-btn:focus{text-decoration:none}
/* Contact page Facebook link - no underline, no color change */
.contact-list a{text-decoration:none;color:inherit}
.contact-list a:hover{text-decoration:none;color:inherit}
.contact-list a:active{text-decoration:none;color:inherit}
.contact-list a:visited{text-decoration:none;color:inherit}

/* 14 TOAST --------------------------------------------------------------- */
#globalToast{pointer-events:none}

/* 15 RESPONSIVE ---------------------------------------------------------- */
@media (max-width:1100px){
  .hero-content{grid-template-columns:1fr}
  .cleaning-showcase{display:none}
  .order-container{grid-template-columns:1fr}
  .order-cart{position:relative;top:0;max-height:none;order:-1}
  .contact-full{grid-template-columns:1fr}
}
@media (max-width:760px){
  .header-inner{flex-wrap:wrap}
  .nav ul{flex-wrap:wrap;justify-content:center}
  .hero-text h2{font-size:2.35rem}
  .services-dynamic-grid{grid-template-columns:repeat(auto-fill,minmax(210px,1fr))}
  .order-title{font-size:1.6rem}
}
@media (max-width:520px){
  .services-dynamic-grid{grid-template-columns:repeat(auto-fill,minmax(170px,1fr))}
  .hero{text-align:center}
  .hero-buttons{justify-content:center}
  .order-container{margin-top:7.7rem}
}

/* 16 ANIMATIONS ---------------------------------------------------------- */
@keyframes fadeIn{from{opacity:0}to{opacity:1}}
@keyframes fadeInMenu{from{opacity:0;transform:translateY(-6px)}to{opacity:1;transform:translateY(0)}}
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-18px)}}
@keyframes pulse{0%,100%{box-shadow:0 0 0 0 rgba(197,154,58,.4)}50%{box-shadow:0 0 0 32px rgba(197,154,58,0)}}

/* 17 TOOLTIP FOR LONG DESCRIPTIONS --------------------------------------- */
.desc-tooltip-wrapper{
  display:inline-flex;
  align-items:center;
  gap:.35rem;
  position:relative;
}
.desc-info-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:16px;
  height:16px;
  border-radius:50%;
  background:var(--gold-soft-rgba);
  color:var(--gold-soft);
  font-size:.65rem;
  font-weight:600;
  cursor:help;
  position:relative;
  flex-shrink:0;
}
/* Hide the inner tooltip element - it's only used as source for text */
.desc-info-icon .desc-tooltip{
  display: none !important;
}
/* Tooltip styles for body-rendered elements */
.desc-tooltip{
  position: fixed;
  bottom: auto;
  left: auto;
  transform: none;
  background: rgba(27, 50, 71, 0.95);
  color: var(--text-primary);
  padding: .55rem .75rem;
  border-radius: 10px;
  font-size: .68rem;
  line-height: 1.4;
  white-space: normal;
  width: 280px;
  max-width: 280px;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .15s ease, visibility .15s ease;
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 24px rgba(0,0,0,.45);
}
.desc-tooltip::after{
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: rgba(27, 50, 71, 0.95);
}
.js-desc-tooltip-visible{
  opacity: 0.95 !important;
  visibility: visible !important;
  pointer-events: auto;
}
.desc-info-icon { cursor: help; }

@media (prefers-reduced-motion:reduce){*{animation:none!important;transition:none!important}}
