/* ============================================================
   WALKY WASH – Page-Specific Styles
   Additional CSS for individual page sections
   ============================================================ */

/* ===== HOME PAGE ===== */
.hero-section {
  min-height: 100vh;
  background: var(--grad-hero);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 140px;
  padding-bottom: 60px;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  animation: blobFloat 8s ease-in-out infinite;
}
.hero-bg-blob.b1 { width:600px; height:600px; background:radial-gradient(circle,rgba(77,166,255,0.45),transparent); top:-200px; right:-80px; }
.hero-bg-blob.b2 { width:400px; height:400px; background:radial-gradient(circle,rgba(10,27,94,0.18),transparent); bottom:-80px; left:5%; animation-delay:3s; }
.hero-bg-blob.b3 { width:280px; height:280px; background:radial-gradient(circle,rgba(77,166,255,0.28),transparent); top:42%; left:42%; animation-delay:5s; }
@keyframes blobFloat { 0%,100%{transform:translateY(0) scale(1);} 50%{transform:translateY(-28px) scale(1.04);} }

.splash-deco { position:absolute; opacity:0.07; }
.splash-deco.sd1 { top:8%; left:2%; width:200px; animation:spin 22s linear infinite; }
.splash-deco.sd2 { bottom:12%; right:2%; width:160px; animation:spin 28s linear infinite reverse; }
@keyframes spin { from{transform:rotate(0)} to{transform:rotate(360deg)} }

.hero-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; position:relative; z-index:1; }

.hero-title {
  font-family:'Outfit',sans-serif;
  font-size:clamp(2.4rem,5vw,4rem);
  font-weight:900;
  color:var(--primary);
  line-height:1.1;
  letter-spacing:-0.03em;
  margin-bottom:20px;
}
.hero-title .hl {
  background:var(--grad-secondary);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}
.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(77,166,255,0.14); border:1px solid rgba(77,166,255,0.28);
  color:var(--secondary-dark); padding:8px 18px; border-radius:var(--r-full);
  font-size:0.8rem; font-weight:700; letter-spacing:0.06em;
  text-transform:uppercase; margin-bottom:22px; backdrop-filter:blur(10px);
}
.live-dot { width:8px; height:8px; background:#22c55e; border-radius:50%; animation:livePulse 2s infinite; }
@keyframes livePulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.5;transform:scale(1.4);} }

.hero-sub { font-size:1.1rem; color:var(--text-mid); line-height:1.7; margin-bottom:36px; max-width:500px; }
.hero-actions { display:flex; gap:14px; flex-wrap:wrap; margin-bottom:44px; }
.trust-list { display:flex; flex-direction:column; gap:10px; }
.trust-item { display:flex; align-items:center; gap:10px; font-size:0.88rem; font-weight:500; color:var(--text-mid); }
.trust-check {
  width:22px; height:22px;
  background:var(--grad-primary);
  border-radius:50%; display:flex; align-items:center; justify-content:center;
  font-size:0.68rem; color:white; font-weight:700; flex-shrink:0;
}

/* Hero visual */
.hero-visual { position:relative; display:flex; align-items:center; justify-content:center; }
.fc { /* floating card */
  position:absolute;
  background:rgba(255,255,255,0.92);
  backdrop-filter:blur(16px);
  border:1px solid rgba(77,166,255,0.18);
  border-radius:var(--r-lg);
  padding:12px 16px;
  display:flex; align-items:center; gap:10px;
  box-shadow:var(--shadow-md);
  z-index:3;
}
[data-theme="dark"] .fc { background:rgba(10,27,94,0.88); border-color:rgba(77,166,255,0.3); }
.fc .fi { width:36px; height:36px; border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:1rem; flex-shrink:0; }
.fc .fl { font-size:0.74rem; color:var(--text-light); }
.fc .fv { font-size:0.9rem; font-weight:700; color:var(--primary); }
.fc-1 { top:4%; left:-8%; animation:fcFloat 6s ease-in-out infinite; }
.fc-2 { bottom:8%; left:-4%; animation:fcFloat 7s ease-in-out infinite 1s; }
.fc-3 { top:30%; right:-7%; animation:fcFloat 5s ease-in-out infinite 2s; }
@keyframes fcFloat { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-12px);} }

