:root {
  --bg: #120812;
  --bg-2: #21111f;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-strong: rgba(255, 255, 255, 0.14);
  --white: #ffffff;
  --text: #f9edf5;
  --muted: rgba(249, 237, 245, 0.72);
  --muted-2: rgba(249, 237, 245, 0.54);
  --primary: #ff7eb6;
  --primary-2: #ffb86b;
  --accent: #c084fc;
  --success: #65f0bc;
  --border: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  color: var(--text);
  font-family: "Poppins", sans-serif;
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 126, 182, 0.28), transparent 34%),
    radial-gradient(circle at 85% 18%, rgba(192, 132, 252, 0.22), transparent 32%),
    radial-gradient(circle at 50% 90%, rgba(255, 184, 107, 0.12), transparent 30%),
    linear-gradient(145deg, var(--bg), var(--bg-2) 48%, #120712);
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

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

img {
  display: block;
  width: 100%;
}

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 110px 0;
}

.glass {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.cursor-glow {
  position: fixed;
  inset: auto auto 0 0;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 126, 182, 0.18), transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0.65;
}

/* Demo Newsbar */
.demo-newsbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 5px 16px;
  color: #ffffff;
  background: linear-gradient(90deg, #0a0a0a, #991b1b, #dc2626, #991b1b, #0a0a0a);
  background-size: 240% 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  letter-spacing: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  white-space: nowrap;
  animation: demoNewsbarGradient 8s linear infinite;
}

.demo-newsbar-track {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  animation: demoNewsbarScroll 42s linear infinite;
  will-change: transform;
}

.demo-newsbar-content {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  min-width: max-content;
}

.demo-newsbar strong {
  color: rgba(255, 255, 255, 0.78);
}

.demo-newsbar:hover {
  color: #ffffff;
  background: linear-gradient(90deg, #161616, #991b1b, #ef4444, #991b1b, #161616);
  background-size: 240% 100%;
}

.demo-newsbar:hover .demo-newsbar-track {
  animation-play-state: paused;
}

@keyframes demoNewsbarScroll {
  0% {
    transform: translateX(0);
  }

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

@keyframes demoNewsbarGradient {
  0% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Header */
.site-header {
  position: fixed;
  top: 44px;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.navbar {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 999px;
  padding: 12px 16px 12px 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 12px 34px rgba(255, 126, 182, 0.35);
}

.brand strong {
  display: block;
  font-family: "Marcellus", serif;
  font-size: 1.45rem;
  letter-spacing: 0.03em;
  line-height: 1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 3px;
}

.logo-circle {
  overflow: hidden;
  padding: 0;
  background: transparent;
  border: 2px solid rgba(255, 184, 107, 0.75);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 50%;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 15px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  transition: 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 46px;
  height: 46px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 6px auto;
  border-radius: 2px;
  transition: 0.25s ease;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding-top: 150px;
  overflow: hidden;
}

.hero-salon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: inherit;
}

.about-section-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: inherit;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 64px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--primary-2);
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-size: 0.77rem;
  margin-bottom: 18px;
}

h1,
h2 {
  font-family: "Marcellus", serif;
  font-weight: 400;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 700px;
  font-size: clamp(3.4rem, 7vw, 6.9rem);
  line-height: 0.92;
}

h2 {
  font-size: clamp(2.2rem, 4.4vw, 4.6rem);
  line-height: 1;
  max-width: 820px;
}

.hero-text,
.section-heading p,
.section-content p,
.contact-info p {
  color: var(--muted);
  line-height: 1.8;
}

.hero-text {
  margin-top: 24px;
  max-width: 670px;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  color: var(--white);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 18px 36px rgba(255, 126, 182, 0.28);
}

.btn-soft {
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid var(--border);
}

.hero-stats {
  margin-top: 42px;
  width: min(100%, 650px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.hero-stats div {
  padding: 22px 18px;
  background: rgba(255, 255, 255, 0.04);
}

.hero-stats strong {
  display: block;
  font-size: 1.65rem;
  color: var(--white);
}

.hero-stats span {
  display: block;
  margin-top: 4px;
  color: var(--muted-2);
  font-size: 0.82rem;
}

.hero-visual {
  position: relative;
  min-height: 660px;
}

.image-card,
.gallery-item,
.team-img {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.05)),
    radial-gradient(circle at 30% 20%, rgba(255, 126, 182, 0.26), transparent 32%),
    radial-gradient(circle at 80% 80%, rgba(255, 184, 107, 0.18), transparent 30%);
}

.main-image {
  height: 640px;
  border-radius: 42% 42% 30px 30px;
  box-shadow: var(--shadow);
}

.image-placeholder {
  position: absolute;
  inset: 18px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 9px;
  border: 1px dashed rgba(255, 255, 255, 0.32);
  border-radius: inherit;
  text-align: center;
  color: var(--muted);
  padding: 22px;
}

.image-placeholder i {
  font-size: 2.3rem;
  color: rgba(255, 255, 255, 0.8);
}

.image-placeholder span {
  font-weight: 700;
  color: var(--white);
}

.image-placeholder small {
  color: var(--muted-2);
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 13px;
  border-radius: 22px;
  padding: 16px;
  max-width: 270px;
}

.appointment-card {
  left: -32px;
  bottom: 96px;
}

.rating-card {
  right: -18px;
  top: 100px;
}

.mini-icon {
  flex: 0 0 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: var(--primary-2);
}

.floating-card strong {
  display: block;
  margin-bottom: 2px;
}

.floating-card p {
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.72;
  z-index: 1;
}

.orb-one {
  width: 310px;
  height: 310px;
  background: rgba(255, 126, 182, 0.18);
  top: 18%;
  left: -110px;
}

.orb-two {
  width: 230px;
  height: 230px;
  background: rgba(192, 132, 252, 0.18);
  bottom: 12%;
  right: -80px;
}

.scroll-down {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 0.84rem;
}

.scroll-down span {
  width: 1px;
  height: 42px;
  background: linear-gradient(transparent, var(--primary), transparent);
}

/* Section headings */
.section-heading {
  max-width: 760px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-heading p {
  margin-top: 18px;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 72px;
  align-items: center;
}

.about-images {
  position: relative;
  min-height: 620px;
}

.about-img-large {
  position: absolute;
  inset: 0 80px 80px 0;
  border-radius: var(--radius-lg);
}

.about-img-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  height: 320px;
  border-radius: var(--radius-md);
}

.section-content p {
  margin-top: 18px;
}

.signature-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  border-radius: var(--radius-md);
  padding: 22px;
}

