:root {
  --bg: #080504;
  --bg-soft: #120a08;
  --panel: rgba(25, 15, 11, 0.65);
  --panel-strong: rgba(31, 19, 14, 0.88);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 192, 120, 0.3);
  --text: #f5ede7;
  --muted: #b9a89e;
  --accent: #ff6d2f;
  --accent-2: #f5c76d;
  --accent-3: #d84716;
  --shadow: 0 32px 80px rgba(0, 0, 0, 0.42);
  --radius: 24px;
  --radius-sm: 18px;
  --transition: 0.35s ease;
  --container: 1280px;
  --section-gap: clamp(1.75rem, 4vw, 3.5rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 109, 47, 0.12), transparent 30%),
    radial-gradient(circle at 85% 10%, rgba(245, 199, 109, 0.12), transparent 28%),
    linear-gradient(180deg, #080504 0%, #090505 28%, #0d0706 60%, #080504 100%);
  font-family: "Manrope", sans-serif;
  max-width: 100%;
  overflow-x: hidden;
}

section[id],
footer[id] {
  scroll-margin-top: 110px;
}

body.modal-open {
  padding-right: 0 !important;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  background: transparent;
}

::selection {
  background: rgba(255, 109, 47, 0.3);
  color: #fff;
}

.container {
  max-width: var(--container);
}

.noise-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.11;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 5px 5px;
  mask-image: radial-gradient(circle at center, black 20%, transparent 95%);
  z-index: 1;
}

.page-loader {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(8, 5, 4, 0.98);
  z-index: 1200;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-core {
  text-align: center;
  position: relative;
}

.loader-ring {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top-color: var(--accent-2);
  border-right-color: var(--accent);
  margin: 0 auto 1.5rem;
  animation: spin 1.2s linear infinite;
}

.loader-logo {
  width: 76px;
  position: absolute;
  inset: 28px 0 auto 0;
  margin-inline: auto;
  filter: drop-shadow(0 0 24px rgba(255, 109, 47, 0.35));
}

.loader-core p {
  margin: 0;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  left: 0;
  top: 0;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  z-index: 1300;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.has-custom-cursor .cursor-dot,
.has-custom-cursor .cursor-ring {
  opacity: 1;
}

.cursor-dot {
  width: 10px;
  height: 10px;
  background: var(--accent-2);
}

.cursor-ring {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(245, 199, 109, 0.5);
  backdrop-filter: blur(5px);
}

body.cursor-hover .cursor-ring {
  transform: translate(-50%, -50%) scale(1.35);
  border-color: rgba(255, 109, 47, 0.85);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 1rem 0;
  width: 100%;
  overflow-x: clip;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(7, 4, 4, 0.72);
  backdrop-filter: blur(22px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.24);
  padding: 0.7rem 0;
}

.navbar {
  padding: 0;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  flex-shrink: 0;
}

.brand-logo {
  width: 100px;
  height: auto;
  filter: drop-shadow(0 0 18px rgba(255, 122, 48, 0.22));
}

.brand-copy {
  display: grid;
  gap: 0.12rem;
}

.brand-copy strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  line-height: 0.95;
}

.brand-copy small {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.navbar-nav {
  gap: 0.5rem;
}

.nav-link {
  position: relative;
  color: var(--text);
  padding-inline: 1rem !important;
  font-size: 0.94rem;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.35rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-2), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  transform: scaleX(1);
}

.navbar-toggler {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 14px;
  box-shadow: none !important;
}

.navbar-toggler span {
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.navbar-mobile-cta {
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  white-space: nowrap;
}

.btn {
  border-radius: 999px;
  padding: 0.95rem 1.65rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), color var(--transition);
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.25) 50%, transparent 80%);
  transform: translateX(-140%);
  transition: transform 0.7s ease;
}

.btn:hover::after,
.btn:focus-visible::after {
  transform: translateX(140%);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
}