/* ===== CAR WASH ANIMATION SCENE ===== */
.wash-animation-container {
  position: relative;
  width: 100%;
  max-width: 460px;
  height: 330px;
  background: var(--grad-card);
  border: 2px solid rgba(77, 166, 255, 0.22);
  border-radius: var(--r-xl);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin: 0 auto;
}
[data-theme="dark"] .wash-animation-container {
  background: rgba(13, 26, 46, 0.7);
  border-color: rgba(77, 166, 255, 0.35);
}

/* Moving Car Wrapper */
.anim-car-wrap {
  position: absolute;
  left: 20px;
  bottom: 30px;
  width: 230px;
  animation: carBounce 0.45s ease-in-out infinite alternate, carDriveIn 2.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  z-index: 2;
}
@keyframes carBounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(-3px); }
}
@keyframes carDriveIn {
  0% { left: -260px; opacity: 0; }
  100% { left: 20px; opacity: 1; }
}

.anim-car {
  width: 100%;
  height: auto;
}
.anim-car .wheel {
  animation: rotateWheel 1.5s linear infinite;
  transform-origin: center;
}
@keyframes rotateWheel {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}
.car-shine {
  animation: shineSwipe 3.5s infinite ease-in-out 2s;
}
@keyframes shineSwipe {
  0% { transform: translateX(-150px); }
  35%, 100% { transform: translateX(250px); }
}

/* Washer Man Wrapper */
.anim-washer-wrap {
  position: absolute;
  right: 15px;
  bottom: 25px;
  width: 85px;
  animation: washerEntrance 1.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  z-index: 2;
}
@keyframes washerEntrance {
  0% { right: -100px; opacity: 0; }
  100% { right: 15px; opacity: 1; }
}

.anim-washer {
  width: 100%;
  height: auto;
}
.washer-arm {
  transform-origin: 39px 40px;
  animation: spraySwing 1.8s ease-in-out infinite alternate;
}
@keyframes spraySwing {
  0% { transform: rotate(-10deg); }
  100% { transform: rotate(8deg); }
}

/* Spray Droplets (Right-to-Left) */
.spray-system {
  position: absolute;
  right: 75px;
  bottom: 95px;
  width: 170px;
  height: 60px;
  pointer-events: none;
  overflow: visible;
  z-index: 4;
}
.spray-droplet {
  position: absolute;
  right: 0;
  width: 5px;
  height: 5px;
  background: var(--secondary);
  border-radius: 50%;
  opacity: 0;
  animation: shootLeft 0.8s infinite linear;
}
.spray-droplet:nth-child(1) { animation-delay: 0s;   animation-duration: 0.7s; top: 25px; }
.spray-droplet:nth-child(2) { animation-delay: 0.12s; animation-duration: 0.8s; top: 35px; }
.spray-droplet:nth-child(3) { animation-delay: 0.25s; animation-duration: 0.65s; top: 28px; }
.spray-droplet:nth-child(4) { animation-delay: 0.38s; animation-duration: 0.85s; top: 32px; }
.spray-droplet:nth-child(5) { animation-delay: 0.5s;  animation-duration: 0.72s; top: 20px; }
.spray-droplet:nth-child(6) { animation-delay: 0.62s; animation-duration: 0.78s; top: 38px; }

@keyframes shootLeft {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.95;
  }
  80% {
    opacity: 0.75;
  }
  100% {
    transform: translate(-145px, 20px) scale(0.3);
    opacity: 0;
  }
}

