/* ═══════════════════════════════════════════════════════
   Dr. Hossame Bakraoui — Premium Services Design System
   Aesthetic: Theme-Adaptive Luxury (Crystal Gold / Icy Turquoise)
   ═══════════════════════════════════════════════════════ */

:root {
  /* DARK THEME (Crystal Gold Elite) */
  --c-service-accent-rgb: 204, 168, 82;             /* Gold RGB */
  --c-service-accent-grad: linear-gradient(135deg, var(--c-accent) 0%, #8c6a26 100%);
  --c-service-text-grad: linear-gradient(135deg, #ffffff 40%, rgba(204, 168, 82, 0.95) 100%);
  --c-service-pill-bg: rgba(204, 168, 82, 0.08);
  --c-service-border-glow: rgba(204, 168, 82, 0.2);
  --c-service-halo-color: rgba(204, 168, 82, 0.25);
  --c-service-card-glow: rgba(204, 168, 82, 0.15);
  --c-service-ribbon-bg: rgba(204, 168, 82, 0.25);
}

[data-theme="light"] {
  /* LIGHT THEME (Liquid Icy Turquoise - Clean & Fresh) */
  --c-service-accent-rgb: 93, 193, 200;            /* Turquoise RGB */
  --c-service-accent-grad: linear-gradient(135deg, var(--c-accent) 0%, #2e8b90 100%);
  --c-service-text-grad: linear-gradient(135deg, #111a24 40%, #2e8b90 100%);
  --c-service-pill-bg: rgba(93, 193, 200, 0.06);   /* Light clean turquoise tint, no yellow! */
  --c-service-border-glow: rgba(93, 193, 200, 0.18);
  --c-service-halo-color: rgba(93, 193, 200, 0.2);
  --c-service-card-glow: rgba(93, 193, 200, 0.06);
  --c-service-ribbon-bg: rgba(93, 193, 200, 0.15);
}

/* ─── Layout & Container Glows ─── */
.service-hero {
  padding-top: calc(var(--nav-h) + 45px);
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* Ambient glow nodes behind layout */
.service-hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(var(--c-service-accent-rgb), 0.12) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.service-hero::after {
  content: '';
  position: absolute;
  bottom: 5%;
  left: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(var(--c-service-accent-rgb), 0.06) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.service-hero .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Back Navigation Button (Luxury Style) ─── */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--c-accent);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 30px;
  padding: 10px 22px;
  border-radius: 50px;
  background: var(--c-service-pill-bg);
  border: 1px solid var(--c-service-border-glow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.05);
}

.back-btn svg {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.back-btn:hover {
  color: #ffffff;
  background: var(--c-accent);
  border-color: var(--c-accent);
  transform: translateX(-4px);
  box-shadow: 
    0 10px 20px rgba(var(--c-service-accent-rgb), 0.2),
    inset 1px 1px 2px rgba(255, 255, 255, 0.2);
}

.back-btn:hover svg {
  transform: translateX(-4px);
}

/* ─── Hero Banner: Glassmorphic Stage ─── */
.service-hero-banner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 50px;
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.005) 100%), var(--glass-bg);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-top: 1px solid var(--glass-border-1);
  border-left: 1px solid var(--glass-border-1);
  border-bottom: 1px solid var(--glass-border-2);
  border-right: 1px solid var(--glass-border-2);
  border-radius: 32px;
  padding: 55px 70px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35), var(--glass-shadow-inner-depth);
  margin-bottom: 45px;
  position: relative;
  overflow: hidden;
}

/* Moving gloss effect on banner hover */
.service-hero-banner::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(35deg, transparent 35%, rgba(255, 255, 255, 0.04) 50%, transparent 65%);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  transform: rotate(0deg);
}

.service-hero-banner:hover::after {
  transform: translate(30%, 30%) rotate(15deg);
}

.service-hero-content {
  position: relative;
  z-index: 3;
}

/* Section Luxury Pill Badge */
.service-hero-content .section-label {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--c-accent);
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  background: var(--c-service-pill-bg);
  border: 1px solid var(--c-service-border-glow);
  box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.05);
  margin-bottom: 18px;
}

