/* =====================================
   LOADER
===================================== */

#loader {
    position: fixed;
    inset: 0;

    width: 100%;
    height: 100%;

    background: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 99999;

    opacity: 1;
    visibility: visible;

    transition:
        opacity 0.7s ease,
        visibility 0.7s ease;
}



#loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}


.beauty-loader {
    width: 90px;
    height: 90px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 18px;
}



.loader-ring {
    position: absolute;

    width: 75px;
    height: 75px;

    border-radius: 50%;

    border: 3px solid rgba(233, 30, 99, 0.12);

    border-top-color: #e91e63;
    border-right-color: #d19a3a;

    animation: rotateRing 1.2s linear infinite;
}


.loader-center {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        #e91e63,
        #d19a3a
    );

    color: #fff;

    box-shadow:
        0 8px 25px rgba(233, 30, 99, 0.25);

    animation: centerPulse 1.5s ease-in-out infinite;
}


.loader-center i {
    font-size: 18px;
}



.orbit-dot {
    position: absolute;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #e91e63;

    box-shadow:
        0 0 10px rgba(233, 30, 99, 0.5);
}


.dot-one {
    top: 2px;
    left: 42px;

    animation: dotPulse 1.2s ease-in-out infinite;
}

.dot-two {
    bottom: 10px;
    right: 5px;

    background: #d19a3a;

    animation: dotPulse 1.2s ease-in-out 0.3s infinite;
}

.dot-three {
    bottom: 10px;
    left: 5px;

    animation: dotPulse 1.2s ease-in-out 0.6s infinite;
}


.loader-text {
    font-size: 22px;

    font-weight: 700;

    letter-spacing: 1px;

    color: #222;
}


.loader-text span {
    color: #e91e63;
}

.loader-subtext {
    margin-top: 5px;

    font-size: 11px;

    color: #999;

    letter-spacing: 0.7px;
}

@keyframes rotateRing {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


@keyframes centerPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.88);
    }

}


@keyframes dotPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.6);
        opacity: 0.5;
    }

}

@media (max-width: 480px) {

    .beauty-loader {
        width: 80px;
        height: 80px;
    }

    .loader-ring {
        width: 68px;
        height: 68px;
    }

    .loader-center {
        width: 40px;
        height: 40px;
    }

    .loader-center i {
        font-size: 16px;
    }

    .loader-text {
        font-size: 19px;
    }

    .loader-subtext {
        font-size: 10px;
    }
}
/* ================================
   TOP HEADER
================================ */

.top-header {
    background: linear-gradient(
        135deg,
        #c2185b,
        #e91e63,
        #f06292
    );
    color: #fff;
    padding: 9px 0;
    font-size: 13px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}
.top-header::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    top: -120px;
    left: 20%;
}

.top-header::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    bottom: -170px;
    right: 10%;
}

.top-contact {
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    z-index: 2;
}

.top-contact span {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.top-contact i {
    width: 27px;
    height: 27px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    color: #fff;
    font-size: 12px;
}

.top-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.follow-text {
    margin-right: 8px;
    font-size: 13px;
    opacity: 0.9;
}

.social-link {
    width: 29px;
    height: 29px;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    text-decoration: none;

    border: 1px solid rgba(255,255,255,0.45);
    border-radius: 50%;

    transition: all 0.35s ease;
}

.social-link i {
    margin: 0;
    font-size: 12px;
}

.social-link:hover {
    background: #fff;
    color: #e91e63;
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(0,0,0,0.15);
}


/* ================================
   HEADER WRAPPER
================================ */

.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(255,255,255,0.97);
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    backdrop-filter: blur(8px);
}


@media (max-width: 767px) {

    .top-header {
        padding: 8px 0;
    }

    .top-contact {
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
    }

    .top-contact span {
        font-size: 11px;
    }

    .top-contact i {
        width: 23px;
        height: 23px;
        font-size: 10px;
        margin-right: 5px;
    }

    .top-social {
        justify-content: center;
        margin-top: 7px;
    }

    .follow-text {
        font-size: 11px;
    }

    .social-link {
        width: 26px;
        height: 26px;
    }

    .social-link i {
        font-size: 11px;
    }
}


@media (max-width: 480px) {

    .top-contact {
        gap: 8px;
    }

    .top-contact span {
        font-size: 10px;
    }

    .top-social {
        margin-top: 6px;
    }

    .follow-text {
        display: none;
    }
}
body {
  padding-top: 80px;
}

/* =====================================
   MAIN HEADER
===================================== */

.main-header {
    background: rgba(255, 255, 255, 0.97);
    position: relative;
    z-index: 1000;
    border-bottom: 1px solid rgba(233, 30, 99, 0.08);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(10px);
}

.main-header .container {
    min-height: 82px;
}


.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    width: 82px;
    height: auto;
    display: block;
    transition: all 0.4s ease;
}

.logo:hover img {
    transform: scale(1.06);
}


.nav-menu {
    margin-left: auto;
    margin-right: 35px;
}

.menu {
    gap: 8px;
}

.menu li {
    position: relative;
    margin: 0;
}

.menu li > a {
    display: flex;
    align-items: center;
    gap: 6px;

    color: #333;
    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    padding: 10px 14px;
    border-radius: 25px;

    transition: all 0.3s ease;
}

.menu li > a:hover {
    color: #e91e63;
    background: rgba(233, 30, 99, 0.07);
}

.menu li > a.active {
    color: #e91e63;
    background: rgba(233, 30, 99, 0.08);
}


.menu li > a::after {
    display: none;
}

.menu li > a i {
    font-size: 9px;
    transition: transform 0.3s ease;
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}


.dropdown-menu {
    display: block;
    visibility: hidden;
    opacity: 0;

    position: absolute;
    top: calc(100% + 12px);
    left: 0;

    min-width: 235px;

    background: #fff;

    padding: 10px;

    margin: 0;

    list-style: none;

    border-radius: 12px;

    border: 1px solid rgba(233, 30, 99, 0.08);

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.12);

    transform: translateY(10px);

    transition: all 0.3s ease;
}


.dropdown-menu::before {
    content: "";

    position: absolute;

    top: -6px;
    left: 28px;

    width: 12px;
    height: 12px;

    background: #fff;

    transform: rotate(45deg);

    border-left: 1px solid rgba(233, 30, 99, 0.08);
    border-top: 1px solid rgba(233, 30, 99, 0.08);
}


.dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu li a {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 11px 13px;

    color: #333;

    font-size: 13px;

    font-weight: 500;

    border-radius: 8px;

    text-decoration: none;

    transition: all 0.3s ease;
}

.dropdown-menu li a i {
    width: 27px;
    height: 27px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(233, 30, 99, 0.08);

    color: #e91e63;

    font-size: 11px;

    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    background: rgba(233, 30, 99, 0.07);

    color: #e91e63;

    padding-left: 17px;
}

.dropdown-menu li a:hover i {
    background: #e91e63;
    color: #fff;
}

.book-btn {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 11px 20px;

    border: none;

    border-radius: 30px;

    background: linear-gradient(
        135deg,
        #e91e63,
        #c2185b
    );

    color: #fff;

    font-size: 13px;

    font-weight: 600;

    text-decoration: none;

    box-shadow: 0 7px 18px rgba(233, 30, 99, 0.25);

    transition: all 0.35s ease;
}

.book-btn i {
    font-size: 11px;

    transition: transform 0.3s ease;
}

.book-btn:hover {
    color: #fff;

    transform: translateY(-2px);

    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.35);
}

.book-btn:hover i {
    transform: translateX(4px);
}

.mobile-toggle {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: rgba(233, 30, 99, 0.08);

    color: #e91e63;

    font-size: 19px;

    cursor: pointer;

    transition: all 0.3s ease;
}

.mobile-toggle:hover {
    background: #e91e63;
    color: #fff;
}

@media (max-width: 991px) {

    .main-header .container {
        min-height: 70px;
    }

    .logo img {
        width: 70px;
    }
}


@media (max-width: 768px) {

    .main-header {
        width: 100%;
    }

    .main-header .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .logo img {
        width: 68px;
    }

    .mobile-toggle {
        width: 40px;
        height: 40px;
    }
}


@media (max-width: 480px) {

    .main-header .container {
        min-height: 65px;
    }

    .logo img {
        width: 62px;
    }

    .mobile-toggle {
        width: 38px;
        height: 38px;
        font-size: 17px;
    }
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
    height: 100vh;
}



/* ===== Mobile Menu ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: #fff;
  padding: 20px;
  box-shadow: 3px 0 10px rgba(0,0,0,0.2);
  transition: left 0.4s ease;
  z-index: 9999;
  overflow-y: auto;
}
.mobile-menu.active {
  left: 0;
}

body.menu-open {
  overflow: hidden;
}

.mobile-menu .close-btn {
  text-align: right;
  font-size: 25px;
  cursor: pointer;
  color: #000;
}
.mobile-menu ul li {
  margin-bottom: 15px;
}
.mobile-menu a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  display: block;
}
.mobile-menu a:hover {
  color: #E91E63;
}
.mobile-menu .dropdown-sub {
  display: none;
  padding-left: 20px;
}
.mobile-menu .dropdown-sub.show {
  display: block;
}
.mobile-menu .dropdown > a i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}
.mobile-menu .dropdown.open > a i {
  transform: rotate(180deg);
}

.mobile-toggle {
  font-size: 25px;
  color: #000;
  cursor: pointer;
  z-index: 10000;
  position: relative;
}

#hero-carousel .carousel-item {
  position: relative;
  height: 90vh;
  min-height: 500px;
  overflow: hidden;
}

#hero-carousel img {
  object-fit: cover;
  height: 100%;
}

.carousel-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.carousel-caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  color: #fff;
  padding: 0 15px;
}

.carousel-caption .tagline {
  font-size: 22px;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.carousel-caption h1 {
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 15px;
}

.carousel-caption .desc {
  font-size: 17px;
  max-width: 600px;
  margin-bottom: 25px;
}

.btn-book {
  background-color: #E91E63;
  color: #fff;
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.btn-book:hover {
  background-color: #fff;
  color: #000;
}

.carousel-indicators [data-bs-target] {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background-color: #fff;
  border: 2px solid #E91E63;
  transition: all 0.3s ease;
  margin: 0 6px;
}

.carousel-indicators .active {
  background: linear-gradient(
            135deg,
            #e91e63,
            #d19a3a
        );;
  transform: scale(1.2);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}

/* =========================================
   BEAUTY ABOUT SECTION
========================================= */

.beauty-about-section {
    background: #fff9f5;
    overflow: hidden;
}

.about-image-wrap {
    position: relative;
    padding: 20px 45px 50px 20px;
}