/* Soap Foam Bubbles */
.bubble-system {
  position: absolute;
  left: 30px;
  bottom: 45px;
  width: 200px;
  height: 80px;
  pointer-events: none;
  z-index: 3;
}
.soap-bubble {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(77, 166, 255, 0.35);
  border-radius: 50%;
  animation: bubbleFloatUp 2.4s infinite ease-out;
  opacity: 0;
}
.soap-bubble:nth-child(1) { left: 35px; width: 14px; height: 14px; animation-delay: 0.3s; }
.soap-bubble:nth-child(2) { left: 75px; width: 10px; height: 10px; animation-delay: 1.1s; }
.soap-bubble:nth-child(3) { left: 115px; width: 16px; height: 16px; animation-delay: 0.0s; }
.soap-bubble:nth-child(4) { left: 155px; width: 12px; height: 12px; animation-delay: 1.6s; }
.soap-bubble:nth-child(5) { left: 180px; width: 8px; height: 8px; animation-delay: 0.7s; }

@keyframes bubbleFloatUp {
  0% {
    transform: translateY(25px) scale(0.2);
    opacity: 0;
  }
  20% {
    opacity: 0.9;
  }
  80% {
    opacity: 0.7;
  }
  100% {
    transform: translateY(-45px) scale(1.25);
    opacity: 0;
  }
}

/* Sparkles */
.sparkle-system {
  position: absolute;
  left: 30px;
  bottom: 65px;
  width: 200px;
  height: 90px;
  pointer-events: none;
  z-index: 3;
}
.sparkle {
  position: absolute;
  color: #fbbf24;
  font-size: 1.25rem;
  opacity: 0;
  animation: sparklePop 2.8s infinite ease-in-out;
}
.sparkle:nth-child(1) { left: 45px; top: 15px; animation-delay: 1.5s; }
.sparkle:nth-child(2) { left: 105px; top: 8px; animation-delay: 0.4s; }
.sparkle:nth-child(3) { left: 165px; top: 20px; animation-delay: 2.8s; }

@keyframes sparklePop {
  0%, 35%, 85%, 100% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.2) rotate(45deg); opacity: 1; }
}

@media (max-width: 480px) {
  .wash-animation-container { height: 260px; }
  .anim-car-wrap { width: 180px; bottom: 20px; }
  .anim-washer-wrap { width: 70px; bottom: 15px; }
  .spray-system { right: 60px; bottom: 75px; width: 120px; }
  @keyframes shootLeft {
    0% { transform: translate(0, 0) scale(1); opacity: 0.95; }
    100% { transform: translate(-100px, 15px) scale(0.3); opacity: 0; }
  }
}


