:root {
  --bg-primary: #0f172a;
  --bg-secondary: #1c2742;
  --bg-tertiary: #121d36;
  --accent-red: #d72638;
  --accent-cyan: #00f5ff;
  --accent-purple: #7c3aed;
  --accent-saffron: #ff9f1c;
  --accent-green: #43d17a;
  --accent-blue: #3b82f6;
  --text-main: #eef6ff;
  --text-soft: #b6c3d9;
  --text-muted: #7d8aa6;
  --glass: rgba(255, 255, 255, 0.08);
  --glass-strong: rgba(255, 255, 255, 0.12);
  --border: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(255, 255, 255, 0.2);
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 18px 40px rgba(7, 12, 24, 0.35);
  --shadow-glow: 0 0 0 1px rgba(255, 255, 255, 0.03), 0 0 40px rgba(0, 245, 255, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max-main: 1200px;
  --transition: 220ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Poppins", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at top left, rgba(255, 159, 28, 0.24), transparent 24%),
    radial-gradient(circle at top right, rgba(0, 245, 255, 0.16), transparent 22%),
    radial-gradient(circle at bottom center, rgba(67, 209, 122, 0.14), transparent 20%),
    linear-gradient(135deg, #0f172a, #1c2742);
  overflow-x: hidden;
}

.notice-bar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 46px;
  padding: 8px 16px;
  background: linear-gradient(90deg, #b91c1c, #ea580c, #f59e0b, #15803d);
  color: #fff8e7;
  text-align: center;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

.notice-bar p {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.notice-close {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 0.85rem;
}

.ka-strip {
  position: sticky;
  top: 46px;
  z-index: 39;
  height: 5px;
  background: linear-gradient(90deg, #d72638 0 33%, #ffd23f 33% 66%, #15803d 66% 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.app-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.mesh,
.grid-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(24px);
}

.mesh-a {
  width: 34rem;
  height: 34rem;
  top: -10rem;
  left: -8rem;
  background: rgba(255, 159, 28, 0.18);
  animation: drift 16s ease-in-out infinite;
}

.mesh-b {
  width: 28rem;
  height: 28rem;
  top: 10rem;
  right: -8rem;
  background: rgba(0, 245, 255, 0.16);
  animation: drift 18s ease-in-out infinite reverse;
}

.mesh-c {
  width: 30rem;
  height: 30rem;
  bottom: -12rem;
  left: 36%;
  background: rgba(67, 209, 122, 0.12);
  animation: drift 20s ease-in-out infinite;
}

.grid-glow {
  inset: 12% 10%;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.28;
  filter: none;
}

.particles {
  position: absolute;
  inset: 0;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 12px rgba(0, 245, 255, 0.4);
  animation: floatParticle linear infinite;
}

.app-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 24px;
  width: min(calc(100% - 32px), 1480px);
  margin: 0 auto;
  padding: 18px 16px 96px;
}

.app-main {
  width: 100%;
  max-width: var(--max-main);
}

.glass {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, rgba(255, 159, 28, 0.04), rgba(59, 130, 246, 0.05));
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow-glow), var(--shadow-md);
}

.soft-panel {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 18px 35px rgba(0, 0, 0, 0.18);
}

.soft-panel::after,
.service-card::after,
.btn::after,
.metric-card::after,
.accordion-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.18), transparent 55%);
  opacity: 0;
  transform: translateX(-120%);
  transition: transform 600ms ease, opacity 300ms ease;
  pointer-events: none;
}

.soft-panel:hover::after,
.service-card:hover::after,
.btn:hover::after,
.metric-card:hover::after,
.accordion-panel:hover::after {
  opacity: 1;
  transform: translateX(120%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: #ffd77b;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-red), var(--accent-saffron), var(--accent-green));
  box-shadow: 0 0 12px rgba(255, 159, 28, 0.7);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 14px 32px rgba(0, 0, 0, 0.28);
}

.brand strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
}

.brand span {
  color: var(--text-soft);
  font-size: 0.82rem;
}

.sidebar {
  position: sticky;
  top: 72px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px;
  height: calc(100vh - 48px);
}

.sidebar-nav,
.mini-list,
.info-stack,
.booking-details,
.modal-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-link,
.contact-chip,
.mobile-menu a {
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--text-soft);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.sidebar-link:hover,
.sidebar-link.active,
.contact-chip:hover,
.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
  transform: translateX(4px);
}

