/* ==========================================================================
    Fortuna Beauty - Custom Styles
   ========================================================================== */

/* ----- CSS Variables ----- */
:root {
  --navbar-h: 65px;        /* Chiều cao navbar desktop */
  --elux-pink-light: #fff5f7;
  --elux-pink-soft: #ffdde2;
  --elux-pink-primary: #d68c96;
  --elux-pink-accent: #e8a2ad;
  --elux-dark: #4a3c3e;
  --elux-dark-footer: #332a2b;
  --elux-text: #333333;
  --elux-text-light: #777777;
  --elux-hero-bg: #e8a2ad;
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Poppins", "Helvetica Neue", sans-serif;
  --font-brand: "Great Vibes", cursive;
}

/* ----- Global ----- */
body {
  font-family: var(--font-body) !important;
  font-weight: 300;
  background-color: #fff;
  color: var(--elux-text);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading) !important;
  font-weight: 400;
}

a {
  color: var(--elux-pink-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--elux-dark);
}

img {
  max-width: 100%;
  height: auto;
}

section {
  padding: 80px 0;
}

/* ----- Navbar ----- */
.elux-navbar {
  top: 0 !important;
  position: fixed;
  width: 100%;
  z-index: 1050;
  background-color: rgba(255, 220, 255, 0.95) !important;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

/* Fix navbar mobile/tablet */
@media (max-width: 991.98px) {
  :root { --navbar-h: 60px; }

  .elux-navbar {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  /* Container: 1 hàng duy nhất — brand bên trái, toggler bên phải */
  .elux-navbar .container {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    min-height: 60px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .elux-navbar .navbar-brand {
    flex: 0 0 auto;
    margin-right: auto;
    padding: 10px 0;
  }

  /* Thu nhỏ brand-name để vừa 1 hàng với toggler */
  .brand-name {
    font-size: 1.3rem !important;
  }

  .brand-icon svg {
    width: 28px !important;
    height: 28px !important;
  }

  .elux-navbar .navbar-toggler {
    flex: 0 0 auto;
    padding: 6px 10px;
    margin-left: 8px;
  }

  /* Collapse menu xuống hàng mới, full width */
  .elux-navbar .navbar-collapse {
    flex-basis: 100%;
    order: 3;
    width: 100%;
  }
}

.elux-navbar.scrolled {
  background-color: rgba(255, 245, 247, 0.97);
  box-shadow: 0 2px 20px rgba(214, 140, 150, 0.12);
  padding: 8px 0;
}

.brand-icon {
  color: var(--elux-pink-primary);
  display: flex;
  align-items: center;

}

.brand-icon svg {
  width: 40px;  
  height: 40px;
}

.brand-name {
  font-family: var(--font-brand) !important;
  font-size: 2rem;
  font-weight: 400;
  color: var(--elux-dark);
  letter-spacing: 1px;
}

.elux-navbar .nav-link {
  font-family: var(--font-body) !important;
  color: var(--elux-text);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 14px !important;
  transition: color 0.3s ease;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.elux-navbar .nav-link:hover,
.elux-navbar .nav-link.active {
  color: #ffffff !important;
}

/* ----- Hero Section ----- */
.hero-section {
  margin-top: 0;
  background-color: var(--elux-hero-bg);
  padding: calc(var(--navbar-h) + 60px) 0 60px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-text h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 500;
  font-style: italic;
}

.hero-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.hero-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.hero-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.hero-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);

  animation: shine-auto 4s infinite ease-in-out;
}

@keyframes shine-auto {
  0% {
    left: -150%;
  }

  30%,
  100% {
    left: 150%;
  }
}

.btn-hero {
  border: 1.5px solid #fff;
  color: #fff;
  padding: 12px 32px;
  font-size: 0.85rem;
  font-weight: 400;
  border-radius: 4px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  letter-spacing: 2px;
  text-transform: uppercase;
  background: transparent;
  display: inline-block;
}

.btn-hero:hover {
  background-color: #fff;
  color: var(--elux-dark);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-hero:active {
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/* ----- Why Us Section ----- */
.why-us-section {
  padding-top: 60px;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--elux-pink-primary);
}

.section-title {
  font-size: 2rem;
  margin-bottom: 40px;
}

.why-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 280px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
}

.why-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  text-align: center;
  backdrop-filter: blur(2px);
}

.why-card-overlay h5 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-style: italic;
}