.btn-luxe {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-3) 40%, var(--accent-2) 100%);
  color: #fff;
  box-shadow: 0 18px 38px rgba(216, 71, 22, 0.34);
}

.btn-outline-luxe {
  border: 1px solid rgba(245, 199, 109, 0.35);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(16px);
}

.glass-card {
  background: linear-gradient(180deg, rgba(34, 20, 14, 0.74), rgba(18, 11, 9, 0.78));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  backdrop-filter: blur(22px);
  position: relative;
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.12), rgba(255, 109, 47, 0.1), rgba(245, 199, 109, 0.16));
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.hero-section {
  position: relative;
  height: clamp(24rem, 72svh, 46rem);
  min-height: 24rem;
  max-height: 46rem;
  overflow: hidden;
  background: #000;
}

.hero-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-section.video-fallback .hero-video {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 5, 4, 0.92) 5%, rgba(8, 5, 4, 0.72) 44%, rgba(8, 5, 4, 0.82) 100%),
    linear-gradient(180deg, rgba(8, 5, 4, 0.3), rgba(8, 5, 4, 0.8));
}

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

.hero-copy {
  max-width: 680px;
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  font-weight: 700;
}

.hero-kicker::before,
.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, rgba(245, 199, 109, 0), rgba(245, 199, 109, 1));
}

.hero-copy h1,
.section-head h2,
.hero-card h2,
.quote-copy h2,
.footer-card h3 {
  font-family: "Cormorant Garamond", serif;
}

.hero-copy h1 {
  font-size: clamp(3.4rem, 7vw, 6.6rem);
  line-height: 0.92;
  margin: 1.1rem 0 1.25rem;
  letter-spacing: -0.03em;
}

.hero-copy p,
.section-head p,
.about-copy p,
.service-body p,
.feature-card p,
.testimonial-card p,
.review-card p,
.footer-card p,
.quote-copy p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 1.5rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  font-size: 0.88rem;
  color: #e6d7cf;
}

.hero-card {
  padding: 2rem;
}

.hero-card-top h2 {
  font-size: clamp(2rem, 4vw, 2.7rem);
  margin: 0.4rem 0 0;
  line-height: 1;
}

.hero-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.8rem 0;
}

.metric-card {
  padding: 1.15rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.metric-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(245, 199, 109, 0.25);
}

.metric-value {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 800;
  color: var(--accent-2);
  line-height: 1;
}

.metric-label {
  display: block;
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.service-snippets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.8rem;
}

.service-snippets span,
.about-chips span,
.service-tags span {
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  color: #ebddd5;
}

.hero-callout {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 109, 47, 0.12), rgba(245, 199, 109, 0.1));
  border: 1px solid rgba(245, 199, 109, 0.22);
  transition: transform var(--transition), border-color var(--transition);
}

.hero-callout:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 199, 109, 0.42);
}

.hero-callout i {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 1.15rem;
  box-shadow: 0 14px 30px rgba(255, 109, 47, 0.3);
}

.hero-callout strong,
.floating-note strong,
.certificate-card strong {
  display: block;
  font-size: 1rem;
}

.hero-callout small,
.floating-note span,
.certificate-card span {
  color: var(--muted);
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-indicator span {
  width: 32px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  position: relative;
}

.scroll-indicator span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 11px;
  width: 4px;
  height: 12px;
  background: linear-gradient(180deg, var(--accent-2), transparent);
  border-radius: 999px;
  transform: translateX(-50%);
  animation: scrollCue 1.5s ease infinite;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-particles span {
  position: absolute;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(245, 199, 109, 0.5), rgba(245, 199, 109, 0));
  animation: floatParticles linear infinite;
}

.floating-ingredient {
  position: absolute;
  z-index: 2;
  font-size: clamp(1.2rem, 2vw, 2rem);
  opacity: 0.65;
  color: var(--accent-2);
  filter: drop-shadow(0 10px 22px rgba(255, 109, 47, 0.18));
  animation: floatSoft 5.5s ease-in-out infinite;
}

