/* ===================================================
   SHIMMERING SPACES — styles.css
   =================================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
  --white:         #FFFFFF;
  --off-white:     #FDF5F8;
  --blue-50:       #FCE4EC;
  --blue-100:      #F8BBD0;
  --blue-200:      #F48FB1;
  --primary:       #C06080;
  --primary-mid:   #D07090;
  --primary-light: #E09AB0;
  --primary-bright:#C87088;
  --cyan:          #C06080;
  --cyan-light:    #DDA0B8;
  --wine:          #6B1D4A;
  --navy:          #1A0A1E;
  --navy-dark:     #0F0612;
  --gold:          #FBBF24;
  --gold-light:    #FCD34D;
  --text:          #1A0A1E;
  --text-mid:      #4A3050;
  --text-light:    #7A5577;
  --border:        #EDD8E8;
  --shadow-sm:     0 2px 8px rgba(58,11,40,0.08);
  --shadow-md:     0 8px 32px rgba(58,11,40,0.12);
  --shadow-lg:     0 20px 60px rgba(58,11,40,0.18);
  --shadow-blue:   0 8px 32px rgba(192,96,128,0.28);
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     22px;
  --radius-xl:     32px;
  --transition:    0.3s cubic-bezier(0.4,0,0.2,1);
  --font-head:     'Playfair Display', Georgia, serif;
  --font-body:     'Inter', system-ui, sans-serif;
  --max-width:     1200px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 18px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- Cursor Canvas ---------- */
#cursor-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
}

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; border-bottom: 1px solid #F8BBD0; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  flex: 0 0 30px;
  height: 1px;
  background: var(--primary);
  opacity: 0.4;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
  display: inline-block;
  padding-bottom: 12px;
  border-bottom: 2px solid #F48FB1;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-lg { padding: 17px 36px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; border-radius: var(--radius-md); }

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  color: #fff;
  box-shadow: var(--shadow-blue);
  border-radius: 8px;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #A84E6A 0%, #985060 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(192,96,128,0.4);
}
.btn-primary:active { transform: translateY(0); }

/* Shine sweep effect */
.btn-shine::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-15deg);
  transition: left 0.5s ease;
}
.btn-shine:hover::after { left: 150%; }

.btn-ghost {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid #ffffff;
  border-radius: 8px;
}
.btn-ghost:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: none; }

/* ---------- NAVIGATION ---------- */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  background: #ffffff;
  box-shadow: 0 2px 16px rgba(168,32,90,0.08);
  transition: box-shadow var(--transition), height var(--transition);
}

.nav-header.scrolled {
  background: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 2px 20px rgba(194, 24, 91, 0.08);
}

.nav-header.scrolled .nav-container {
  height: 60px;
}

.nav-header.scrolled .nav-logo-img {
  height: 52px;
}

.nav-container {
  max-width: none;
  width: 100%;
  padding: 0 24px 0 52px;
  display: flex;
  align-items: center;
  gap: 32px;
  height: 100px;
  transition: height var(--transition);
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }

.nav-logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
  transition: opacity var(--transition), height var(--transition);
}
.nav-logo-img:hover { opacity: 0.85; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 0;
  list-style: none;
}

.nav-link {
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--primary);
  background: #ffffff;
}

.nav-cta {
  margin-left: 16px;
  padding: 10px 22px;
  font-size: 0.88rem;
  flex-shrink: 0;
  border-radius: 8px;
  animation: pulse-pink 2s ease-in-out infinite;
}

@keyframes pulse-pink {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.03); }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-backdrop {
  position: fixed; inset: 0;
  background: rgba(15,6,18,0.7);
  backdrop-filter: blur(4px);
  z-index: 900;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.nav-backdrop.open { opacity: 1; pointer-events: auto; }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  background: url('hero-kitchen.jpg') center center / cover no-repeat;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  max-width: 800px;
  gap: 6rem;
  align-items: center;
  max-width: 1400px;
  text-align: center;
  justify-items: center;
  margin: 0 auto;
  padding: 150px 48px 90px 48px;
  flex: 1;
  width: 100%;
}