.signature-box strong,
.signature-box span {
  display: block;
}

.signature-box span {
  color: var(--muted);
  margin-top: 4px;
}

.signature-box i {
  font-size: 2rem;
  color: var(--primary);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.feature-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.feature-list i {
  color: var(--success);
}

/* Services */
.services {
  overflow: hidden;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  border-radius: var(--radius-md);
  padding: 28px;
  min-height: 285px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -48px;
  bottom: -48px;
  border-radius: 50%;
  background: rgba(255, 126, 182, 0.13);
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 126, 182, 0.45);
}

.service-card:hover::after {
  transform: scale(1.25);
}

.service-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 126, 182, 0.28), rgba(255, 184, 107, 0.18));
  color: var(--white);
  font-size: 1.35rem;
}

.service-card h3 {
  margin-top: 26px;
  font-size: 1.28rem;
}

.service-card p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.75;
}

.service-card span {
  display: inline-flex;
  margin-top: 18px;
  color: var(--primary-2);
  font-weight: 700;
}

/* Strip */
.experience-strip {
  padding: 24px 0;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
}

.strip-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 90px;
  color: var(--muted);
  border-right: 1px solid var(--border);
}

.strip-item:last-child {
  border-right: 0;
}

.strip-item i {
  color: var(--primary-2);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 18px;
}

.gallery-item {
  border-radius: var(--radius-md);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: inherit;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.06);
  filter: brightness(1.08) contrast(1.04);
}

/* Why */
.why-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.why-list {
  margin-top: 28px;
  display: grid;
  gap: 15px;
}

.why-row {
  display: flex;
  gap: 16px;
  border-radius: var(--radius-md);
  padding: 18px;
}

.why-row span {
  flex: 0 0 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--primary-2);
  background: rgba(255, 255, 255, 0.09);
}

.why-row h3 {
  font-size: 1.04rem;
}