.sidebar-card {
  padding: 18px;
}

.sidebar-card h3 {
  margin: 0 0 14px;
  font-size: 1.1rem;
  line-height: 1.5;
}

.mini-list {
  padding-left: 18px;
  color: var(--text-soft);
  margin: 0;
}

.topbar {
  position: sticky;
  top: 72px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  background:
    linear-gradient(90deg, rgba(183, 28, 28, 0.22), rgba(245, 158, 11, 0.1), rgba(21, 128, 61, 0.12)),
    rgba(18, 29, 54, 0.82);
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-nav a,
.bottom-link {
  position: relative;
  padding: 10px 14px;
  border-radius: 14px;
  color: var(--text-soft);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.top-nav a:hover,
.top-nav a.active,
.bottom-link:hover,
.bottom-link.active {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.menu-btn {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.menu-btn span {
  width: 18px;
  height: 2px;
  background: var(--text-main);
  border-radius: 999px;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-btn:hover,
.menu-btn[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-strong);
}

.menu-btn[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-btn[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  left: 0;
  display: none;
  padding: 16px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(16, 24, 43, 0.96), rgba(24, 37, 66, 0.94)),
    linear-gradient(135deg, rgba(255, 159, 28, 0.08), rgba(59, 130, 246, 0.08));
  box-shadow: 0 22px 50px rgba(3, 8, 20, 0.4);
}

.mobile-menu.open {
  display: grid;
  gap: 14px;
}

.mobile-menu-head strong {
  display: block;
  font-size: 1rem;
  line-height: 1.3;
}

.mobile-menu-head .eyebrow {
  margin-bottom: 10px;
}

.mobile-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.mobile-menu a {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.mobile-menu-cta {
  min-height: 52px;
  border-radius: 16px;
  font-weight: 700;
  color: #08111f;
  background: linear-gradient(135deg, #ffd77b, #43d17a);
  box-shadow: 0 12px 24px rgba(67, 209, 122, 0.24);
}

.mobile-menu-cta:hover {
  color: #08111f;
  background: linear-gradient(135deg, #ffe7aa, #66e08f);
  transform: translateY(-1px);
}

.hero,
.section-card,
.contact-strip,
.panel-card,
.booking-card {
  position: relative;
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 28px;
  margin-top: 24px;
  padding: 32px;
  background:
    radial-gradient(circle at top right, rgba(255, 159, 28, 0.18), transparent 28%),
    radial-gradient(circle at bottom left, rgba(215, 38, 56, 0.14), transparent 32%),
    linear-gradient(135deg, rgba(14, 23, 45, 0.88), rgba(23, 38, 70, 0.88));
}

.hero h1,
.section-head h2,
.panel-card h2,
.booking-card h2,
.contact-strip h2,
.modal-head h3 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  max-width: 12ch;
}

.headline-gold {
  color: #ffd24a;
}

.headline-red {
  color: #ff7a6e;
}

.hero-text,
.panel-card p,
.modal-copy {
  color: var(--text-soft);
  line-height: 1.75;
}

.hero-actions,
.contact-actions,
.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-ribbon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 8px;
}

.hero-ribbon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(255, 159, 28, 0.18), rgba(67, 209, 122, 0.14));
  color: var(--text-main);
  font-size: 0.82rem;
  font-weight: 600;
}

.shop-board {
  display: grid;
  gap: 6px;
  margin: 18px 0 8px;
  padding: 16px 18px;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(183, 28, 28, 0.2), rgba(245, 158, 11, 0.16), rgba(21, 128, 61, 0.14)),
    rgba(255, 255, 255, 0.06);
}

.shop-board strong {
  font-size: 0.98rem;
  color: #fff2cf;
}

.shop-board span {
  color: var(--text-soft);
  line-height: 1.7;
  font-size: 0.88rem;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-2px) scale(1.03);
}

.btn-primary {
  color: #fffaf1;
  background: linear-gradient(135deg, #c1121f, #f97316 52%, #ffd166);
  box-shadow: 0 16px 30px rgba(201, 42, 42, 0.24);
}

.btn-secondary {
  color: var(--text-main);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(67, 209, 122, 0.14));
  border-color: rgba(255, 214, 102, 0.24);
}

.full-width {
  width: 100%;
}

.hero-metrics,
.profile-grid,
.booking-layout,
.calculator-grid,
.modal-grid {
  display: grid;
  gap: 16px;
}

.hero-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
}