/* --- Hero Left --- */
.hero-left { display: flex; flex-direction: column; gap: 32px; overflow: visible; padding-left: 3rem; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

.eyebrow-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan-light);
  box-shadow: 0 0 8px var(--cyan-light), 0 0 20px var(--cyan-light);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 8px var(--cyan-light), 0 0 20px var(--cyan-light); }
  50%       { box-shadow: 0 0 16px var(--cyan-light), 0 0 40px rgba(244,143,177,0.5); }
}

.hero-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  font-style: normal;
  color: #ffffff;
  line-height: 1.15;
  white-space: normal;
  padding-bottom: 0.12em;
  margin-left: 0;
  padding-left: 6px;
  overflow: visible;
}

/* Shimmer animated text */
.shimmer-word {
  display: inline;
  font-style: normal;
  font-weight: 700;
  white-space: nowrap;
  padding: 0 10px;
}

@keyframes shimmer-move {
  0%   { background-position: 150% center; }
  100% { background-position: -150% center; }
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.hero-heading-llc {
  display: block;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #F48FB1;
  margin-top: 4px;
}

.hero-trust {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  padding-top: 4px;
  justify-content: center;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(0,0,0,0.45);
  border: 1.5px solid rgba(255,255,255,0.8);
  font-size: 12px;
  white-space: nowrap;
  font-weight: 600;
  color: #ffffff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.trust-icon {
  color: #F48FB1;
  display: flex;
  align-items: center;
  font-size: 0.85rem;
}

/* --- Hero Right: Photo --- */
.hero-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(236, 64, 122, 0.15);
}

.hero-photo-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(194, 24, 91, 0.12);
}

.hero-photo-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.hero-badge-icon {
  width: 34px; height: 34px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
  flex-shrink: 0;
}

.hero-badge-text strong {
  display: block;
  font-size: 0.82rem;
  color: var(--text);
  font-weight: 600;
  line-height: 1.3;
}

.hero-badge-text span {
  font-size: 0.72rem;
  color: var(--text-light);
}


/* --- Scroll cue --- */
.hero-scroll-cue {
  display: none;
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--transition);
}
.hero-scroll-cue:hover { color: var(--primary-mid); }
.scroll-text { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.scroll-chevron {
  width: 20px; height: 20px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  animation: bounce-down 1.8s ease-in-out infinite;
}
@keyframes bounce-down {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.4; }
  50%       { transform: rotate(45deg) translateY(4px); opacity: 1; }
}

/* ===================== TICKER STRIP ===================== */
.ticker-strip {
  background: #fdf0f4;
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 5;
}
.ticker-track {
  display: inline-flex;
  gap: 0;
  animation: ticker-scroll 40s linear infinite;
}
.ticker-item {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  padding: 0 28px;
  flex-shrink: 0;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===================== SERVICES ===================== */
.services { background: #ffffff; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

/* First 3 cards fill top row (2 columns each across a 6-col grid) */
.service-card { grid-column: span 2; }

/* Bottom 2 cards: shift right by 1 col each so they sit centered */
.service-card:nth-child(4) { grid-column: 2 / 4; }
.service-card:nth-child(5) { grid-column: 4 / 6; }

.service-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 0;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: default;
  display: flex;
  flex-direction: column;
}

.service-card-img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  flex-shrink: 0;
}

.service-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(194, 24, 91, 0.12);
  border-color: var(--blue-200);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-icon-wrap {
  width: 56px; height: 56px;
  background: #ffffff;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--transition);
}
.service-card:hover .service-icon-wrap { background: var(--blue-100); }

.service-icon {
  width: 30px; height: 30px;
  color: var(--primary);
}

.service-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.03em;
  transition: gap var(--transition), color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-link span { transition: transform var(--transition); }