.why-card-overlay p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  line-height: 1.5;
  margin: 0;
}

/* ----- Decorative Ring Icons ----- */
.rings-icon {
  text-align: center;
  padding: 30px 0 0;
}

.rings-icon svg {
  color: var(--elux-pink-primary);
  opacity: 0.6;
}

/* ----- About / What We Offer Section ----- */
.about-section {
  padding: 40px 0 60px;
}

.about-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--elux-pink-primary);
  margin-bottom: 5px;
}

.about-title {
  font-size: 1.8rem;
  margin-bottom: 0;
}

.about-desc {
  color: var(--elux-text-light);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* ----- Services Cards ----- */
.services-section {
  padding: 0 0 80px;
  background-color: var(--elux-pink-light);
}

.service-card {
  text-align: center;
  transition: transform 0.3s ease;
}

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

.service-card-img {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.service-card-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-card h5 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.service-card p {
  color: var(--elux-text-light);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ----- Promo Banner Section ----- */
.promo-section {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.promo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.promo-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.promo-content h2 {
  font-size: 2.5rem;
  font-style: italic;
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.promo-content p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  margin: 0 auto;
}

/* ----- Testimonials Section ----- */
.testimonials-section {
  padding: 80px 0;
}

.testimonial-header {
  text-align: center;
  margin-bottom: 40px;
}

.testimonial-header h2 {
  font-size: 1.8rem;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.google-badge .stars {
  color: #ffc107;
  font-size: 0.85rem;
}

.review-card {
  background: #fff;
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
}

.review-card .reviewer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.reviewer-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
}

.review-stars {
  color: #ffc107;
  font-size: 0.8rem;
  margin-bottom: 8px;
}

.review-text {
  font-size: 0.85rem;
  color: var(--elux-text-light);
  line-height: 1.6;
}

/* ----- Gallery Slider (Homepage) ----- */
.gallery-slider-section {
  padding: 0;
  overflow: hidden;
}

.gallery-swiper {
  width: 100%;
  padding: 0;
}

.gallery-swiper .swiper-slide img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 8px;
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
  cursor: pointer;
}

.gallery-swiper .swiper-slide img:hover {
  transform: scale(1.03);
  filter: brightness(1.08);
}

@media (max-width: 767.98px) {
  .gallery-swiper .swiper-slide img {
    height: 200px;
    border-radius: 6px;
  }

  .hero-text .d-flex {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
    justify-content: center !important;
    margin-top: 20px;
  }

  .btn-hero {
    padding: 8px 12px !important;
    font-size: 0.7rem !important;
    min-width: 110px;
    flex: 1;
    max-width: 150px;
    white-space: nowrap;
  }
}

@media (max-width: 575.98px) {
  .hero-section {
    padding: 80px 0 30px !important;
  }

  .hero-text h1 {
    font-size: 1.6rem !important;
  }

  .gallery-swiper .swiper-slide img {
    height: 180px;
  }
}

/* Gallery Page - 3 column */
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-page-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gallery-page-grid img:hover {
  transform: scale(1.02);
}

/* ----- Page Header Banner ----- */
.page-header {
  margin-top: 70px;
  padding: 50px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  font-style: italic;
}

.page-header p {
  color: var(--elux-text-light);
  font-size: 0.95rem;
  max-width: 600px;
  margin: 10px auto 0;
}

/* ----- Prices Page ----- */
.price-category-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 260px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.price-category-card:hover {
  transform: translateY(-5px);
}

.price-category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.price-category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 30%, rgba(0, 0, 0, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-category-overlay h3 {
  color: #fff;
  font-size: 1.5rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
}

.price-table-box {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 24px;
}

.price-table-box h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 0.88rem;
}

.price-row:last-child {
  border-bottom: none;
}

.price-row .service-name {
  color: var(--elux-text);
}

.price-row .service-price {
  font-weight: 600;
  color: var(--elux-dark);
}

.price-notes {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.price-notes h5 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.price-notes ul {
  list-style: disc;
  padding-left: 20px;
}

.price-notes ul li {
  font-size: 0.88rem;
  color: var(--elux-text-light);
  margin-bottom: 6px;
}

/* ----- Contact Page ----- */
.contact-banner {
  margin-top: 70px;
  background-color: var(--elux-pink-soft);
  padding: 50px 0;
  text-align: center;
}

.contact-banner h1 {
  font-size: 2.5rem;
  font-style: italic;
}

.contact-section {
  padding: 60px 0;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--elux-pink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--elux-dark);
}

.contact-info-icon i {
  font-size: 1rem;
}

.contact-info-text h6 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 3px;
}

.contact-info-text p {
  font-size: 0.85rem;
  color: var(--elux-text-light);
  margin: 0;
}

.contact-form {
  background-color: rgba(214, 140, 150, 0.08);
  border-radius: 12px;
  padding: 30px;
}

.contact-form .form-control {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 0.88rem;
  background-color: #fff;
  margin-bottom: 16px;
}

.contact-form .form-control:focus {
  border-color: var(--elux-pink-primary);
  box-shadow: 0 0 0 0.2rem rgba(214, 140, 150, 0.15);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.btn-send {
  width: 100%;
  background-color: var(--elux-dark);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.btn-send:hover {
  background-color: #222;
  color: #fff;
}

.map-section {
  padding: 0;
}

.map-section iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* ----- Footer ----- */
.elux-footer {
  background-color: var(--elux-dark-footer);
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 0 0;
}

.footer-logo svg {
  color: var(--elux-pink-primary);
}

.footer-brand {
  font-family: var(--font-brand);
  color: #fff;
  font-style: normal;
  font-weight: 400;
  font-size: 2rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.15);
  max-width: 700px;
}

.footer-info-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  align-items: center;
  justify-content: center;
}

.footer-info-icon i {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-info-title {
  font-family: var(--font-body);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.footer-info-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.footer-copyright {
  margin-top: 30px;
  padding: 15px 0;
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-social {
  color: rgba(255, 255, 255, 0.4);
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer-social:hover {
  color: #fff;
}

/* ----- Scroll to Top Button ----- */
.btn-scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--elux-dark);
  color: #fff;
  border: none;
  font-size: 1rem;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.btn-scroll-top.visible {
  display: flex;
}

.btn-scroll-top:hover {
  background-color: var(--elux-pink-primary);
  transform: translateY(-2px);
}

/* ----- Responsive ----- */
@media (max-width: 991.98px) {
  .lang-divider {
    display: none !important;
  }

  .navbar-nav .nav-item.border-start {
    border-left: none !important;
    padding-left: 0 !important;
  }

  .elux-lang-wrapper {
    display: flex !important;
    justify-content: center !important;
    gap: 25px !important;
    padding-top: 20px;
    margin-top: 15px;
    border-top: 1px dashed var(--elux-pink-soft);
    width: 100%;
  }

  .elux-navbar {
    top: 0 !important;
  }

  .brand-name {
    font-size: 1.4rem;
  }

  /* Compact mobile menu */
  .navbar-nav .nav-link {
    font-size: 0.78rem !important;
    padding: 6px 14px !important;
    letter-spacing: 1.5px;
  }

  .navbar-collapse {
    padding-bottom: 10px;
  }

  .navbar-nav {
    gap: 0 !important;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  section {
    padding: 50px 0;
  }

  /* Hero override — đủ chỗ cho navbar collapsed */
  .hero-section {
    padding: 130px 0 50px !important;
    min-height: auto !important;
  }

  /* Hero text stack — hiển thị đầy đủ khi col-lg stack */
  .hero-text {
    text-align: center;
    padding-bottom: 30px;
  }

  .hero-text .btn-hero {
    display: inline-block;
  }
}

@media (max-width: 767.98px) {
  .brand-name {
    font-size: 1.3rem;
  }

  section {
    padding: 50px 0;
  }

  /* Navbar mobile ~60px — padding-top = navbar + khoảng thở */
  .hero-section {
    padding: 80px 0 40px !important;
    min-height: auto !important;
  }

  .hero-text {
    text-align: center;
  }

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

  .hero-image {
    margin-top: 20px;
  }

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

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

  .gallery-page-grid img {
    height: 220px;
  }

  .promo-content h2 {
    font-size: 1.5rem;
  }

  .page-header h1 {
    font-size: 1.8rem;
  }

  .footer-brand {
    font-size: 1.6rem;
  }
}

@media (max-width: 575.98px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-text .d-flex {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
    justify-content: center !important;
    margin-top: 25px;
    width: 100%;
  }

  .btn-hero {
    padding: 10px 12px !important;
    font-size: 0.7rem !important;
    min-width: 110px;
    flex: 1;
    max-width: 150px;
    white-space: nowrap;
    letter-spacing: 1px;
    text-align: center;
  }

  .gallery-page-grid {
    grid-template-columns: 1fr !important;
  }
}

.brand-name {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: #444;
}

.elux-lang-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-link {
  display: flex;
  align-items: center;
  text-decoration: none !important;
  gap: 6px;
  transition: all 0.3s ease;
  opacity: 0.6;
}

.lang-link:hover,
.lang-link.active {
  opacity: 1;
}

.flag-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.flag-circle svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lang-label {
  font-size: 12px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
}

.lang-link.active .lang-label {
  color: #ed4069;
  /* Màu hồng Fortuna */
}

.lang-divider {
  width: 1px;
  height: 14px;
  background-color: var(--elux-pink-primary);
  opacity: 0.4;
  border-radius: 2px;
  flex-shrink: 0;
}

.nav-link {
  position: relative;
  font-weight: 400;
  color: #555 !important;
  transition: color 0.3s ease;
}

@media (max-width: 991px) {
}

.top-announcement {
  background-color: var(--elux-pink-accent);
  color: #fff !important;
  padding: 8px 0;
  font-size: 14px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1050;
  overflow: hidden;
}

.marquee-text {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-text span {
  padding-right: 150px;
  display: inline-block;
  align-items: center;
  /* gap: 8px;  */
  white-space: nowrap;
}

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

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

.elux-navbar {
  top: 0 !important;
  background-color: rgba(255, 220, 225, 0.95) !important;
  backdrop-filter: blur(5px);
}

/* Language Switcher */
.elux-lang-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.flag-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  overflow: hidden;
}

/* ==========================================================================
   FEATURE ENHANCEMENTS
   ========================================================================== */

/* ----- Parallax Hero ----- */
.hero-section {
  overflow: hidden;
  position: relative;
}

.hero-image.parallax-img img {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* ----- Glassmorphism Service Cards ----- */
.services-section {
  background: linear-gradient(135deg, #fff5f7 0%, #fce4ec 50%, #fff0f3 100%);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232,162,173,0.25) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  border-radius: 50%;
  pointer-events: none;
}

.services-section::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(214,140,150,0.2) 0%, transparent 70%);
  bottom: -80px;
  left: -80px;
  border-radius: 50%;
  pointer-events: none;
}

.service-card {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 20px;
  padding: 20px 20px 24px;
  box-shadow:
    0 8px 32px rgba(214, 140, 150, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.9);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Light shimmer on hover */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.45) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-20deg);
  transition: left 0.55s ease;
  pointer-events: none;
}

.service-card:hover::before {
  left: 140%;
}

.service-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 20px 48px rgba(214, 140, 150, 0.22),
    inset 0 1px 0 rgba(255,255,255,1);
}

.service-card-img {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* ----- 3D Nail Polish Section ----- */
.nail3d-section {
  padding: 80px 0;
  background: linear-gradient(160deg, #2a1a1e 0%, #3d1f27 40%, #1a0f13 100%);
  position: relative;
  overflow: hidden;
}

.nail3d-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(214,140,150,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(232,162,173,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.nail3d-text .section-subtitle {
  color: var(--elux-pink-accent);
}

.nail3d-text h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 16px;
}

.nail3d-text p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  line-height: 1.8;
}

.nail3d-canvas-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#nail3d-canvas {
  border-radius: 20px;
  cursor: grab;
  display: block;
  max-width: 100%;
}

#nail3d-canvas:active {
  cursor: grabbing;
}

.nail3d-hint {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Color picker dots */
.nail3d-colors {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.nail3d-color-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s;
}

.nail3d-color-btn:hover,
.nail3d-color-btn.active {
  transform: scale(1.25);
  border-color: #fff;
}