/* Dynamic Metallic Theme-Adaptive Title */
.service-hero-title {
  font-family: var(--f-heading), Georgia, serif;
  font-size: 3.4rem;
  font-weight: 500;
  line-height: 1.2;
  background: var(--c-service-text-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
  letter-spacing: -0.5px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

/* 3D Floating Stage for Illustrations */
.service-hero-illustration-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}

.service-hero-img-container {
  position: relative;
  width: 270px;
  height: 270px;
  border-radius: 50%; /* Pure luxury circular shape */
  background: radial-gradient(circle, rgba(var(--c-service-accent-rgb), 0.06) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.25),
    inset 2px 2px 10px rgba(255, 255, 255, 0.03),
    inset -2px -2px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Dashed rotating halo border */
.service-hero-img-container::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1.5px dashed var(--c-service-halo-color);
  animation: spinStage 25s linear infinite;
  pointer-events: none;
  transition: border-color 0.4s;
}

@keyframes spinStage {
  100% { transform: rotate(360deg); }
}

.service-hero-banner:hover .service-hero-img-container {
  transform: scale(1.05) translateY(-5px);
  border-color: rgba(var(--c-service-accent-rgb), 0.3);
  box-shadow: 
    0 25px 45px rgba(var(--c-service-accent-rgb), 0.15),
    inset 2px 2px 10px rgba(255, 255, 255, 0.05);
}

.service-hero-banner:hover .service-hero-img-container::before {
  border-color: rgba(var(--c-service-accent-rgb), 0.5);
}

.service-hero-img {
  max-width: 75%;
  max-height: 75%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

#imgBlanchiment.service-hero-img {
  max-width: 83%;
  max-height: 83%;
}

.service-hero-banner:hover .service-hero-img {
  transform: scale(1.08) rotate(2deg);
}

/* ─── Two Column Grid Architecture ─── */
.service-container {
  display: grid;
  grid-template-columns: 2.6fr 1fr;
  gap: 40px;
  align-items: start;
}

/* ─── Service Card (Glassmorphic Panels) ─── */
.service-card {
  width: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.005) 100%), var(--glass-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid var(--glass-border-1);
  border-left: 1px solid var(--glass-border-1);
  border-bottom: 1px solid var(--glass-border-2);
  border-right: 1px solid var(--glass-border-2);
  border-radius: 28px;
  padding: 45px 50px;
  box-shadow: var(--glass-shadow-drop);
  margin-bottom: 35px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
}

/* Theme-adaptive top bar highlight on hover */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--c-accent), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
  opacity: 1;
}

[data-theme="light"] .service-card:hover {
  box-shadow: 0 25px 50px rgba(var(--c-service-accent-rgb), 0.05);
}

.service-section-title {
  font-family: var(--f-heading), Georgia, serif;
  font-size: 1.9rem;
  color: var(--c-text);
  margin-top: 0;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.service-section-title svg {
  color: var(--c-accent);
  filter: drop-shadow(0 2px 8px rgba(var(--c-service-accent-rgb), 0.3));
}

.service-text {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--c-text-sec);
  margin-bottom: 24px;
}

.service-text strong {
  color: var(--c-text);
  font-weight: 600;
}

/* ─── Premium Clinical Timeline ─── */
.timeline-container {
  position: relative;
  padding-left: 40px;
  margin-top: 35px;
}

/* Animated gradient timeline vertical bar */
.timeline-container::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(to bottom, var(--c-accent) 0%, rgba(var(--c-service-accent-rgb), 0.2) 70%, transparent 100%);
}

.timeline-step {
  position: relative;
  margin-bottom: 35px;
  padding: 15px 25px;
  border-radius: 20px;
  background: transparent;
  border: 1px solid transparent;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-step:last-child {
  margin-bottom: 0;
}

/* Dynamic steps highlight on hover */
.timeline-step:hover {
  background: rgba(var(--c-service-accent-rgb), 0.02);
  border-color: rgba(var(--c-service-accent-rgb), 0.1);
  transform: translateX(6px);
}

[data-theme="light"] .timeline-step:hover {
  background: rgba(0, 0, 0, 0.015);
  border-color: rgba(0, 0, 0, 0.03);
}

/* Golden / Turquoise Pearl Node */
.timeline-number {
  position: absolute;
  left: -40px;
  top: 15px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 2px solid var(--c-accent);
  color: var(--c-accent);
  font-family: var(--f-heading);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    inset 1px 1px 3px rgba(255, 255, 255, 0.1),
    0 4px 10px rgba(0, 0, 0, 0.3);
  transform: translateX(-50%);
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-step:hover .timeline-number {
  background: var(--c-accent);
  color: #ffffff;
  transform: translateX(-50%) scale(1.15);
  box-shadow: 
    0 0 15px rgba(var(--c-service-accent-rgb), 0.6),
    inset 1px 1px 3px rgba(255, 255, 255, 0.3);
}

.timeline-step-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 8px;
  transition: color 0.3s;
}

.timeline-step:hover .timeline-step-title {
  color: var(--c-accent);
}

.timeline-step-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--c-text-sec);
}

