/* google fonts */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: var(--default-font);
}

body{
    background-color: var(--primary-color);
}
:root{
    --primary-color: #222222;
    --dark-primary-color: #ffffff;
    --secondary-color: #f5f5f5;
    --text-color: #777777;
    --divider-color: #DDDDDD;
    --dark-text-color: #AEAEAE;
    --dark-divider-color: rgba(255, 255, 255, 0.10);
    --error-color: rgba(233, 87, 87);
    --accent-font: "Hanken Grotesk", sans-serif;
    --default-font: "Playfair Display", serif;
    --transition: all 0.3s ease-in-out;
    --image-filter: grayscale(100%);
    --image-filter-hover: grayscale(0);
}

/* Common CSS */
section{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 120px 16%;
    gap: 50px;
}

.section_title{
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
    color: rgba(210, 175, 100, 1);;
}

.section_title h3{
    font-size: 1rem;
    font-weight: 600px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.section_title h3::before{
    content: '';
    position: absolute;
    display: block;
    height: 26px;
    width: 26px;
    border-radius: 20px 20px 4px 20px;
    left: -4px;
    top: -5px;
    z-index: -1;
    background-color: #dadada;
    animation: ShapMove 2s infinite alternate;
}

@keyframes ShapMove {
    0%{
        transform: translateX(0px);
    }
    50%{
        transform: translateX(14px);
    }
    100%{
        transform: translateX(0px);
    }
}

.section_title h2{
    font-size: 2.3rem;
    font-family: var(--accent-font);
}

.section_title p{
    font-size: 1rem;
    width: 90%;
    line-height: 1.8rem;
    font-weight: 500;
    color: var(--text-color);
}

.section_image{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.section_image::after{
    content: '';
    position: absolute;
    top: 0%;
    left: -40%;
    z-index: 2;
    display: block;
    width: 20%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .1) 100%);
    transform: skewX(-25deg);
    transition: all .4s;
}

.section_image:hover::after{
    left: 120%;
}

.section_image img{
    width: 100%;
    height: 100%;
    border-radius: 50% 50% 50% 10%;
    /* filter: var(--image-filter); */
    transition: var(--transition);
}

.section_image img:hover{
    filter: var(--image-filter-hover);
}

.section_icon{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-color);
    min-width: 100px;
    min-height: 100px;
    padding: 16px;
    border-radius: 50px 50px 50px 10px;
    transform: scale(1.1);
    transition: var(--transition);
}

.section_icon img{
    width: 80%;
}

.section_icon:hover{
    transform: scale(1);
}

.section_content{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section_content h2{
    font-size: 1.2rem;
    font-weight: 700;
}

.section_content p{
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5rem;
    width: 80%;
    margin: 0 auto;
}

.btn{
    width: 140px;
    height: 50px;
    border: 2px solid rgba(210, 175, 100, 1);;
    background-color: transparent;
    border-radius: 30px;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.btn a{
    position: relative !important;
    color: var(--dark-primary-color) !important;
    z-index: 1 !important;
    font-weight: 600 !important;
    font-family: var(--accent-font) !important;
}

.btn::after{
    content: "";
    position: absolute;
    top: 0%;
    left: 0%;
    height: 100%;
    width: 0%;
    background-color: var(--dark-primary-color);
    border-radius: 30px;
    transition: var(--transition);
}

.btn:hover::after{
    width: 100%;
}

.btn:hover a{
      color: rgba(210, 175, 100, 1) !important;
}

.sticky{
    background-color: rgba(0, 0, 0, 0.8);
    border-bottom: 0.2px solid var(--dark-primary-color);
}

/*================ upperNAV =======================*/
.uppernav {
  background: black;
  display: flex;
  height: 5rem;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0 2rem;
  z-index: 1; 
}

.uppernav::after{
  content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, rgba(210, 175, 100, 0) 25%, rgba(210, 175, 100, 1) 100%);
}

.uppernavitems a{
  height: 2rem;
  display: flex;
  color: #AEAEAE;
  place-items: center;
  align-items: center;
  gap: .62rem;
  padding: 0 2rem 0 0;
}
.uppernavitems a i{
  color: rgba(210, 175, 100, 1);
}

/* ------------   navbar  -----------------*/
nav{
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    top: 0%;
    left: 0%;
    padding: 0 16%;
    z-index: 999;
    transition: var(--transition);
    border-bottom: 1px solid var(--dark-divider-color);
}

nav .logo{
    width: 220px;
}

.logo h1{
    font-size: 1.2rem;
    color: rgba(210, 175, 100, 1);
}

nav .menu{
    display: flex;
    align-items: center;
    gap: 45px;
}

nav .menu li a{
    color: var(--dark-primary-color);
    font-size: 1rem;
    transition: var(--transition);
    font-weight: 600;
}

nav .menu li a:hover{
    color: rgba(210, 175, 100, 1);
}

#toggle{
    display: none;
}


.social1{
    width: 65px; /* Ensure both buttons are the same size */
    height: 65px; 
    position: fixed;
    right: 10px;
    border-radius: 60%; /* Make it a perfect circle */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Add subtle shadow for better visibility */
    bottom: 30px;
    background: linear-gradient(45deg, rgb(35, 205, 20));
}
.social1 a{
    font-size: 2.6rem;
    color: var(--dark-primary-color);
}