.about-image-main {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 180px 180px 25px 25px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.about-image-main img {
    width: 100%;
    height: 570px;
    object-fit: cover;
    display: block;
    transition: 0.6s ease;
}

.about-image-main:hover img {
    transform: scale(1.04);
}


.about-circle {
    position: absolute;
    width: 180px;
    height: 180px;
    border: 2px solid #e91e63;
    border-radius: 50%;
    left: -45px;
    bottom: 5px;
    z-index: 1;
    opacity: 0.35;
}

.about-circle::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    background: #c9a227;
    border-radius: 50%;
    top: 15px;
    right: 15px;
}

.experience-box {
    position: absolute;
    z-index: 5;
    right: 0;
    bottom: 25px;
    background: #ffffff;
    padding: 22px 28px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-left: 4px solid #e91e63;
}

.experience-number {
    font-size: 38px;
    font-weight: 700;
    color: #e91e63;
    line-height: 1;
}

.experience-text {
    font-size: 13px;
    line-height: 1.5;
    color: #555;
    font-weight: 600;
}

.beauty-card {
    position: absolute;
    left: 0;
    top: 70px;
    z-index: 5;
    background: #1a1a1a;
    color: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.18);
}

.beauty-card i {
    width: 38px;
    height: 38px;
    background: #e91e63;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 15px;
}

.beauty-card span {
    font-size: 13px;
    line-height: 1.3;
    font-weight: 600;
}


.about-content {
    padding-left: 25px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #e91e63;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.section-tag span {
    width: 35px;
    height: 2px;
    background: #e91e63;
    display: inline-block;
}


.about-content h2 {
    font-size: 48px;
    line-height: 1.15;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 25px;
}

.about-content h2 span {
    color: #e91e63;
    font-family: Georgia, serif;
    font-style: italic;
    font-weight: 500;
}

.about-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 18px;
}

.about-content .about-intro {
    color: #444;
    font-size: 17px;
}

.about-features {
    display: flex;
    gap: 30px;
    margin-top: 28px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 13px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: #f8d7e3;
    color: #e91e63;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.feature-item h5 {
    margin: 0 0 4px;
    font-size: 15px;
    color: #222;
}

.feature-item p {
    margin: 0;
    font-size: 12px;
    line-height: 1.4;
    color: #777;
}

.about-btn-area {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 25px;
}

.btn-discover {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 25px;
    border: 1.5px solid #e91e63;
    border-radius: 50px;
    color: #e91e63;
    font-size: 14px;
    font-weight: 600;
    transition: 0.4s ease;
}

.btn-discover i {
    transition: 0.3s ease;
}

.btn-discover:hover {
    background: linear-gradient(
            135deg,
            #e91e63,
            #d19a3a
        );
    color: #fff;
}

.btn-discover:hover i {
    transform: translateX(5px);
}


.mini-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mini-info > i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f8d7e3;
    color: #e91e63;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-info small {
    display: block;
    font-size: 10px;
    color: #888;
}

.mini-info strong {
    display: block;
    color: #222;
    font-size: 14px;
}

@media (max-width: 991px) {

    .about-content {
        padding-left: 0;
    }

    .about-content h2 {
        font-size: 40px;
    }

    .about-image-main img {
        height: 500px;
    }

    .about-features {
        gap: 20px;
    }

}

@media (max-width: 767px) {

    .beauty-about-section {
        padding: 30px 0;
    }

    .about-image-wrap {
        padding: 15px 25px 45px 15px;
    }

    .about-image-main {
        border-radius: 120px 120px 20px 20px;
    }

    .about-image-main img {
        height: 430px;
    }

    .beauty-card {
        left: 0;
        top: 45px;
        padding: 10px 13px;
    }

    .beauty-card i {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .beauty-card span {
        font-size: 12px;
    }

    .experience-box {
        right: 0;
        bottom: 10px;
        padding: 15px 18px;
    }

    .experience-number {
        font-size: 30px;
    }

    .experience-text {
        font-size: 12px;
    }

    .about-content {
        margin-top: 25px;
    }

    .section-tag {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .about-content h2 {
        font-size: 34px;
        margin-bottom: 18px;
    }

    .about-content p {
        font-size: 14px;
        line-height: 1.8;
    }

    .about-content .about-intro {
        font-size: 15px;
    }

    .about-features {
        display: block;
    }

    .feature-item {
        margin-bottom: 18px;
    }

    .about-btn-area {
        display: block;
    }

    .btn-discover {
        margin-bottom: 20px;
    }

}
@media (max-width: 400px) {

    .about-image-main img {
        height: 380px;
    }

    .about-content h2 {
        font-size: 29px;
    }

    .experience-box {
        padding: 12px 14px;
    }

    .experience-number {
        font-size: 26px;
    }

}

/* ==========================================
   BEAUTY SERVICES SECTION
========================================== */

.beauty-services-section {
    position: relative;
    background: #fff9f5;
    overflow: hidden;
}
.beauty-services-section::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: #f8d7e3;
    opacity: 0.25;
    top: -150px;
    left: -150px;
}

.beauty-services-section::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: #f3e6c8;
    opacity: 0.25;
    bottom: -130px;
    right: -100px;
}

.services-heading {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.services-subtitle {
    display: inline-block;
    color: #e91e63;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.services-heading h2 {
    color: #1a1a1a;
    font-size: 46px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

.services-heading h2 span {
    color: #e91e63;
    font-family: Georgia, serif;
    font-style: italic;
    font-weight: 500;
}

.services-heading p {
    max-width: 650px;
    margin: auto;
    color: #777;
    font-size: 15px;
    line-height: 1.8;
}
.heading-decoration {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.heading-decoration span {
    width: 45px;
    height: 1.5px;
    background: #e91e63;
}

.heading-decoration i {
    color: #c9a227;
    font-size: 18px;
}

.beauty-service-card {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 38px 28px 32px;
    background: #ffffff;
    border: 1px solid rgba(201, 162, 39, 0.12);
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(34, 34, 34, 0.06);
    overflow: hidden;
    transition: all 0.45s ease;
}

.beauty-service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 4px;
    background: #e91e63;
    transform: translateX(-50%);
    transition: 0.45s ease;
}
.beauty-service-card::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: #fff0f5;
    top: -70px;
    right: -60px;
    transition: 0.5s ease;
}
.beauty-service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 55px rgba(34, 34, 34, 0.12);
    border-color: rgba(233, 30, 99, 0.15);
}

.beauty-service-card:hover::before {
    width: 100%;
}

.beauty-service-card:hover::after {
    transform: scale(1.5);
}

.service-number {
    position: absolute;
    top: 18px;
    left: 20px;
    color: #d5b75b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.service-icon {
    position: relative;
    z-index: 3;
    width: 76px;
    height: 76px;
    margin: 5px auto 22px;
    border-radius: 50%;
    background: #fff0f5;
    color: #e91e63;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border: 1px solid #f8d7e3;
    transition: all 0.45s ease;
}

.beauty-service-card:hover .service-icon {
    background: #e91e63;
    color: #ffffff;
    transform: rotateY(180deg);
}

.beauty-service-card h4 {
    position: relative;
    z-index: 3;
    color: #222;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
}

.beauty-service-card p {
    position: relative;
    z-index: 3;
    color: #777;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 22px;
}

.service-link {
    position: relative;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e91e63;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: 0.3s ease;
}

.service-link i {
    font-size: 12px;
    transition: 0.3s ease;
}

.service-link:hover {
    color: #c9a227;
}

.service-link:hover i {
    transform: translateX(5px);
}

.services-bottom {
    position: relative;
    z-index: 3;
}

.services-bottom p {
    color: #777;
    font-size: 14px;
    margin-bottom: 18px;
}

.services-bottom p span {
    color: #222;
    font-weight: 600;
}

.all-services-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 13px 26px;
    background: #1a1a1a;
    color: #ffffff;
    border-radius: 50px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: 0.4s ease;
}

.all-services-btn i {
    transition: 0.3s ease;
}

.all-services-btn:hover {
    background: #e91e63;
    color: #ffffff;
}

.all-services-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 991px) {

    .services-heading h2 {
        font-size: 40px;
    }

    .beauty-service-card {
        padding: 35px 25px 30px;
    }

}

@media (max-width: 767px) {

    .beauty-services-section {
        padding-top: 55px !important;
        padding-bottom: 55px !important;
    }

    .services-heading {
        padding: 0 15px;
    }

    .services-subtitle {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .services-heading h2 {
        font-size: 32px;
        line-height: 1.25;
    }

    .services-heading p {
        font-size: 14px;
        line-height: 1.7;
    }

    .heading-decoration {
        margin-top: 15px;
    }

    .heading-decoration span {
        width: 32px;
    }

    .beauty-service-card {
        padding: 35px 25px 28px;
        border-radius: 20px;
    }

    .beauty-service-card:hover {
        transform: translateY(-6px);
    }

    .service-icon {
        width: 68px;
        height: 68px;
        font-size: 24px;
    }

    .beauty-service-card h4 {
        font-size: 19px;
    }

    .beauty-service-card p {
        font-size: 13px;
        line-height: 1.7;
    }

    .services-bottom p {
        padding: 0 20px;
        line-height: 1.7;
    }

}


@media (max-width: 400px) {

    .services-heading h2 {
        font-size: 28px;
    }

    .beauty-service-card {
        padding-left: 20px;
        padding-right: 20px;
    }

}

/* ==========================================
   BEAUTY STATS SECTION
========================================== */

.beauty-stats-section {
    position: relative;
    padding: 100px 0;
    background: #fff9f5;
    overflow: hidden;
}

.beauty-stats-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: #f8d7e3;
    opacity: 0.22;
    left: -250px;
    top: -180px;
}

.beauty-stats-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: #f3e6c8;
    opacity: 0.20;
    right: -180px;
    bottom: -130px;
}

.stats-image-area {
    position: relative;
    min-height: 560px;
    padding: 20px 45px 35px 20px;
}

.stats-image-bg {
    position: absolute;
    width: 85%;
    height: 85%;
    left: 5%;
    top: 7%;
    background: #edcfa8;
    border-radius: 48% 52% 42% 58% / 45% 40% 60% 55%;
    transform: rotate(-5deg);
}

.stats-main-image {
    position: relative;
    z-index: 2;
    width: 88%;
    margin-left: 5%;
    overflow: hidden;
    border-radius: 45% 45% 28% 28%;
    box-shadow: 0 25px 55px rgba(30, 30, 30, 0.12);
}

.stats-main-image img {
    width: 100%;
    height: 535px;
    object-fit: cover;
    display: block;
    transition: 0.6s ease;
}

.stats-main-image:hover img {
    transform: scale(1.04);
}

.beauty-experience-badge {
    position: absolute;
    z-index: 5;
    left: 0;
    bottom: 45px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 14px 20px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.13);
}

.badge-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #e91e63;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.beauty-experience-badge strong {
    display: block;
    color: #e91e63;
    font-size: 24px;
    line-height: 1;
}