/* Services cards */
.service-card {
  background:var(--grad-card);
  border:1px solid rgba(77,166,255,0.1);
  border-radius:var(--r-xl);
  padding:32px 24px;
  position:relative; overflow:hidden;
  cursor:pointer; transition:var(--ease);
}
.service-card:hover { transform:translateY(-8px); box-shadow:var(--shadow-xl); border-color:rgba(77,166,255,0.3); }
.service-card.featured { background:var(--grad-primary); border-color:transparent; }
.service-card.featured .sname,.service-card.featured .sdesc,.service-card.featured .sfeat,.service-card.featured .sfeat::before { color:rgba(255,255,255,0.9) !important; }
.service-card.featured .sfeat { border-bottom-color:rgba(255,255,255,0.1) !important; }
.service-card.featured .icon-box { background:rgba(255,255,255,0.15); }
.pop-tag { position:absolute; top:16px; right:16px; background:var(--secondary); color:var(--primary); font-size:0.7rem; font-weight:800; padding:4px 10px; border-radius:var(--r-full); letter-spacing:0.06em; }
.sname { font-family:'Outfit',sans-serif; font-size:1.2rem; font-weight:700; color:var(--primary); margin-bottom:6px; }
.sdesc { font-size:0.86rem; color:var(--text-light); margin-bottom:18px; }
.sfeats { list-style:none; display:flex; flex-direction:column; gap:8px; }
.sfeat {
  display:flex; align-items:center; gap:8px;
  font-size:0.84rem; color:var(--text-mid);
  padding-bottom:8px; border-bottom:1px solid rgba(77,166,255,0.07);
}
.sfeat:last-child { border-bottom:none; padding-bottom:0; }
.sfeat::before { content:'✓'; width:18px; height:18px; background:rgba(34,197,94,0.12); color:#22c55e; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:0.68rem; font-weight:700; flex-shrink:0; }

/* Steps */
.step-card { text-align:center; position:relative; z-index:1; }
.step-num-wrap { position:relative; display:inline-flex; align-items:center; justify-content:center; margin-bottom:20px; }
.step-num {
  width:64px; height:64px;
  background:white; border:3px solid var(--secondary);
  border-radius:50%; display:flex; align-items:center; justify-content:center;
  font-family:'Outfit',sans-serif; font-size:1.5rem; font-weight:800; color:var(--primary);
  box-shadow:var(--shadow-md),var(--shadow-glow);
  transition:var(--ease); position:relative; z-index:1;
}
[data-theme="dark"] .step-num { background:var(--bg-soft-white); }
.step-card:hover .step-num { background:var(--grad-primary); color:white; border-color:transparent; transform:scale(1.1); }
.step-icon-badge {
  position:absolute; top:-6px; right:-6px;
  width:26px; height:26px; background:var(--grad-primary);
  border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:0.78rem;
}
.step-title { font-family:'Outfit',sans-serif; font-size:1.05rem; font-weight:700; color:var(--primary); margin-bottom:8px; }
.step-desc { font-size:0.86rem; color:var(--text-light); line-height:1.6; }

/* Pricing */
.pricing-card {
  background:white; border:2px solid rgba(77,166,255,0.1);
  border-radius:var(--r-xl); padding:36px 28px;
  position:relative; overflow:hidden; transition:var(--ease);
}
[data-theme="dark"] .pricing-card { background:rgba(10,27,94,0.35); }
.pricing-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-xl); }
.pricing-card.pop {
  background:var(--grad-primary); border-color:transparent;
  transform:scale(1.04); box-shadow:var(--shadow-xl),0 0 60px rgba(77,166,255,0.25);
}
.pricing-card.pop:hover { transform:scale(1.04) translateY(-6px); }
.plan-nm { font-size:0.8rem; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:var(--secondary-dark); margin-bottom:10px; }
.pricing-card.pop .plan-nm { color:rgba(255,255,255,0.65); }
.plan-price { font-family:'Outfit',sans-serif; line-height:1; margin-bottom:6px; }
.price-sym { font-size:1.3rem; font-weight:700; color:var(--primary); vertical-align:top; margin-top:6px; display:inline-block; }
.price-num { font-size:3.4rem; font-weight:900; color:var(--primary); }
.pricing-card.pop .price-sym,.pricing-card.pop .price-num { color:white; }
.plan-desc { font-size:0.85rem; color:var(--text-light); margin-bottom:24px; padding-bottom:24px; border-bottom:1px solid rgba(77,166,255,0.1); }
.pricing-card.pop .plan-desc { color:rgba(255,255,255,0.6); border-bottom-color:rgba(255,255,255,0.12); }
.plan-feats { list-style:none; margin-bottom:28px; display:flex; flex-direction:column; gap:12px; }
.plan-feat { display:flex; align-items:center; gap:10px; font-size:0.88rem; color:var(--text-mid); }
.pricing-card.pop .plan-feat { color:rgba(255,255,255,0.82); }
.plan-feat .ck { width:20px; height:20px; background:rgba(34,197,94,0.12); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:0.66rem; color:#22c55e; font-weight:700; flex-shrink:0; }
.pricing-card.pop .plan-feat .ck { background:rgba(255,255,255,0.12); color:white; }
.pop-lbl { position:absolute; top:14px; right:14px; background:var(--secondary); color:var(--primary); font-size:0.7rem; font-weight:800; padding:4px 12px; border-radius:var(--r-full); letter-spacing:0.06em; }

/* Testimonials */
.tcard {
  background:var(--grad-card);
  border:1px solid rgba(77,166,255,0.1);
  border-radius:var(--r-xl); padding:28px;
  transition:var(--ease);
}
.tcard:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); border-color:rgba(77,166,255,0.22); }
.quote { font-size:3rem; color:var(--secondary); opacity:0.18; line-height:1; font-family:Georgia,serif; margin-bottom:10px; }
.ttext { font-size:0.9rem; color:var(--text-mid); line-height:1.7; margin-bottom:22px; }
.tauthor { display:flex; align-items:center; gap:12px; }
.tavatar {
  width:44px; height:44px; border-radius:50%;
  background:var(--grad-primary);
  display:flex; align-items:center; justify-content:center;
  font-size:1rem; font-weight:700; color:white; flex-shrink:0;
  border:2px solid rgba(77,166,255,0.25);
}
.tname { font-weight:700; font-size:0.9rem; color:var(--primary); }
.tmeta { font-size:0.76rem; color:var(--text-muted); }
.stars { color:#f59e0b; font-size:0.9rem; letter-spacing:2px; margin-bottom:2px; }

/* App section */
.app-section { background:var(--grad-primary); position:relative; overflow:hidden; }
.app-section::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 80% 60% at 100% 50%,rgba(77,166,255,0.22),transparent); }
.phone-wrap { display:flex; align-items:flex-end; justify-content:center; gap:20px; padding-top:40px; }
.phone {
  background:rgba(255,255,255,0.07);
  border:2px solid rgba(255,255,255,0.13);
  border-radius:36px; overflow:hidden;
  box-shadow:0 40px 80px rgba(0,0,0,0.3),inset 0 1px 0 rgba(255,255,255,0.1);
  transition:var(--ease);
}
.phone:hover { transform:translateY(-10px); }
.phone-main  { width:200px; height:420px; }
.phone-side  { width:168px; height:355px; opacity:0.8; }
.phone-screen { width:100%; height:100%; background:linear-gradient(180deg,#1a2f8a,#0A1B5E); display:flex; flex-direction:column; padding:22px 14px 14px; }
.phone-notch { width:68px; height:20px; background:rgba(0,0,0,0.3); border-radius:20px; margin:0 auto 14px; }
.pui { background:rgba(255,255,255,0.09); border-radius:10px; padding:10px; margin-bottom:10px; display:flex; align-items:center; gap:8px; }
.pui-dot { width:26px; height:26px; border-radius:7px; flex-shrink:0; }
.pui-lines { flex:1; }
.pui-line { height:5px; background:rgba(255,255,255,0.28); border-radius:3px; margin-bottom:4px; }
.pui-line.sh { width:55%; }
.pcta { margin-top:auto; background:var(--secondary); color:var(--primary); text-align:center; padding:10px; border-radius:12px; font-size:0.78rem; font-weight:700; }
.store-btn {
  display:flex; align-items:center; gap:10px;
  background:rgba(255,255,255,0.09);
  border:1.5px solid rgba(255,255,255,0.22);
  border-radius:var(--r-md); padding:12px 20px;
  color:white; cursor:pointer; transition:var(--ease);
}
.store-btn:hover { background:rgba(255,255,255,0.18); transform:translateY(-3px); }
.store-btn .si { font-size:1.5rem; }
.store-btn .sl { font-size:0.68rem; color:rgba(255,255,255,0.6); }
.store-btn .sn { font-size:0.9rem; font-weight:700; }

/* ===== ABOUT PAGE ===== */
.team-card {
  background:var(--grad-card);
  border:1px solid rgba(77,166,255,0.1);
  border-radius:var(--r-xl); overflow:hidden; transition:var(--ease); text-align:center;
}
.team-card:hover { transform:translateY(-8px); box-shadow:var(--shadow-lg); }
.team-photo {
  width:100%; height:220px; background:var(--grad-primary);
  display:flex; align-items:center; justify-content:center;
  font-size:4rem; position:relative; overflow:hidden;
}
.team-photo::after { content:''; position:absolute; inset:0; background:linear-gradient(0deg,rgba(10,27,94,0.4),transparent); }
.team-info { padding:24px; }
.team-name { font-family:'Outfit',sans-serif; font-size:1.1rem; font-weight:700; color:var(--primary); margin-bottom:4px; }
.team-role { font-size:0.84rem; color:var(--secondary-dark); font-weight:600; margin-bottom:10px; }
.team-bio  { font-size:0.82rem; color:var(--text-light); line-height:1.6; }

.value-card {
  background:var(--grad-card);
  border:1px solid rgba(77,166,255,0.1);
  border-radius:var(--r-xl); padding:32px 24px;
  text-align:center; transition:var(--ease);
}
.value-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-md); border-color:rgba(77,166,255,0.25); }
.value-icon { font-size:2.4rem; margin-bottom:16px; }
.value-title { font-family:'Outfit',sans-serif; font-size:1.05rem; font-weight:700; color:var(--primary); margin-bottom:8px; }
.value-desc { font-size:0.86rem; color:var(--text-light); line-height:1.6; }