.metric-card {
  position: relative;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, rgba(215, 38, 56, 0.1), rgba(255, 159, 28, 0.08), rgba(67, 209, 122, 0.06));
}

.metric-card strong {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.metric-card span {
  color: var(--text-soft);
  font-size: 0.88rem;
}

.hero-stage {
  display: flex;
  align-items: center;
  justify-content: center;
}

.device-card {
  width: min(100%, 360px);
  padding: 18px;
  border-radius: 30px;
  transform-style: preserve-3d;
}

.float-card {
  animation: hoverFloat 5s ease-in-out infinite;
}

.device-top {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.dot.cyan {
  background: var(--accent-cyan);
}

.dot.violet {
  background: var(--accent-purple);
}

.dot.white {
  background: rgba(255, 255, 255, 0.8);
}

.device-screen {
  display: grid;
  gap: 14px;
}

.screen-pill {
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-soft);
  font-size: 0.8rem;
}

.screen-board {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.screen-board span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff0b2;
  font-size: 0.72rem;
  font-weight: 600;
}

.screen-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.screen-card strong,
.service-card h3,
.accordion-summary strong,
.info-tile strong,
.stat-row strong {
  display: block;
  margin-bottom: 4px;
}

.screen-card span,
.service-card p,
.accordion-summary span,
.info-tile span,
.stat-row span,
.estimate-card p {
  color: var(--text-soft);
}

.screen-badge {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(215, 38, 56, 0.22), rgba(255, 159, 28, 0.2), rgba(67, 209, 122, 0.2));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  color: var(--text-main);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.profile-grid {
  grid-template-columns: 1.2fr 0.8fr;
  margin-top: 24px;
}

.panel-card,
.booking-card,
.section-card,
.contact-strip {
  padding: 28px;
}

.stat-row strong {
  color: #ffd77b;
}

.stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-row:last-child {
  border-bottom: 0;
}

.section-card {
  margin-top: 24px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.section-head h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
}

.search-shell {
  min-width: min(100%, 320px);
}

.search-shell input,
.field input,
.field select,
.field textarea {
  width: 100%;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  padding: 15px 16px;
  outline: none;
  transition: border-color var(--transition), transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.search-shell input:focus,
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(0, 245, 255, 0.45);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 4px rgba(0, 245, 255, 0.08);
}

.field textarea {
  resize: vertical;
}

.accordion-list {
  display: grid;
  gap: 16px;
}

.accordion-panel {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.04));
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.accordion-panel:hover,
.service-card:hover {
  transform: translateY(-2px) scale(1.01);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-lg);
}

.accordion-panel[open] {
  border-color: rgba(0, 245, 255, 0.24);
}

.accordion-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  list-style: none;
}

.accordion-summary::-webkit-details-marker {
  display: none;
}

.summary-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.summary-icon,
.service-icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(215, 38, 56, 0.22), rgba(255, 159, 28, 0.2), rgba(67, 209, 122, 0.16));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.summary-count {
  color: #ffd77b;
  font-size: 0.82rem;
  font-weight: 600;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 0 22px 22px;
}

.service-card{
  position: relative;
  display: grid;
  gap: 14px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  backdrop-filter: blur(20px);
  transition: all 0.4s ease;
  overflow: hidden;
}

/* Glow effect */
.service-card::before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at top left, rgba(255,215,0,0.2), transparent);
  opacity:0;
  transition:0.4s;
}

.service-card:hover::before{
  opacity:1;
}

.service-card:hover{
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 0 60px rgba(255,215,0,0.15);
  border-color: rgba(255,215,0,0.4);
}
.service-head {
  display: flex;
  gap: 14px;
}

.service-badge {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(215, 38, 56, 0.16);
  color: #ffd6cf;
  font-size: 0.76rem;
  font-weight: 600;
}

.service-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.service-actions .btn {
  min-height: 44px;
  padding: 0 16px;
  font-size: 0.9rem;
}

.calculator-grid,
.form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
  display: grid;
  gap: 8px;
}

.field label,
.estimate-label {
  color: var(--text-soft);
  font-size: 0.86rem;
  font-weight: 500;
}

.estimate-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
  padding: 22px;
}