.beauty-experience-badge span {
    display: block;
    color: #777;
    font-size: 12px;
    margin-top: 5px;
}

.stats-flower {
    position: absolute;
    z-index: 4;
    right: 15px;
    top: 45px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #ffffff;
    color: #c9a227;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.stats-content {
    position: relative;
    z-index: 2;
    padding-left: 20px;
}

.stats-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #e91e63;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    margin-bottom: 16px;
}

.stats-label span {
    width: 32px;
    height: 2px;
    background: #e91e63;
}


.stats-content h2 {
    max-width: 520px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-size: 44px;
    line-height: 1.2;
    font-weight: 700;
}

.stats-content h2 em {
    display: block;
    color: #e91e63;
    font-family: Georgia, serif;
    font-weight: 500;
    font-style: italic;
}


.stats-intro {
    max-width: 560px;
    color: #777;
    font-size: 15px;
    line-height: 1.85;
    margin-bottom: 30px;
}

.stats-grid {
    max-width: 590px;
}

.stat-card {
    position: relative;
    height: 100%;
    padding: 20px 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(201, 162, 39, 0.12);
    box-shadow: 0 8px 25px rgba(30, 30, 30, 0.05);
    transition: 0.4s ease;
    overflow: hidden;
}

.stat-card::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 0;
    left: 0;
    top: 50%;
    background: #e91e63;
    transform: translateY(-50%);
    transition: 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(30, 30, 30, 0.09);
}

.stat-card:hover::before {
    height: 65%;
}

.stat-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    background: #fff0f5;
    color: #e91e63;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    transition: 0.4s ease;
}

.stat-card:hover .stat-icon {
    background: #e91e63;
    color: #ffffff;
}

.stat-details h3 {
    margin: 0;
    color: #c9a227;
    font-size: 28px;
    line-height: 1;
    font-weight: 700;
}

.stat-details h3 span {
    font-size: 20px;
}

.stat-details p {
    margin: 6px 0 0;
    color: #555;
    font-size: 12px;
    font-weight: 600;
}

.stats-bottom {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
    max-width: 570px;
}

.stats-check {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: #f8d7e3;
    color: #e91e63;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.stats-bottom p {
    margin: 0;
    color: #777;
    font-size: 13px;
    line-height: 1.6;
}

.stats-bottom strong {
    color: #222;
}

@media (max-width: 991px) {

    .beauty-stats-section {
        padding: 80px 0;
    }

    .stats-image-area {
        min-height: 520px;
    }

    .stats-main-image img {
        height: 500px;
    }

    .stats-content {
        padding-left: 0;
    }

    .stats-content h2 {
        font-size: 40px;
    }

}

@media (max-width: 767px) {

    .beauty-stats-section {
        padding: 60px 0;
    }

    .stats-image-area {
        min-height: auto;
        padding: 15px 25px 65px 15px;
    }

    .stats-image-bg {
        width: 88%;
        height: 82%;
        left: 4%;
        top: 6%;
    }

    .stats-main-image {
        width: 90%;
        margin-left: 4%;
        border-radius: 40% 40% 22% 22%;
    }

    .stats-main-image img {
        height: 430px;
    }

    .beauty-experience-badge {
        left: 0;
        bottom: 20px;
        padding: 12px 15px;
    }

    .badge-icon {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .beauty-experience-badge strong {
        font-size: 21px;
    }

    .beauty-experience-badge span {
        font-size: 10px;
    }

    .stats-flower {
        width: 45px;
        height: 45px;
        right: 5px;
        top: 25px;
        font-size: 16px;
    }


    .stats-content {
        margin-top: 15px;
    }

    .stats-label {
        font-size: 10px;
        letter-spacing: 1.8px;
    }

    .stats-content h2 {
        font-size: 33px;
        margin-bottom: 16px;
    }

    .stats-intro {
        font-size: 14px;
        line-height: 1.75;
        margin-bottom: 25px;
    }

    .stat-card {
        padding: 17px 15px;
    }

    .stat-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
        font-size: 16px;
    }

    .stat-details h3 {
        font-size: 24px;
    }

    .stat-details p {
        font-size: 12px;
    }

}


@media (max-width: 400px) {

    .stats-main-image img {
        height: 390px;
    }

    .stats-content h2 {
        font-size: 29px;
    }

    .stat-card {
        padding: 15px 12px;
    }

    .stat-details h3 {
        font-size: 22px;
    }

}

/* ===== Promo Banner Section ===== */
.promo-banner {
  background: url("../images/banner-bg.jpg") center center/cover no-repeat;
  background-attachment: fixed;
  position: relative;
  min-height: 450px; 
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.banner-overlay {
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.banner-content {
  position: relative;
  z-index: 2;
  padding: 100px 20px; 
  text-align: center;
}

.banner-content .small-title {
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #E91E63;
  font-weight: 600;
  margin-bottom: 10px;
}

.banner-content h2 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}

.banner-content h3 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 25px;
  color: #fff9e1;
}

.banner-btn {
  display: inline-block;
  padding: 12px 35px;
  border: 2px solid #E91E63;
  border-radius: 30px;
  color: #E91E63;
  font-weight: 600;
  transition: all 0.4s ease;
  text-decoration: none;
}

.banner-btn:hover {
  background-color: #E91E63;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(255, 232, 110, 0.7);
}


.beauty-showcase {
    position: relative;

    padding: 100px 0 110px;

    background: #fffaf7;

    overflow: hidden;
}

/* =================================
   GALLERY SECTION HEADER
================================= */

.gallery-section-header {
    max-width: 850px;
    margin: 0 auto 55px;
    padding: 0 15px;
}


.gallery-subtitle {
    display: inline-block;

    color: #e91e63;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 4px;

    text-transform: uppercase;

    margin-bottom: 18px;
}
.gallery-section-header h2 {
    margin: 0 0 18px;

    color: #222;

    font-size: 52px;

    font-weight: 700;

    line-height: 1.15;

    letter-spacing: -1px;
}


.gallery-section-header h2 em {
    color: #e91e63;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 1.08em;

    font-weight: 400;

    font-style: italic;
}

.gallery-section-header p {
    max-width: 720px;

    margin: 0 auto;

    color: #777;

    font-size: 15px;

    line-height: 1.8;
}

.gallery-divider {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    margin-top: 30px;
}

.gallery-divider span {
    width: 55px;

    height: 2px;

    background: #e91e63;

    display: block;

    border-radius: 10px;
}

.gallery-divider i {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    color: #d6a526;

    font-size: 17px;

    background: #fffaf5;

    border-radius: 50%;
}

@media (max-width: 991px) {

    .gallery-section-header {
        margin-bottom: 45px;
    }

    .gallery-section-header h2 {
        font-size: 43px;
    }

    .gallery-section-header p {
        max-width: 650px;

        font-size: 13px;
    }

}

@media (max-width: 767px) {

    .gallery-section-header {
        padding: 0 20px;

        margin-bottom: 35px;
    }

    .gallery-subtitle {
        font-size: 9px;

        letter-spacing: 2.5px;

        margin-bottom: 12px;
    }

    .gallery-section-header h2 {
        font-size: 34px;

        line-height: 1.2;

        letter-spacing: -0.5px;

        margin-bottom: 14px;
    }

    .gallery-section-header p {
        font-size: 12px;

        line-height: 1.7;
    }

    .gallery-divider {
        gap: 10px;

        margin-top: 23px;
    }

    .gallery-divider span {
        width: 38px;

        height: 2px;
    }

    .gallery-divider i {
        width: 28px;
        height: 28px;

        font-size: 14px;
    }

}

@media (max-width: 400px) {

    .gallery-section-header h2 {
        font-size: 29px;
    }

    .gallery-section-header p {
        font-size: 12px;
    }

    .gallery-subtitle {
        font-size: 8px;

        letter-spacing: 2px;
    }

}
.beauty-showcase::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    border: 1px solid rgba(214, 166, 91, 0.15);

    left: -220px;
    top: 100px;
}

.beauty-showcase::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background: rgba(238, 181, 198, 0.08);

    right: -130px;
    bottom: 50px;
}

.showcase-heading {
    position: relative;

    z-index: 2;

    max-width: 750px;

    margin: 0 auto 60px;
}

.showcase-subtitle {
    display: inline-block;

    color: #E91E63;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 14px;
}

.showcase-heading h2 {
    color: #241c1e;

    font-size: 48px;

    font-weight: 700;

    line-height: 1.15;

    margin: 0 0 16px;
}

.showcase-heading h2 span {
    color: #E91E63;

    font-family: Georgia, serif;

    font-style: italic;

    font-weight: 400;
}

.showcase-heading p {
    color: #777;

    max-width: 600px;

    margin: auto;

    font-size: 14px;

    line-height: 1.8;
}

.showcase-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 1.15fr 0.85fr 1fr;

    grid-template-rows: 280px 280px;

    gap: 22px;
}

.showcase-card {

    position: relative;

    overflow: hidden;

    border-radius: 24px;

    background: #ddd;

    box-shadow:
        0 15px 40px rgba(45, 25, 30, 0.10);

    cursor: pointer;
}

.showcase-large {
    grid-row: span 2;
}

.showcase-small {
    grid-column: 2;
}

.showcase-medium {
    grid-column: 3;
}

.showcase-wide {
    grid-column: 2 / 4;
}

.showcase-card img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform 0.8s ease,
        filter 0.5s ease;
}

.showcase-card:hover img {

    transform: scale(1.08);

    filter: brightness(0.85);
}

.card-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(25, 16, 18, 0.02) 25%,
            rgba(25, 16, 18, 0.15) 45%,
            rgba(25, 16, 18, 0.88) 100%
        );

    transition: 0.5s ease;
}

.showcase-card:hover .card-overlay {

    background:
        linear-gradient(
            180deg,
            rgba(25, 16, 18, 0.05),
            rgba(25, 16, 18, 0.92)
        );
}

.beauty-tag {

    position: absolute;

    z-index: 3;

    top: 20px;
    left: 20px;

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 9px 14px;

    border-radius: 50px;

    color: #fff;

    background: rgba(255, 255, 255, 0.14);

    border: 1px solid rgba(255, 255, 255, 0.3);

    backdrop-filter: blur(10px);

    -webkit-backdrop-filter: blur(10px);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;
}

.beauty-tag i {

    color: #E91E63;

    font-size: 12px;
}

.showcase-content {

    position: absolute;

    z-index: 4;

    left: 25px;
    right: 25px;
    bottom: 24px;

    color: #fff;
}

.showcase-content > span {

    display: block;

    color: #E91E63;

    font-size: 10px;

    letter-spacing: 2px;

    font-weight: 700;

    margin-bottom: 7px;
}

.showcase-content h3 {

    color: #fff;

    font-size: 25px;

    font-weight: 600;

    margin: 0 0 6px;
}