.timeline { position:relative; padding-left:32px; }
.timeline::before { content:''; position:absolute; left:14px; top:0; bottom:0; width:2px; background:linear-gradient(180deg,var(--secondary),var(--primary)); }
.tl-item { position:relative; padding-bottom:36px; }
.tl-dot { position:absolute; left:-24px; top:4px; width:16px; height:16px; background:var(--secondary); border-radius:50%; border:3px solid var(--bg-soft-white); box-shadow:0 0 0 3px rgba(77,166,255,0.25); }
.tl-year { font-size:0.78rem; font-weight:700; color:var(--secondary-dark); letter-spacing:0.06em; text-transform:uppercase; margin-bottom:4px; }
.tl-title { font-family:'Outfit',sans-serif; font-size:1rem; font-weight:700; color:var(--primary); margin-bottom:4px; }
.tl-desc { font-size:0.86rem; color:var(--text-light); line-height:1.6; }

/* ===== SERVICES PAGE ===== */
.service-detail-card {
  background:var(--grad-card);
  border:1px solid rgba(77,166,255,0.1);
  border-radius:var(--r-xl); overflow:hidden; transition:var(--ease);
}
.service-detail-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); border-color:rgba(77,166,255,0.25); }
.sdc-header { background:var(--grad-primary); padding:32px; display:flex; align-items:center; gap:18px; }
.sdc-icon { font-size:2.4rem; }
.sdc-title { font-family:'Outfit',sans-serif; font-size:1.3rem; font-weight:800; color:white; }
.sdc-sub   { font-size:0.86rem; color:rgba(255,255,255,0.65); }
.sdc-body  { padding:28px; }
.sdc-feat-row { display:flex; flex-wrap:wrap; gap:10px; margin-bottom:20px; }
.sdc-feat-chip { background:rgba(77,166,255,0.08); border:1px solid rgba(77,166,255,0.18); border-radius:var(--r-full); padding:6px 14px; font-size:0.8rem; font-weight:600; color:var(--secondary-dark); }
.sdc-price { display:flex; align-items:baseline; gap:4px; }
.sdc-price-sym { font-size:1rem; font-weight:700; color:var(--primary); }
.sdc-price-num { font-family:'Outfit',sans-serif; font-size:2.2rem; font-weight:900; color:var(--primary); }
.sdc-price-label { font-size:0.82rem; color:var(--text-muted); }

