:root {
  --brown: #6f4e37;
  --dark-brown: #3c2415;
  --beige: #f4eadf;
  --light-beige: #fffaf5;
  --white: #ffffff;
  --black: #16110d;
  --red: #a31d2b;
  --maroon: #6d1f2a;
  --gold: #c89b63;
  --muted: #756b63;
  --shadow: 0 18px 45px rgba(60, 36, 21, 0.12);
}

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

body {
  font-family: "Inter", sans-serif;
  color: var(--black);
  background: var(--light-beige);
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
}

a {
  text-decoration: none;
}

.salon-navbar {
  background: rgba(255, 250, 245, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(60, 36, 21, 0.08);
  padding: 16px 0;
}
.nav-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 767px) {
  .nav-logo {
    height: 40px;
  }
}

.navbar-brand {
  font-weight: 800;
  color: var(--dark-brown);
  font-size: 24px;
}

.navbar-brand span {
  color: var(--red);
  font-family: "Playfair Display", serif;
}

.nav-link {
  color: var(--dark-brown);
  font-weight: 600;
  margin: 0 8px;
}

.nav-link:hover {
  color: var(--red);
}

.nav-btn,
.btn-main {
  background: linear-gradient(135deg, var(--brown), var(--maroon));
  color: var(--white);
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 700;
  border: none;
  box-shadow: 0 12px 25px rgba(109, 31, 42, 0.22);
}

.nav-btn:hover,
.btn-main:hover {
  background: linear-gradient(135deg, var(--maroon), var(--red));
  color: var(--white);
}

.btn-outline-main {
  border: 1.5px solid var(--brown);
  color: var(--brown);
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 700;
  background: transparent;
}

.btn-outline-main:hover {
  background: var(--brown);
  color: var(--white);
}

.hero-section {
  padding: 160px 0 90px;
  background:
    radial-gradient(circle at top left, rgba(200, 155, 99, 0.28), transparent 35%),
    radial-gradient(circle at bottom right, rgba(163, 29, 43, 0.14), transparent 35%),
    var(--light-beige);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--beige);
  color: var(--maroon);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 22px;
}

.hero-section h1 {
  font-size: clamp(46px, 7vw, 78px);
  font-weight: 700;
  line-height: 1.02;
  color: var(--dark-brown);
  margin-bottom: 22px;
}

.hero-text {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}