/* ─── Frosted Claymorphic Benefits Grid ─── */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 20px;
}

.benefit-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.005) 100%);
  border: 1px solid var(--border-color);
  padding: 28px;
  border-radius: 20px;
  box-shadow: 
    inset 1px 1px 2px rgba(255, 255, 255, 0.03), 
    inset -1px -1px 2px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.benefit-card:hover {
  background: rgba(var(--c-service-accent-rgb), 0.02);
  border-color: rgba(var(--c-service-accent-rgb), 0.35);
  transform: translateY(-5px);
  box-shadow: 
    0 15px 30px rgba(0, 0, 0, 0.25),
    inset 1px 1px 2px rgba(255, 255, 255, 0.05);
}

/* Interactive Floating Icons */
.benefit-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: radial-gradient(circle, rgba(var(--c-service-accent-rgb), 0.15) 0%, rgba(var(--c-service-accent-rgb), 0.04) 100%);
  border: 1px solid rgba(var(--c-service-accent-rgb), 0.2);
  color: var(--c-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.12) rotate(6deg);
  border-color: var(--c-accent);
  box-shadow: 0 0 15px rgba(var(--c-service-accent-rgb), 0.35);
}

.benefit-title {
  font-family: var(--f-heading), Georgia, serif;
  font-size: 1.2rem;
  color: var(--c-text);
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 600;
}

.benefit-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--c-text-sec);
  margin: 0;
}

/* ─── Right Sidebar: VIP Concierge Ticket ─── */
.concierge-card {
  width: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.005) 100%), var(--glass-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid var(--glass-border-1);
  border-left: 1px solid var(--glass-border-1);
  border-bottom: 1px solid var(--glass-border-2);
  border-right: 1px solid var(--glass-border-2);
  border-radius: 28px;
  padding: 35px;
  box-shadow: var(--glass-shadow-drop);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Gold / Turquoise corner ribbon effect */
.concierge-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, transparent 50%, var(--c-service-ribbon-bg) 50%);
  pointer-events: none;
}

.concierge-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.35);
  border-color: rgba(var(--c-service-accent-rgb), 0.3);
}

.concierge-avatar-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

/* Avatar Frame with Glowing Halo */
.concierge-avatar-wrapper {
  position: relative;
  width: 64px;
  height: 64px;
}

.concierge-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-accent);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.status-indicator {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #10b981;
  border: 2px solid #111a24;
  animation: pulseGreen 2s infinite;
}

[data-theme="light"] .status-indicator {
  border-color: #ffffff;
}

@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.concierge-name {
  font-family: var(--f-heading), Georgia, serif;
  font-size: 1.25rem;
  color: var(--c-text);
  font-weight: 600;
  margin: 0;
}

.concierge-role {
  font-size: 0.85rem;
  color: var(--c-accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
  font-weight: 700;
}

.concierge-title {
  font-family: var(--f-heading), Georgia, serif;
  font-size: 1.4rem;
  color: var(--c-text);
  margin-top: 0;
  margin-bottom: 14px;
  font-weight: 500;
}

.concierge-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--c-text-sec);
  margin-bottom: 12px;
}

.concierge-info-icon {
  color: var(--c-accent);
  flex-shrink: 0;
}

/* Dynamic theme gradient for the button */
.concierge-card .btn-primary {
  position: relative;
  overflow: hidden;
  background: var(--c-service-accent-grad) !important;
  color: #ffffff !important; /* Forces clean white text instead of light blue inheritance! */
  border: none !important;
  box-shadow: 0 4px 15px rgba(var(--c-service-accent-rgb), 0.3) !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.concierge-card .btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: skewX(-25deg);
  transition: 0.75s;
  opacity: 0;
}

.concierge-card .btn-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(var(--c-service-accent-rgb), 0.45) !important;
}

.concierge-card .btn-primary:hover::after {
  left: 125%;
  opacity: 1;
}

.btn-block {
  width: 100%;
  display: block;
  text-align: center;
  box-sizing: border-box;
}