.showcase-content p {

    max-width: 370px;

    color: rgba(255,255,255,0.76);

    font-size: 16px;

    line-height: 1.6;

    margin: 0 0 12px;
}

.showcase-content a {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #fff;

    font-size: 10px;

    font-weight: 700;

    text-decoration: none;

    opacity: 0;

    transform: translateY(10px);

    transition: 0.4s ease;
}

.showcase-card:hover .showcase-content a {

    opacity: 1;

    transform: translateY(0);
}

.showcase-content a i {

    color: #E91E63;

    transition: 0.3s ease;
}

.showcase-content a:hover i {

    transform: translateX(5px);
}



.showcase-button {

    position: relative;

    z-index: 2;

    margin-top: 50px;
}

.view-gallery-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    padding: 14px 27px;

    border: 1px solid #E91E63;

    border-radius: 50px;

    color: #5b4030;

    background: transparent;

    font-size: 12px;

    font-weight: 700;

    text-decoration: none;

    transition: 0.4s ease;
}

.view-gallery-btn i {

    color: #E91E63;

    transition: 0.3s ease;
}

.view-gallery-btn:hover {

    color: #fff;

    background: #E91E63;

    transform: translateY(-3px);

    box-shadow: 0 12px 25px rgba(217,154,55,0.20);
}

.view-gallery-btn:hover i {

    color: #fff;

    transform: translateX(5px);
}

@media (max-width: 991px) {

    .beauty-showcase {

        padding: 80px 0 90px;
    }

    .showcase-heading {

        margin-bottom: 45px;
    }

    .showcase-heading h2 {

        font-size: 40px;
    }

    .showcase-grid {

        grid-template-columns: 1fr 1fr;

        grid-template-rows:
            300px
            300px
            300px;

        gap: 18px;
    }

    .showcase-large {

        grid-row: span 2;

    }

    .showcase-small {

        grid-column: 2;
    }

    .showcase-medium {

        grid-column: 1;
        grid-row: 3;
    }

    .showcase-wide {

        grid-column: 2;
        grid-row: 3;
    }

}

@media (max-width: 767px) {

    .beauty-showcase {

        padding: 65px 0 75px;
    }

    .showcase-heading {

        padding: 0 15px;

        margin-bottom: 35px;
    }

    .showcase-subtitle {

        font-size: 9px;

        letter-spacing: 2px;

        margin-bottom: 10px;
    }

    .showcase-heading h2 {

        font-size: 32px;

        line-height: 1.2;

        margin-bottom: 12px;
    }

    .showcase-heading p {

        font-size: 12px;

        line-height: 1.7;
    }

    .showcase-grid {

        display: flex;

        flex-direction: column;

        gap: 17px;

        padding: 0 12px;
    }

    .showcase-card,
    .showcase-large,
    .showcase-small,
    .showcase-medium,
    .showcase-wide {

        width: 100%;

        height: 330px;

        min-height: 330px;
    }


    .showcase-large {

        height: 390px;

        min-height: 390px;
    }

    .showcase-content {

        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .showcase-content h3 {

        font-size: 21px;
    }

    .showcase-content p {

        font-size: 10px;

        max-width: 280px;
    }

    .showcase-content a {

        opacity: 1;

        transform: translateY(0);

        font-size: 9px;
    }

    .beauty-tag {

        top: 15px;
        left: 15px;

        padding: 8px 12px;

        font-size: 7px;
    }
    .showcase-button {

        margin-top: 35px;
    }

    .view-gallery-btn {

        padding: 13px 22px;

        font-size: 10px;
    }

}

@media (max-width: 400px) {

    .showcase-heading h2 {

        font-size: 28px;
    }

    .showcase-card,
    .showcase-small,
    .showcase-medium,
    .showcase-wide {

        height: 290px;

        min-height: 290px;
    }

    .showcase-large {

        height: 350px;

        min-height: 350px;
    }

    .showcase-content h3 {

        font-size: 19px;
    }

}
/* ==========================================
   PREMIUM APPOINTMENT SECTION
========================================== */

.appointment-section {
    position: relative;

    padding: 100px 0;

    background: #fff9f7;

    overflow: hidden;
}

.appointment-section::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background: rgba(235, 180, 197, 0.10);

    left: -280px;
    top: 80px;
}

.appointment-section::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    border: 1px solid rgba(205, 163, 67, 0.15);

    right: -170px;
    bottom: 30px;
}

.appointment-visual {
    position: relative;

    width: 100%;

    max-width: 540px;

    height: 570px;

    margin: auto;
}

.appointment-main-image {

    position: absolute;

    width: 76%;
    height: 480px;

    left: 0;
    top: 25px;

    overflow: hidden;

    border-radius: 180px 180px 25px 25px;

    border: 8px solid #fff;

    box-shadow:
        0 25px 60px rgba(55, 35, 40, 0.15);

    z-index: 2;
}

.appointment-main-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.7s ease;
}

.appointment-main-image:hover img {

    transform: scale(1.06);
}

.appointment-small-image {

    position: absolute;

    width: 235px;
    height: 235px;

    right: 0;
    bottom: 15px;

    overflow: hidden;

    border-radius: 50%;

    border: 8px solid #fff;

    box-shadow:
        0 20px 45px rgba(55, 35, 40, 0.18);

    z-index: 4;
}

.appointment-small-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.6s ease;
}

.appointment-small-image:hover img {

    transform: scale(1.08);
}


.appointment-circle {

    position: absolute;

    width: 350px;
    height: 350px;

    border: 1px solid #e91e63;

    border-radius: 50%;

    right: 25px;
    top: 5px;

    z-index: 1;
}


.experience-badge {

    position: absolute;

    z-index: 5;

    left: -15px;
    bottom: 70px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 13px 20px 13px 13px;

    background: #fff;

    border-radius: 60px;

    box-shadow:
        0 15px 35px rgba(50, 30, 35, 0.12);
}

.badge-icon {

    width: 43px;
    height: 43px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #fff;

    background: #e91e63;
}

.experience-badge strong {

    display: block;

    color: #e91e63;

    font-size: 18px;

    line-height: 1;
}

.experience-badge span {

    display: block;

    margin-top: 4px;

    color: #777;

    font-size: 9px;

    letter-spacing: .5px;
}

.service-badge {

    position: absolute;

    z-index: 5;

    right: 5px;
    top: 120px;

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 10px 15px;

    color: #5d4646;

    background: rgba(255,255,255,.92);

    border-radius: 30px;

    box-shadow:
        0 12px 30px rgba(50, 30, 35, .10);

    font-size: 9px;

    font-weight: 600;
}

.service-badge i {

    color: #d6a526;

    font-size: 14px; 
}

.appointment-content {

    position: relative;

    z-index: 3;

    padding-left: 20px;
}

.appointment-subtitle {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #e91e63;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 15px;
}

.appointment-content h2 {

    color: #252123;

    font-size: 48px;

    line-height: 1.15;

    font-weight: 700;

    margin: 0 0 18px;
}

.appointment-content h2 span {

    display: inline-block;

    color: #e91e63;

    font-family: Georgia, "Times New Roman", serif;

    font-weight: 400;

    font-style: italic;
}
.appointment-intro {

    max-width: 600px;

    color: #777;

    font-size: 14px;

    line-height: 1.9;

    margin-bottom: 28px;
}

.appointment-features {

    display: flex;

    gap: 30px;

    margin-bottom: 28px;
}

.appointment-feature {

    display: flex;

    align-items: flex-start;

    gap: 10px;

    max-width: 220px;
}

.feature-icon {

    flex-shrink: 0;

    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #e91e63;

    background: #fff;

    box-shadow:
        0 7px 20px rgba(50,30,35,.08);
}

.appointment-feature h5 {

    color: #292426;

    font-size: 15px;

    font-weight: 700;

    margin: 0 0 4px;
}

.appointment-feature p {

    color: #888;

    font-size: 12px;

    line-height: 1.5;

    margin: 0;
}
.booking-card {

    padding: 24px;

    background: #fff;

    border: 1px solid rgba(220, 180, 190, .25);

    border-radius: 20px;

    box-shadow:
        0 18px 45px rgba(50, 30, 35, .08);
}

.booking-card-heading {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 18px;
}

.booking-card-heading small {

    display: block;

    color: #e91e63;

    font-size: 12px;

    letter-spacing: 2px;

    font-weight: 700;

    margin-bottom: 5px;
}

.booking-card-heading h4 {

    color: #292426;

    font-size: 17px;

    font-weight: 700;

    margin: 0;
}

.booking-icon {

    width: 43px;
    height: 43px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #e91e63;

    background: #fff2f6;

    font-size: 16px;
}

.booking-input {

    display: flex;

    align-items: center;

    gap: 8px;

    height: 43px;

    padding: 0 12px;

    background: #fffaf9;

    border: 1px solid #eee1e2;

    border-radius: 9px;

    transition: .3s ease;
}

.booking-input:focus-within {

    border-color: #e91e63;

    box-shadow:
        0 0 0 3px rgba(233,30,99,.06);
}

.booking-input i {

    color: #e91e63;

    font-size: 12px;
}

.booking-input input,
.booking-input select {

    width: 100%;

    border: none;

    outline: none;

    background: transparent;

    color: #555;

    font-size: 10px;
}

.booking-input select {

    cursor: pointer;
}

.appointment-btn {

    width: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    border: none;

    margin-top: 14px;

    padding: 13px 20px;

    color: #fff;

    background: linear-gradient(
        135deg,
        #e91e63,
        #d88b45
    );

    border-radius: 9px;

    font-size: 12px;

    font-weight: 700;

    cursor: pointer;

    transition: .4s ease;
}

.appointment-btn i {

    transition: .3s ease;
}

.appointment-btn:hover {

    transform: translateY(-2px);

    box-shadow:
        0 12px 25px rgba(233,30,99,.20);
}

.appointment-btn:hover i {

    transform: translateX(5px);
}

@media (max-width: 991px) {

    .appointment-section {

        padding: 80px 0;
    }

    .appointment-visual {

        max-width: 500px;

        height: 510px;

        margin-bottom: 20px;
    }

    .appointment-main-image {

        height: 430px;
    }

    .appointment-small-image {

        width: 190px;
        height: 190px;
    }

    .appointment-circle {

        width: 300px;
        height: 300px;
    }

    .appointment-content {

        padding-left: 0;
    }

    .appointment-content h2 {

        font-size: 40px;
    }

}