/* HERO SECTION */
.hero{
    min-height: 90vh;
    margin-top: 45px;
    padding-bottom: 80px;
}

.hero_title h3::before{
    background-color: #595959;
}

.hero_title ul{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero_title ul li{
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-text-color);
    padding-bottom: 10px;
}

.hero_title ul li:nth-child(1){
    border-bottom: 1px solid var(--dark-divider-color);
}

.hero_btns{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero_btns button:nth-child(2){
    width: 160px;
}

figure{
    border-radius: 400px 400px 400px 50px;
    overflow: hidden;
    width: auto;
    position: relative;
}

figure img{
    width: 100%;
}

/* -------------FEATURES------------------*/
.MySplide{
    background-color: #d8c6c6;
    padding: 30px 0;
}

.Feature-Tricker-Splide{
    width: 250px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 1rem !important;
    font-weight: 600 !important;
}

.Feature-Tricker-Splide img{
    width: 10%;
}

/* =========================================
   LUXURY SALON ABOUT SECTION
========================================= */

.luxurySalonAbout {
    width: 100%;
    padding: 100px 7%;
    background: #faf7f3;
    overflow: hidden;
}

.luxurySalonAboutContainer {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
    gap: 90px;
}


/* =========================================
   LEFT CONTENT
========================================= */

.luxurySalonAboutContent {
    position: relative;
}

.luxurySalonAboutTag {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #9b7047;

    margin-bottom: 18px;
}

.luxurySalonAboutTag::before {
    content: "";
    width: 35px;
    height: 2px;
    background: #b98a5b;
}


/* HEADING */

.luxurySalonAboutTitle {
    margin: 0 0 24px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 500;

    color: #28221e;
}

.luxurySalonAboutTitle span {
    display: block;
    color: #a87345;
    font-style: italic;
}


/* DESCRIPTION */

.luxurySalonAboutText {
    max-width: 600px;

    margin: 0 0 16px;

    font-size: 16px;
    line-height: 1.8;

    color: #716962;
}


/* =========================================
   FEATURES
========================================= */

.luxurySalonFeatures {
    margin-top: 30px;
    display: grid;
    gap: 18px;
}

.luxurySalonFeature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.luxurySalonFeatureIcon {
    flex-shrink: 0;

    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #a87345;
    color: white;

    font-size: 14px;
    font-weight: bold;
}

.luxurySalonFeature h4 {
    margin: 0 0 4px;

    font-size: 16px;
    font-weight: 700;

    color: #302923;
}

.luxurySalonFeature p {
    margin: 0;

    font-size: 14px;
    line-height: 1.5;

    color: #81776f;
}


/* =========================================
   STATS
========================================= */

.luxurySalonStats {
    display: flex;
    gap: 45px;

    margin-top: 35px;
    padding-top: 28px;

    border-top: 1px solid #ded5cc;
}

.luxurySalonStat {
    display: flex;
    flex-direction: column;
}

.luxurySalonStat strong {
    font-family: Georgia, serif;

    font-size: 30px;
    font-weight: 500;

    color: #a87345;
}

.luxurySalonStat span {
    margin-top: 4px;

    font-size: 12px;
    color: #77706a;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}


/* =========================================
   BUTTON
========================================= */

.luxurySalonAboutButton {
    display: inline-flex;
    align-items: center;
    gap: 18px;

    margin-top: 35px;
    padding: 14px 23px;

    text-decoration: none;

    background: #b98a5b;
    color: white;

    font-size: 14px;
    font-weight: 600;

    transition: all 0.3s ease;
}

.luxurySalonAboutButton span {
    font-size: 20px;
    line-height: 1;
}

.luxurySalonAboutButton:hover {
    background: #a87345;
    transform: translateY(-3px);
}


/* =========================================
   RIGHT IMAGE AREA
========================================= */

.luxurySalonAboutVisual {
    position: relative;

    min-height: 560px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.luxurySalonImageFrame {
    width: 100%;
    height: 520px;

    position: relative;

    overflow: hidden;

    border-radius: 180px 180px 15px 15px;

    box-shadow: 0 20px 50px rgba(57, 40, 27, 0.16);
}

.luxurySalonAboutImage {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.luxurySalonImageFrame:hover
.luxurySalonAboutImage {
    transform: scale(1.05);
}


/* IMAGE OVERLAY */

.luxurySalonImageOverlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(30, 20, 14, 0.25),
        transparent 45%
    );

    pointer-events: none;
}


/* =========================================
   EXPERIENCE BADGE
========================================= */

.luxurySalonExperienceBadge {
    position: absolute;

    left: -35px;
    bottom: 45px;

    width: 145px;
    height: 145px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #302923;
    color: white;

    text-align: center;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);

    border: 8px solid #faf7f3;
}

.luxurySalonExperienceBadge strong {
    font-family: Georgia, serif;

    font-size: 38px;
    font-weight: 500;

    color: #d4a878;
}

.luxurySalonExperienceBadge span {
    margin-top: 3px;

    font-size: 10px;
    line-height: 1.4;

    letter-spacing: 1px;
}


/* =========================================
   DECORATIVE CIRCLE
========================================= */

.luxurySalonDecorCircle {
    position: absolute;

    right: -25px;
    top: 45px;

    width: 85px;
    height: 85px;

    border: 1px solid #b98a5b;
    border-radius: 50%;

    z-index: -1;
}

.luxurySalonDecorCircle::after {
    content: "";

    position: absolute;

    width: 45px;
    height: 45px;

    top: 18px;
    left: 18px;

    border: 1px solid #b98a5b;
    border-radius: 50%;
}


/*----------------Contact SECTION------------------*/
.contact{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    place-content: center;
    place-items: center;
    border-bottom: 1px solid var(--dark-divider-color);
    gap: 30px;
}

.contact_col{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    text-align: center;
    color: var(--dark-primary-color);
}

.contact_icon{
    height: 70px;
    width: 70px;
    background-color: var(--dark-primary-color);
    border-radius: 50px 50px 10px 50px;
}

.contact_icon img{
    width: 80%;
}

.contact_info h2{
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #9d6b42;
}

.contact_info ul{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact_info ul li{
    font-size: 1rem;
    color: var(--dark-text-color);
}

.contact_info p{
    font-size: 1rem;
    width: 70%;
    margin: 0 auto;
    color: var(--dark-text-color);
}


/*----------------Footer SECTION------------------*/
footer{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 10px 2%; */
}

.footer_left{
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer_logo{
    width: 250px;
    color: #AEAEAE;
}

.footer_logo h1 {
    font-size: 24px;
}

.social_icon{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.social_icon a{
    font-size: 1.5rem;
    color: var(--dark-primary-color);
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px 20px 6px 20px;
    background-color: var(--dark-divider-color);
    transition: var(--transition);
}

.social_icon a:hover{
    transform: translateY(-10px);
}

.social_icon a:nth-child(1){
    background: linear-gradient(45deg, rgb(35, 205, 20));
}

.social_icon a:nth-child(2){
    background: linear-gradient(45deg, #F09433, #E6683C, #DC2743, #CC2366, #BC1888);
}

.footer_right{
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.footer_right ul{
    display: flex;
    justify-content: flex-end;
    align-items: start;
    gap: 30px;
    color: var(--dark-text-color);
}

.footer_right ul li a{
    font-size: 1.1rem;
    font-weight: 500;
    transition: var(--transition);
    color: var(--text-color);  
}

.footer_right ul li a:hover{
     color: var(--dark-primary-color);
}

.footer_right p{
    color: var(--dark-text-color);
}

.footer_right p span{
    color: var(--dark-primary-color);
    font-weight: 600;
    font-family: var(--accent-font);
    letter-spacing: 1px;
}

@media screen and (max-width: 1400px) {

     section{
        padding: 70px 8%;
    }

    nav{
        padding: 0px 10%;
    }

     .MySplide{
        padding: 20px 0;
    }

     footer{
        padding: 70px 8%;
    }
}

@media screen and (max-width: 1200px) {

     section{
        padding: 70px 8%;
        gap: 20px;
    }
    .section_title h2{
        font-size: 2.7rem;
    }
     nav{
        padding: 0px 8%;
    }

     footer{
        padding: 70px 8%;
    }

}

@media screen and (max-width: 900px) { 
     #toggle{
        display: block;
        font-size: 1.5rem;
        font-weight: 700;
        color: rgba(210, 175, 100, 1);;
    }

    nav{
        padding: 0px 2%;
    }

    .menu{
        height: 0;
        position: absolute;
        flex-direction: column;
        align-items: start !important;
        top: 100%;
        left: 0%;
        width: 100%;
        background-color: var(--dark-primary-color) !important;
        padding-left: 5%;
        opacity: 0;
        overflow: hidden;
        transition: all .2s;
        z-index: 999;
        gap: 30px !important;
        padding-top: 20px;
        border-bottom: 1px solid var(--primary-color);
    }

    .menu li button{
        display: flex;
        justify-content: flex-start;
        align-items: center;
        height: 20px;
    }

    .menu li a{
        color: var(--primary-color) !important;
    }

    .show-menu{
        height: 220px;
        opacity: 1;
    }

     section{
        flex-direction: column;
        padding: 70px 2%;
    }
    .section_title{
        width: 100%;
    }
    .section_image{
        width: 100%;
    }
    .section_image img{
        width: 70%;
    }

     .hero{
        flex-direction: column-reverse;
    }

     .Feature-Tricker-Splide{
        width: 180px;
        font-size: 1rem;
    }

     footer{
        padding: 70px 2%;
    }
}

@media screen and (max-width: 768px) {
    .contact{
        grid-template-columns: repeat(2,1fr);
    }
    footer{
        flex-direction: column;
        gap: 50px;
        padding: 30px 2%;
    }
    .footer_left{
        width: 100%;
        align-items: center;
    }
    .social_icon{
        justify-content: center;
    }
    .footer_right{
        width: 100%;
        align-items: center;
    }
    .footer_right ul{
        justify-content: center;
    }
}

@media screen and (max-width: 500px) {
    .uppernav{
        width: auto;
    }
    .uppernavitems a{
        align-items: center;
        justify-content: center;
        font-size: .91rem;
    }

     .section_title h2{
        font-size: 1.9rem;
    }
    .section_title h3{
        font-size: 0.9rem;
        font-weight: 500;
    }
    .section_title p{
        width: 90%;
    }
    .hero ul li{
        font-size: 1.2rem;
    }

     .contact{
        grid-template-columns: repeat(1,1fr);
    }
    .footer_right ul{
        gap: 20px;
    }
    .footer_right ul li a{
        font-size: 0.9rem;
    }
    .footer_right p{
        font-size: 0.8rem;
    }
}

/* =========================================
   About Responsive Code
   TABLET
========================================= */

@media (max-width: 1000px) {

    .luxurySalonAbout {
        padding: 80px 5%;
    }

    .luxurySalonAboutContainer {
        grid-template-columns: 1fr 0.85fr;
        gap: 45px;
    }

    .luxurySalonAboutTitle {
        font-size: 40px;
    }

    .luxurySalonAboutVisual {
        min-height: 480px;
    }

    .luxurySalonImageFrame {
        height: 460px;
    }

    .luxurySalonExperienceBadge {
        left: -20px;
        bottom: 25px;
    }

    .luxurySalonStats {
        gap: 25px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .luxurySalonAbout {
        padding: 65px 20px;
    }

    .luxurySalonAboutContainer {
        display: flex;
        flex-direction: column-reverse;

        gap: 50px;
    }

    .luxurySalonAboutVisual {
        width: 100%;
        min-height: auto;
    }

    .luxurySalonImageFrame {
        width: 90%;
        height: 430px;

        border-radius: 150px 150px 15px 15px;
    }

    .luxurySalonAboutContent {
        width: 100%;
    }

    .luxurySalonAboutTitle {
        font-size: 36px;
    }

    .luxurySalonAboutText {
        font-size: 15px;
    }

    .luxurySalonExperienceBadge {
        left: 0;
        bottom: 15px;

        width: 125px;
        height: 125px;
    }

    .luxurySalonExperienceBadge strong {
        font-size: 32px;
    }

    .luxurySalonStats {
        justify-content: space-between;
        gap: 10px;
    }

    .luxurySalonStat strong {
        font-size: 25px;
    }

    .luxurySalonStat span {
        font-size: 10px;
    }

    .luxurySalonDecorCircle {
        right: 0;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .luxurySalonAbout {
        padding: 50px 16px;
    }

    .luxurySalonAboutTitle {
        font-size: 31px;
    }

    .luxurySalonAboutTag {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .luxurySalonImageFrame {
        width: 92%;
        height: 350px;

        border-radius: 110px 110px 12px 12px;
    }

    .luxurySalonExperienceBadge {
        width: 105px;
        height: 105px;

        border-width: 5px;
    }

    .luxurySalonExperienceBadge strong {
        font-size: 27px;
    }

    .luxurySalonExperienceBadge span {
        font-size: 8px;
    }

    .luxurySalonFeature h4 {
        font-size: 14px;
    }

    .luxurySalonFeature p {
        font-size: 12px;
    }

    .luxurySalonStats {
        gap: 15px;
    }

    .luxurySalonStat strong {
        font-size: 22px;
    }

    .luxurySalonStat span {
        font-size: 8px;
    }

    .luxurySalonAboutButton {
        width: 100%;
        justify-content: center;
    }

    .luxurySalonWhatsapp {
        width: 55px;
        height: 55px;

        right: 18px;
        bottom: 18px;

        font-size: 27px;
    }
}

/* =====================================================
   MODERN BEAUTY SERVICES
   All classes are unique
===================================================== */

.modernBeautyServices {
    position: relative;
    width: 100%;
    padding: 100px 6%;

    background: #f8f4ef;

    overflow: hidden;
}


/* Decorative background */

.modernBeautyServices::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    top: -220px;
    right: -180px;

    border: 1px solid rgba(166, 119, 77, 0.15);

    border-radius: 50%;
}


.modernBeautyServices::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    bottom: -180px;
    left: -150px;

    border: 1px solid rgba(166, 119, 77, 0.12);

    border-radius: 50%;
}


/* Main wrapper */

.modernBeautyServicesInner {
    position: relative;

    max-width: 1200px;

    margin: auto;

    z-index: 2;
}


/* =====================================================
   HEADING
===================================================== */

.modernBeautyServicesHeading {
    max-width: 720px;

    margin: 0 auto 65px;

    text-align: center;
}


.modernBeautyServicesLabel {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 15px;

    font-size: 18px;

    font-weight: 700;

    letter-spacing: 2.5px;

    color: #a16f45;
}


.modernBeautyServicesLabel::before,
.modernBeautyServicesLabel::after {
    content: "";

    width: 28px;
    height: 1px;

    background: #a16f45;
}


.modernBeautyServicesHeading h2 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 48px;

    line-height: 1.15;

    font-weight: 500;

    color: #29231f;
}


.modernBeautyServicesHeading h2 span {
    color: #a16f45;

    font-style: italic;
}


.modernBeautyServicesHeading p {
    max-width: 620px;

    margin: 20px auto 0;

    font-size: 15px;

    line-height: 1.8;

    color: #746d67;
}


/* =====================================================
   SERVICES GRID
===================================================== */

.modernBeautyServicesGrid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}


/* =====================================================
   SERVICE CARD
===================================================== */

.modernBeautyServiceCard {
    position: relative;

    min-height: 390px;

    padding: 30px;

    background: #ffffff;

    border: 1px solid #e7ded5;

    border-radius: 4px;

    overflow: hidden;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}


.modernBeautyServiceCard:hover {
    transform: translateY(-10px);

    border-color: #c49a74;

    box-shadow:
        0 20px 45px rgba(64, 42, 25, 0.12);
}


/* Bottom decorative line */

.modernBeautyServiceCard::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 4px;

    background: #a16f45;

    transition: width 0.4s ease;
}


.modernBeautyServiceCard:hover::after {
    width: 100%;
}


/* =====================================================
   CARD TOP
===================================================== */

.modernBeautyServiceTop {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 45px;
}


.modernBeautyServiceNumber {
    font-family: Georgia, serif;

    font-size: 15px;

    color: #a16f45;

    letter-spacing: 1px;
}


/* =====================================================
   ICON
===================================================== */

.modernBeautyServiceIcon {
    width: 72px;
    height: 72px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #302923;

    color: #ffffff;

    font-size: 28px;

    box-shadow:
        0 8px 20px rgba(42, 31, 23, 0.15);

    transition:
        transform 0.4s ease,
        background 0.4s ease;
}


.modernBeautyServiceCard:hover
.modernBeautyServiceIcon {
    transform: rotate(8deg) scale(1.08);

    background: #a16f45;
}


/* =====================================================
   CONTENT
===================================================== */

.modernBeautyServiceContent h3 {
    margin: 0 0 15px;

    font-family: Georgia, serif;

    font-size: 25px;

    font-weight: 500;

    color: #29231f;
}


.modernBeautyServiceContent p {
    margin: 0;

    font-size: 14px;

    line-height: 1.8;

    color: #746d67;
}


/* =====================================================
   LINK
===================================================== */

.modernBeautyServiceLink {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 25px;

    color: #302923;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 0.5px;

    transition: color 0.3s ease;
}


.modernBeautyServiceLink span {
    font-size: 19px;

    transition: transform 0.3s ease;
}


.modernBeautyServiceLink:hover {
    color: #a16f45;
}


.modernBeautyServiceLink:hover span {
    transform: translateX(6px);
}


/* =====================================================
   FEATURED CARD
===================================================== */

.modernBeautyServiceFeatured {
    background: #302923;

    border-color: #302923;

    transform: translateY(-12px);
}


.modernBeautyServiceFeatured:hover {
    transform: translateY(-20px);
}


.modernBeautyServiceFeatured
.modernBeautyServiceNumber {
    color: #d0a276;
}


.modernBeautyServiceFeatured
.modernBeautyServiceIcon {
    background: #a16f45;
}


.modernBeautyServiceFeatured
.modernBeautyServiceContent h3 {
    color: #ffffff;
}


.modernBeautyServiceFeatured
.modernBeautyServiceContent p {
    color: #c9c0b9;
}


.modernBeautyServiceFeatured
.modernBeautyServiceLink {
    color: #ffffff;
}


.modernBeautyServiceFeatured
.modernBeautyServiceLink:hover {
    color: #d0a276;
}


/* =====================================================
   WHATSAPP BUTTON
===================================================== */

.modernBeautyWhatsapp {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 60px;
    height: 60px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #20c85a;

    color: white;

    text-decoration: none;

    font-size: 30px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.2);

    z-index: 999;

    transition: transform 0.3s ease;
}


.modernBeautyWhatsapp:hover {
    transform: scale(1.1);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .modernBeautyServices {
        padding: 80px 5%;
    }


    .modernBeautyServicesGrid {
        grid-template-columns: repeat(2, 1fr);
    }


    .modernBeautyServiceFeatured {
        transform: none;
    }


    .modernBeautyServiceFeatured:hover {
        transform: translateY(-10px);
    }


    .modernBeautyServicesHeading h2 {
        font-size: 42px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {

    .modernBeautyServices {
        padding: 65px 20px;
    }


    .modernBeautyServicesHeading {
        margin-bottom: 45px;
    }


    .modernBeautyServicesHeading h2 {
        font-size: 36px;
    }


    .modernBeautyServicesHeading p {
        font-size: 14px;
    }


    .modernBeautyServicesGrid {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    .modernBeautyServiceCard {
        min-height: auto;

        padding: 27px;
    }


    .modernBeautyServiceFeatured {
        transform: none;
    }


    .modernBeautyServiceFeatured:hover {
        transform: translateY(-8px);
    }


    .modernBeautyServiceTop {
        margin-bottom: 30px;
    }


    .modernBeautyServiceIcon {
        width: 62px;
        height: 62px;

        font-size: 24px;
    }


    .modernBeautyServiceContent h3 {
        font-size: 23px;
    }


    .modernBeautyWhatsapp {
        width: 55px;
        height: 55px;

        right: 18px;
        bottom: 18px;

        font-size: 27px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 420px) {

    .modernBeautyServices {
        padding: 50px 15px;
    }


    .modernBeautyServicesHeading h2 {
        font-size: 30px;
    }


    .modernBeautyServicesLabel {
        font-size: 10px;

        letter-spacing: 1.8px;
    }


    .modernBeautyServiceCard {
        padding: 23px;
    }


    .modernBeautyServiceIcon {
        width: 56px;
        height: 56px;

        font-size: 21px;
    }


    .modernBeautyServiceContent h3 {
        font-size: 21px;
    }


    .modernBeautyServiceContent p {
        font-size: 13px;
    }

}

/* =====================================================
   PREMIUM WHY CHOOSE US SECTION
   UNIQUE CLASSES - NO CONFLICT WITH OTHER SECTIONS
===================================================== */

.premiumWhySection {
    width: 100%;
    padding: 110px 6%;

    background: #f8f4ef;

    overflow: hidden;
}


/* MAIN WRAPPER */

.premiumWhyWrapper {
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 0.9fr;

    align-items: center;

    gap: 80px;
}


/* =====================================================
   LEFT SIDE
===================================================== */

.premiumWhyContent {
    width: 100%;
}


/* LABEL */

.premiumWhyLabel {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 20px;

    font-size: 18px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #9b6941;
}


.premiumWhyLabel span {
    display: block;

    width: 35px;
    height: 2px;

    background: #b47d4e;
}


/* HEADING */

.premiumWhyHeading {
    margin: 0;

    max-width: 600px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 52px;

    line-height: 1.08;

    font-weight: 500;

    color: #29231f;
}


.premiumWhyHeading em {
    display: block;

    color: #a66f43;

    font-style: italic;
}


/* INTRO */

.premiumWhyIntro {
    max-width: 600px;

    margin: 25px 0 35px;

    font-size: 16px;

    line-height: 1.8;

    color: #746c65;
}


/* =====================================================
   FEATURE BOXES
===================================================== */

.premiumWhyFeatures {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

    max-width: 680px;
}


.premiumWhyFeature {
    padding: 25px;

    background: #fffdf9;

    border: 1px solid #e6ddd4;

    border-radius: 12px;

    transition: all 0.35s ease;
}


.premiumWhyFeature:hover {
    transform: translateY(-7px);

    border-color: #bd8b61;

    box-shadow:
        0 15px 35px rgba(71, 48, 30, 0.10);
}


/* ICON */

.premiumWhyIcon {
    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    border-radius: 50%;

    background: #302923;

    color: #ffffff;

    font-size: 24px;

    transition: all 0.3s ease;
}


.premiumWhyFeature:hover .premiumWhyIcon {
    background: #a66f43;

    transform: rotate(-8deg);
}


/* FEATURE HEADING */

.premiumWhyFeatureText h3 {
    margin: 0 0 9px;

    font-family: Georgia, serif;

    font-size: 21px;

    font-weight: 600;

    color: #302923;
}


/* FEATURE TEXT */

.premiumWhyFeatureText p {
    margin: 0;

    font-size: 13px;

    line-height: 1.7;

    color: #766e67;
}


/* FEATURE LINK */

.premiumWhyFeatureText a {
    display: inline-block;

    margin-top: 15px;

    color: #9d6b42;

    text-decoration: none;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.premiumWhyFeatureText a:hover {
    color: #302923;
}


/* =====================================================
   STATS
===================================================== */

.premiumWhyStats {
    display: flex;

    align-items: center;

    gap: 0;

    margin-top: 40px;

    padding-top: 25px;

    border-top: 1px solid #ddd3c9;
}


.premiumWhyStat {
    min-width: 140px;

    padding-right: 28px;

    margin-right: 28px;

    border-right: 1px solid #d8cdc2;
}


.premiumWhyStat:last-child {
    border: none;

    margin-right: 0;

    padding-right: 0;
}


.premiumWhyStat strong {
    display: block;

    font-family: Georgia, serif;

    font-size: 30px;

    font-weight: 500;

    color: #a66f43;
}


.premiumWhyStat span {
    display: block;

    margin-top: 5px;

    font-size: 10px;

    letter-spacing: 1px;

    text-transform: uppercase;

    color: #77706a;
}


/* =====================================================
   RIGHT IMAGE
===================================================== */

.premiumWhyVisual {
    position: relative;

    min-height: 600px;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* IMAGE BOX */

.premiumWhyImageBox {
    position: relative;

    width: 88%;

    height: 600px;

    overflow: hidden;

    border-radius: 250px 250px 20px 20px;

    border: 8px solid #ffffff;

    box-shadow:
        0 25px 60px rgba(47, 31, 20, 0.18);
}


.premiumWhyImage {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transition: transform 0.7s ease;
}


.premiumWhyImageBox:hover .premiumWhyImage {
    transform: scale(1.05);
}


/* =====================================================
   EXPERIENCE BADGE
===================================================== */

.premiumWhyBadge {
    position: absolute;

    right: 0;

    top: 90px;

    width: 145px;
    height: 145px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    border-radius: 50%;

    background: #302923;

    color: #ffffff;

    border: 6px solid #f8f4ef;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.20);

    z-index: 5;
}


.premiumWhyBadgeIcon {
    font-size: 17px;

    color: #d2a173;

    margin-bottom: 2px;
}


.premiumWhyBadge strong {
    font-family: Georgia, serif;

    font-size: 37px;

    font-weight: 500;

    color: #ffffff;
}


.premiumWhyBadge small {
    margin-top: 2px;

    font-size: 9px;

    line-height: 1.5;

    letter-spacing: 1.5px;

    color: #d5c9bf;
}


/* =====================================================
   DECORATION
===================================================== */

.premiumWhyDecor {
    position: absolute;

    width: 150px;
    height: 150px;

    right: -20px;
    bottom: 20px;

    border: 1px solid #b9895e;

    border-radius: 50%;

    z-index: -1;
}


.premiumWhyDecor::before {
    content: "";

    position: absolute;

    inset: 18px;

    border: 1px solid #b9895e;

    border-radius: 50%;
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1050px) {

    .premiumWhySection {
        padding: 85px 5%;
    }

    .premiumWhyWrapper {
        gap: 45px;
    }

    .premiumWhyHeading {
        font-size: 43px;
    }

    .premiumWhyImageBox {
        width: 90%;
        height: 520px;
    }

    .premiumWhyVisual {
        min-height: 520px;
    }

    .premiumWhyBadge {
        width: 125px;
        height: 125px;

        right: -5px;
    }

    .premiumWhyBadge strong {
        font-size: 31px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

    .premiumWhySection {
        padding: 65px 20px;
    }


    .premiumWhyWrapper {
        display: flex;

        flex-direction: column;

        gap: 55px;
    }


    /* IMAGE FIRST */

    .premiumWhyVisual {
        width: 100%;

        min-height: auto;

        order: -1;
    }


    .premiumWhyImageBox {
        width: 90%;

        height: 470px;

        border-radius: 190px 190px 18px 18px;
    }


    .premiumWhyBadge {
        right: 0;

        top: 55px;

        width: 115px;
        height: 115px;
    }


    .premiumWhyBadge strong {
        font-size: 28px;
    }


    .premiumWhyBadge small {
        font-size: 8px;
    }


    .premiumWhyHeading {
        font-size: 38px;
    }


    .premiumWhyIntro {
        font-size: 14px;
    }


    .premiumWhyFeatures {
        grid-template-columns: 1fr;
    }


    .premiumWhyStats {
        justify-content: space-between;
    }


    .premiumWhyStat {
        min-width: auto;

        padding-right: 15px;

        margin-right: 15px;
    }


    .premiumWhyStat strong {
        font-size: 25px;
    }


    .premiumWhyStat span {
        font-size: 8px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .premiumWhySection {
        padding: 50px 16px;
    }


    .premiumWhyImageBox {
        width: 92%;

        height: 390px;

        border-radius: 150px 150px 15px 15px;
    }


    .premiumWhyBadge {
        width: 100px;
        height: 100px;

        border-width: 4px;
    }


    .premiumWhyBadge strong {
        font-size: 24px;
    }


    .premiumWhyBadgeIcon {
        font-size: 13px;
    }


    .premiumWhyHeading {
        font-size: 32px;
    }


    .premiumWhyLabel {
        font-size: 10px;

        letter-spacing: 1.7px;
    }


    .premiumWhyIntro {
        line-height: 1.7;
    }


    .premiumWhyFeature {
        padding: 22px;
    }


    .premiumWhyFeatureText h3 {
        font-size: 19px;
    }


    .premiumWhyFeatureText p {
        font-size: 12px;
    }


    .premiumWhyIcon {
        width: 50px;
        height: 50px;

        font-size: 21px;
    }


    .premiumWhyStat strong {
        font-size: 21px;
    }


    .premiumWhyStat span {
        font-size: 7px;
    }


    .premiumWhyWhatsapp {
        width: 55px;
        height: 55px;

        right: 18px;
        bottom: 18px;

        font-size: 27px;
    }

}

/* =====================================================
   SALON GALLERY PRO
===================================================== */

.salonGalleryPro {
    width: 100%;

    padding: 110px 6%;

    background: #fbf8f4;

    overflow: hidden;
}


.salonGalleryProContainer {
    max-width: 1200px;

    margin: auto;
}


/* =====================================================
   HEADING
===================================================== */

.salonGalleryProHeading {
    max-width: 700px;

    margin: 0 auto 40px;

    text-align: center;
}


.salonGalleryProLabel {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 15px;

    font-size: 18px;

    font-weight: 700;

    letter-spacing: 2.5px;

    color: #9c6d46;
}


.salonGalleryProLabel::before,
.salonGalleryProLabel::after {
    content: "";

    width: 30px;
    height: 1px;

    background: #b5835b;
}


.salonGalleryProHeading h2 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 48px;

    line-height: 1.15;

    font-weight: 500;

    color: #29231f;
}


.salonGalleryProHeading h2 em {
    color: #a66e43;

    font-style: italic;
}


.salonGalleryProHeading p {
    max-width: 600px;

    margin: 18px auto 0;

    font-size: 15px;

    line-height: 1.8;

    color: #756d66;
}


/* =====================================================
   GALLERY GRID
===================================================== */

.salonGalleryProGrid {
    display: grid;

    grid-template-columns:
        1.15fr
        0.85fr
        1fr;

    grid-auto-rows: 240px;

    gap: 18px;
}


/* =====================================================
   GALLERY ITEM
===================================================== */

.salonGalleryProItem {
    position: relative;

    min-height: 240px;

    overflow: hidden;

    border-radius: 12px;

    cursor: pointer;

    background: #ddd;
}


/* IMAGE */

.salonGalleryProItem img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.7s ease,
        filter 0.5s ease;
}


.salonGalleryProItem:hover img {
    transform: scale(1.08);

    filter: brightness(0.65);
}


/* =====================================================
   DIFFERENT SIZES
===================================================== */

.salonGalleryProLarge {
    grid-row: span 2;
}


.salonGalleryProTall {
    grid-row: span 2;
}


.salonGalleryProWide {
    grid-column: span 2;
}


/* =====================================================
   OVERLAY
===================================================== */

.salonGalleryProOverlay {
    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    justify-content: flex-end;

    padding: 25px;

    background:
        linear-gradient(
            to top,
            rgba(25, 18, 14, 0.85),
            rgba(25, 18, 14, 0.05) 70%
        );

    opacity: 0;

    transition: opacity 0.4s ease;
}


.salonGalleryProItem:hover
.salonGalleryProOverlay {
    opacity: 1;
}


/* CATEGORY */

.salonGalleryProCategory {
    margin-bottom: 7px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #d8a878;
}


/* TITLE */

.salonGalleryProOverlay h3 {
    margin: 0;

    font-family: Georgia, serif;

    font-size: 23px;

    font-weight: 500;

    color: #ffffff;
}


/* VIEW BUTTON */

.salonGalleryProView {
    margin-top: 13px;

    padding: 7px 15px;

    border: 1px solid rgba(255,255,255,0.6);

    border-radius: 20px;

    background: transparent;

    color: #ffffff;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1px;

    cursor: pointer;

    transition: all 0.3s ease;
}


.salonGalleryProView:hover {
    background: #ffffff;

    color: #302923;
}


/* =====================================================
   LIGHTBOX
===================================================== */

.salonGalleryProLightbox {
    position: fixed;

    inset: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 30px;

    background: rgba(18, 14, 11, 0.92);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;

    z-index: 9999;
}


.salonGalleryProLightbox.activeGalleryLightbox {
    opacity: 1;

    visibility: visible;
}


.salonGalleryProLightboxImage {
    max-width: 90vw;

    max-height: 85vh;

    width: auto;
    height: auto;

    object-fit: contain;

    border-radius: 8px;

    box-shadow:
        0 20px 60px rgba(0,0,0,0.5);
}


/* CLOSE */

.salonGalleryProClose {
    position: absolute;

    top: 25px;
    right: 30px;

    width: 45px;
    height: 45px;

    border: 1px solid rgba(255,255,255,0.5);

    border-radius: 50%;

    background: transparent;

    color: white;

    font-size: 30px;

    line-height: 1;

    cursor: pointer;

    transition: all 0.3s ease;
}


.salonGalleryProClose:hover {
    background: white;

    color: #302923;
}


/* =====================================================
   HIDDEN FILTER ITEMS
===================================================== */

.salonGalleryProItem.galleryHiddenItem {
    display: none;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 950px) {

    .salonGalleryPro {
        padding: 85px 5%;
    }


    .salonGalleryProGrid {

        grid-template-columns:
            1fr
            1fr;

        grid-auto-rows: 260px;
    }


    .salonGalleryProLarge {
        grid-row: span 2;
    }


    .salonGalleryProTall {
        grid-row: span 2;
    }


    .salonGalleryProWide {
        grid-column: span 2;
    }


    .salonGalleryProHeading h2 {
        font-size: 42px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {

    .salonGalleryPro {
        padding: 65px 18px;
    }


    .salonGalleryProHeading {
        margin-bottom: 30px;
    }


    .salonGalleryProHeading h2 {
        font-size: 36px;
    }


    .salonGalleryProHeading p {
        font-size: 14px;
    }


    .salonGalleryProFilters {
        gap: 7px;

        margin-bottom: 30px;
    }


    .salonGalleryProFilter {
        padding: 8px 16px;

        font-size: 11px;
    }


    .salonGalleryProGrid {

        display: grid;

        grid-template-columns: 1fr;

        grid-auto-rows: 280px;

        gap: 14px;
    }


    .salonGalleryProLarge,
    .salonGalleryProTall,
    .salonGalleryProWide {

        grid-column: span 1;

        grid-row: span 1;
    }


    .salonGalleryProOverlay {
        opacity: 1;

        padding: 20px;
    }


    .salonGalleryProOverlay h3 {
        font-size: 20px;
    }


    .salonGalleryProView {
        display: none;
    }


    .salonGalleryProLightboxImage {
        max-width: 94vw;

        max-height: 75vh;
    }


    .salonGalleryProClose {
        top: 18px;

        right: 18px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 420px) {

    .salonGalleryPro {
        padding: 50px 14px;
    }


    .salonGalleryProHeading h2 {
        font-size: 31px;
    }


    .salonGalleryProLabel {
        font-size: 10px;

        letter-spacing: 2px;
    }


    .salonGalleryProGrid {
        grid-auto-rows: 250px;
    }


    .salonGalleryProItem {
        border-radius: 9px;
    }

}