/* ─── Sidebar info card (Locations/Hours) ─── */
.sidebar-info-card {
  width: 100%;
  margin-top: 30px;
  padding: 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.005) 100%), var(--glass-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid var(--glass-border-1);
  border-left: 1px solid var(--glass-border-1);
  border-bottom: 1px solid var(--glass-border-2);
  border-right: 1px solid var(--glass-border-2);
  border-radius: 24px;
  box-shadow: var(--glass-shadow-drop);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-info-card:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--c-service-accent-rgb), 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.sidebar-info-title {
  margin: 0 0 12px;
  font-family: var(--f-heading), Georgia, serif;
  color: var(--c-accent);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.sidebar-info-text {
  font-size: 0.95rem;
  color: var(--c-text-sec);
  margin: 0;
  line-height: 1.7;
}

/* ─── Sidebar Map Card ─── */
.sidebar-map-card {
  width: 100%;
  margin-top: 30px;
  padding: 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.005) 100%), var(--glass-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid var(--glass-border-1);
  border-left: 1px solid var(--glass-border-1);
  border-bottom: 1px solid var(--glass-border-2);
  border-right: 1px solid var(--glass-border-2);
  border-radius: 24px;
  box-shadow: var(--glass-shadow-drop);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-map-card:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--c-service-accent-rgb), 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.sidebar-map-title {
  margin: 0 0 16px;
  font-family: var(--f-heading), Georgia, serif;
  color: var(--c-accent);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-map-title svg {
  color: var(--c-accent);
}

.sidebar-map-iframe-wrap {
  width: 100%;
  height: 600px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  margin-bottom: 18px;
}

.sidebar-map-iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.2) contrast(1.1);
  transition: filter 0.3s;
}

.sidebar-map-iframe-wrap:hover iframe {
  filter: grayscale(0) contrast(1);
}

.sidebar-qr-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.015);
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

[data-theme="light"] .sidebar-qr-row {
  background: rgba(0, 0, 0, 0.01);
  border-color: rgba(0, 0, 0, 0.03);
}

.sidebar-qr-code {
  width: 140px;
  height: 140px;
  border-radius: 12px;
  background: #ffffff;
  padding: 6px;
  display: block;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.sidebar-qr-desc {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--c-text-sec);
}

/* ─── Google Review Star Rating Widget (Premium) ─── */
.sidebar-review-widget {
  margin-top: 22px;
  padding: 24px 22px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg,
    rgba(204, 168, 82, 0.04) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  border: 1px solid rgba(204, 168, 82, 0.18);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="light"] .sidebar-review-widget {
  background: linear-gradient(135deg,
    rgba(93, 193, 200, 0.04) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border-color: rgba(93, 193, 200, 0.15);
}

/* Radial glow behind stars */
.sidebar-review-widget::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 80px;
  background: radial-gradient(ellipse, rgba(204, 168, 82, 0.12) 0%, transparent 70%);
  pointer-events: none;
  transition: opacity 0.4s;
}

[data-theme="light"] .sidebar-review-widget::before {
  background: radial-gradient(ellipse, rgba(93, 193, 200, 0.1) 0%, transparent 70%);
}

.sidebar-review-widget:hover {
  border-color: rgba(204, 168, 82, 0.35);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

[data-theme="light"] .sidebar-review-widget:hover {
  border-color: rgba(93, 193, 200, 0.3);
}

/* Top Google branding row */
.sidebar-review-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}