@media (max-width: 767px) {

    .appointment-section {

        padding: 65px 0 70px;
    }

    .appointment-visual {

        height: 430px;

        max-width: 390px;

        margin-bottom: 15px;
    }

    .appointment-main-image {

        width: 78%;

        height: 370px;

        top: 10px;

        border-width: 6px;

        border-radius: 140px 140px 20px 20px;
    }

    .appointment-small-image {

        width: 155px;
        height: 155px;

        right: 0;
        bottom: 5px;

        border-width: 6px;
    }

    .appointment-circle {

        width: 250px;
        height: 250px;

        right: 10px;
        top: 5px;
    }

    .experience-badge {

        left: 0;

        bottom: 40px;

        padding: 9px 14px 9px 9px;
    }

    .badge-icon {

        width: 36px;
        height: 36px;

        font-size: 12px;
    }

    .experience-badge strong {

        font-size: 15px;
    }

    .experience-badge span {

        font-size: 8px;
    }

    .service-badge {

        top: 80px;

        right: 0;

        font-size: 8px;

        padding: 8px 11px;
    }

    .appointment-content {

        padding: 0 5px;
    }

    .appointment-subtitle {

        font-size: 8px;

        letter-spacing: 2px;
    }

    .appointment-content h2 {

        font-size: 33px;

        line-height: 1.2;
    }

    .appointment-intro {

        font-size: 12px;

        line-height: 1.8;
    }

    .appointment-features {

        flex-direction: column;

        gap: 13px;

        margin-bottom: 22px;
    }

    .appointment-feature {

        max-width: 100%;
    }

    .booking-card {

        padding: 18px;

        border-radius: 16px;
    }

    .booking-card-heading h4 {

        font-size: 15px;
    }

}

@media (max-width: 400px) {

    .appointment-visual {

        height: 390px;
    }

    .appointment-main-image {

        height: 335px;
    }

    .appointment-small-image {

        width: 135px;
        height: 135px;
    }

    .appointment-circle {

        width: 220px;
        height: 220px;
    }

    .appointment-content h2 {

        font-size: 29px;
    }

    .booking-card {

        padding: 15px;
    }

}

/* =========================================
   APPOINTMENT SECTION
========================================= */

.appointment-section {

    position: relative;

    padding: 100px 0;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(233, 30, 99, .06),
            transparent 28%
        ),
        #fffaf8;

    overflow: hidden;
}

.appointment-section::before {

    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    border-radius: 50%;

    border: 1px solid rgba(212, 157, 59, .18);

    left: -170px;
    bottom: -100px;
}


.appointment-section::after {

    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    border-radius: 50%;

    background: rgba(233, 30, 99, .035);

    right: -100px;
    top: 60px;
}

.appointment-content {

    position: relative;

    z-index: 2;
}

.appointment-tag {

    display: inline-block;

    margin-bottom: 12px;

    color: #e91e63;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;
}

.appointment-content h2 {

    margin: 0;

    color: #292527;

    font-size: 45px;

    font-weight: 700;

    line-height: 1.2;
}

.appointment-content h2 span {

    display: block;

    color: #e91e63;

    font-family: Georgia, "Times New Roman", serif;

    font-style: italic;

    font-weight: 400;
}

.appointment-intro {

    max-width: 620px;

    margin: 17px 0 32px;

    color: #777;

    font-size: 13px;

    line-height: 1.8;
}

.appointment-form {

    max-width: 700px;
}


.input-box {

    position: relative;

    display: flex;

    align-items: center;

    min-height: 54px;

    padding: 0 17px;

    border: 1px solid #eee1e3;

    border-radius: 12px;

    background: #fff;

    transition: .3s ease;
}


.input-box:hover {

    border-color: #e9a5ba;
}


.input-box:focus-within {

    border-color: #e91e63;

    box-shadow:
        0 0 0 4px rgba(233, 30, 99, .07);
}


.input-box i {

    flex-shrink: 0;

    margin-right: 12px;

    color: #e91e63;

    font-size: 13px;
}


.input-box input,
.input-box select,
.input-box textarea {

    width: 100%;

    border: 0;

    outline: 0;

    color: #444;

    background: transparent;

    font-family: inherit;

    font-size: 14px;
}


.input-box input::placeholder,
.input-box textarea::placeholder {

    color: #999;
}


.input-box select {

    cursor: pointer;
}


.textarea-box {

    align-items: flex-start;

    padding-top: 16px;
}


.textarea-box textarea {

    resize: none;

    line-height: 1.6;
}

.appointment-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    margin-top: 5px;

    padding: 14px 28px;

    border: 0;

    border-radius: 30px;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #e91e63,
            #d19a3a
        );

    font-size: 10px;

    font-weight: 700;

    cursor: pointer;

    transition: .4s ease;
}


.appointment-btn i {

    transition: .3s ease;
}


.appointment-btn:hover {

    transform: translateY(-3px);

    box-shadow:
        0 12px 25px rgba(233, 30, 99, .2);
}


.appointment-btn:hover i {

    transform: translateX(5px);
}

.hours-card {

    position: relative;

    z-index: 2;

    padding: 40px 38px;

    overflow: hidden;

    border: 1px solid rgba(212, 157, 59, .2);

    border-radius: 25px;

    background: #fff;

    box-shadow:
        0 20px 50px rgba(66, 42, 45, .08);
}
.hours-card::before {

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    background: #fff6ee;

    right: -75px;
    top: -75px;

    z-index: -1;
}


.hours-card::after {

    content: "";

    position: absolute;

    width: 100px;
    height: 100px;

    border-radius: 50%;

    border: 1px solid rgba(233, 30, 99, .12);

    left: -50px;
    bottom: -40px;

    z-index: -1;
}

.hours-decoration {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 48px;
    height: 48px;

    margin-bottom: 20px;

    border-radius: 50%;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #d6a526,
            #d6a526
        );

    box-shadow:
        0 8px 20px rgba(233,30,99,.15);
}


.hours-decoration i {

    font-size: 17px;
}


.hours-tag {

    color: #e91e63;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2.5px;
}


.hours-card h3 {

    margin: 10px 0 12px;

    color: #292527;

    font-size: 29px;

    font-weight: 700;
}


.hours-card h3 span {

    color: #e91e63;

    font-family: Georgia, "Times New Roman", serif;

    font-style: italic;

    font-weight: 400;
}


.hours-description {

    margin-bottom: 28px;

    color: #777;

    font-size: 12px;

    line-height: 1.8;
}

.opening-hours {

    padding-top: 20px;

    border-top: 1px dashed #eadfe0;
}


.hours-title {

    display: flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 15px;

    color: #292527;

    font-size: 14px;

    font-weight: 700;
}


.hours-title i {

    color: #e91e63;
}


.hour-row {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    padding: 11px 0;

    border-bottom: 1px solid #f4eded;

    font-size: 12px;
}


.hour-row:last-child {

    border-bottom: 0;
}


.hour-row span {

    color: #777;
}


.hour-row strong {

    color: #333;

    font-weight: 600;

    white-space: nowrap;
}


.hours-contact {

    display: flex;

    align-items: center;

    gap: 13px;

    margin-top: 22px;

    padding: 13px;

    border-radius: 13px;

    background: #fff7f4;
}


.contact-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    width: 37px;
    height: 37px;

    border-radius: 50%;

    color: #fff;

    background: #e91e63;

    font-size: 11px;
}


.hours-contact small {

    display: block;

    margin-bottom: 3px;

    color: #999;

    font-size: 11px;
}


.hours-contact a {

    color: #292527;

    font-size: 11px;

    font-weight: 700;

    text-decoration: none;
}


.hours-contact a:hover {

    color: #e91e63;
}


@media (max-width: 991px) {

    .appointment-section {

        padding: 80px 0;
    }


    .appointment-content h2 {

        font-size: 40px;
    }


    .hours-card {

        padding: 32px;
    }

}


@media (max-width: 767px) {

    .appointment-section {

        padding: 65px 0;
    }


    .appointment-content {

        text-align: center;
    }


    .appointment-tag {

        font-size: 8px;

        letter-spacing: 2px;
    }


    .appointment-content h2 {

        font-size: 31px;
    }


    .appointment-intro {

        margin: 14px auto 25px;

        font-size: 10px;

        line-height: 1.7;
    }


    .appointment-form {

        max-width: 100%;
    }


    .input-box {

        min-height: 50px;

        padding: 0 14px;

        border-radius: 10px;
    }


    .input-box i {

        font-size: 11px;

        margin-right: 9px;
    }


    .input-box input,
    .input-box select,
    .input-box textarea {

        font-size: 10px;
    }


    .appointment-btn {

        width: 100%;

        padding: 13px 20px;

        font-size: 9px;
    }

    .hours-card {

        padding: 30px 22px;

        border-radius: 20px;
    }

    .hours-decoration {

        margin: 0 auto 18px;
    }

    .hours-card {

        text-align: center;
    }

    .hours-tag {
        font-size: 7px;
        letter-spacing: 2px;
    }

    .hours-card h3 {

        font-size: 27px;
    }


    .hours-description {

        font-size: 9px;

        line-height: 1.7;
    }


    .opening-hours {

        text-align: left;
    }

    .hours-title {

        justify-content: center;

        font-size: 11px;
    }

    .hour-row {

        font-size: 8px;

        padding: 10px 0;
    }


    .hours-contact {

        text-align: left;
    }

}

@media (max-width: 400px) {

    .appointment-section {

        padding: 55px 0;
    }


    .appointment-content h2 {

        font-size: 27px;
    }


    .appointment-intro {

        font-size: 9px;
    }


    .hours-card {

        padding: 25px 17px;
    }


    .hours-card h3 {

        font-size: 24px;
    }


    .hour-row {

        flex-direction: column;

        align-items: flex-start;

        gap: 4px;
    }


    .hour-row strong {

        font-size: 8px;
    }

}
/* client section  */
.happy-clients {
  background: #fffaf5;
}

.happy-client-header {
    background: #fffaf7;
    padding: 65px 20px 55px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.happy-client-header::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(242, 25, 99, 0.04);
    top: -80px;
    left: -70px;
}

.happy-client-header::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(210, 164, 52, 0.05);
    bottom: -130px;
    right: -80px;
}

.happy-header-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: auto;
}
.happy-subtitle {
    display: inline-block;
    color: #ed1761;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 6px;
    margin-bottom: 14px;
}

.happy-header-content h2 {
    margin: 0;
    color: #222;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
}

.happy-header-content h2 span {
    color: #ed1761;
    font-family: Georgia, serif;
    font-style: italic;
    font-weight: 500;
}

.happy-header-content p {
    max-width: 750px;
    margin: 22px auto 0;
    color: #777;
    font-size: 16px;
    line-height: 1.8;
}

.header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 28px;
}

.header-decoration span {
    width: 68px;
    height: 2px;
    background: #ed1761;
}

.flower-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d6a526;
    font-size: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