.service-link:hover { color: var(--primary-mid); }
.service-link:hover span { transform: translateX(4px); }

/* ===================== HOW IT WORKS ===================== */
.process {
  background: #fdf7f9;
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(194,24,91,0.04) 0%, transparent 70%);
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr 48px 1fr 48px 1fr;
  align-items: center;
  gap: 0;
}

.process-connector {
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-connector::after {
  content: '';
  display: block;
  width: 40px; height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--cyan));
  border-radius: 1px;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

.step-number {
  font-size: 3rem;
  font-weight: 400;
  font-family: 'Playfair Display', serif;
  color: #F8BBD0;
  line-height: 1;
  margin-bottom: -12px;
  transition: color var(--transition);
}
.process-step:hover .step-number { color: var(--blue-200); }

.step-content {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--border);
  width: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}
.process-step:hover .step-content {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-icon {
  width: 52px; height: 52px;
  background: #ffffff;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step-icon svg { width: 28px; height: 28px; color: var(--primary); }

.step-content h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.step-content p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.65; }

/* ===================== OUR WORK ===================== */
.our-work { background: #ffffff; }
.our-work .section-title { color: var(--navy); }
.our-work .section-eyebrow { color: var(--primary); }
.our-work .section-subtitle { color: #333333; }
.our-work .container {
  max-width: 100%;
  padding: 0 40px;
}

/* Carousel */
.work-carousel {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 400px;
  overflow: hidden;
  user-select: none;
}

.work-carousel-track {
  display: flex;
  height: 100%;
  gap: 16px;
  will-change: transform;
}

.work-slide {
  position: relative;
  height: 100%;
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.work-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.work-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 5px 12px;
  background: rgba(194, 24, 91, 0.85);
  backdrop-filter: blur(4px);
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.work-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #C2185B;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s ease, transform 0.2s ease;
}

.work-arrow:hover {
  background: #a31550;
  transform: translateY(-50%) scale(1.08);
}

.work-arrow svg {
  width: 20px;
  height: 20px;
}

.work-arrow--prev { left: 16px; }
.work-arrow--next { right: 16px; }

.work-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.work-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.work-dot.active {
  background: #C2185B;
  transform: scale(1.2);
}

/* ===================== WHY US ===================== */
.why-us { background: #FFF8FA; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.stat-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.stat-number {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}
.stat-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 8px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1px solid var(--border);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-200);
}

.feature-icon {
  width: 60px; height: 60px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: background var(--transition);
}
.feature-card:hover .feature-icon { background: var(--blue-100); }
.feature-icon svg { width: 28px; height: 28px; color: #C2185B; }

.feature-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.feature-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; }

/* ===================== GALLERY ===================== */
.gallery { background: #fff; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #ffffff;
}
.gallery-item--large { grid-column: span 2; grid-row: span 2; }
.gallery-item--tall  { grid-row: span 2; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,26,58,0.85) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.05em;
}

/* ===================== TESTIMONIALS ===================== */
.testimonials {
  background: #fdf7f9;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 24px;
  align-items: start;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial-card--featured {
  background: var(--navy);
  border-color: transparent;
  box-shadow: var(--shadow-blue);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 24px;
  font-style: italic;
  font-family: 'Playfair Display', serif;
}
.testimonial-card--featured blockquote { color: rgba(255,255,255,0.75); }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--border);
}
.testimonial-card--featured .testimonial-avatar { border-color: rgba(255,255,255,0.2); }
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
}
.testimonial-card--featured .testimonial-author strong { color: #fff; }
.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-light);
}
.testimonial-card--featured .testimonial-author span { color: rgba(255,255,255,0.5); }

/* ===================== CONTACT ===================== */
.contact { background: #ffffff; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.contact-form-wrap,
.careers-form-wrap {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

/* ---------- Forms ---------- */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 0;
}

.form-group label {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}
.required { color: var(--primary); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(194,24,91,0.1);
}

.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}