.floating-ingredient--1 {
  top: 17%;
  left: 10%;
}

.floating-ingredient--2 {
  top: 20%;
  right: 14%;
  animation-delay: -1s;
}

.floating-ingredient--3 {
  bottom: 23%;
  right: 9%;
  animation-delay: -2s;
}

.floating-ingredient--4 {
  bottom: 30%;
  left: 8%;
  animation-delay: -1.3s;
}

.floating-ingredient--5 {
  top: 55%;
  left: 42%;
  animation-delay: -0.7s;
}

.blob {
  position: absolute;
  filter: blur(0.5px);
  opacity: 0.22;
  z-index: 1;
  animation: pulseBlob 10s ease-in-out infinite;
}

.blob-hero {
  width: min(36vw, 480px);
  right: -4%;
  top: 10%;
}

.ticker-section {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(16, 8, 6, 0.86);
}

.ticker-track {
  display: inline-flex;
  gap: 2rem;
  min-width: max-content;
  padding: 1rem 0;
  animation: ticker 24s linear infinite;
}

.ticker-track span {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #dcc8bd;
  position: relative;
}

.ticker-track span::after {
  content: "•";
  margin-left: 2rem;
  color: var(--accent);
}

main>section:not(.hero-section):not(.ticker-section),
.footer-section {
  margin-top: var(--section-gap);
}

main,
.section,
.footer-section {
  max-width: 100%;
  overflow-x: clip;
}

.section {
  position: relative;
  /* padding: clamp(5rem, 8vw, 8rem) 0; */
  padding: 40px;
  z-index: 2;
}

.section::before {
  content: "";
  position: absolute;
  inset: auto 10% -25% auto;
  width: 32vw;
  height: 32vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 109, 47, 0.12), transparent 70%);
  filter: blur(24px);
  pointer-events: none;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.section-head h2 {
  margin: 0.85rem 0 1rem;
  font-size: clamp(2.3rem, 4vw, 4.4rem);
  line-height: 0.98;
}

.about-visual,
.quote-copy {
  position: relative;
  z-index: 2;
}

.about-image-stack {
  position: relative;
  padding: 3rem 0 2rem 1.5rem;
}

.about-main-image,
.about-secondary-image,
.service-media,
.gallery-item img,
.gallery-video-btn img,
.review-thumb,
.video-launch img {
  width: 100%;
  object-fit: cover;
}

.about-main-image {
  border-radius: 32px;
  min-height: 520px;
  box-shadow: var(--shadow);
}

.about-secondary-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45%;
  border-radius: 26px;
  border: 8px solid rgba(8, 5, 4, 0.92);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.45);
}

.floating-note {
  position: absolute;
  max-width: 250px;
  padding: 1rem 1.15rem;
  border-radius: 18px;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  animation: floatSoft 6s ease-in-out infinite;
}

.floating-note--gold {
  top: 0;
  right: 8%;
  background: linear-gradient(135deg, rgba(245, 199, 109, 0.22), rgba(255, 109, 47, 0.14));
  border: 1px solid rgba(245, 199, 109, 0.28);
}

.floating-note--dark {
  left: 0;
  bottom: 6%;
  background: rgba(18, 11, 9, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.08);
  animation-delay: -1.4s;
}

.about-copy,
.quote-card {
  padding: clamp(1.8rem, 4vw, 2.6rem);
}

.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.services-slider {
  position: relative;
  max-width: 100%;
  overflow-x: clip;
}

.services-swiper {
  max-width: 100%;
  padding: 0.35rem 4.9rem 2.75rem;
}

.services-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
  width: 100%;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.service-card:hover,
.feature-card:hover,
.testimonial-card:hover,
.review-card:hover,
.certificate-card:hover {
  transform: translateY(-10px);
  border-color: rgba(245, 199, 109, 0.28);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.44);
}

.service-media {
  height: 230px;
  transition: transform 0.7s ease;
}

.service-card:hover .service-media {
  transform: scale(1.06);
}