.why-row p {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.why-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.why-card-img {
  width: calc(100% - 36px);
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 18px;
  border-radius: 26px;
}

.why-card .image-placeholder {
  position: relative;
  inset: auto;
  min-height: 420px;
  margin: 18px;
  border-radius: 26px;
}

.why-card-content {
  padding: 8px 28px 30px;
}

.why-card-content p {
  margin-top: 9px;
  color: var(--muted);
  line-height: 1.7;
}

.why-card-content a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--primary-2);
  font-weight: 700;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.price-card {
  position: relative;
  border-radius: var(--radius-md);
  padding: 30px;
  overflow: hidden;
}

.price-card.featured {
  transform: translateY(-18px);
  border-color: rgba(255, 126, 182, 0.5);
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  border-radius: 999px;
  padding: 7px 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  font-size: 0.72rem;
  font-weight: 800;
}

.package-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--primary-2);
  margin-bottom: 20px;
}

.price-top h3 {
  font-size: 1.45rem;
}

.price-top p {
  margin-top: 8px;
  color: var(--muted);
}

.price {
  margin-top: 24px;
  font-size: 2.15rem;
  font-weight: 800;
}

.price small {
  color: var(--muted-2);
  font-size: 0.85rem;
  font-weight: 500;
}

.price-card ul {
  list-style: none;
  display: grid;
  gap: 13px;
  margin: 26px 0 28px;
}

.price-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.price-card li i {
  color: var(--success);
}

.price-card .btn {
  width: 100%;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card {
  border-radius: var(--radius-md);
  padding: 18px 18px 26px;
  text-align: center;
}

.team-img {
  height: 330px;
  border-radius: 22px;
}

.team-card h3 {
  margin-top: 22px;
  font-size: 1.25rem;
}

.team-card p {
  color: var(--muted);
  margin-top: 5px;
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: inherit;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.team-card:hover .team-photo {
  transform: scale(1.06);
  filter: brightness(1.08) contrast(1.04);
}

.team-card .socials {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.team-card .socials a {
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50%;
  color: var(--primary-2) !important;
  background: rgba(255, 255, 255, 0.1);
  transition: 0.25s ease;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
}

.team-card .socials a i {
  display: block;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 1rem;
  line-height: 1 !important;
  color: var(--primary-2) !important;
}

.team-card .socials a:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  transform: translateY(-3px);
}

.team-card .socials a:hover i {
  color: var(--white) !important;
}

.footer-socials {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 18px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50%;
  color: var(--primary-2) !important;
  background: rgba(255, 255, 255, 0.1);
  transition: 0.25s ease;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
}

.footer-socials a i {
  display: block;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 1rem;
  line-height: 1 !important;
  color: var(--primary-2) !important;
}

.socials a,
.footer-socials a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--primary-2);
  background: rgba(255, 255, 255, 0.1);
  transition: 0.25s ease;
}

.footer-socials a i,
.socials a i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  font-size: 1rem;
  line-height: 1;
  color: var(--primary-2);
}

.footer-socials a:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  transform: translateY(-3px);
}

.footer-socials a:hover,
.socials a:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  transform: translateY(-3px);
}

.footer-credit {
  margin-top: 22px;
  padding: 18px;
  border-radius: 18px;
  max-width: 430px;
}

.footer-credit p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.7;
}

.footer-credit strong {
  color: var(--primary-2);
}

.footer-credit a {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  margin: 0 !important;
  color: var(--white) !important;
  font-weight: 700;
}

.footer-credit a i {
  color: var(--primary-2);
  margin: 0;
}

.footer a i {
  width: 18px;
  margin-right: 8px;
  color: var(--primary-2);
}

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

/* Testimonials */
.testimonial-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  padding: 54px 76px;
  overflow: hidden;
}

.testimonial-slider {
  position: relative;
  min-height: 270px;
}

.testimonial {
  position: absolute;
  inset: 0;
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: 0.35s ease;
}

.testimonial.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.stars {
  color: var(--primary-2);
  margin-bottom: 22px;
}

.testimonial p {
  color: var(--text);
  font-family: "Marcellus", serif;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1.3;
}

.testimonial h3 {
  margin-top: 24px;
}

.testimonial span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.slider-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transform: translateY(-50%);
  transition: 0.25s ease;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.18);
}

.slider-btn.prev {
  left: 18px;
}

.slider-btn.next {
  right: 18px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 48px;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-card {
  display: flex;
  gap: 16px;
  align-items: center;
  border-radius: var(--radius-md);
  padding: 18px;
}

.contact-card i {
  flex: 0 0 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--primary-2);
  background: rgba(255, 255, 255, 0.1);
}