.compare-table { width:100%; border-collapse:collapse; border-radius:var(--r-lg); overflow:hidden; box-shadow:var(--shadow-md); }
.compare-table th { background:var(--primary); color:white; padding:16px 20px; text-align:left; font-size:0.88rem; font-weight:700; }
.compare-table th:first-child { border-radius:var(--r-lg) 0 0 0; }
.compare-table th:last-child  { border-radius:0 var(--r-lg) 0 0; }
.compare-table td { padding:14px 20px; border-bottom:1px solid rgba(77,166,255,0.08); font-size:0.88rem; color:var(--text-mid); background:var(--bg-card); }
.compare-table tr:hover td { background:rgba(77,166,255,0.04); }
.compare-table .ck-yes { color:#22c55e; font-weight:700; font-size:1rem; }
.compare-table .ck-no  { color:var(--text-muted); font-size:0.9rem; }

/* ===== CONTACT PAGE ===== */
.contact-card {
  background:var(--grad-card);
  border:1px solid rgba(77,166,255,0.1);
  border-radius:var(--r-xl); padding:32px;
  text-align:center; transition:var(--ease);
}
.contact-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-md); border-color:rgba(77,166,255,0.25); }
.contact-icon { width:64px; height:64px; background:var(--grad-primary); border-radius:var(--r-lg); display:flex; align-items:center; justify-content:center; font-size:1.6rem; margin:0 auto 18px; }
.contact-label { font-size:0.8rem; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; color:var(--secondary-dark); margin-bottom:8px; }
.contact-value { font-family:'Outfit',sans-serif; font-size:1rem; font-weight:600; color:var(--primary); }
.contact-sub   { font-size:0.82rem; color:var(--text-muted); margin-top:4px; }