.service-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.6rem;
}

.service-body h3,
.feature-card h3,
.review-side-panel h3,
.testimonial-card h3,
.review-card h3,
.quote-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.35rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: auto;
  padding-top: 1.2rem;
}

.services-pagination {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  width: 100% !important;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
}

.services-nav-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(245, 199, 109, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  color: var(--text);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(-50%);
  transition: transform var(--transition), border-color var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
}

.services-nav-btn:hover,
.services-nav-btn:focus-visible {
  transform: translateY(calc(-50% - 3px));
  border-color: rgba(245, 199, 109, 0.42);
  background: linear-gradient(135deg, rgba(255, 109, 47, 0.16), rgba(245, 199, 109, 0.12));
  color: #fff;
  box-shadow: 0 22px 34px rgba(216, 71, 22, 0.24);
}

.services-nav-btn.swiper-button-disabled {
  opacity: 0.42;
  cursor: not-allowed;
  transform: translateY(-50%);
  box-shadow: none;
}

.services-nav-prev {
  left: 0;
}

.services-nav-next {
  right: 0;
}

.quote-copy h2 {
  margin: 1rem 0 1.1rem;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 0.98;
}

.quote-points {
  list-style: none;
  padding: 0;
  margin: 1.8rem 0 0;
  display: grid;
  gap: 0.9rem;
}

.quote-points li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: #eadcd3;
}

.quote-points i,
.stars i,
.contact-list i {
  color: var(--accent-2);
}

.quote-card {
  overflow: hidden;
}

.quote-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  top: -120px;
  right: -100px;
  background: radial-gradient(circle, rgba(255, 109, 47, 0.24), transparent 70%);
  filter: blur(14px);
}