@media (max-width: 767px) {

    .happy-client-header {
        padding: 50px 18px 45px;
    }

    .happy-subtitle {
        font-size: 12px;
        letter-spacing: 4px;
        margin-bottom: 12px;
    }

    .happy-header-content h2 {
        font-size: 34px;
    }

    .happy-header-content p {
        font-size: 14px;
        line-height: 1.7;
        margin-top: 16px;
    }

    .header-decoration {
        margin-top: 22px;
        gap: 10px;
    }

    .header-decoration span {
        width: 45px;
    }

    .flower-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {

    .happy-client-header {
        padding: 42px 15px 38px;
    }

    .happy-subtitle {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .happy-header-content h2 {
        font-size: 29px;
    }

    .happy-header-content p {
        font-size: 13px;
    }

    .header-decoration span {
        width: 38px;
    }
}
.client-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: left;
  height: 160px;
  transition: all 0.3s ease;
}

.client-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 232, 110, 0.3);
}

.client-msg {
  font-style: italic;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-info img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #E91E63;
}

.client-info h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #222;
}

.client-info span {
  color: #999;
  font-size: 14px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  top: 45%;
  transform: translateY(-50%);
  background: rgba(255, 232, 110, 0.9);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: #E91E63;
  transform: scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
  background-size: 20px;
}

/* =====================================
   BEAUTY BLOG SECTION
===================================== */

.beauty-blog-section {
    background: #fffaf8;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}
.beauty-blog-section::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(239, 24, 96, 0.035);
    border-radius: 50%;
    top: -150px;
    left: -120px;
}

.beauty-blog-section::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: rgba(205, 163, 58, 0.05);
    border-radius: 50%;
    bottom: -150px;
    right: -100px;
}

.blog-heading {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: auto;
}

.blog-subtitle {
    display: inline-block;
    color: #ed1761;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 5px;
    margin-bottom: 13px;
}

.blog-heading h2 {
    color: #222;
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.blog-heading h2 span {
    color: #ed1761;
    font-family: Georgia, serif;
    font-style: italic;
    font-weight: 500;
}

.blog-heading p {
    color: #777;
    font-size: 16px;
    line-height: 1.8;
    max-width: 700px;
    margin: 18px auto 0;
}

.blog-heading-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 25px;
}

.blog-heading-line span {
    width: 65px;
    height: 2px;
    background: #ed1761;
}

.blog-heading-line i {
    width: 42px;
    height: 42px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d6a526;
    font-size: 17px;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.beauty-blog-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 12px 35px rgba(44, 35, 35, 0.07);
    transition: all .4s ease;
    position: relative;
    z-index: 2;
}

.beauty-blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(44, 35, 35, 0.13);
}

.blog-image {
    height: 265px;
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.beauty-blog-card:hover .blog-image img {
    transform: scale(1.08);
}

.blog-image::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 45%;
    background: linear-gradient(
        transparent,
        rgba(0,0,0,.45)
    );
    pointer-events: none;
}

.blog-category {
    position: absolute;
    left: 18px;
    top: 18px;
    z-index: 3;
    background: #fff;
    color: #ed1761;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 5px 18px rgba(0,0,0,.12);
}

.blog-category i {
    margin-right: 5px;
}

.blog-date {
    position: absolute;
    right: 18px;
    bottom: 17px;
    z-index: 3;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.blog-content {
    padding: 25px 25px 28px;
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #999;
    font-size: 12px;
    margin-bottom: 13px;
}

.blog-meta i {
    color: #ed1761;
    margin-right: 4px;
}

.blog-content h3 {
    font-size: 22px;
    line-height: 1.4;
    color: #252525;
    font-weight: 700;
    margin-bottom: 12px;
    transition: color .3s ease;
}

.beauty-blog-card:hover .blog-content h3 {
    color: #ed1761;
}

.blog-content p {
    color: #777;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-link {
    color: #ed1761;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .3s ease;
}

.blog-link i {
    transition: transform .3s ease;
}

.blog-link:hover {
    color: #c90e50;
}

.blog-link:hover i {
    transform: translateX(5px);
}

.blog-bottom-btn {
    position: relative;
    z-index: 2;
    margin-top: 45px;
}

.view-all-blog {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    border: 1.5px solid #ed1761;
    border-radius: 40px;
    color: #ed1761;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all .3s ease;
}

.view-all-blog:hover {
    background: linear-gradient(
            135deg,
            #e91e63,
            #d19a3a
        );
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 991px) {

    .beauty-blog-section {
        padding: 70px 0;
    }

    .blog-heading h2 {
        font-size: 40px;
    }

    .blog-image {
        height: 240px;
    }

    .blog-content {
        padding: 22px;
    }

    .blog-content h3 {
        font-size: 20px;
    }
}

@media (max-width: 767px) {

    .beauty-blog-section {
        padding: 60px 15px;
    }

    .blog-subtitle {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .blog-heading h2 {
        font-size: 32px;
    }

    .blog-heading p {
        font-size: 14px;
        line-height: 1.7;
    }

    .blog-heading-line {
        margin-top: 20px;
    }

    .blog-heading-line span {
        width: 45px;
    }

    .blog-heading-line i {
        width: 38px;
        height: 38px;
    }

    .beauty-blog-card {
        max-width: 500px;
        margin: auto;
    }

    .blog-image {
        height: 250px;
    }

    .blog-content h3 {
        font-size: 20px;
    }

    .blog-meta {
        flex-wrap: wrap;
    }

    .blog-bottom-btn {
        margin-top: 35px;
    }
}

@media (max-width: 480px) {

    .beauty-blog-section {
        padding: 50px 12px;
    }

    .blog-heading h2 {
        font-size: 28px;
    }

    .blog-heading p {
        font-size: 13px;
    }

    .blog-image {
        height: 220px;
    }

    .blog-category {
        left: 12px;
        top: 12px;
        padding: 7px 12px;
        font-size: 11px;
    }

    .blog-date {
        right: 12px;
        bottom: 13px;
        font-size: 10px;
    }

    .blog-content {
        padding: 20px;
    }

    .blog-content h3 {
        font-size: 19px;
    }

    .blog-content p {
        font-size: 13px;
    }
}

/* ================= NEWSLETTER SECTION ================= */

.newsletter-section {
    /* padding: 90px 0; */
    background: #fffaf8;
    overflow: hidden;
}

.newsletter-box {
    position: relative;
    overflow: hidden;
    border-radius: 35px;
    padding: 65px 70px;
    background: linear-gradient(
        135deg,
        #fff1f4 0%,
        #fffaf6 50%,
        #fdf2ed 100%
    );
    box-shadow: 0 20px 60px rgba(50, 30, 30, 0.08);
}
.newsletter-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.shape-one {
    width: 280px;
    height: 280px;
    right: -100px;
    top: -120px;
    background: rgba(236, 24, 96, 0.07);
}

.shape-two {
    width: 180px;
    height: 180px;
    left: -90px;
    bottom: -80px;
    background: rgba(211, 164, 64, 0.10);
}

.shape-three {
    width: 90px;
    height: 90px;
    right: 38%;
    bottom: -40px;
    background: rgba(236, 24, 96, 0.06);
}

.newsletter-content {
    position: relative;
    z-index: 2;
}

.newsletter-subtitle {
    display: inline-block;
    margin-bottom: 14px;
    color: #ed1b63;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 4px;
}

.newsletter-content h2 {
    margin: 0 0 20px;
    color: #242124;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 700;
}

.newsletter-content h2 span {
    color: #ed1b63;
    font-family: Georgia, serif;
    font-style: italic;
}

.newsletter-content p {
    max-width: 620px;
    margin-bottom: 25px;
    color: #6d6668;
    font-size: 16px;
    line-height: 1.8;
}

.newsletter-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 25px;
    margin-bottom: 28px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #494346;
    font-size: 14px;
}

.benefit-item i {
    color: #ed1b63;
    font-size: 13px;
}

.newsletter-form {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 620px;
}

.input-wrapper {
    flex: 1;
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: -4px;
    top: 50%;
    transform: translateY(-50%);
    color: #ed1b63;
}

.input-wrapper input {
    width: 100%;
    height: 58px;
    border: 1px solid #eadfe0;
    border-radius: 50px;
    outline: none;
    padding: 0 20px 0 50px;
    background: #ffffff;
    color: #333;
    font-size: 15px;
    transition: 0.3s ease;
}

.input-wrapper input:focus {
    border-color: #ed1b63;
    box-shadow: 0 0 0 4px rgba(237, 27, 99, 0.08);
}

.newsletter-form button {
    height: 58px;
    padding: 0 27px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(
            135deg,
            #e91e63,
            #d19a3a
        );
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button i {
    margin-left: 8px;
}

.newsletter-form button:hover {
    background: #c91451;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(237, 27, 99, 0.25);
}

.newsletter-note {
    display: block;
    margin-top: 13px;
    color: #8a8184;
    font-size: 12px;
}

.newsletter-note i {
    margin-right: 5px;
    color: #ed1b63;
}

.newsletter-visual {
    position: relative;
    height: 390px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-circle {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border: 10px solid rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    box-shadow: 0 20px 40px rgba(60, 30, 30, 0.15);
}

.circle-main {
    width: 310px;
    height: 310px;
}

.circle-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.floating-card {
    position: absolute;
    z-index: 4;
    right: 0;
    bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(40, 20, 20, 0.12);
}

.floating-card > i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff0f5;
    color: #ed1b63;
}

.floating-card strong {
    display: block;
    color: #292426;
    font-size: 14px;
}

.floating-card small {
    display: block;
    margin-top: 2px;
    color: #8b8184;
}



.mini-circle {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: #ed1b63;
    box-shadow: 0 10px 25px rgba(50, 30, 30, 0.12);
}

.mini-one {
    width: 70px;
    height: 70px;
    top: 20px;
    left: 30px;
}

.mini-two {
    width: 55px;
    height: 55px;
    right: 35px;
    top: 40px;
    color: #d2a33e;
}


@media (max-width: 991px) {

    .newsletter-box {
        padding: 50px 40px;
    }

    .newsletter-content h2 {
        font-size: 40px;
    }

    .newsletter-visual {
        height: 350px;
        margin-top: 15px;
    }

    .circle-main {
        width: 280px;
        height: 280px;
    }

    .floating-card {
        right: 5%;
    }
}


@media (max-width: 767px) {

    .newsletter-section {
        padding: 60px 15px;
    }

    .newsletter-box {
        padding: 40px 22px;
        border-radius: 25px;
    }

    .newsletter-subtitle {
        font-size: 12px;
        letter-spacing: 3px;
    }

    .newsletter-content h2 {
        font-size: 34px;
    }

    .newsletter-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .newsletter-benefits {
        display: block;
    }

    .benefit-item {
        margin-bottom: 10px;
    }

    .newsletter-form {
        display: block;
    }

    .input-wrapper {
        width: 100%;
        margin-bottom: 12px;
    }

    .newsletter-form button {
        width: 100%;
    }

    .newsletter-visual {
        height: 320px;
        margin-top: 20px;
    }

    .circle-main {
        width: 250px;
        height: 250px;
    }

    .mini-one {
        width: 55px;
        height: 55px;
        left: 5%;
    }

    .mini-two {
        width: 45px;
        height: 45px;
        right: 5%;
    }

    .floating-card {
        right: 0;
        bottom: 5px;
        padding: 10px 14px;
    }
}


@media (max-width: 480px) {

    .newsletter-content h2 {
        font-size: 29px;
    }

    .newsletter-visual {
        height: 285px;
    }

    .circle-main {
        width: 215px;
        height: 215px;
        border-width: 7px;
    }

    .floating-card {
        right: -5px;
        bottom: 0;
    }

    .floating-card > i {
        width: 34px;
        height: 34px;
    }

    .floating-card strong {
        font-size: 12px;
    }

    .floating-card small {
        font-size: 10px;
    }
}

/* ================= FOOTER ================= */

.beauty-footer {
    position: relative;
    background: #171316;
    color: #ddd;
    overflow: hidden;
    font-family: "Poppins", sans-serif;
}

.beauty-footer::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(236, 29, 100, 0.08);
    border-radius: 50%;
    top: -200px;
    left: -180px;
    filter: blur(10px);
}

.beauty-footer::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(210, 166, 73, 0.07);
    border-radius: 50%;
    right: -180px;
    bottom: -200px;
    filter: blur(10px);
}