.form-wrap {
  background:var(--grad-card);
  border:1px solid rgba(77,166,255,0.1);
  border-radius:var(--r-xl); padding:40px;
}
.form-group { margin-bottom:20px; }
.form-label { display:block; font-size:0.86rem; font-weight:600; color:var(--text-mid); margin-bottom:8px; }
.form-input, .form-select, .form-textarea {
  width:100%; padding:14px 18px;
  border:1.5px solid rgba(77,166,255,0.18);
  border-radius:var(--r-md);
  background:rgba(255,255,255,0.7);
  color:var(--text-dark); font-size:0.92rem;
  font-family:'Inter',sans-serif;
  transition:var(--ease); outline:none;
  backdrop-filter:blur(10px);
}
[data-theme="dark"] .form-input,[data-theme="dark"] .form-select,[data-theme="dark"] .form-textarea {
  background:rgba(10,27,94,0.25); color:var(--text-dark);
}
.form-input:focus,.form-select:focus,.form-textarea:focus {
  border-color:var(--secondary); box-shadow:0 0 0 3px rgba(77,166,255,0.12);
}
.form-textarea { resize:vertical; min-height:130px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
@media (max-width:600px) { .form-row { grid-template-columns:1fr; } }

.map-placeholder {
  width:100%; height:360px; border-radius:var(--r-xl);
  background:var(--grad-primary);
  display:flex; align-items:center; justify-content:center;
  font-size:3rem; position:relative; overflow:hidden;
  box-shadow:var(--shadow-lg);
}
.map-placeholder::after { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at center,rgba(77,166,255,0.2),transparent); }

/* FAQ */
.faq-item {
  background:var(--grad-card);
  border:1px solid rgba(77,166,255,0.08);
  border-radius:var(--r-lg); overflow:hidden; margin-bottom:12px;
  transition:var(--ease);
}
.faq-item.open { border-color:rgba(77,166,255,0.25); box-shadow:var(--shadow-sm); }
.faq-q {
  padding:20px 24px; display:flex; align-items:center; justify-content:space-between;
  cursor:pointer; font-weight:600; font-size:0.95rem; color:var(--primary);
  transition:var(--ease);
}
.faq-q:hover { color:var(--secondary-dark); }
.faq-arrow { font-size:1.1rem; transition:var(--ease); flex-shrink:0; }
.faq-item.open .faq-arrow { transform:rotate(180deg); }
.faq-a { padding:0 24px; max-height:0; overflow:hidden; transition:all 0.35s ease; }
.faq-item.open .faq-a { max-height:200px; padding:0 24px 20px; }
.faq-a p { font-size:0.88rem; color:var(--text-light); line-height:1.7; }

