:root {
  --bg: #f7f7f8;
  --card: #ffffff;
  --muted: #6b6f76;
  --accent: #1a73e8;
  --accent-2: #ff6b9a;
  --radius: 12px;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
  background: var(--bg);
  color: #1f2937;
  -webkit-font-smoothing: antialiased;
}

.display-serif {
  font-family: "Playfair Display", serif;
}

a {
  text-decoration: none;
  font-weight: 800;
}

.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* Logo */
.nav-logo {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.nav-logo:hover {
  transform: scale(1.03);
}

/* Elegant Gradient Text */
.nav-brand-mark {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #8e24aa; /* Elegant plum tone */
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.nav-brand-mark:hover {
  color: #d81b60; /* Warm pink highlight */
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-2);
}

.hero {
  padding: 96px 0 56px;
  height: 55vh;
}

.card-model {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: 0 6px 18px rgba(31, 41, 55, 0.06);
  border: 1px solid rgba(31, 41, 55, 0.04);
  overflow: hidden;
}

.card-model img {
  height: 300px;
}

.icon-round {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
}

.badge-verified {
  background: #e6fbef;
  color: #077a3d;
  border: 1px solid rgba(7, 122, 61, 0.08);
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  font-size: 0.75rem;
  text-align: center;
}

.btn-accent {
  background: linear-gradient(90deg, var(--accent), var(--accent));
  color: white;
  border: none;
  box-shadow: 0 6px 18px rgba(26, 115, 232, 0.12);
}

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

.profile-actions a {
  margin-right: 8px;
  text-decoration: none;
  color: inherit;
}

.btn-accent {
  background: linear-gradient(45deg, #ff4081, #7b1fa2);
  border: none;
  color: #fff;
  padding: 8px 16px;
  transition: 0.3s ease;
}

.btn-accent:hover {
  background: linear-gradient(45deg, #7b1fa2, #ff4081);
  transform: translateY(-2px);
}

/* services css */
.hero {
  background: url("/assets/night-spa.webp") center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 100px 20px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero h1,
.hero p {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 2.8rem;
}

.hero p {
  font-size: 1.1rem;
}

@media (max-width: 992px) {
  .outlet-card img {
    width: 40%;
  }

  .hero h1 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .outlet-card {
    flex-direction: column;
  }

  .outlet-card img {
    width: 100%;
    height: 220px;
  }

  .hero {
    min-height: 44vh;
    padding: 3rem 0;
    border-radius: 0 0 0 0;
  }

  .hero h1 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero p {
    font-size: 0.95rem;
  }
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
}

.section-title h2 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  color: #222;
}

.section-title span {
  color: #ff4081;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

/* --- Service Card Base --- */
.service-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.5rem;
}

/* Hover effect */
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  border-color: #1b6b6b;
}

/* --- Image Styling --- */
.service-card img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

/* --- Text Styling --- */
.service-info h5 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  color: #1b6b6b;
  margin-bottom: 0.6rem;
}

.service-info p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 0.7rem;
  line-height: 1.5;
}

.service-info ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.service-info ul li {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.3rem;
  list-style-type: disc;
}

/* --- Responsive Breakpoints --- */

/* Tablets (≤992px) */
@media (max-width: 992px) {
  .service-card {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 1.2rem;
  }

  .service-card img {
    width: 100%;
    height: 220px;
    border-radius: 10px;
    margin: 0 0 1rem 0;
  }
}

/*  Mobile (≤576px) */
@media (max-width: 576px) {
  .service-card {
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
  }

  .service-card img {
    width: 100%;
    height: 200px;
  }

  .service-info h5 {
    font-size: 1.1rem;
  }

  .service-info p,
  .service-info ul li {
    font-size: 0.9rem;
  }
}

.btn-pink {
  background: #ff4081;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 0.4rem 1.2rem;
  transition: 0.3s;
  font-weight: 500;
}

.btn-pink:hover {
  background: #e53772;
  color: #fff;
}

/* footer css */
.footer {
  background: #111;
  color: #fff;
  font-size: 0.95rem;
}

.text-accent {
  color: #1b6b6b !important;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #ff6b9a;
  padding-left: 5px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #ff6b9a;
  color: #fff;
  transform: translateY(-3px);
}