.form-error {
  font-size: 0.78rem;
  color: #EF4444;
  font-weight: 500;
  display: none;
}
.form-group.show-error .form-error { display: block; }

.form-note {
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 10px;
}

/* Form group as direct child needs margin */
.contact-form > .form-group,
.careers-form > .form-group {
  margin-bottom: 16px;
}
.contact-form > .btn,
.careers-form > .btn { margin-top: 8px; }

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.visible { display: flex; flex-direction: column; align-items: center; gap: 12px; }
form.hidden { display: none; }

.success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  color: #fff;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-blue);
  margin: 0 auto;
}
.form-success h3 { font-family: var(--font-head); font-size: 1.5rem; color: var(--navy); }
.form-success p  { color: var(--text-mid); font-size: 0.95rem; }

/* --- Contact Info Panel --- */
.contact-info {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  box-shadow: var(--shadow-lg);
}

.contact-info-title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 28px;
}

.contact-info-list { display: flex; flex-direction: column; gap: 22px; }

.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-info-icon {
  background: #C2185B;
  border-radius: 50%;
  padding: 10px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffffff;
}
.contact-info-icon svg { stroke: #ffffff; width: 20px; height: 20px; }

.contact-info-item > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-info-item strong {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.contact-info-item span,
.contact-info-item a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  transition: color var(--transition);
}
.contact-info-item a:hover { color: var(--cyan-light); }

/* ===================== CAREERS ===================== */
.careers { background: #ffffff; }

.careers-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.careers-benefits { display: flex; flex-direction: column; gap: 28px; }
.careers-benefits-title {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--navy);
}
.benefits-list { display: flex; flex-direction: column; gap: 20px; }
.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.benefit-icon {
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
  background: #fdf0f4;
  border-radius: 12px;
  padding: 10px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit-item strong { display: block; font-size: 0.95rem; color: var(--navy); margin-bottom: 2px; }
.benefit-item p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; }

.careers-form-title {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 24px;
}

/* ===================== FOOTER ===================== */
.footer { background: var(--navy-dark); color: rgba(255,255,255,0.7); }

.footer-top { padding: 80px 0 60px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-brand { display: flex; flex-direction: column; gap: 16px; }

.footer-logo-link { display: inline-block; }
.footer-logo-img {
  height: 120px;
  width: auto;
  object-fit: contain;
  transition: filter var(--transition);
}
.footer-logo-link:hover .footer-logo-img { filter: brightness(1.1) drop-shadow(0 0 12px rgba(244,143,177,0.5)); }

.footer-tagline { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.5); max-width: 280px; }

.footer-socials { display: flex; gap: 10px; margin-top: 4px; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.social-link svg { width: 16px; height: 16px; }
.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links li a,
.footer-links li span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
  line-height: 1.5;
}
.footer-links li a:hover { color: #EC407A; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 22px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ===================== BACK TO TOP ===================== */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-blue);
  z-index: 900;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}
.back-to-top.visible { opacity: 1; transform: none; pointer-events: auto; }
.back-to-top:hover { background: var(--primary-mid); transform: translateY(-2px); }

/* ===================== FLOATING CALL BUTTON ===================== */
.floating-call-btn {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  background: #EC407A;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(236, 64, 122, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}
.floating-call-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(236, 64, 122, 0.55);
}
@media (max-width: 768px) {
  .floating-call-btn { display: inline-flex; align-items: center; gap: 6px; }
}

/* ===================== LIGHTBOX ===================== */
/* Injected by JS — styles left in script.js */

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .services-grid      { grid-template-columns: repeat(4, 1fr); }
  .services-grid .service-card { grid-column: span 2; }
  .services-grid .service-card:nth-child(4),
  .services-grid .service-card:nth-child(5) { grid-column: span 2; }
  .features-grid      { grid-template-columns: repeat(2, 1fr); }
  .footer-grid        { grid-template-columns: 1fr 1fr; gap: 32px; }
  .testimonials-grid  { grid-template-columns: 1fr 1fr; }
  .testimonials-grid .testimonial-card:last-child { grid-column: span 2; }
  .hero-inner         { gap: 32px; padding: 130px 0 70px 24px; }
  .process-steps      { grid-template-columns: 1fr; gap: 8px; }
  .process-connector  { transform: rotate(90deg); height: 24px; }
  .process-connector::after { width: 24px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  /* Nav */
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--navy-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 28px 40px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    z-index: 950;
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link { font-size: 1rem; padding: 10px 14px; width: 100%; color: rgba(255,255,255,0.8); }
  .nav-link:hover, .nav-link.active { color: #fff; background: rgba(255,255,255,0.1); }
  .nav-cta  { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 110px 20px 48px;
  }
  .hero-photo-wrap { border-radius: var(--radius-xl); }
  .hero-heading { font-size: clamp(2.4rem, 8vw, 3.4rem); }
  .hero-right { order: -1; }
  .hero-photo-wrap { max-width: 100%; }
  .hero-scroll-cue { bottom: 200px; }

  /* Stats */
  .stats-row { grid-template-columns: repeat(2, 1fr); }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .services-grid .service-card,
  .services-grid .service-card:nth-child(4),
  .services-grid .service-card:nth-child(5) { grid-column: span 1; }

  /* Our Work */
  .work-carousel { height: 360px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--large { grid-column: span 2; }
  .gallery-item--tall  { grid-row: span 1; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid .testimonial-card:last-child { grid-column: span 1; }

  /* Contact / Careers */
  .contact-layout { grid-template-columns: 1fr; }
  .careers-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; }

  .hero-left { padding-left: 0 !important; text-align: center; }
  .hero-heading { font-size: clamp(1.8rem, 7vw, 2.8rem) !important; white-space: normal; overflow: visible; width: 100%; }
  .hero-inner { overflow: hidden; }
  .back-to-top { display: none !important; }
  .hero-trust { flex-wrap: wrap; justify-content: center; }
  .form-group input, .form-group select, .form-group textarea { font-size: 16px; }
  .back-to-top { bottom: 80px; right: 16px; }
  .floating-call-btn { bottom: 24px; right: 16px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero-trust { flex-direction: column; align-items: flex-start; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .work-carousel { height: 300px; }
  .work-arrow { width: 36px; height: 36px; }
  .work-arrow svg { width: 16px; height: 16px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--large, .gallery-item--tall { grid-column: span 1; grid-row: span 1; }

  .hero-trust { justify-content: center; }
  .features-grid { grid-template-columns: 1fr; }
  .nav-logo-img { height: 60px; }
  .nav-container { padding: 0 16px; }
}

/* ===================== REDUCED MOTION ===================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .ticker-track { animation: none; }
  .shimmer-word { animation: none; -webkit-text-fill-color: #fff; }
}

/* ===================== CHAT WIDGET ===================== */

/* Container — stacks panel above bubble, anchored to bottom-right */
.chat-widget {
  position: fixed;
  bottom: 90px;   /* sits above the 46px back-to-top button at 28px */
  right: 28px;
  z-index: 950;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  pointer-events: none; /* children re-enable as needed */
}

/* ---------- Bubble toggle button ---------- */
.chat-bubble-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #C2185B;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(194, 24, 91, 0.45);
  pointer-events: auto;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.25s ease,
              background 0.2s ease;
}
.chat-bubble-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(194, 24, 91, 0.6);
  background: #a31550;
}

/* Two icon states: chat bubble shown by default, X shown when open */
.chat-bubble-icon {
  width: 26px;
  height: 26px;
  color: #fff;
  position: absolute;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.chat-bubble-icon--open  { opacity: 1;  transform: scale(1);    }
.chat-bubble-icon--close { opacity: 0;  transform: scale(0.6);  }

.chat-bubble-btn--open .chat-bubble-icon--open  { opacity: 0;  transform: scale(0.6); }
.chat-bubble-btn--open .chat-bubble-icon--close { opacity: 1;  transform: scale(1);   }

/* ---------- Chat panel ---------- */
.chat-panel {
  width: 360px;
  height: 500px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(58, 11, 40, 0.2), 0 2px 8px rgba(58, 11, 40, 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transform: translateY(14px) scale(0.96);
  transform-origin: bottom right;
  transition: opacity 0.25s cubic-bezier(0.4,0,0.2,1),
              transform 0.25s cubic-bezier(0.4,0,0.2,1);
}
.chat-panel--open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* ---------- Header ---------- */
.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: linear-gradient(135deg, #C2185B 0%, #E91E8C 100%);
  flex-shrink: 0;
}
.chat-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.chat-avatar-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.chat-avatar-icon svg { width: 18px; height: 18px; color: #fff; }
.chat-header-text { display: flex; flex-direction: column; gap: 2px; }
.chat-header-title {
  font-family: var(--font-body);
  font-size: 0.93rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.chat-header-status {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.01em;
}
.chat-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  transition: background 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}
.chat-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.chat-close-btn svg { width: 17px; height: 17px; }

/* ---------- Messages area ---------- */
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 14px 14px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  scroll-behavior: smooth;
}
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-track { background: transparent; }
.chat-messages::-webkit-scrollbar-thumb {
  background: #EDD8E8;
  border-radius: 4px;
}

/* ---------- Individual messages ---------- */
.chat-message {
  max-width: 82%;
  padding: 9px 13px;
  border-radius: 16px;
  font-size: 0.875rem;
  line-height: 1.5;
  word-break: break-word;
  animation: chatMsgIn 0.2s ease both;
}
@keyframes chatMsgIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Bot messages — pink tint, left-aligned */
.chat-message--bot {
  background: #FCE4EC;
  color: #3A0A28;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

/* User messages — brand pink, right-aligned */
.chat-message--user {
  background: #C2185B;
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

/* ---------- Typing indicator ---------- */
.chat-typing-indicator {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  background: #FCE4EC;
  border-radius: 16px 16px 16px 4px;
  align-self: flex-start;
  animation: chatMsgIn 0.2s ease both;
}
.chat-typing-indicator span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #C2185B;
  animation: chatDotBounce 1.2s infinite ease-in-out;
}
.chat-typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing-indicator span:nth-child(3) { animation-delay: 0.4s; }
@keyframes chatDotBounce {
  0%, 60%, 100% { transform: translateY(0);    opacity: 0.45; }
  30%           { transform: translateY(-5px); opacity: 1;    }
}

/* ---------- Input row ---------- */
.chat-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid #EDD8E8;
  background: #fff;
  flex-shrink: 0;
}
.chat-input {
  flex: 1;
  padding: 9px 14px;
  border: 1.5px solid #EDD8E8;
  border-radius: 24px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text);
  background: #FDF5F8;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.chat-input:focus {
  border-color: #C2185B;
  box-shadow: 0 0 0 3px rgba(194, 24, 91, 0.12);
  background: #fff;
}
.chat-input::placeholder { color: #A07090; }

.chat-send-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #C2185B;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.chat-send-btn:hover   { background: #a31550; transform: scale(1.06); }
.chat-send-btn:disabled { background: #EDD8E8; cursor: not-allowed; transform: none; }
.chat-send-btn svg { width: 16px; height: 16px; color: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .chat-widget {
    bottom: 88px;  /* above floating-call-btn (~52px) at 24px */
    right: 24px;
  }
  .chat-panel {
    width: min(360px, calc(100vw - 32px));
    height: min(500px, calc(100dvh - 190px));
  }
}

@media (max-width: 480px) {
  .chat-widget {
    right: 16px;
    bottom: 88px;
  }
  .chat-panel {
    width: calc(100vw - 32px);
    height: min(480px, calc(100dvh - 170px));
  }
  .chat-bubble-btn {
    width: 52px;
    height: 52px;
  }
}