/* ================= Footer Banner ================= */

.footer-banner {
    padding: 70px 0 45px;
    position: relative;
    z-index: 2;
}

.footer-banner {
    background: linear-gradient(
        135deg,
        #251c21,
        #21171c
    );

    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 25px;
    padding: 35px 40px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;

    box-shadow: 0 15px 45px rgba(0,0,0,0.25);
}

.newsletter-tag {
    color: #ed1765;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
}

.footer-content h2 {
    color: #fff;
    font-size: 28px;
    margin: 8px 0;
    font-weight: 600;
}

.footer-content p {
    margin: 0;
    color: #aaa;
    font-size: 14px;
}

.newsletter-form {
    display: flex;
    min-width: 420px;
    background: #fff;
    border-radius: 50px;
    padding: 5px;
}

.newsletter-form input {
    width: 100%;
    border: 0;
    outline: none;
    padding: 13px 20px;
    border-radius: 50px;
    font-size: 14px;
}

.newsletter-form button {
    border: none;
    background: linear-gradient(
            135deg,
            #e91e63,
            #d19a3a
        );;
    color: #fff;
    padding: 13px 22px;
    border-radius: 50px;
    font-weight: 600;
    white-space: nowrap;
    transition: 0.3s;
}

.newsletter-form button:hover {
    background: #d20d54;
    transform: translateX(2px);
}


/* ================= MAIN FOOTER ================= */

.beauty-footer > .container {
    position: relative;
    z-index: 2;
    padding-top: 35px;
    padding-bottom: 65px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    text-decoration: none;
    color: #fff;

    font-size: 25px;
    font-weight: 700;

    margin-bottom: 20px;
}
.footer-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.footer-logo img {
    width: 180px;
    height: auto;
    display: block;
    object-fit: contain;
}

@media (max-width: 576px) {
    .footer-logo img {
        width: 150px;
    }
}

.footer-logo > span:last-child > span {
    color: #ed1765;
    font-family: Georgia, serif;
    font-style: italic;
}

.logo-icon {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #fff;
    background: linear-gradient(
        135deg,
        #ed1765,
        #c99735
    );

    font-size: 18px;
}

.footer-brand p {
    max-width: 360px;
    line-height: 1.9;
    color: #aaa;
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.footer-social a {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    border: 1px solid #4b4145;

    color: #ddd;
    text-decoration: none;

    transition: 0.3s;
}

.footer-social a:hover {
    color: #fff;
    background: #ed1765;
    border-color: #ed1765;
    transform: translateY(-5px);
}

.footer-widget h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-widget h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 40px;
    height: 2px;

    background: linear-gradient(
        90deg,
        #ed1765,
        #c99735
    );
}

.footer-widget ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-widget ul li {
    margin-bottom: 14px;
}

.footer-widget ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;

    transition: 0.3s;
}

.footer-widget ul li a i {
    color: #ed1765;
    font-size: 10px;
    margin-right: 8px;
}

.footer-widget ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.contact-item span {
    min-width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(237,23,101,0.12);
    color: #ed1765;
}

.contact-item p {
    margin: 0;
    color: #aaa;
    font-size: 14px;
    line-height: 1.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 22px 0;
    position: relative;
    z-index: 2;
}

.copyright {
    margin: 0;
    color: #888;
    font-size: 13px;
}

.copyright strong {
    color: #ed1765;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 25px;
}