@media (max-width: 991px) {
  .footer {
    text-align: center;
  }

  .footer-links a:hover {
    padding-left: 0;
  }

  .footer .social-icon {
    width: 32px;
    height: 32px;
    margin: 0 4px;
  }
}

/* Floating buttons */
.floating-btns {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.floating-btns a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.whatsapp {
  background: #25d366;
}

.call {
  background: #007bff;
}

/* treatment-card */

.treatment-card img {
  transition: all 0.4s ease;
  height: 250px;
  width: 100%;
  object-fit: cover;
}

.treatment-card:hover img {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.treatment-card h6 {
  color: #222;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.2px;
}

@media (max-width: 991px) {
  .treatment-card img {
    height: 180px;
  }
}

@media (max-width: 767px) {
  .treatment-card img {
    height: 160px;
  }

  .treatment-card h6 {
    font-size: 0.9rem;
  }
}

@media (max-width: 575px) {
  .treatment-card img {
    height: 140px;
  }

  .treatment-card h6 {
    font-size: 0.85rem;
  }
}

/* therapist card design  */
.therapist-glass-card {
  position: relative;
  height: 350px;
  border-radius: 10px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  transition: 0.45s ease;
  cursor: pointer;
}

.therapist-glass-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

/* Hover Zoom */
.therapist-glass-card:hover img {
  transform: scale(1.12);
}

/* Glass Overlay */
.glass-overlay {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  padding: 12px 18px;
  text-align: center;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  color: #fff;
  transition: 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.glass-overlay h4 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
}

.glass-overlay span {
  font-size: 0.8rem;
  opacity: 0.85;
  letter-spacing: 1px;
}

/* Hover Effect - Lift */
.therapist-glass-card:hover .glass-overlay {
  background: rgba(0, 150, 150, 0.25);
  transform: translateX(-50%) translateY(-4px);
}

/* Responsive */
@media (max-width: 767px) {
  .therapist-glass-card {
    height: 280px;
  }

  .glass-overlay h4 {
    font-size: 1rem;
  }
}

@media (max-width: 575px) {
  .therapist-glass-card {
    height: 240px;
  }
}

/* Future section  */

.spa-features-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9f9 100%);
  position: relative;
}

.feature-box {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 6px 20px rgba(27, 107, 107, 0.08);
  transition: all 0.4s ease;
  height: 100%;
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(27, 107, 107, 0.15);
}

.icon-circle {
  width: 70px;
  height: 70px;
  background: rgba(27, 107, 107, 0.1);
  color: #1b6b6b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.feature-box:hover .icon-circle {
  background: #1b6b6b;
  color: #fff;
  transform: rotate(10deg);
}

.feature-box h5 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  color: #1b6b6b;
}

.feature-box:hover h5 {
  color: #ff6b9a;
}

.feature-box p {
  color: #6c757d;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .feature-box {
    padding: 1.5rem 1rem;
  }

  .icon-circle {
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
  }
}

/* floating badge */

.image-wrapper {
  position: relative;
  display: inline-block;
}

.floating-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #fff;
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.floating-badge strong {
  color: #1b6b6b;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .about-section h2 {
    text-align: center;
    font-size: 1.8rem;
  }

  .floating-badge {
    bottom: 15px;
    left: 15px;
    padding: 8px 12px;
  }
}

.visually-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* final cta css */

.final-cta-section {
  background: linear-gradient(180deg, #ffffff 0%, #f4f9f9 100%);
  position: relative;
  overflow: hidden;
}

/* Soft decorative circles for a luxury feel */
.final-cta-section::before,
.final-cta-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(27, 107, 107, 0.08);
  animation: float 8s infinite ease-in-out alternate;
}

.final-cta-section::before {
  width: 180px;
  height: 180px;
  top: -50px;
  left: -60px;
}

.final-cta-section::after {
  width: 220px;
  height: 220px;
  bottom: -70px;
  right: -50px;
}

@media (max-width: 768px) {
  .final-cta-section::before,
  .final-cta-section::after {
    display: none;
  }
}

/* main short heading */
.kicker {
  color: var(--accent-2);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}