.form-progress {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.form-progress__bar {
  width: 33.333%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 0.4s ease;
}

.step-indicator {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.step-pill {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.step-pill.active {
  background: rgba(255, 109, 47, 0.15);
  border-color: rgba(255, 109, 47, 0.26);
  color: #fff;
}

.form-step {
  display: none;
  animation: fadeStep 0.45s ease;
}

.form-step.active {
  display: block;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.choice-pill {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.3rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f0e7e2;
  transition: transform var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.choice-pill i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 109, 47, 0.2), rgba(245, 199, 109, 0.16));
  color: var(--accent-2);
}

.choice-pill:hover,
.choice-pill.is-active {
  transform: translateY(-4px);
  background: rgba(255, 109, 47, 0.11);
  border-color: rgba(245, 199, 109, 0.28);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.field-wrap {
  margin-top: 1rem;
}

.form-label {
  color: #eadfd9;
  margin-bottom: 0.6rem;
}

.form-control {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 58px;
  color: var(--text);
  padding: 0.95rem 1.15rem;
  box-shadow: none !important;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(245, 199, 109, 0.4);
  transform: translateY(-2px);
  color: #fff;
}

.field-wrap.has-error .form-control,
.form-control.is-invalid {
  border-color: rgba(255, 155, 133, 0.85);
  background: rgba(255, 109, 47, 0.08);
}

.field-wrap.is-valid .form-control {
  border-color: rgba(169, 241, 200, 0.36);
}

.field-error {
  min-height: 1.2rem;
  margin-top: 0.45rem;
  color: #ff9b85;
  font-size: 0.82rem;
}

.choice-grid.is-invalid .choice-pill {
  border-color: rgba(255, 155, 133, 0.5);
}

.step-message {
  margin-top: 1rem;
  min-height: 28px;
  color: var(--muted);
  font-size: 0.92rem;
}

.step-message.is-error {
  color: #ff9b85;
  animation: shake 0.35s ease;
}

.step-message.is-success {
  color: #a9f1c8;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}

.form-submit-status {
  min-height: 1.5rem;
  margin-top: 0.25rem;
  font-size: 0.92rem;
}

.form-submit-status.is-error {
  color: #ffb19f;
}

.form-submit-status.is-success {
  color: #a9f1c8;
}

.step-form .btn[disabled] {
  cursor: not-allowed;
  opacity: 0.7;
  transform: none;
  box-shadow: none;
}

.step-form .btn.is-loading::after {
  opacity: 0;
}

.form-success {
  position: absolute;
  inset: 1.3rem;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.75rem;
  text-align: center;
  background: rgba(8, 5, 4, 0.95);
  border-radius: calc(var(--radius) - 6px);
  opacity: 0;
  visibility: hidden;
  transform: scale(0.96);
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
}

.form-success.is-visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.success-icon {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 18px 38px rgba(255, 109, 47, 0.32);
  font-size: 1.65rem;
}

.feature-card,
.testimonial-card,
.review-card,
.review-side-panel,
.rating-summary {
  padding: 1.7rem;
  height: 100%;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.feature-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 109, 47, 0.18), rgba(245, 199, 109, 0.14));
  color: var(--accent-2);
  font-size: 1.45rem;
  margin-bottom: 1.4rem;
  box-shadow: inset 0 0 0 1px rgba(245, 199, 109, 0.12);
}

.feature-icon i {
  animation: spinPulse 10s linear infinite;
}

.testimonials-swiper {
  overflow: visible;
}

.swiper-slide {
  height: auto;
}

.testimonial-profile,
.reviewer-inline,
.review-card__head,
.rating-score {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}

.testimonial-profile img,
.reviewer-inline img,
.review-strip img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 2px solid rgba(245, 199, 109, 0.22);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.testimonial-profile span,
.reviewer-inline span,
.review-side-panel p,
.rating-score p {
  color: var(--muted);
  font-size: 0.9rem;
}

.stars {
  display: flex;
  gap: 0.2rem;
  margin: 1.1rem 0 0.9rem;
}

.video-testimonial {
  padding: 1rem;
}

.video-launch,
.gallery-video-btn {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  overflow: hidden;
  border-radius: 22px;
  cursor: pointer;
}

.video-launch img,
.gallery-video-btn img {
  min-height: 280px;
  transition: transform 0.7s ease;
}

.video-launch:hover img,
.gallery-video-btn:hover img {
  transform: scale(1.08);
}

.play-badge,
.gallery-video-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(8, 5, 4, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(14px);
}

.play-badge {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  justify-content: center;
  left: 50%;
  top: 50%;
  bottom: auto;
  transform: translate(-50%, -50%);
  font-size: 1.2rem;
}

.video-meta {
  padding: 1.25rem 0.5rem 0.2rem;
}

.testimonial-controls {
  margin-top: 1.4rem;
  display: flex;
  justify-content: center;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-bottom: 2.2rem;
}

.filter-btn,
.pagination-btn,
.pagination-dot {
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  color: #e9ddd6;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.pagination-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.filter-btn:hover,
.filter-btn.active,
.pagination-btn:hover,
.pagination-dot:hover,
.pagination-dot.active {
  transform: translateY(-3px);
  background: rgba(255, 109, 47, 0.11);
  border-color: rgba(245, 199, 109, 0.28);
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.95rem;
}

.gallery-item {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item:focus-visible,
.certificate-card:focus-visible {
  outline: 2px solid rgba(245, 199, 109, 0.85);
  outline-offset: 4px;
}

.gallery-item.is-hidden {
  display: none;
}

.gallery-item img,
.gallery-video-btn img {
  display: block;
  aspect-ratio: 1 / 1;
  min-height: 0;
}

.gallery-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 1.1rem;
  background: linear-gradient(180deg, transparent, rgba(8, 5, 4, 0.82));
  pointer-events: none;
}

.gallery-overlay span {
  color: #fff;
  font-weight: 600;
}

.reviews-top-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.score {
  font-size: clamp(3rem, 5vw, 4.7rem);
  font-weight: 800;
  color: var(--accent-2);
  line-height: 0.9;
}

.rating-bars {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.rating-bar {
  display: grid;
  grid-template-columns: 70px 1fr 42px;
  gap: 0.8rem;
  align-items: center;
  color: #eadfd7;
  font-size: 0.9rem;
}

.rating-bar div {
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.rating-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.review-strip {
  display: flex;
  margin-bottom: 1.3rem;
}

.review-strip img+img {
  margin-left: -14px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.review-card {
  display: none;
}

.review-card.is-visible {
  display: block;
}

.review-card__head {
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.review-card__head .stars {
  margin: 0;
}

.review-thumb {
  border-radius: 18px;
  margin-top: 1rem;
  min-height: 170px;
}

.reviews-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.footer-section {
  position: relative;
  padding: 4rem 0 2rem;
  background: linear-gradient(180deg, rgba(11, 6, 5, 0.9), rgba(8, 5, 4, 1));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-card {
  padding: 1.7rem;
  height: 100%;
}

.certificate-list {
  display: grid;
  gap: 0.95rem;
  margin-top: 1.3rem;
}

.certificate-card {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  padding: 0.95rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: inherit;
  text-decoration: none;
  transition: transform var(--transition), border-color var(--transition);
}

.certificate-card img {
  width: 88px;
  height: 112px;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 16px;
}

.map-frame {
  border-radius: 24px;
  overflow: hidden;
  margin-top: 1.3rem;
  min-height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  filter: saturate(0.7) contrast(1.08) brightness(0.9);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.3rem 0 0;
  display: grid;
  gap: 0.9rem;
}

.contact-list li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  color: #e7dad2;
  line-height: 1.6;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-socials a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.footer-socials a:hover {
  transform: translateY(-4px);
  background: rgba(255, 109, 47, 0.12);
  border-color: rgba(245, 199, 109, 0.28);
}

.video-modal .modal-content {
  background: #0d0706;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
}

.video-modal .modal-dialog {
  max-width: min(760px, calc(100vw - 1.5rem));
}

.video-modal .modal-header {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.video-modal .modal-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
}

.video-modal .modal-body {
  padding: 0.85rem;
}

.video-modal video {
  width: 100%;
  min-height: 0;
  aspect-ratio: 16 / 9;
  max-height: min(70vh, 420px);
  border-radius: 18px;
  object-fit: cover;
  background: #000;
}

.lg-backdrop {
  background: rgba(6, 3, 2, 0.92);
}

.lg-outer {
  background: rgba(10, 6, 5, 0.96);
}

.lg-content .lg-item,
.lg-content .lg-img-wrap,
.lg-content .lg-img-rotate {
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.lg-content .lg-object {
  border-radius: 18px;
}

.lg-toolbar,
.lg-components {
  background: transparent;
}

.lg-sub-html {
  background: linear-gradient(180deg, transparent, rgba(10, 6, 5, 0.94));
}

.lg-thumb-outer {
  background: rgba(14, 8, 6, 0.94);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lg-thumb-item {
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid transparent !important;
}

.lg-thumb-item.active,
.lg-thumb-item:hover {
  border-color: rgba(245, 199, 109, 0.72) !important;
}

body.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.thank-you-shell {
  width: min(100%, 560px);
}

.thank-you-card {
  padding: clamp(1.6rem, 4vw, 2.35rem);
  text-align: center;
}

.thank-you-card h1 {
  margin: 1rem 0 0.9rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  line-height: 0.95;
}

.thank-you-card p {
  color: var(--muted);
  margin: 0 auto;
  max-width: 36ch;
}

.thank-you-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 109, 47, 0.18), rgba(245, 199, 109, 0.18));
  border: 1px solid rgba(245, 199, 109, 0.28);
  color: var(--accent-2);
  font-size: 1.6rem;
}

.thank-you-actions {
  margin-top: 1.6rem;
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes scrollCue {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 16px);
  }
}

@keyframes floatParticles {
  from {
    transform: translateY(0) scale(1);
    opacity: 0;
  }

  15% {
    opacity: 1;
  }

  to {
    transform: translateY(-120vh) scale(1.8);
    opacity: 0;
  }
}

@keyframes floatSoft {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes pulseBlob {

  0%,
  100% {
    transform: scale(1) translateY(0);
  }

  50% {
    transform: scale(1.06) translateY(-12px);
  }
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes fadeStep {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-6px);
  }

  50% {
    transform: translateX(6px);
  }

  75% {
    transform: translateX(-3px);
  }
}

@keyframes spinPulse {
  0% {
    transform: rotate(0);
  }

  50% {
    transform: rotate(180deg) scale(1.08);
  }

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

@media (max-width: 1199.98px) {
  .hero-copy h1 {
    font-size: clamp(3.2rem, 8vw, 5.3rem);
  }

  .gallery-masonry {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .site-header .container {
    gap: 0.85rem;
    flex-wrap: nowrap;
  }

  .site-header .navbar-collapse {
    display: none !important;
  }

  .navbar-mobile-cta {
    display: inline-flex;
    padding: 0.78rem 1.2rem;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .hero-content .row {
    padding-block: 7rem 6rem;
  }

  .blob-hero {
    width: 360px;
    right: -18%;
    top: 12%;
  }

  .reviews-top-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4.5rem 0;
  }

  .gallery-masonry {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .brand-copy strong {
    font-size: 1.35rem;
  }

  .site-header {
    padding: 0.8rem 0;
  }

  .hero-section {
    height: clamp(18rem, 56svh, 28rem);
    min-height: 18rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .hero-card {
    padding: 1.35rem;
  }

  .hero-card-grid,
  .choice-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .hero-trust {
    gap: 0.7rem;
  }

  .hero-trust span {
    width: 100%;
    justify-content: center;
  }

  .about-image-stack {
    padding: 1rem 0 1.5rem;
  }

  .about-main-image {
    min-height: 320px;
  }

  .about-secondary-image {
    width: 48%;
    border-width: 5px;
  }

  .floating-note {
    position: static;
    margin-top: 1rem;
    max-width: none;
  }

  .gallery-masonry {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-item img,
  .gallery-video-btn img {
    min-height: 0;
  }

  .section {
    padding: 3.9rem 0;
  }

  .section-head {
    margin-bottom: 2.45rem;
  }

  .footer-bottom,
  .form-actions {
    justify-content: center;
  }

  .metric-card,
  .feature-card,
  .review-card,
  .testimonial-card,
  .rating-summary,
  .review-side-panel {
    padding: 1.35rem;
  }

  .services-swiper {
    padding-inline: 3.6rem;
  }

  .services-nav-btn {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 575.98px) {
  .brand-logo {
    width: 54px;
  }

  .navbar-mobile-cta {
    padding: 0.72rem 1rem;
    font-size: 0.72rem;
  }

  .brand-copy small {
    letter-spacing: 0.14em;
  }

  .hero-section {
    height: clamp(16.5rem, 50svh, 23rem);
    min-height: 16.5rem;
  }

  .hero-content .row {
    padding-block: 6.4rem 5rem;
  }

  .service-body,
  .about-copy,
  .quote-card,
  .footer-card {
    padding: 1.15rem;
  }

  .about-main-image {
    min-height: 260px;
  }

  .gallery-item img,
  .gallery-video-btn img {
    min-height: 0;
  }

  .services-swiper {
    padding-inline: 3rem;
    padding-bottom: 2.4rem;
  }

  .step-indicator {
    gap: 0.55rem;
  }

  .step-pill {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .section {
    padding: 1.5rem 0;
  }

  .video-modal .modal-title {
    font-size: 1.3rem;
  }

  .thank-you-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* =========================
   Fixed Bottom CTA
========================= */
.fixed-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 22px;
  background: rgba(8, 5, 4, 0.96);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 9999;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.28);
}

/* Left Content */
.fixed-cta-content {
  flex: 1;
  min-width: 0;
}

.fixed-cta-title {
  margin: 0;
  color: #f5d28c;
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

.fixed-cta-subtitle {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  line-height: 1.4;
}

/* Right Buttons */
.fixed-cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fixed-cta-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.fixed-cta-call {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.fixed-cta-book {
  background: linear-gradient(135deg, #d4a24c, #f5d28c);
  color: #080504;
}

.fixed-cta-actions a:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

/* Prevent content overlap */
body {
  padding-bottom: 105px;
}

/* =========================
   Tablet
========================= */
@media (max-width: 992px) {
  .fixed-cta-bar {
    padding: 14px 16px;
    gap: 16px;
  }

  .fixed-cta-title {
    font-size: 22px;
  }

  .fixed-cta-subtitle {
    font-size: 12px;
  }

  .fixed-cta-actions a {
    padding: 12px 16px;
  }
}

/* =========================
   Mobile
========================= */
@media (max-width: 768px) {
  .fixed-cta-bar {
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    gap: 14px;
  }

  .fixed-cta-content {
    text-align: center;
  }

  .fixed-cta-title {
    font-size: 22px;
  }

  .fixed-cta-subtitle {
    font-size: 12px;
  }

  .fixed-cta-actions {
    width: 100%;
    gap: 10px;
  }

  .fixed-cta-actions a {
    flex: 1;
    padding: 13px 10px;
    font-size: 13px;
  }

  body {
    padding-bottom: 150px;
  }
}

/* =========================
   Small Phones
========================= */
@media (max-width: 480px) {
  .fixed-cta-title {
    font-size: 20px;
  }

  .fixed-cta-subtitle {
    font-size: 11px;
  }

  .fixed-cta-actions a {
    font-size: 12px;
    padding: 12px 8px;
  }

  .fixed-cta-actions i {
    font-size: 13px;
  }

  body {
    padding-bottom: 155px;
  }
}

/* =========================
   WhatsApp Widget
========================= */
.wa-widget {
  position: fixed;
  right: 18px;
  bottom: 115px;
  z-index: 99999;
  display: flex;
  align-items: flex-end;
}

/* =========================
   Message Box
========================= */
.wa-message-box {
  position: relative;
  width: 280px;
  margin-right: 12px;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  animation: waFadeIn .4s ease;
}

@keyframes waFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Close */
.wa-close-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 22px;
  height: 22px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

/* =========================
   Desktop Content
========================= */
.wa-desktop-content {
  display: block;
}

.wa-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  background: linear-gradient(135deg, #075E54, #128C7E);
}

.wa-header img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  object-fit: cover;
}

.wa-header h4 {
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
}

.wa-header span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
  font-family: 'Manrope', sans-serif;
}

.wa-chat-text {
  padding: 14px;
  background: #f7f7f7;
  color: #111;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 600;
  font-family: 'Manrope', sans-serif;
}

.wa-mobile-content {
  display: none;
}

.wa-button {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #1ebe5d);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
  transition: all 0.3s ease;
}

.wa-button:hover {
  transform: scale(1.05);
}

.wa-button i {
  color: #fff;
  font-size: 32px;
}

.wa-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ff3b30;
  color: #fff;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
  animation: waPulse 1.4s infinite;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .wa-widget {
    right: 14px;
    bottom: 165px;
  }

  .wa-message-box {
    width: auto;
    margin-right: 10px;
    border-radius: 50px;
    overflow: visible;
    background: transparent;
    box-shadow: none;
  }

  .wa-desktop-content {
    display: none;
  }

  .wa-mobile-content {
    display: block;
    padding: 10px 14px;
    border-radius: 50px;
    background: #fff;
    color: #111;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
  }

  /* Mobile Close */
  .wa-close-btn {
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    background: #111;
    color: #fff;
    font-size: 9px;
  }

  /* Button */
  .wa-button {
    width: 54px;
    height: 54px;
  }

  .wa-button i {
    font-size: 28px;
  }
}