.sidebar-review-google-logo {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.sidebar-review-google-logo .g-blue   { color: #4285F4; }
.sidebar-review-google-logo .g-red    { color: #EA4335; }
.sidebar-review-google-logo .g-yellow { color: #FBBC05; }
.sidebar-review-google-logo .g-green  { color: #34A853; }

.sidebar-review-divider {
  width: 1px;
  height: 14px;
  background: var(--border-color);
  flex-shrink: 0;
}

.sidebar-review-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--c-text-sec);
}

/* Rating score badge */
.sidebar-review-score-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}

.sidebar-review-score {
  font-family: var(--f-heading), Georgia, serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--c-accent);
  line-height: 1;
  letter-spacing: -1px;
}

.sidebar-review-meta {
  text-align: left;
}

.sidebar-review-count {
  font-size: 0.78rem;
  color: var(--c-text-sec);
  line-height: 1.4;
  display: block;
}

/* Stars row */
.sidebar-stars-row {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 16px;
  direction: ltr;
}

/* Individual star links */
.sidebar-star {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  animation: starEntrance 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.sidebar-star:nth-child(1) { animation-delay: 0.05s; }
.sidebar-star:nth-child(2) { animation-delay: 0.12s; }
.sidebar-star:nth-child(3) { animation-delay: 0.19s; }
.sidebar-star:nth-child(4) { animation-delay: 0.26s; }
.sidebar-star:nth-child(5) { animation-delay: 0.33s; }

@keyframes starEntrance {
  0%   { opacity: 0; transform: scale(0.3) rotate(-20deg); }
  70%  { transform: scale(1.15) rotate(4deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

.sidebar-star svg {
  width: 30px;
  height: 30px;
  fill: #cca852;
  transition: fill 0.15s ease,
              transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.2s ease;
  filter: drop-shadow(0 2px 5px rgba(204, 168, 82, 0.35));
}

[data-theme="light"] .sidebar-star svg {
  fill: #e0a800;
  filter: drop-shadow(0 2px 5px rgba(224, 168, 0, 0.3));
}

/* Hover: all stars light up, hovered and before it glow gold */
.sidebar-stars-row:hover .sidebar-star svg {
  fill: #f5c842;
  transform: scale(1.25) translateY(-3px);
  filter: drop-shadow(0 4px 10px rgba(204, 168, 82, 0.7));
}

/* Stars AFTER the hovered one dim back down */
.sidebar-stars-row .sidebar-star:hover ~ .sidebar-star svg {
  fill: rgba(204, 168, 82, 0.3);
  transform: scale(1);
  filter: none;
}

/* CTA Button */
.sidebar-review-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 10px 22px;
  border-radius: 50px;
  border: none;
  background: linear-gradient(135deg, #cca852 0%, #8c6a26 100%);
  box-shadow: 0 4px 15px rgba(204, 168, 82, 0.3),
              inset 1px 1px 2px rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  width: 100%;
}

[data-theme="light"] .sidebar-review-cta {
  background: linear-gradient(135deg, #5DC1C8 0%, #2e8b90 100%);
  box-shadow: 0 4px 15px rgba(93, 193, 200, 0.3),
              inset 1px 1px 2px rgba(255, 255, 255, 0.3);
}

/* Shimmer sweep on hover */
.sidebar-review-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}

.sidebar-review-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(204, 168, 82, 0.45),
              inset 1px 1px 2px rgba(255, 255, 255, 0.2);
}

[data-theme="light"] .sidebar-review-cta:hover {
  box-shadow: 0 8px 25px rgba(93, 193, 200, 0.4);
}

.sidebar-review-cta:hover::after {
  left: 130%;
}


/* ─── Responsive Breakpoints ─── */

@media (max-width: 1024px) {
  .service-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .service-hero-banner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 30px;
    gap: 30px;
  }
  .service-hero-illustration-wrap {
    order: -1; /* Place illustration above title on tablets */
  }
  .service-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .back-btn {
    margin-bottom: 25px;
  }
}

@media (max-width: 768px) {
  .service-hero {
    padding-top: 120px;
    padding-bottom: 50px;
  }
  .service-hero .container {
    padding: 0 16px;
  }
  .service-hero-banner {
    padding: 35px 25px;
    border-radius: 24px;
    margin-bottom: 25px;
  }
  .service-hero-title {
    font-size: 2.3rem;
    line-height: 1.3;
  }
  .service-hero-img-container {
    width: 200px;
    height: 200px;
  }
  .service-card {
    padding: 30px 24px;
    border-radius: 24px;
    margin-bottom: 20px;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .concierge-card {
    padding: 28px;
  }
  .sidebar-info-card {
    padding: 28px;
    margin-top: 20px;
  }
  .sidebar-map-card {
    padding: 28px;
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .service-hero {
    padding-top: 110px;
    padding-bottom: 35px;
  }
  .service-hero-banner {
    padding: 24px 16px;
    gap: 20px;
    border-radius: 16px;
  }
  .service-hero-title {
    font-size: 1.85rem;
  }
  .service-hero-img-container {
    width: 140px;
    height: 140px;
  }
  .service-card {
    padding: 24px 16px;
    border-radius: 16px;
    margin-bottom: 16px;
  }
  .service-section-title {
    font-size: 1.45rem;
    gap: 8px;
  }
  .service-section-title svg {
    width: 20px;
    height: 20px;
  }
  .timeline-container {
    padding-left: 28px;
  }
  .timeline-step {
    margin-bottom: 25px;
    padding: 10px 15px;
  }
  .timeline-number {
    left: -40px;
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
  }
  .benefit-card {
    padding: 20px 16px;
    border-radius: 14px;
  }
  .benefit-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
  }
  .concierge-card {
    padding: 20px 16px;
    border-radius: 16px;
  }
  .sidebar-info-card {
    padding: 20px 16px;
    border-radius: 16px;
  }
  .sidebar-map-card {
    padding: 20px 16px;
    border-radius: 16px;
  }
  .sidebar-map-iframe-wrap {
    height: 200px;
  }
}