.estimate-card strong {
  display: block;
  margin: 6px 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.booking-layout {
  grid-template-columns: 0.7fr 1.1fr;
  align-items: start;
  margin-top: 24px;
}

.info-tile {
  padding: 16px;
}

.form-head {
  margin-bottom: 20px;
}

.submit-btn {
  margin-top: 8px;
}

.wa-note {
  margin: 14px 0 0;
  color: var(--text-soft);
  text-align: center;
  font-size: 0.88rem;
}

.contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
  background:
    linear-gradient(90deg, rgba(183, 28, 28, 0.18), rgba(245, 158, 11, 0.1), rgba(21, 128, 61, 0.1)),
    rgba(255, 255, 255, 0.05);
}

.contact-strip p,
.panel-card p {
  color: var(--text-soft);
}

.contact-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.contact-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff0be;
  font-size: 0.76rem;
  font-weight: 600;
}

.bottom-nav {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 30;
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 10px;
  background:
    linear-gradient(90deg, rgba(183, 28, 28, 0.22), rgba(245, 158, 11, 0.1), rgba(21, 128, 61, 0.12)),
    rgba(18, 29, 54, 0.88);
}

.bottom-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
}

.wa-float,
.scroll-top {
  position: fixed;
  right: 18px;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  z-index: 25;
  transition: transform var(--transition), opacity var(--transition);
}

.wa-float {
  bottom: 88px;
  background: linear-gradient(135deg, #20d366, #8ff0b3);
  color: #08230f;
  font-weight: 700;
}

.scroll-top {
  bottom: 150px;
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
  opacity: 0;
  pointer-events: none;
}

.scroll-top.show {
  opacity: 1;
  pointer-events: auto;
}

#toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%) translateY(20px);
  min-width: min(92vw, 420px);
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.92);
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-md);
  opacity: 0;
  transition: opacity var(--transition), transform var(--transition);
  z-index: 40;
  text-align: center;
}

#toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(2, 8, 23, 0.72);
  backdrop-filter: blur(10px);
}

.modal-overlay.open {
  display: flex;
}

.modal-box {
  position: relative;
  width: min(100%, 720px);
  padding: 28px;
}

.service-modal {
  width: min(100%, 860px);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-main);
}

.modal-head {
  padding-right: 48px;
}

.modal-head h3 {
  margin-bottom: 10px;
}

.booking-ref {
  margin: 22px 0;
  padding: 18px;
  text-align: center;
}

.booking-ref span {
  display: block;
  color: var(--text-soft);
  font-size: 0.82rem;
  margin-bottom: 6px;
}

.booking-ref strong {
  font-size: 1.8rem;
  letter-spacing: 0.12em;
}

.booking-detail-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.booking-detail-row:last-child {
  border-bottom: 0;
}

.booking-detail-row span:first-child {
  color: var(--text-soft);
}

.booking-detail-row span:last-child {
  text-align: right;
}

.modal-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 22px 0;
}

.modal-grid .soft-panel {
  padding: 18px;
}

.modal-grid h4 {
  margin: 0 0 14px;
}

.modal-list {
  padding-left: 18px;
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(22px, -18px, 0) scale(1.06);
  }
}

@keyframes hoverFloat {
  0%,
  100% {
    transform: translateY(0px) rotateX(0deg);
  }
  50% {
    transform: translateY(-10px) rotateX(4deg);
  }
}

@keyframes floatParticle {
  from {
    transform: translateY(18px);
    opacity: 0;
  }
  20% {
    opacity: 0.8;
  }
  to {
    transform: translateY(-90px);
    opacity: 0;
  }
}

@media (max-width: 1180px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .desktop-only {
    display: none;
  }

  .app-main {
    max-width: none;
  }
}