.contact-card strong,
.contact-card span {
  display: block;
}

.contact-card span {
  color: var(--muted);
  margin-top: 3px;
}

.booking-form {
  border-radius: var(--radius-lg);
  padding: 32px;
}

.booking-form h3 {
  font-size: 1.55rem;
  margin-bottom: 22px;
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.form-row.two-cols {
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  outline: none;
  border-radius: 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  padding: 15px 16px;
  transition: border-color 0.25s ease, background 0.25s ease;
}

select option {
  color: #1f1020;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(255, 126, 182, 0.72);
  background: rgba(255, 255, 255, 0.13);
}

.full-btn {
  width: 100%;
}

.form-status {
  min-height: 26px;
  margin-top: 16px;
  color: var(--success);
  text-align: center;
  font-weight: 700;
}

/* Footer */
.footer {
  position: relative;
  padding: 70px 0 24px;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.18);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr 0.8fr;
  gap: 42px;
}

.footer p {
  max-width: 420px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 18px;
}

.footer h3 {
  margin-bottom: 16px;
}

.footer a:not(.brand) {
  display: block;
  color: var(--muted);
  margin-bottom: 10px;
  transition: 0.25s ease;
}

.footer a:not(.brand):hover {
  color: var(--primary-2);
}

.footer-socials {
  justify-content: flex-start;
}

.footer-bottom {
  width: min(var(--container), calc(100% - 40px));
  margin: 40px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--muted-2);
}

/* Floating CTA */
.floating-book {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  padding: 13px 18px;
  color: var(--white);
  font-weight: 800;
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.22s;
}

/* Responsive */
@media (max-width: 1050px) {
  .hero-grid,
  .about-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 130px;
  }

  .hero-visual {
    min-height: 600px;
  }

  .main-image {
    height: 560px;
  }

  .about-images {
    max-width: 720px;
  }

  .service-grid,
  .pricing-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-card.featured {
    transform: none;
  }

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

@media (max-width: 860px) {
  .site-header {
    top: 40px;
  }

  .navbar {
    border-radius: 28px;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 1002;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    top: 124px;
    left: 20px;
    right: 20px;
    z-index: 1001;
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 26px;
    background: rgba(25, 11, 24, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-14px);
    pointer-events: none;
    transition: 0.25s ease;
  }

  .nav-links.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links a {
    justify-content: center;
  }

  h1 {
    font-size: clamp(3rem, 13vw, 5rem);
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .appointment-card {
    left: 12px;
    bottom: 70px;
  }

  .rating-card {
    right: 10px;
    top: 70px;
  }

  .section {
    padding: 86px 0;
  }

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

  .strip-item:nth-child(2) {
    border-right: 0;
  }

  .strip-item:nth-child(1),
  .strip-item:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }

  .gallery-item.wide {
    grid-column: span 2;
  }
}

@media (max-width: 620px) {
  .container,
  .navbar,
  .footer-bottom {
    width: min(100% - 28px, var(--container));
  }

  .brand-mark {
    width: 43px;
    height: 43px;
  }

  .brand strong {
    font-size: 1.22rem;
  }

  .brand small {
    font-size: 0.58rem;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-grid {
    gap: 36px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 480px;
  }

  .main-image {
    height: 460px;
    border-radius: 44% 44% 24px 24px;
  }

  .floating-card {
    max-width: calc(100% - 24px);
    padding: 13px;
  }

  .appointment-card {
    bottom: 42px;
  }

  .rating-card {
    top: 40px;
  }

  .about-images {
    min-height: 500px;
  }

  .about-img-large {
    inset: 0 30px 100px 0;
  }

  .about-img-small {
    width: 64%;
    height: 250px;
  }

  .feature-list,
  .service-grid,
  .pricing-grid,
  .team-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }

  .gallery-item.tall,
  .gallery-item.wide {
    grid-row: span 1;
    grid-column: span 1;
  }

  .why-row {
    flex-direction: column;
  }

  .testimonial-wrap {
    padding: 44px 48px;
  }

  .slider-btn {
    width: 38px;
    height: 38px;
  }

  .slider-btn.prev {
    left: 8px;
  }

  .slider-btn.next {
    right: 8px;
  }

  .form-row.two-cols {
    grid-template-columns: 1fr;
  }

  .booking-form {
    padding: 22px;
  }

  .floating-book span {
    display: none;
  }

  .floating-book {
    width: 54px;
    height: 54px;
    justify-content: center;
    padding: 0;
  }
}