/* ===== BOOKING PAGE ===== */
.booking-step-bar {
  display:flex; align-items:center; justify-content:center;
  gap:0; margin-bottom:40px;
}
.bs-step {
  display:flex; align-items:center; gap:8px;
  font-size:0.84rem; font-weight:600; color:var(--text-muted);
}
.bs-step.active { color:var(--primary); }
.bs-step.done   { color:#22c55e; }
.bs-circle {
  width:32px; height:32px; border-radius:50%;
  background:rgba(77,166,255,0.1); border:2px solid rgba(77,166,255,0.25);
  display:flex; align-items:center; justify-content:center;
  font-size:0.8rem; font-weight:700;
}
.bs-step.active .bs-circle { background:var(--primary); border-color:var(--primary); color:white; }
.bs-step.done .bs-circle { background:#22c55e; border-color:#22c55e; color:white; }
.bs-line { width:60px; height:2px; background:rgba(77,166,255,0.15); }
.bs-line.done { background:#22c55e; }

.service-select-card {
  border:2px solid rgba(77,166,255,0.1);
  border-radius:var(--r-lg); padding:20px;
  cursor:pointer; transition:var(--ease); background:var(--bg-card);
  display:flex; align-items:center; gap:16px;
}
.service-select-card:hover { border-color:var(--secondary); box-shadow:var(--shadow-sm); }
.service-select-card.selected { border-color:var(--primary); background:rgba(10,27,94,0.05); }
[data-theme="dark"] .service-select-card.selected { background:rgba(77,166,255,0.08); }
.ssc-radio { width:20px; height:20px; border-radius:50%; border:2px solid rgba(77,166,255,0.3); flex-shrink:0; display:flex; align-items:center; justify-content:center; }
.service-select-card.selected .ssc-radio { border-color:var(--primary); background:var(--primary); }
.service-select-card.selected .ssc-radio::after { content:''; width:8px; height:8px; background:white; border-radius:50%; }

.summary-box {
  background:var(--grad-primary);
  border-radius:var(--r-xl); padding:28px; color:white; position:sticky; top:90px;
}
.summary-row { display:flex; justify-content:space-between; align-items:center; padding:10px 0; border-bottom:1px solid rgba(255,255,255,0.1); font-size:0.88rem; }
.summary-row:last-child { border-bottom:none; }
.summary-total { font-family:'Outfit',sans-serif; font-size:1.6rem; font-weight:800; }

/* ===== CONTACT PAGE ADDITIONAL STYLES ===== */
.section-bg-light {
  background: var(--bg-light-blue);
}
.contact-grid {
  align-items: stretch;
  gap: 40px;
}
.contact-info-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}
.map-placeholder-content {
  text-align: center;
  color: white;
}
.map-placeholder-emoji {
  font-size: 4rem;
  margin-bottom: 10px;
}
.map-placeholder-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
}
.map-placeholder-text {
  font-size: 0.8rem;
  opacity: 0.85;
  max-width: 250px;
  margin: 6px auto 0;
}
.contact-form-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}
.contact-form-subtitle {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 28px;
}
.contact-submit-btn-new {
  margin-top: 10px;
}
.card-dark h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
}
.card-dark p {
  font-size: 0.86rem;
  opacity: 0.85;
  line-height: 1.6;
  margin-bottom: 16px;
}
.card-dark a {
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.88rem;
}