@media (max-width: 920px) {
  .hero,
  .profile-grid,
  .booking-layout,
  .calculator-grid,
  .modal-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 24px;
  }

  .section-head,
  .contact-strip,
  .estimate-card {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 760px) {
  .notice-bar {
    min-height: 38px;
    padding: 6px 10px;
  }

  .notice-bar p {
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .notice-close {
    width: 24px;
    height: 24px;
    font-size: 0.72rem;
  }

  .ka-strip {
    top: 38px;
  }

  .app-shell {
    width: min(calc(100% - 16px), 100%);
    padding: 10px 8px 104px;
  }

  .topbar,
  .panel-card,
  .booking-card,
  .section-card,
  .contact-strip,
  .modal-box {
    border-radius: 22px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-only {
    display: initial;
  }

  .topbar {
    top: 10px;
    gap: 10px;
    padding: 12px;
  }

  .mobile-brand {
    gap: 10px;
    min-width: 0;
    flex: 1 1 auto;
    align-items: center;
  }

  .mobile-brand strong {
    font-size: 0.92rem;
    line-height: 1.1;
  }

  .mobile-brand span {
    font-size: 0.68rem;
  }

  .mobile-brand div {
    min-width: 0;
  }

  .mobile-brand strong,
  .mobile-brand span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .menu-btn {
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
  }

  .mobile-menu {
    top: calc(100% + 10px);
    left: 0;
    right: 0;
  }

  .hero h1 {
    max-width: none;
    font-size: 1.95rem;
    line-height: 1.08;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .panel-card,
  .booking-card,
  .section-card,
  .contact-strip,
  .hero {
    padding: 16px;
  }

  .hero {
    gap: 16px;
  }

  .hero-text,
  .panel-card p,
  .modal-copy {
    font-size: 0.92rem;
    line-height: 1.62;
  }

  .hero-ribbon-row {
    gap: 8px;
    margin: 14px 0 6px;
  }

  .hero-ribbon {
    min-height: 32px;
    padding: 0 10px;
    font-size: 0.68rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-actions .btn {
    min-height: 44px;
    padding: 0 10px;
    border-radius: 14px;
    font-size: 0.82rem;
  }

  .shop-board {
    padding: 12px 14px;
    margin: 14px 0 6px;
  }

  .shop-board strong {
    font-size: 0.86rem;
  }

  .shop-board span {
    font-size: 0.78rem;
    line-height: 1.5;
  }

  .metric-card {
    padding: 12px 10px;
    border-radius: 16px;
    text-align: center;
  }

  .metric-card strong {
    font-size: 1rem;
    margin-bottom: 4px;
  }

  .metric-card span {
    font-size: 0.68rem;
    line-height: 1.3;
  }

  .device-card {
    width: 100%;
    max-width: none;
    padding: 14px;
    border-radius: 24px;
  }

  .screen-card {
    padding: 12px;
    gap: 10px;
  }

  .screen-card strong {
    font-size: 0.86rem;
  }

  .screen-card span {
    font-size: 0.72rem;
    line-height: 1.4;
  }

  .screen-badge {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    font-size: 0.72rem;
  }

  .section-head {
    gap: 12px;
    margin-bottom: 18px;
  }

  .section-head h2 {
    font-size: 1.38rem;
    line-height: 1.15;
  }

  .search-shell {
    min-width: 100%;
  }

  .search-shell input,
  .field input,
  .field select,
  .field textarea {
    padding: 13px 14px;
    border-radius: 14px;
    font-size: 0.92rem;
  }

  .form-grid.two-col {
    grid-template-columns: 1fr;
  }

  .accordion-list {
    gap: 12px;
  }

  .accordion-summary {
    padding: 14px;
    gap: 12px;
    align-items: flex-start;
  }

  .summary-meta {
    gap: 10px;
    align-items: flex-start;
  }

  .summary-icon,
  .service-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 0.68rem;
  }

  .accordion-summary strong {
    font-size: 0.92rem;
    line-height: 1.2;
  }

  .accordion-summary span,
  .summary-count {
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 14px 14px;
    gap: 10px;
  }

  .service-card {
    gap: 10px;
    padding: 12px;
    border-radius: 16px;
    min-height: 100%;
  }

  .service-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .service-card h3 {
    font-size: 0.9rem;
    line-height: 1.25;
  }

  .service-card p {
    font-size: 0.75rem;
    line-height: 1.45;
    margin: 6px 0 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .service-badge {
    padding: 5px 8px;
    font-size: 0.64rem;
  }

  .service-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .service-actions .btn {
    width: 100%;
    min-height: 36px;
    padding: 0 10px;
    font-size: 0.76rem;
    border-radius: 12px;
  }

  .booking-layout {
    gap: 14px;
  }

  .info-stack {
    gap: 8px;
  }

  .info-tile {
    padding: 12px;
    border-radius: 14px;
  }

  .info-tile strong {
    font-size: 0.84rem;
  }

  .info-tile span {
    font-size: 0.74rem;
    line-height: 1.4;
  }

  .estimate-card {
    padding: 14px;
    gap: 12px;
    align-items: flex-start;
  }

  .estimate-card strong {
    font-size: 1.65rem;
  }

  .contact-meta {
    gap: 8px;
  }

  .contact-meta span {
    padding: 7px 10px;
    font-size: 0.68rem;
  }

  .contact-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 8px;
  }

  .contact-actions .btn {
    min-height: 42px;
    padding: 0 10px;
    border-radius: 14px;
    font-size: 0.8rem;
  }

  .bottom-nav {
    display: grid;
    left: 8px;
    right: 8px;
    bottom: 8px;
    gap: 6px;
    padding: 8px;
    border-radius: 18px;
  }

  .bottom-link {
    min-height: 44px;
    border-radius: 12px;
    font-size: 0.72rem;
  }

  .wa-float {
    width: 48px;
    height: 48px;
    bottom: 74px;
    right: 10px;
    border-radius: 15px;
    font-size: 0.9rem;
  }

  .scroll-top {
    width: 46px;
    height: 46px;
    bottom: 128px;
    right: 10px;
    border-radius: 15px;
    font-size: 0.76rem;
  }

  #toast {
    bottom: 74px;
    min-width: min(94vw, 340px);
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 0.8rem;
  }

  .modal-overlay {
    padding: 10px;
  }

  .modal-box {
    width: 100%;
    padding: 18px 16px;
    border-radius: 22px;
  }

  .modal-head {
    padding-right: 36px;
  }

  .modal-head h3 {
    font-size: 1.2rem;
  }

  .booking-ref {
    margin: 16px 0;
    padding: 14px;
  }

  .booking-ref strong {
    font-size: 1.25rem;
  }

  .booking-detail-row {
    gap: 10px;
    padding: 10px 0;
    font-size: 0.82rem;
  }

  .modal-grid .soft-panel {
    padding: 14px;
  }

  .modal-list {
    font-size: 0.82rem;
    line-height: 1.55;
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: 1.74rem;
  }

  .hero-actions,
  .contact-actions {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 0 12px 12px;
  }

  .service-card {
    padding: 10px;
    border-radius: 14px;
  }

  .summary-icon,
  .service-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: 0.62rem;
  }

  .service-card h3 {
    font-size: 0.84rem;
  }

  .service-card p {
    font-size: 0.71rem;
    line-height: 1.35;
    -webkit-line-clamp: 2;
  }

  .service-actions .btn {
    min-height: 34px;
    font-size: 0.72rem;
  }

  .bottom-link {
    min-height: 40px;
    font-size: 0.66rem;
  }
}



.service-image {
  padding: 0;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.empty-state {
  padding: 18px;
  color: var(--text-soft);
  border: 1px dashed rgba(255,255,255,0.12);
  border-radius: 18px;
  text-align: center;
}

.btn-primary{
  background: linear-gradient(135deg,#d4af37,#ffd700,#fff2a8);
  color:#000;
  font-weight:700;
  box-shadow:0 10px 30px rgba(212,175,55,0.4);
}

.btn-primary:hover{
  transform:scale(1.05);
  box-shadow:0 0 40px rgba(255,215,0,0.6);
}


.brand strong{
  font-size:20px;
  color:#ffd700;
  letter-spacing:1px;
}

.brand span{
  font-size:13px;
  color:#bbb;
}

.service-icon{
  box-shadow:0 0 20px rgba(255,215,0,0.4);
  transition:0.3s;
}

.service-card:hover .service-icon{
  transform:scale(1.1);
}
.service-card{
  cursor:pointer;
}

.wa-float{
  background: linear-gradient(135deg,#25D366,#00ff88);
  box-shadow:0 0 25px rgba(37,211,102,0.6);
}

/* SELECT FIX */
select{
  appearance: none;
  background: rgba(15, 23, 42, 0.95);
  color: #ffffff;
  border:1px solid rgba(255,255,255,0.2);
}

/* FOCUS */
select:focus{
  outline:none;
  border-color:#00f5ff;
  box-shadow:0 0 10px rgba(0,245,255,0.4);
}

/* OPTIONS FIX (IMPORTANT) */
select,
select option,
select optgroup{
  background-color:#0f172a !important;
  color:#ffffff !important;
}

/* SELECTED OPTION */
select option:checked{
  background:#1c2742 !important;
  color:#ffffff !important;
}

/* HOVER */
select option:hover{
  background:#1c2742 !important;
}

/* CATEGORY (optgroup) */
select optgroup{
  color:#00f5ff !important;
  font-weight:600;
}