@media (max-width: 420px) {
  .hero-visual {
    min-height: 420px;
  }

  .main-image {
    height: 405px;
  }

  .image-placeholder {
    inset: 12px;
  }

  .testimonial p {
    font-size: 1.25rem;
  }
}


/* Font Awesome icon fixes and spacing */
.nav-links a i {
  margin-right: 7px;
  font-size: 0.88rem;
}

.footer a i {
  width: 18px;
  margin-right: 8px;
  color: var(--primary-2);
}

.fa-solid,
.fa-regular,
.fa-brands {
  line-height: 1;
}



/* CK IT OPS Demo Loading Screen */
body.loading-active {
  overflow: hidden;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(circle at 18% 20%, rgba(220, 38, 38, 0.28), transparent 30%),
    radial-gradient(circle at 82% 78%, rgba(255, 255, 255, 0.13), transparent 28%),
    linear-gradient(135deg, #050505 0%, #130606 46%, #0a0a0a 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.site-loader.loader-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-bg-grid {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle, black 0%, transparent 74%);
}

.loader-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  animation: loaderFloat 5s ease-in-out infinite;
}

.loader-orb-one {
  width: 260px;
  height: 260px;
  top: 12%;
  left: 12%;
  background: rgba(220, 38, 38, 0.28);
}

.loader-orb-two {
  width: 190px;
  height: 190px;
  right: 13%;
  bottom: 14%;
  background: rgba(255, 255, 255, 0.11);
  animation-delay: 1.2s;
}

.loader-panel {
  position: relative;
  width: min(520px, 100%);
  padding: 42px 32px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.05));
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
  overflow: hidden;
}

.loader-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  transform: translateX(-110%);
  animation: loaderShine 2.6s ease-in-out infinite;
}

.loader-logo-stack {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  gap: 20px;
}

.ck-logo-wrap {
  width: 138px;
  height: 138px;
  display: grid;
  place-items: center;
  padding: 18px;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 22px 55px rgba(220, 38, 38, 0.28);
}

.ck-loader-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.loader-divider {
  width: min(310px, 100%);
  display: flex;
  align-items: center;
  gap: 14px;
  color: #ffffff;
}

.loader-divider span {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
}

.loader-divider i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #dc2626, #ffffff);
  color: #050505;
  box-shadow: 0 14px 34px rgba(220, 38, 38, 0.28);
}

.salon-loader-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 13px 18px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.salon-loader-logo-circle {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.72);
  background: #090909;
}

.salon-loader-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.salon-loader-brand strong {
  display: block;
  font-family: "Marcellus", serif;
  color: #ffffff;
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  line-height: 1;
  text-align: left;
}

.salon-loader-brand small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-align: left;
}

.loader-progress {
  position: relative;
  z-index: 1;
  width: min(310px, 100%);
  height: 6px;
  margin: 30px auto 22px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.loader-progress span {
  display: block;
  height: 100%;
  width: 45%;
  border-radius: inherit;
  background: linear-gradient(90deg, #dc2626, #ffffff, #dc2626);
  animation: loaderProgress 1.25s ease-in-out infinite;
}

.loader-demo-text,
.loader-copyright {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.loader-demo-text strong {
  color: #ffffff;
}

.loader-copyright {
  margin-top: 6px;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.56);
}

@keyframes loaderProgress {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(235%); }
}

@keyframes loaderShine {
  0%, 35% { transform: translateX(-110%); }
  70%, 100% { transform: translateX(110%); }
}

@keyframes loaderFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-18px) scale(1.05); }
}

@media (max-width: 520px) {
  .loader-panel {
    padding: 34px 20px;
    border-radius: 28px;
  }

  .ck-logo-wrap {
    width: 112px;
    height: 112px;
    border-radius: 24px;
  }

  .salon-loader-brand {
    padding: 12px 14px;
  }

  .salon-loader-logo-circle {
    width: 50px;
    height: 50px;
  }

  .salon-loader-brand strong {
    font-size: 1.22rem;
  }

  .salon-loader-brand small {
    font-size: 0.58rem;
  }
}