.footer-bottom-links a {
    color: #888;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}

.footer-bottom-links a:hover {
    color: #ed1765;
}


/* ================= FLOATING BUTTONS ================= */

.floating-buttons {
    position: fixed;
    right: 25px;
    bottom: 25px;

    display: flex;
    flex-direction: column;
    gap: 12px;

    z-index: 999;
}

.floating-buttons a {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #fff;
    text-decoration: none;

    font-size: 20px;

    box-shadow: 0 8px 20px rgba(0,0,0,0.2);

    transition: 0.3s;
}

.floating-buttons a:hover {
    transform: translateY(-5px);
}

.call-btn {
    background: #1677ff;
}

.whatsapp-btn {
    background: #25d366;
}

.top-btn {
    background: #ed1765;
}

@media (max-width: 991px) {

    .footer-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .newsletter-form {
        width: 100%;
        min-width: auto;
    }

    .footer-bottom-links {
        justify-content: flex-start;
    }
}


@media (max-width: 576px) {

    .footer-newsletter {
        padding: 45px 15px 30px;
    }

    .footer-banner {
        padding: 28px 20px;
        border-radius: 20px;
    }

    .newsletter-content h2 {
        font-size: 22px;
    }

    .newsletter-content p {
        font-size: 13px;
    }

    .newsletter-form {
        display: flex;
        flex-direction: column;
        background: transparent;
        gap: 10px;
    }

    .newsletter-form input {
        background: #fff;
        padding: 14px 18px;
    }

    .newsletter-form button {
        width: 100%;
    }

    .beauty-footer > .container {
        padding-top: 25px;
        padding-bottom: 35px;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-widget {
        margin-top: 5px;
    }

    .footer-widget h4 {
        margin-bottom: 18px;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px 20px;
    }

    .floating-buttons {
        right: 15px;
        bottom: 15px;
    }

    .floating-buttons a {
        width: 46px;
        height: 46px;
        font-size: 17px;
    }
}

/* ===== Breadcrumb Section ===== */
.breadcrumb-section {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
              url('../images/banner2.jpg') center/cover no-repeat;

  padding: 100px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.breadcrumb-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(255, 180, 0, 0.2);
  animation: shine 4s infinite alternate;
}

@keyframes shine {
  from { opacity: 0.1; }
  to { opacity: 0.5; }
}

.breadcrumb-title {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: #E91E63;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
}

.breadcrumb li {
  color: #fff;
  margin: 0 8px;
  text-transform: capitalize;
}

.breadcrumb li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb li a:hover {
  color: #E91E63;
}

.breadcrumb i {
  font-size: 13px;
  color: #E91E63;
}

/* ===== Contact Area Elegant ===== */
.contact-area {
  background: linear-gradient(135deg, #fffdf6 0%, #fff7e5 100%);
  padding: 90px 0;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #111;
}

.contact-header h2 span {
  color: #E91E63;
}

.contact-header p {
  color: #555;
  max-width: 600px;
  margin: 10px auto 0;
  font-size: 16px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-details .detail-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  margin-bottom: 20px;
  transition: 0.3s ease;
}

.contact-details .detail-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(255, 180, 0, 0.25);
}

.detail-box i {
  font-size: 25px;
  color: #E91E63;
  min-width: 35px;
}

.detail-box h4 {
  margin: 0 0 5px;
  font-size: 17px;
  color: #111;
  font-weight: 600;
}

.detail-box p {
  color: #666;
  font-size: 15px;
  margin: 0;
}

/* Opening Hours */
.opening-hours {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  padding: 25px;
}

.opening-hours h4 {
  color: #111;
  font-weight: 600;
  margin-bottom: 15px;
}

.opening-hours ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.opening-hours li {
  color: #555;
  font-size: 15px;
  margin-bottom: 8px;
}

.opening-hours li span {
  font-weight: 600;
  color: #000;
  width: 110px;
  display: inline-block;
}

/* Form Style */
.contact-form form {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  color: #333;
  transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #E91E63;
}

.btn-submit {
  background-color: #E91E63;
  border: none;
  color: #000;
  font-weight: 600;
  padding: 12px 25px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-submit:hover {
  background-color: #E91E63;
  box-shadow: 0 0 10px rgba(255, 232, 110, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form form {
    padding: 25px;
  }
}

/* ===== Booking Area ===== */
.booking-area {
  background: linear-gradient(135deg, #fffdf6 0%, #fff7e5 100%);
  padding: 100px 0;
}

.booking-header {
  text-align: center;
  margin-bottom: 60px;
}

.booking-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #111;
}

.booking-header h2 span {
  color: #E91E63;
}

.booking-header p {
  color: #555;
  font-size: 16px;
  margin-top: 10px;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.booking-info img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}


.info-text {
  margin-top: 25px;
}

.info-text h3 {
  color: #111;
  font-weight: 700;
  margin-bottom: 10px;
}

.info-text p {
  color: #666;
  font-size: 15px;
  margin-bottom: 15px;
}

.booking-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.booking-contact li {
  margin-bottom: 10px;
  color: #333;
  font-size: 15px;
}

.booking-contact i {
  color: #E91E63;
  margin-right: 10px;
}

/* Booking Form */
.booking-form form {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 25px rgba(0,0,0,0.05);
}

.booking-form .form-control {
  width: 100%;
  border: 1px solid #ddd;
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 15px;
  color: #333;
  transition: 0.3s ease;
}

.booking-form .form-control:focus {
  border-color: #E91E63;
  box-shadow: 0 0 6px rgba(255, 180, 0, 0.4);
}

.btn-book {
  background-color: #E91E63;
  color: #000;
  font-weight: 600;
  padding: 12px 35px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-book:hover {
  background-color: #E91E63;
  box-shadow: 0 0 15px rgba(255, 232, 110, 0.5);
}

/* Responsive */
@media (max-width: 992px) {
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .booking-form form {
    padding: 30px;
  }

  .booking-header h2 {
    font-size: 30px;
  }
}
@media (max-width: 992px) {
  .booking-info img {
    height: auto;
  }
}

/* ===== Hair Care Services Section ===== */
.hair-services-section {
  background-color: #fff9f5;
  padding: 60px 0;
}

.section-header h2 {
  font-size: 34px;
  font-weight: 700;
  color: #111;
}
.section-header h2 span {
  color: #E91E63;
}
.section-header p {
  color: #666;
  font-size: 16px;
  margin-top: 8px;
}

/* ===== Service Card ===== */
.service-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 35px rgba(0,0,0,0.12);
}

/* ===== Image Section ===== */
.service-img {
  position: relative;
  overflow: hidden;
}
.service-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .service-img img {
  transform: scale(1.08);
}

/* ===== Price Tag Overlay ===== */
.price-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #E91E63;
  color: #111;
  padding: 6px 14px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* ===== Content Section ===== */
.service-content {
  padding: 20px 22px 28px;
  text-align: left;
}
.service-content h4 {
  font-size: 20px;
  color: #111;
  font-weight: 600;
  margin-bottom: 8px;
}

.rating {
  margin-bottom: 10px;
}
.rating i {
  color: #E91E63;
  font-size: 15px;
  margin-right: 2px;
}
.rating span {
  color: #555;
  font-size: 14px;
  margin-left: 5px;
}

.service-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* ===== Button ===== */
.read-more-btn {
  display: inline-block;
  padding: 9px 18px;
  background: #E91E63;
  color: #fff;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.read-more-btn:hover {
  background: #e19a00;
  transform: scale(1.05);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .hair-services-section {
    padding: 40px 0;
  }
  .service-content {
    padding: 18px;
  }
  .service-img img {
    height: 220px;
  }
}
/* =========================================
   PREMIUM BEAUTY PRICE SECTION
========================================= */

.beauty-price-section {
    position: relative;

    padding: 100px 0;

    background: #fffaf8;

    overflow: hidden;
}


/* Decorative Background */

.beauty-price-section::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background: rgba(232, 30, 99, 0.045);

    left: -220px;
    top: 100px;
}

.beauty-price-section::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    border: 1px solid rgba(201, 155, 57, 0.13);

    right: -170px;
    bottom: 80px;
}


/* =========================================
   HEADING
========================================= */

.price-heading {
    position: relative;

    z-index: 2;

    max-width: 750px;

    margin: 0 auto 45px;
}


.price-subtitle {
    display: inline-block;

    margin-bottom: 12px;

    color: #e91e63;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 4px;
}


.price-heading h2 {
    margin: 0;

    color: #272426;

    font-size: 46px;

    font-weight: 700;

    line-height: 1.2;
}


.price-heading h2 span {

    color: #e91e63;

    font-family: Georgia, "Times New Roman", serif;

    font-style: italic;

    font-weight: 400;
}


.price-heading p {

    max-width: 620px;

    margin: 16px auto 0;

    color: #777;

    font-size: 13px;

    line-height: 1.8;
}


/* Heading Decoration */

.price-heading-line {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    margin-top: 22px;
}


.price-heading-line span {

    width: 55px;

    height: 2px;

    background: #e91e63;

    border-radius: 10px;
}


.price-heading-line i {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 30px;
    height: 30px;

    border-radius: 50%;

    color: #d6a526;

    background: #fff;

    box-shadow:
        0 5px 15px rgba(0,0,0,.06);

    font-size: 12px;
}


/* =========================================
   CATEGORY TABS
========================================= */

.price-tabs {

    position: relative;

    z-index: 3;

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 40px;
}


.price-tab {

    padding: 9px 22px;

    border: 1px solid #eadbdd;

    border-radius: 30px;

    color: #6c6062;

    background: #fff;

    font-size: 14px;

    font-weight: 600;

    cursor: pointer;

    transition: .3s ease;
}


.price-tab:hover,
.price-tab.active {

    color: #fff;

    border-color: #e91e63;

    background: #e91e63;

    box-shadow:
        0 8px 20px rgba(233,30,99,.15);
}


/* =========================================
   PRICE CARD
========================================= */

.price-card {

    position: relative;

    display: flex;

    min-height: 165px;

    overflow: hidden;

    background: #fff;

    border: 1px solid #f0e5e5;

    border-radius: 18px;

    box-shadow:
        0 10px 30px rgba(60,35,40,.055);

    transition: .4s ease;

    z-index: 2;
}


.price-card:hover {

    transform: translateY(-6px);

    border-color: rgba(233,30,99,.2);

    box-shadow:
        0 18px 40px rgba(60,35,40,.11);
}


/* Left Number */

.price-card-number {

    flex-shrink: 0;

    width: 72px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #e91e63;

    background: #fff7ef;

    font-family: Georgia, serif;

    font-size: 25px;

    font-weight: 600;

    transition: .4s ease;
}


.price-card:hover .price-card-number {

    color: #fff;

    background: #e91e63;
}


/* Card Content */

.price-card-content {

    width: 100%;

    padding: 25px 28px 20px;
}


/* Title Row */

.price-title-row {

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 20px;
}


.price-title-row h4 {

    margin: 0 0 6px;

    color: #292527;

    font-size: 18px;

    font-weight: 700;
}


.price-title-row p {

    max-width: 420px;

    margin: 0;

    color: #888;

    font-size: 12px;

    line-height: 1.7;
}


.price-title-row strong {

    flex-shrink: 0;

    color: #d6a526;

    font-size: 20px;

    font-weight: 700;
}


/* Info Row */

.price-info {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 18px;

    padding-top: 13px;

    border-top: 1px dashed #eadfe0;
}


.price-info span {

    display: inline-flex;

    align-items: center;

    gap: 5px;

    color: #888;

    font-size: 9px;
}


.price-info i {

    color: #e91e63;
}


.price-popular {

    padding: 5px 10px;

    border-radius: 20px;

    color: #e91e63 !important;

    background: #fff1f5;

    font-size: 8px !important;

    font-weight: 700;
}


/* Featured Card */

.featured-price {

    border-color: rgba(233,30,99,.25);

}


.featured-price::before {

    content: "POPULAR";

    position: absolute;

    right: 20px;
    top: 0;

    padding: 5px 11px;

    color: #fff;

    background: #e91e63;

    border-radius: 0 0 8px 8px;

    font-size: 7px;

    font-weight: 700;

    letter-spacing: 1px;
}


/* =========================================
   BOTTOM CTA
========================================= */

.price-bottom {

    position: relative;

    z-index: 3;

    margin-top: 50px;
}


.price-bottom p {

    margin-bottom: 18px;

    color: #777;

    font-size: 11px;
}


.price-bottom p span {

    color: #292527;

    font-weight: 600;
}


.price-book-btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 13px 25px;

    color: #fff;

    background: linear-gradient(
        135deg,
        #e91e63,
        #d3983e
    );

    border-radius: 30px;

    font-size: 10px;

    font-weight: 700;

    text-decoration: none;

    transition: .4s ease;
}


.price-book-btn:hover {

    color: #fff;

    transform: translateY(-3px);

    box-shadow:
        0 12px 25px rgba(233,30,99,.2);
}


.price-book-btn i {

    transition: .3s ease;
}


.price-book-btn:hover i {

    transform: translateX(5px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .beauty-price-section {

        padding: 80px 0;
    }

    .price-heading h2 {

        font-size: 40px;
    }

    .price-card {

        min-height: 155px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .beauty-price-section {

        padding: 65px 0;
    }


    .price-heading {

        margin-bottom: 30px;
    }


    .price-subtitle {

        font-size: 8px;

        letter-spacing: 2.5px;
    }


    .price-heading h2 {

        font-size: 31px;
    }


    .price-heading p {

        font-size: 10px;

        line-height: 1.7;

        padding: 0 10px;
    }


    /* Tabs */

    .price-tabs {

        gap: 6px;

        margin-bottom: 28px;
    }


    .price-tab {

        padding: 8px 14px;

        font-size: 8px;
    }


    /* Cards */

    .price-card {

        min-height: auto;

        border-radius: 14px;
    }


    .price-card-number {

        width: 52px;

        font-size: 18px;
    }


    .price-card-content {

        padding: 20px 16px 16px;
    }


    .price-title-row {

        gap: 10px;
    }


    .price-title-row h4 {

        font-size: 14px;

        line-height: 1.4;
    }


    .price-title-row p {

        font-size: 8px;

        line-height: 1.6;
    }


    .price-title-row strong {

        font-size: 15px;
    }


    .price-info {

        margin-top: 13px;

        padding-top: 10px;

        gap: 8px;

        flex-wrap: wrap;
    }


    .price-info span {

        font-size: 7px;
    }


    .featured-price::before {

        right: 12px;

        font-size: 6px;
    }


    /* CTA */

    .price-bottom {

        margin-top: 35px;
    }


    .price-bottom p {

        padding: 0 15px;

        font-size: 9px;

        line-height: 1.7;
    }


    .price-book-btn {

        padding: 12px 20px;

        font-size: 9px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .price-heading h2 {

        font-size: 28px;
    }


    .price-card-number {

        width: 45px;

        font-size: 16px;
    }


    .price-card-content {

        padding: 17px 12px 14px;
    }


    .price-title-row h4 {

        font-size: 12px;
    }


    .price-title-row strong {

        font-size: 13px;
    }


    .price-title-row p {

        font-size: 7px;
    }

}
/* ===== Service Details ===== */
.service-details {
  background: #fff9f5;
  padding: 70px 0;
}

.service-details-img {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.service-details-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s ease;
}
.service-details-img:hover img {
  transform: scale(1.05);
}

.price-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #E91E63;
  color: #111;
  padding: 6px 16px;
  font-weight: 600;
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* ===== Content ===== */
.service-details-content h2 {
  font-size: 32px;
  color: #111;
  font-weight: 700;
  margin-bottom: 10px;
}

.rating {
  margin-bottom: 15px;
}
.rating i {
  color: #E91E63;
  font-size: 16px;
  margin-right: 3px;
}
.rating span {
  color: #555;
  font-size: 14px;
  margin-left: 5px;
}

.service-details-content .desc {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.features-list li {
  font-size: 15px;
  color: #444;
  margin-bottom: 8px;
}
.features-list li i {
  color: #E91E63;
  margin-right: 8px;
}

/* ===== Button ===== */
.book-now-btn {
  display: inline-block;
  background: #E91E63;
  color: #fff;
  font-weight: 600;
  padding: 10px 26px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.book-now-btn:hover {
  background: #e19a00;
  transform: scale(1.05);
}

/* ===== Related Services ===== */
.related-services {
  margin-top: 60px;
}
.related-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease;
}
.related-card:hover {
  transform: translateY(-6px);
}
.related-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.related-card h5 {
  font-size: 18px;
  color: #111;
  margin-top: 15px;
}
.related-card p {
  font-size: 14px;
  color: #555;
  margin: 6px 15px 0;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .service-details-img img {
    height: 300px;
  }
  .service-details-content h2 {
    font-size: 26px;
  }
}