.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-stats div {
  background: var(--white);
  padding: 18px 22px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.hero-stats strong {
  display: block;
  font-size: 26px;
  color: var(--maroon);
}

.hero-stats span {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

.hero-card {
  position: relative;
  background: var(--white);
  border-radius: 36px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 28px;
}

.booking-box {
  position: absolute;
  bottom: 34px;
  left: 34px;
  right: 34px;
  background: rgba(255, 250, 245, 0.94);
  backdrop-filter: blur(12px);
  padding: 22px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.booking-box h5 {
  font-weight: 800;
  color: var(--dark-brown);
}

.booking-box p {
  color: var(--muted);
  font-size: 14px;
}

.form-control {
  border-radius: 16px;
  padding: 14px 16px;
  border: 1px solid #eadbcd;
  background: var(--white);
}

.form-control:focus {
  box-shadow: 0 0 0 4px rgba(111, 78, 55, 0.12);
  border-color: var(--brown);
}

.mini-feature {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--white);
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.mini-feature i {
  color: var(--red);
}

.feature-one {
  top: 38px;
  left: -8px;
}

.feature-two {
  top: 110px;
  right: -10px;
}

.section-padding {
  padding: 90px 0;
}

.section-title {
  max-width: 740px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-title span,
.contact-info span,
.cta-box span {
  color: var(--red);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 13px;
}

.section-title h2,
.contact-info h2,
.cta-box h2 {
  color: var(--dark-brown);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 700;
  margin: 12px 0 14px;
}

.section-title p,
.contact-info p {
  color: var(--muted);
  line-height: 1.8;
}

.value-card,
.service-card,
.review-card,
.form-card,
.contact-info {
  background: var(--white);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow);
  height: 100%;
}

.value-card {
  text-align: center;
}

.value-card i,
.service-card i {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: var(--beige);
  color: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.value-card h5,
.service-card h5 {
  color: var(--dark-brown);
  font-weight: 800;
}

.services-section {
  background: var(--beige);
}

.service-card {
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card p {
  color: var(--muted);
  line-height: 1.7;
  margin: 14px 0 24px;
}

.service-btn {
  border-radius: 999px;
  background: var(--dark-brown);
  color: var(--white);
  padding: 10px 20px;
  font-weight: 700;
}

.service-btn:hover {
  background: var(--red);
  color: var(--white);
}

.review-card p {
  color: var(--muted);
  line-height: 1.8;
  margin: 18px 0;
}

.review-card h6 {
  color: var(--dark-brown);
  font-weight: 800;
}

.stars {
  color: var(--gold);
  font-size: 18px;
}

.cta-section {
  padding: 40px 0;
}

.cta-box {
  background:
    linear-gradient(135deg, rgba(60, 36, 21, 0.92), rgba(109, 31, 42, 0.92)),
    url("https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 36px;
  padding: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
}

.cta-box h2 {
  color: var(--white);
  margin-bottom: 0;
}

.contact-section {
  background: var(--light-beige);
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-top: 22px;
}

.contact-item i {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--beige);
  color: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.contact-item strong {
  color: var(--dark-brown);
}

.contact-item p {
  margin: 2px 0 0;
}

.form-card label {
  font-weight: 700;
  color: var(--dark-brown);
  margin-bottom: 8px;
}

.footer {
  background: var(--dark-brown);
  color: var(--white);
  padding: 44px 0;
}

.footer h4 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--beige);
}

.footer p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  font-size: 18px;
}

.footer-socials a:hover {
  background: var(--red);
}

.copyright {
  margin-top: 14px;
  font-size: 14px;
}

@media (max-width: 991px) {
  .hero-section {
    padding-top: 130px;
  }

  .hero-card img {
    height: 520px;
  }

  .feature-one,
  .feature-two {
    left: 28px;
    right: auto;
  }

  .feature-two {
    top: 105px;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: 120px 0 70px;
  }

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

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-stats {
    gap: 14px;
  }

  .hero-stats div {
    flex: 1 1 100%;
  }

  .hero-card img {
    height: 460px;
  }

  .booking-box {
    position: static;
    margin-top: 18px;
  }

  .mini-feature {
    position: static;
    margin-top: 12px;
    justify-content: center;
  }

  .cta-box {
    padding: 36px 26px;
    text-align: center;
  }

  .cta-box .btn {
    width: 100%;
  }

  .footer,
  .footer .text-md-end {
    text-align: center !important;
  }

  .footer-socials a {
    margin: 18px 4px 0;
  }
}

.gallery-preview-section {
  padding: 90px 0;
  background: var(--white);
}

.salon-carousel {
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-slide {
  position: relative;
  height: 560px;
}

.gallery-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(60, 36, 21, 0.78),
    rgba(60, 36, 21, 0.3),
    rgba(60, 36, 21, 0.05)
  );
  z-index: 1;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-caption {
  position: absolute;
  left: 60px;
  bottom: 60px;
  max-width: 560px;
  z-index: 2;
}

.gallery-caption span {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 13px;
}

.gallery-caption h3 {
  color: var(--white);
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 700;
  margin-top: 12px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 70px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(60, 36, 21, 0.75);
  border-radius: 50%;
  padding: 22px;
  background-size: 45%;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--beige);
  opacity: 1;
}

.carousel-indicators .active {
  background-color: var(--red);
}

@media (max-width: 767px) {
  .gallery-preview-section {
    padding: 70px 0;
  }

  .gallery-slide {
    height: 460px;
  }

  .gallery-caption {
    left: 24px;
    right: 24px;
    bottom: 40px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 48px;
  }
}

.elitista-branch-banner {
  padding: 70px 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(244,234,223,0.95)),
    radial-gradient(circle at top left, rgba(163, 29, 43, 0.18), transparent 35%);
}

.elitista-banner-box {
  background: #fff;
  border-radius: 34px;
  padding: 38px;
  box-shadow: 0 18px 45px rgba(60, 36, 21, 0.12);
  border: 1px solid rgba(163, 29, 43, 0.12);
}

.elitista-logo-card {
  background: radial-gradient(circle at top left, #d90000, #111 75%);
  color: #fff;
  border-radius: 50%;
  padding: 42px 24px;
  max-width: 330px;
  margin: auto;
  border: 5px solid #8b0000;
  box-shadow: 0 14px 30px rgba(0,0,0,0.22);
}

.elitista-logo-card h2 {
  font-family: "Inter", sans-serif;
  font-size: 54px;
  font-weight: 800;
  margin: 0;
  letter-spacing: -2px;
}

.elitista-logo-card span {
  display: block;
  font-size: 22px;
  letter-spacing: 5px;
  color: #d8d8d8;
}

.elitista-logo-card p {
  margin: 8px 0 0;
  font-size: 14px;
  font-weight: 700;
}

.elitista-branch-banner h3 {
  font-family: "Playfair Display", serif;
  color: #16110d;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.05;
}

.elitista-branch-banner h3 span {
  display: block;
  color: #a31d2b;
}

.elitista-phone-list {
  margin-top: 24px;
}

.elitista-phone-list a {
  display: block;
  color: #16110d;
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 8px;
}

.elitista-phone-list i {
  color: #a31d2b;
  margin-right: 8px;
}

.branch-title {
  background: #16110d;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
}

.branch-card {
  display: flex;
  gap: 12px;
  background: #fffaf5;
  border: 2px solid #a31d2b;
  border-radius: 18px;
  padding: 14px 16px;
  margin-bottom: 12px;
}

.branch-card > i {
  color: #1877f2;
  font-size: 22px;
}

.branch-card strong {
  display: block;
  color: #16110d;
  font-weight: 800;
  margin-bottom: 5px;
}

.branch-card p {
  margin: 0;
  color: #3c2415;
  font-size: 14px;
  font-weight: 600;
}

.branch-card p i {
  color: #a31d2b;
}

.elitista-logo-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.elitista-logo-image img {
  max-width: 100%;
  height: 140px;
  object-fit: contain;
  border-radius: 50px; /* optional if oval */
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

@media (max-width: 767px) {
  .elitista-banner-box {
    padding: 26px;
  }

  .elitista-logo-card h2 {
    font-size: 42px;
  }

  .elitista-phone-list a {
    font-size: 22px;
  }
}