/* =============================================
   #21 Multi Master — Bloom Beauty Studio
   Warm coral team-focused studio theme
   Font: Outfit + Source Sans 3
   ============================================= */

:root {
  --t-bg: #FFFAF5;
  --t-bg-alt: #FFF0E8;
  --t-text: #2D2520;
  --t-text-muted: #8B7D70;
  --t-accent: #D4845A;
  --t-accent-hover: #C47348;
  --t-accent-light: rgba(212, 132, 90, 0.10);
  --t-surface: #FBF0E8;
  --t-border: #E8D5C5;
  --t-gold: #D4AF37;
  --t-font-heading: 'Outfit', system-ui, sans-serif;
  --t-font-body: 'Source Sans 3', 'Source Sans Pro', system-ui, sans-serif;
  --t-radius: 0.875rem;
  --t-radius-lg: 1.5rem;
}

html { scroll-behavior: smooth; }

/* ---- Hero shimmer ---- */
@keyframes heroShimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero-bg {
  background: linear-gradient(135deg, #FFF0E8 0%, #F5D0BC 25%, #FBE8DD 50%, #F0C0A8 75%, #FFF0E8 100%);
  background-size: 400% 400%;
  animation: heroShimmer 12s ease infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* ---- Nav ---- */
.nav-scrolled { box-shadow: 0 2px 20px rgba(212,132,90,0.12); }

/* ---- Section divider ---- */
.section-divider {
  width: 60px;
  height: 3px;
  border-radius: 2px;
  background: var(--t-accent);
  margin: 0 auto 1.5rem;
}

/* ---- Master cards ---- */
.master-card {
  background: var(--t-bg);
  border: 1px solid var(--t-border);
  border-radius: var(--t-radius-lg);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.master-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(45,37,32,0.12);
}

/* ---- Service columns ---- */
.service-col {
  border-radius: var(--t-radius-lg);
  padding: 1.5rem;
  background: var(--t-surface);
  border: 1px solid var(--t-border);
}

/* ---- Price popular badge ---- */
.price-popular {
  background: var(--t-accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-left: 0.4rem;
  vertical-align: middle;
}

/* ---- Price row ---- */
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--t-border);
}
.price-row:last-child { border-bottom: none; }

/* ---- Portfolio ---- */
.portfolio-swiper .swiper-pagination-bullet-active,
.reviews-swiper .swiper-pagination-bullet-active {
  background: var(--t-accent) !important;
}

/* ---- FAQ ---- */
.faq-item summary {
  cursor: pointer;
  padding: 1rem 1.25rem;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0.75rem;
  transition: background 0.3s;
  min-height: 48px;
  font-size: 0.95rem;
}
.faq-item summary:hover { background: var(--t-surface); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary .faq-chevron { transform: rotate(180deg); }
.faq-chevron {
  transition: transform 0.3s;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-left: 0.5rem;
}

/* ---- Floating CTA ---- */
.floating-cta a {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  transition: transform 0.3s;
}
.floating-cta a:hover { transform: scale(1.1); }

/* ==========================================
   MOBILE (max-width: 767px)
   ========================================== */
@media (max-width: 767px) {
  .mobile-cta-bar {
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 55;
    background: rgba(255,250,245,0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.625rem 0.75rem;
    padding-bottom: calc(0.625rem + env(safe-area-inset-bottom, 0px));
    gap: 0.5rem;
    border-top: 1px solid var(--t-border);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
  }
  .mobile-cta-bar a {
    flex: 1;
    text-align: center;
    padding: 0.75rem;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
  }
  .floating-cta { display: none !important; }
  body { padding-bottom: calc(3.5rem + env(safe-area-inset-bottom, 0px)); }
  .faq-item summary { padding: 0.875rem 1rem; font-size: 0.875rem; }
  .master-card { max-width: 320px; margin: 0 auto; }
}
