/*@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Catamaran:wght@100;200;300;400;500;600;700;800;900&display=swap');

/*******************************/
/********* General CSS *********/
/*******************************/

:root {
    --gold-primary: #ebb40d;
    --gold-secondary: #E8D4A2;
    --gold-gradient: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-secondary) 100%);
    --dark-bg: #121212;
    --darker-bg: #0f1110;
    --text-light: #ffffff;
    --text-gold: #ebb40d;
    --overlay-dark: rgb(0 0 0 / 33%);
    --transition: all 0.5s;
}

body {
    color: #797979;
    background: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400; /* Use any of 100–900 */
    font-style: normal; /* or italic */
    letter-spacing: 1px;
}

h1,
h2, 
h3, 
h4,
h5, 
h6 {
    color: var(--secondary-light);
    font-family: 'Cormorant', serif;
    font-weight: 500; /* or 500, 600, 700, 800 */
    font-style: normal; /* or italic */
    letter-spacing: 1px;

}

a {
    color: var(--primary-light);
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: var(--gold-primary);
    outline: none;
    text-decoration: none;
}

.container
{
    max-width: 1450px;
}

.btn:focus,
.form-control:focus {
    box-shadow: none;
}

/*Site Loader CSS Start*/

/* Loader Overlay */
#site-loader {
  position: fixed;
  inset: 0;
  background: var(--dark-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: var(--transition);
}

/* Loader Content */
.loader-content {
  text-align: center;
  color: var(--text-light);
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

/* Loader Ring Spinner */
.loader-ring {
  width: 60px;
  height: 60px;
  border: 6px solid var(--overlay-dark);
  border-top: 6px solid transparent;
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
  background: var(--gold-gradient);
  -webkit-mask: 
  radial-gradient(farthest-side, transparent calc(100% - 6px), black calc(100% - 4px));
  mask: 
  radial-gradient(farthest-side, transparent calc(100% - 6px), black calc(100% - 4px));
}

/* Loader Text */
.loader-content h2 {
  font-size: 1.5rem;
  margin-top: 20px;
  color: var(--text-gold);
  letter-spacing: 1px;
  font-family: 'Brush Script MT', cursive;
}


@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Hide Loader (Example) */
body.loaded #site-loader {
  opacity: 0;
  visibility: hidden;
}

/*Site Loader CSS End*/

/**********************************/
/********** Top Bar CSS ***********/
/**********************************/
.top-bar {
    position: relative;
    height: 45px;
    background: var(--gold-gradient);
}

.top-bar .top-bar-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.top-bar .top-bar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-bar .text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 45px;
    padding: 0 10px;
    text-align: center;
    border-left: 1px solid rgba(255, 255, 255, .15);
}

.top-bar .text:last-child {
    border-right: 1px solid rgba(255, 255, 255, .15);
}

.top-bar .text h2 {
    color: var(--darker-bg);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    margin: 0;
}

.top-bar .text p {
    color: var(--darker-bg);
    font-size: 12px;
    font-weight: 400;
    margin: 0;
}

.top-bar .social {
    display: flex;
    height: 60px;
    font-size: 0;
    justify-content: flex-end;
}

.top-bar .social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    font-size: 20px;
    color: var(--darker-bg);
    border-right: 1px solid rgba(255, 255, 255, .15);
}

.top-bar .social a:first-child {
    border-left: 1px solid rgba(255, 255, 255, .15);
}

.top-bar .social a:hover {
    color: var(--primary-light);
    background: #ffffff;
}

@media (max-width: 992px) {
    .top-bar {
        display: none !important;
    }
}

.facebook-icon {
    color: #1877F2; /* Facebook blue */
}

.instagram-icon {
    background: radial-gradient(circle at 30% 107%, 
        #fdf497 0%, 
        #fdf497 5%, 
        #fd5949 45%, 
        #d6249f 60%, 
        #285AEB 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.youtube-icon {
    color: #FF0000; /* For Font Awesome or text-based icons */
}


/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.navbar {
    position: relative;
    transition: var(--transition);
    z-index: 999;
    border-bottom: 1px solid rgba(235, 180, 13, 0.1) !important;
    box-shadow: 0 5px 15px var(--overlay-dark) !important;
}

.navbar.nav-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
}

.navbar .navbar-brand {
    margin: 0;
    color: #ffffff;
    font-size: 45px;
    line-height: 0px;
    font-weight: 600;
    padding: 0 !important;
}

.navbar .navbar-brand span {
    font-weight: 800;
}

.navbar.nav-sticky.navbar .navbar-brand span {
    color: var(--primary-light);
}

.navbar .navbar-brand {
    max-width: 100%;
    max-height: 70px;
}
.navbar-nav
{
    gap: 10px;
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    padding: 10px 10px 8px 10px;
    color: #fff;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 600;
}
.navbar.nav-sticky  .navbar-nav .nav-link
{
    color: #fff;
}

.navbar-collapse.show .navbar-nav .nav-link  
{
    color: #fff;
}
.navbar-collapse.show .navbar-nav .nav-link.active
{
    color: #fff;
}

.navbar-nav .dropdown-menu {
    position: absolute;
}
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    background: rgba(256, 256, 256, .1);
    transition: none;
}

.navbar .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: #f8f9fa;
}

@media (min-width: 992px) {
    .navbar {
        width: 100%;
        padding: 5px 0;
        background: #0f1110 !important;
    }
    
    .navbar.nav-sticky {
        padding: 5px 0;
        animation: fadeInUp 1s ease;
    }
    
    .navbar a.nav-link {
        padding: 8px 15px;
        font-size: 14px;
        letter-spacing: 1px;
        text-transform: uppercase;
    }
}

@media (max-width: 991.98px) {   
    .navbar {
        padding: 5px;
        background: #0f1110 !important;
    }
    
    .navbar a.nav-link {
        padding: 5px;
    }
    
    .navbar .dropdown-menu {
        box-shadow: none;
    }
}


/*******************************/
/********** Hero CSS START***********/
/*******************************/

/* Banner Styles */
.salon-hero-banner {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    height: 65vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-dark);
    z-index: 1;
}


.hero-content {
    max-width: 750px;
    position: relative;
    background: rgba(18, 18, 18, 0.7);
    backdrop-filter: blur(8px);
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid var(--gold-primary);
    transform: translateY(0);
    animation: fadeInUp 1s ease;
    z-index: 1;
    float: right;
}

/* Badges */
.hero-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(235, 180, 13, 0.15);
    color: var(--gold-secondary);
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    border: 1px solid rgba(235, 180, 13, 0.3);
}

.hero-badge i {
    color: var(--gold-primary);
}

/* Typography */
.hero-subtitle {
    display: block;
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
}

.hero-title {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-light);
}

.gold-gradient-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

/* Buttons */
.hero-cta {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-size: 14px;
    width: fit-content;
}

.primary-btn {
    background: var(--gold-gradient);
    color: var(--dark-bg);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(235, 180, 13, 0.6);
    color: #000;
}

.secondary-btn {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--gold-primary);
}

.secondary-btn:hover {
    background: rgba(235, 180, 13, 0.1);
    transform: translateY(-3px);
}

/* Features */
.hero-features {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.feature-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--gold-secondary);
}

.feature-item i {
    color: var(--gold-primary);
}

/* Offer Tag */
.hero-offer-tag {
    position: absolute;
    bottom: 0px;
    right: 0px;
    background: var(--gold-gradient);
    color: var(--dark-bg);
    padding: 12px 25px;
    font-weight: 700;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Carousel Navigation */
.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 3;
}
.testimonials-slider .owl-nav
{
    position: relative;
    justify-content: center;
    margin-top: 40px;
}

.owl-prev, .owl-next {
    width: 60px;
    height: 60px;
    background: rgba(18, 18, 18, 0.7) !important;
    color: var(--gold-secondary) !important;
    border-radius: 50% !important;
    margin: 0 30px !important;
    transition: var(--transition);
    display: flex !important;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold-primary) !important;
    font-size: 20px !important;
}

.owl-prev:hover, .owl-next:hover {
    background: var(--gold-primary) !important;
    color: var(--dark-bg) !important;
}

/* Carousel Dots */
.owl-dots {
    position: absolute;
    bottom: 40px;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 3;
}

.owl-dot span {
    width: 12px;
    height: 12px;
    margin: 0 10px;
    background: rgba(255, 255, 255, 0.3) !important;
    transition: var(--transition);
}

.owl-dot.active span {
    background: var(--gold-primary) !important;
    transform: scale(1.4);
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-slide {
        height: 80vh;
        min-height: 600px;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 40px;
    }
    
    .hero-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .hero-slide {
        height: 70vh;
        min-height: 500px;
        align-items: flex-end;
    }
    
    .hero-content {
        padding: 10px;
        margin: 0 auto;
        text-align: center; 
        margin-bottom: 10px;       
    }
    
    .hero-badges, .hero-cta, .hero-features {
        justify-content: center;
    }
    .hero-cta
    {
        margin-bottom: 0;
    }
    
    .hero-title {
        font-size: 36px;
    }
    .hero-text
    {
        margin-bottom: 10px;
    }
    
    .hero-text {
        font-size: 14px;
    }
    
    .owl-nav {
        display: none;
    }
    
    .hero-offer-tag {
        top: -15px;
        right: 50%;
        transform: rotate(5deg) translateX(50%);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }   

}

/*******************************/
/********** Hero CSS END***********/
/*******************************/


/*Home About Us Content CSS Start*/

/* About Section Styles */
.salon-about-section {
    padding: 50px 0;
    background: var(--darker-bg);
    position: relative;
    overflow: hidden;
}


.salon-about-section .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.align-items-center {
    align-items: center;
}

.col-lg-5, .col-lg-7 {
    padding: 0 15px;
    position: relative;
    width: 100%;
}

/* Image Column */
.about-image-wrapper {
    position: relative;
    padding-right: 30px;
}

.about-main-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    transition: var(--transition);

}
.about-main-image:hover
{
    transform: scale(1.05);
    transition: var(--transition);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 0;
    z-index: 3;
    background: var(--gold-gradient);
    color: var(--dark-bg);
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 700;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.experience-badge .years {
    font-size: 32px;
    line-height: 1;
    margin-bottom: 5px;
}

.experience-badge .text {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.image-decoration {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    border: 15px solid var(--gold-primary);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.2;
}

/* Content Column */
.about-content {
    padding-left: 30px;
}


.section-title {
    font-size: 2.2rem;
    color: var(--text-light);
    margin-bottom: 5px;
    line-height: 1.3;
    font-weight: 700;
}

.about-text {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}
.about-meta
{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Features */
.about-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    margin-bottom: 20px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 24px;
    margin-right: 20px;
    min-width: 50px;
    height: 50px;
    background: rgba(235, 180, 13, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(235, 180, 13, 0.3);
}

.feature-text h4 {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 5px;
    font-weight: 600;
}

.feature-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
}

/* Button */
.btn-about {
    display: inline-flex;
    align-items: center;
    padding: 11px 22px;
    background: var(--gold-gradient);
    color: var(--dark-bg);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 5px;
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.btn-about:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(235, 180, 13, 0.4);
    color: #000;
}

.btn-about i {
    margin-left: 10px;
    transition: var(--transition);
}

.btn-about:hover i {
    transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .salon-about-section {
        padding: 20px 0;
    }
    
    .about-content {
        padding-left: 0;
        padding-top: 50px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .about-image-wrapper {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }
    
    .about-text {
        font-size: 14px;
    }
    
    .experience-badge {
        padding: 10px 10px;
    }
    
    .experience-badge .years {
        font-size: 28px;
    }
    
    .image-decoration {
        width: 100px;
        height: 100px;
        top: -20px;
        left: -20px;
        border-width: 10px;
    }
}

@media (max-width: 576px) {
    .salon-about-section {
        padding: 10px 0;
    }
    
    .section-title {
        font-size: 28px;
        line-height: 1.1;
    }
    

    .btn-about {
        padding: 10px 22px;
        font-size: 12px;
    }
    
    .feature-item {
        flex-direction: column;
    }
    
    .feature-icon {
        margin-bottom: 15px;
    }
}

/*Home About Us Content CSS End*/


/*Home Page services CSS Start*/

/* Services Section Styles */
.salon-services {
    padding: 20px 0;
    background: var(--darker-bg);
    position: relative;
}


/* Section Header */
.section-header {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
    display: block;
    color: var(--gold-primary);
    font-weight: 700;
}


.section-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Service Card */
.service-card {
    background: var(--dark-bg);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(235, 180, 13, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 16%);
}

.service-icon {
    position: absolute;
    top: -25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: 2px solid var(--gold-primary);
    z-index: 2;
}

.service-card-content {
    padding: 30px;
}

.service-card h3 {
    font-size: 22px;
    color: var(--text-light);
    margin: 15px 15px 15px 15px;
    font-weight: 600;
}

.service-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0 15px 15px 15px;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: rgba(235, 180, 13, 0.05);
    border-top: 1px solid rgba(235, 180, 13, 0.1);
    margin-top: auto;
}

.price {
    font-size: 18px;
    font-weight: 600;
    color: var(--gold-primary);
}

.book-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-secondary);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: var(--transition);
}

.book-btn i {
    font-size: 12px;
    transition: var(--transition);
}

.book-btn:hover {
    color: var(--gold-primary);
}

.book-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .salon-services {
        padding: 80px 0;
    }
    
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    

    .section-description {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .salon-services {
        padding: 10px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    
    .service-card h3 {
        font-size: 20px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/*Home Page services CSS End*/

/*Home Page Pricing CSS Start*/

/* Pricing Section Styles */
.pricing-section {
    padding: 20px 0;
    background: var(--darker-bg);
    position: relative;
}



/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Pricing Card */
.pricing-card {
    background: var(--dark-bg);
    border-radius: 10px;
    transition: var(--transition);
    position: relative;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(235, 180, 13, 0.1);
}

.pricing-card.featured {
    border: 1px solid var(--gold-primary);
    transform: translateY(-10px);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured:hover {
    transform: translateY(-15px);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.plan-name {
    font-size: 30px;
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: 600;
}

.price-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 15px;
}

.currency {
    font-size: 24px;
    color: var(--gold-primary);
    margin-top: 5px;
    margin-right: 5px;
}

.amount {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1;
}

.period {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    align-self: flex-end;
    margin-bottom: 10px;
    margin-left: 5px;
}

.plan-badge {
    position: absolute;
    top: -22px;
    right: -30px;
    background: var(--gold-gradient);
    color: var(--dark-bg);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    transform: rotate(15deg);
}

/* Features List */
.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.plan-features li {
    padding: 10px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
    color: var(--gold-primary);
}

.plan-features .fa-times {
    color: rgba(255, 255, 255, 0.3);
}

/* Button */
.pricing-btn {
    display: block;
    text-align: center;
    padding: 15px;
    color: var(--gold-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid var(--gold-primary);
}

.pricing-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(235, 180, 13, 0.4);
    color: var(--gold-primary);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .pricing-section {
        padding: 20px 0;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {


    .amount {
        font-size: 38px;
    }
    .plan-name
    {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .pricing-section {
        padding: 10px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    
    .pricing-card {
        padding: 30px 20px;
    }
}


/*Home Page Pricing CSS End*/

/*******************************/
/******* Page Header CSS *******/
/*******************************/
.page-header {
    position: relative;
    margin-bottom: 45px;
    padding: 150px 0 90px 0;
    text-align: center;
    background: var(--primary-light);
}

.page-header h2 {
    position: relative;
    color: var(--secondary-light);
    font-size: 60px;
    font-weight: 700;
}

.page-header a {
    position: relative;
    padding: 0 12px;
    font-size: 22px;
    color: var(--secondary-light);
}

.page-header a:hover {
    color: #ffffff;
}

.page-header a::after {
    position: absolute;
    content: "/";
    width: 8px;
    height: 8px;
    top: -2px;
    right: -7px;
    text-align: center;
    color: var(--secondary-light);
}

.page-header a:last-child::after {
    display: none;
}

@media (max-width: 767.98px) {
    .page-header h2 {
        font-size: 35px;
    }
    
    .page-header a {
        font-size: 18px;
    }
}


/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.about .section-header {
    margin-bottom: 30px;
    margin-left: 0;
}

.about .about-img {
    position: relative;
    height: 100%;
    margin: 60px 0 0 60px;
}

.about .about-img img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.about .about-img::before {
    position: absolute;
    content: "";
    top: -60px;
    right: 60px;
    bottom: 60px;
    left: -60px;
    background: var(--secondary-light);
    z-index: 0;
}

.about .about-img::after {
    position: absolute;
    content: "";
    top: -30px;
    right: 30px;
    bottom: 30px;
    left: -30px;
    background: transparent;
    border: 1px solid #ffffff;
    z-index: 2;
}

.about .about-text p {
    font-size: 16px;
}

.about .about-text a.btn {
    position: relative;
    margin-top: 15px;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--secondary-light);
    border: 2px solid var(--secondary-light);
    border-radius: 0;
    background: none;
    transition: .3s;
}

.about .about-text a.btn:hover {
    color: var(--primary-light);
    background: var(--secondary-light);
}

@media (max-width: 767.98px) {
    .about .about-img {
        margin-bottom: 30px;
        height: auto;
    }
}


/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.service .service-item {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    background: rgba(29, 36, 52, .04);
}

.service .service-img {
    position: relative;
    width: 100%;
}

.service .service-img img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service .service-img::after {
    position: absolute;
    content: "";
    top: 15px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    background: transparent;
    border: 1px solid #ffffff;
    z-index: 1;
}

.service .service-item h3 {
    margin: 0;
    padding: 25px 15px 15px 15px;
    font-size: 25px;
    font-weight: 700;
}

.service .service-item p {
    margin: 0;
    padding: 0 25px 25px 25px;
    font-size: 16px;
}

.service .service-item a.btn {
    position: relative;
    margin-bottom: 30px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-light);
    border: 2px solid var(--secondary-light);
    border-radius: 0;
    background: none;
    transition: .3s;
}

.service .service-item:hover a.btn {
    color: var(--primary-light);
    background: var(--secondary-light);
    border-color: var(--secondary-light);
}



/*******************************************/
/********* Home Our Team CSS Start **********/
/*******************************************/

.team-section {
    background-color: var(--dark-bg);
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.team-card {
    perspective: 1000px;
    background: transparent;
    border: none;
}

.team-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: var(--transition);
    transform-style: preserve-3d;
}

.team-card:hover .team-card-inner {
    transform: rotateY(10deg);
}

.member-image {
    position: relative;
    height: 380px;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.member-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-gradient);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
    mix-blend-mode: overlay;
}

.team-card:hover .member-image::before {
    opacity: 0.3;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .member-image img {
    transform: scale(1.03);
}

.member-info {
    position: relative;
    margin-top: -50px;
    background: var(--darker-bg);
    padding: 15px;
    margin-right: 30px;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    z-index: 3;
}

.team-card:hover .member-info {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.member-name {
    font-size: 24px;
    margin-bottom: 5px;
    position: relative;
    display: inline-block;
    color: var(--text-light);
}


.member-position {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-secondary);
    margin-bottom: 1px;
    display: block;
}

.member-bio {
    font-size: 15px;
    line-height: 1.7;
}

/* Gold accent elements */
.team-card:nth-child(odd) .member-info {
    border-top: 3px solid var(--gold-primary);
}

.team-card:nth-child(even) .member-info {
    border-top: 3px solid var(--gold-secondary);
}

@media (max-width: 768px) {

    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .member-info {
        margin-right: 0;
        padding: 15px;
    }
}

/*******************************************/
/********* Home Our Team CSS End **********/
/*******************************************/


/*******************************************/
/********* Home Testimonial CSS Start **********/
/*******************************************/

/* Testimonials Section Styles */
.testimonials-section {
    padding: 20px 0;
    background: var(--darker-bg);
    position: relative;
}


/* Testimonial Cards */
.testimonials-slider {
    position: relative;
}

.testimonial-card {
    background: var(--dark-bg);
    border-radius: 10px;
    padding: 40px;
    margin: 0 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(235, 180, 13, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.rating-stars {
    margin-bottom: 25px;
    font-size: 18px;
    letter-spacing: 3px;
}
.rating-stars i
{
    color: var(--gold-primary);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    position: relative;
}


.client-info {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    border: 2px solid var(--gold-primary);
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-name {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 5px;
    font-weight: 600;
}

.client-service {
    font-size: 14px;
    color: var(--gold-secondary);
    margin: 0;
}

/* Owl Carousel Navigation */

.owl-prev, .owl-next {
    width: 40px;
    height: 40px;
    background: rgba(18, 18, 18, 0.7) !important;
    color: var(--gold-secondary) !important;
    border-radius: 50% !important;
    margin: 0 20px !important;
    transition: var(--transition);
    display: flex !important;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold-primary) !important;
    pointer-events: all;
}

.owl-prev:hover, .owl-next:hover {
    background: var(--gold-primary) !important;
    color: var(--dark-bg) !important;
}

/* Owl Carousel Dots */
.owl-dots {
    position: absolute;
    bottom: -40px;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 3;
}

.owl-dot span {
    width: 12px;
    height: 12px;
    margin: 0 8px;
    background: rgba(255, 255, 255, 0.3) !important;
    transition: var(--transition);
}

.owl-dot.active span {
    background: var(--gold-primary) !important;
    transform: scale(1.3);
}

.testimonials-slider.owl-carousel .owl-stage,
.testimonials-slider.owl-carousel .owl-item { 
  display: flex !important;
  align-items: stretch !important;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .testimonials-section {
        padding: 20px 0;
    }
    
    
    .testimonial-card {
        padding: 30px;
    }
}

@media (max-width: 768px) {


    .testimonial-text {
        font-size: 14px;
    }
    
    .owl-nav {
        display: none;
    }
}

@media (max-width: 576px) {
    .testimonials-section {
        padding: 10px 0;
    }
    
    
    .testimonial-card {
        padding: 20px 10px;
        margin: 0;
    }
    
    .client-avatar {
        width: 50px;
        height: 50px;
    }
}

/*******************************************/
/********* Home Testimonial CSS End **********/
/*******************************************/


/*Home Gallery CSS Start*/

/* Gallery Section Styles */
.gallery-section {
    padding: 20px 0;
    background: var(--darker-bg);
    position: relative;
}


/* Gallery Tabs */
.gallery-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 12px 25px;
    background: transparent;
    color: white;
    border: 1px solid var(--gold-primary);
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}
button:focus
{
    outline: none !important;
}

.tab-btn:hover, .tab-btn.active {
    background: var(--gold-gradient);
    color: #000;
    border-color: transparent;
    transform: translateY(-3px);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1/1;
    transition: var(--transition);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.overlay-content {
    text-align: center;
    padding: 20px;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h3 {
    color: var(--text-light);
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 600;
}

.overlay-content p {
    color: var(--gold-secondary);
    font-size: 15px;
    margin-bottom: 15px;
}

.overlay-content i {
    color: var(--text-light);
    font-size: 24px;
    background: var(--gold-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.overlay-content i:hover {
    background: var(--dark-bg);
    transform: scale(1.1);
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-dark);
    backdrop-filter: blur(10px);
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 8px;
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--text-light);
    font-size: 40px;
    cursor: pointer;
    transition: var(--transition);
}

.close-btn:hover {
    color: var(--gold-primary);
}

.lightbox-nav {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 20px;
}

.prev-btn, .next-btn {
    background: rgba(235, 180, 13, 0.3);
    color: var(--text-light);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-btn:hover, .next-btn:hover {
    background: var(--gold-primary);
    color: var(--dark-bg);
}


.load-more-container {
    grid-column: 1 / -1;
    text-align: center;
    margin: 30px 0;
}

.load-more-btn {
    background: var(--gold-gradient);
    color: var(--dark-bg);
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
}

.load-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(235, 180, 13, 0.3);
}

/* Hide initially loaded images beyond the first 8 */
/*.gallery-container .gallery-item:nth-child(n+9) {
    display: none;
}*/

/* Responsive Styles */
@media (max-width: 992px) {
    .gallery-section {
        padding: 20px 0;
    }
    
}

@media (max-width: 768px) {


    .gallery-tabs {
        gap: 8px;
    }
    
    .tab-btn {
        padding: 10px 15px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .gallery-section {
        padding: 20px 0;
    }
    
    .section-header {
        margin-bottom: 20px;
        text-align: left;
    }
    
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .overlay-content h3 {
        font-size: 18px;
    }
    
    .overlay-content p {
        font-size: 14px;
    }
}

/*Home Gallery CSS End*/


/*About Us Page CSS Start*/



/* About Us Section */
.about-section {
    background-color: var(--dark-bg);
    padding: 20px 0;
}

.about-us-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    align-items: center;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--overlay-dark);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-image img:hover
{
    transform: scale(1.05);
    transition: var(--transition);
}


.about-text p {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.5;
}

.signature {
    font-family: 'Brush Script MT', cursive;
    font-size: 2rem;
    color: var(--text-gold);
    margin-top: 10px;
}


.why-choose-us {
  background-color: var(--dark-bg);
  padding: 20px 0;
  position: relative;
}


.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin: 0 auto;
  padding: 0 20px;
}

.reason-card {
  background: var(--darker-bg);
  border-radius: 8px;
  padding: 30px 30px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px var(--overlay-dark);
  border: 1px solid rgba(235, 180, 13, 0.1);
}

.reason-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--gold-gradient);
  transition: var(--transition);
}

.reason-card:hover::before {
  height: 100%;
}

.reason-number {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--text-gold);
  margin-bottom: 15px;
  opacity: 0.7;
}

.reason-card h3 {
  color: var(--text-light);
  margin-bottom: 15px;
  font-size: 1.5rem;
  position: relative;
  z-index: 1;
}

.reason-card p {
  color: var(--gold-secondary);
  line-height: 1.5;
  position: relative;
  z-index: 1;
  font-size: 15px;
}

.reason-card:hover {
  transform: translateY(-10px);
}

@media (max-width: 768px) {
  .reasons-grid {
    grid-template-columns: 1fr;
}

.reason-card {
    padding: 10px 10px;
}
}       

/*About Us Page CSS End*/

/*CTA Section CSS Start*/

.cta-section
{
    padding: 20px 0;
    background: var(--dark-bg);
}
.cta-container {
    margin: 0 auto;
    background: var(--dark-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--overlay-dark);
    border: 1px solid rgba(235, 180, 13, 0.1);
    padding: 0;
    transition: var(--transition);
}

.cta-container:hover .cta-image {
    transform: scale(1.05);
    transition: var(--transition);
}

.cta-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.cta-image {
    flex: 1;
    min-width: 300px;
    min-height: 400px; 
    transition: var(--transition);          
}

.cta-content {
    flex: 1;
    min-width: 300px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-tag {
    display: inline-block;
    background: var(--gold-gradient);
    color: var(--darker-bg);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    width: fit-content;
}

.cta-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.3;
    color: var(--text-light);
}

.cta-title span {
    color: var(--text-gold);
    position: relative;
}

.cta-title span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-gradient);
}

.cta-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    line-height: 1.5;
    font-size: 16px;
}

.cta-button {
    display: inline-block;
    background: var(--gold-gradient);
    color: var(--darker-bg);
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid transparent;
    align-self: flex-start;
    font-size: 0.9rem;
}

.cta-button:hover {
    background: transparent;
    color: var(--text-gold);
    border-color: var(--text-gold);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cta-content {
        padding: 20px 20px;
    }
    .cta-title {
        font-size: 1.8rem;
    }
}

/*CTA Section CSS End*/


/*Service Page CSS Start*/

.salon-services-page {
  padding: 20px 0;
  background-color: var(--darker-bg);
}

.services-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.gold-subtitle {
  color: var(--text-gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 15px;
}

.intro-text {
  color: var(--gold-secondary);
  line-height: 1.5;
  margin-bottom: 25px;
}

.gold-divider {
  height: 3px;
  width: 100px;
  margin: 0 auto;
  background: var(--gold-gradient);
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin: 0 auto;
}


.service-card:hover {
  transform: translateY(-10px);
}

.service-media {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-media img {
  transform: scale(1.05);
}

.service-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--gold-gradient);
  color: var(--darker-bg);
  padding: 8px 15px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 0.9rem;
}

.service-content {
  padding: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}


.service-cta {
  display: inline-flex;
  align-items: center;
  color: var(--text-gold);
  text-decoration: none;
  font-weight: bold;
  transition: var(--transition);
  margin: auto 15px 15px 15px;
}

.service-cta i {
  margin-left: 8px;
  transition: var(--transition);
}

.service-cta:hover {
  color: var(--gold-secondary);
}

.service-cta:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .services-container {
    grid-template-columns: 1fr;
    gap: 20px;
}


.service-media {
    height: 200px;
}
}

/*Service Page CSS End*/

/*Salon Studio Section CSS Start*/

.salon-studio {
  padding: 20px 0;
  background-color: var(--darker-bg);
}

.studio-container {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  padding: 0 20px;
}

.studio-image {
  flex: 0.5;
  min-width: 300px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 40px var(--overlay-dark);
  transition: var(--transition);
}

.studio-image:hover
{
    transform: scale(1.05);
    transition: var(--transition);
}

.studio-image .img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.site-logo-image
{
    position: absolute;
    top: 5px;
    right: 5px;
    background: #0f1110;
    border-radius: 10px;
}

.site-logo-image img
{
    height: 65px;
}

.studio-content {
  flex: 1;
  min-width: 300px;
}


.studio-title {
  color: var(--text-light);
  font-size: 2.3rem;
  margin-bottom: 15px;
  line-height: 1.3;
}

.studio-title span {
  color: var(--text-gold);
  position: relative;
}

.studio-title span::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-gradient);
}

.studio-description {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
}

.studio-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.studio-features li {
  padding: 10px 0;
  color: var(--text-light);
  display: flex;
  align-items: center;
}

.studio-features li i {
  color: var(--text-gold);
  margin-right: 15px;
  font-size: 1.1rem;
  width: 25px;
}


@media (max-width: 768px) {
  .studio-container {
    flex-direction: column;
}
.studio-image
{
    min-width: 100%;
}

.studio-image .img {
    height: 400px;
}

.studio-title {
    font-size: 1.8rem;
}
}

/*Salon Studio Section CSS End*/


/*Pricing Page CSS Start*/


.pricing-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.pricing-category {
    background: var(--dark-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    border: 1px solid rgba(235, 180, 13, 0.1);
}

.pricing-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.category-header {
    padding: 20px;
    text-align: center;
    color: var(--dark-bg);
}

.category-header h3 {
    font-size: 26px;
    margin: 0;
    letter-spacing: 2px;
    font-weight: 700;
}

.service-list {
    padding: 20px;
    list-style: none;
}

.service-list li {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-list li:last-child {
    border-bottom: none;
}

.service-name {
    font-size: 16px;
    color: var(--text-light);
}

.service-price {
    font-size: 16px;
    color: var(--text-gold);
    font-weight: bold;
}

.special-offer {
    background: var(--dark-bg);
    border: 1px solid var(--gold-primary);
    border-radius: 8px;
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.offer-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--gold-gradient);
    color: var(--dark-bg);
    padding: 5px 40px;
    transform: rotate(26deg);
    font-weight: bold;
    font-size: 14px;
    border-radius: 20px;
}

.special-offer h3 {
    font-size: 38px;
    margin-bottom: 10px;
    color: var(--text-gold);
}

.special-offer p {
    font-size: 16px;
    margin-bottom: 20px;
}

.price-original {
    font-size: 22px;
    text-decoration: line-through;
    opacity: 0.6;
    margin-bottom: 5px;
}

.price-discounted {
    font-size: 36px;
    color: var(--text-gold);
    font-weight: bold;
    margin-bottom: 20px;
}

.price-discounted span {
    font-size: 14px;
    background: var(--gold-primary);
    color: var(--dark-bg);
    padding: 3px 10px;
    border-radius: 20px;
    margin-left: 10px;
}

.book-now-btn {
    background: var(--gold-gradient);
    color: var(--dark-bg);
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
}

.book-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(235, 180, 13, 0.3);
}

.special-offer-content
{
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-around;
}

/* Base Polygon Style */
.polygon-badge {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px;
  filter: drop-shadow(0 5px 10px rgba(0,0,0,0.3));
}

.polygon-badge .content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.polygon-badge .percent {
  font-weight: bold;
  line-height: 1;
}

.polygon-badge .symbol {
  font-weight: bold;
}

.polygon-badge .text,
.polygon-badge .small-text {
  text-transform: uppercase;
  font-weight: bold;
}

.polygon-badge.hexagon {
  width: 220px;
  height: 240px;
}

.polygon-badge.hexagon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--gold-gradient);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.polygon-badge.hexagon .percent {
  font-size: 92px;
  color: var(--dark-bg);
  display: flex;
  align-items: center;
}

.polygon-badge.hexagon .symbol {
  font-size: 34px;
  color: var(--dark-bg);
  vertical-align: super;
  margin-top: 10px;
}

.polygon-badge.hexagon .text {
  font-size: 24px;
  letter-spacing: 2px;
  color: var(--dark-bg);
  margin-top: -5px;
}


@media (max-width: 768px) {

    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/*Pricing Page CSS End*/

/*Contact Us Page CSS Start*/

.contact-section {
    background-color: var(--darker-bg);
    padding: 20px 0;
    color: var(--text-light);
    position: relative;
}


.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.detail-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--dark-bg);
    padding: 15px;
    border-radius: 8px;
    transition: var(--transition);
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.detail-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-size: 18px;
    flex-shrink: 0;
}

.detail-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-gold);
    font-weight: 700;
}

.detail-content a, 
.detail-content address, 
.detail-content p {
    font-size: 16px;
    transition: var(--transition);
    font-style: normal;
    color: var(--text-light);
}
.detail-content address
{
    margin-bottom: 0;
}

.detail-content a:hover {
    color: var(--text-gold);
    opacity: 1;
}

.social-section {
    background: var(--dark-bg);
    padding: 25px;
    border-radius: 8px;
    margin-top: 10px;
}

.social-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-gold);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition);
    font-size: 16px;
}

.social-links a:hover {
    background: var(--gold-gradient);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.contact-form {
    background: var(--dark-bg);
    padding: 0px 20px 20px 20px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.contact-form-title
{
    padding: 10px 0 10px 0;
    font-weight: 700;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--text-light);
    font-size: 16px;
    transition: var(--transition);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ebb40d'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold-primary);
    background: rgba(255, 255, 255, 0.08);
}

.form-group label {
    position: absolute;
    left: 15px;
    top: 15px;
    color: var(--text-light);
    opacity: 0.7;
    transition: var(--transition);
    pointer-events: none;
    font-size: 16px;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    transform: translateY(-25px) scale(0.9);
    opacity: 1;
    color: var(--text-gold);
    background: var(--dark-bg);
    padding: 0 5px;
}

.submit-btn {
    background: var(--gold-gradient);
    color: var(--dark-bg);
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    transition: var(--transition);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(235, 180, 13, 0.3);
}

.contact-map {
    grid-column: span 2;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-dark);
    pointer-events: none;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-map {
        grid-column: span 1;
        height: 300px;
    }
    
}

@media (max-width: 576px) {
    .contact-form {
        padding: 0;
    }
    .detail-content a, .detail-content address, .detail-content p
    {
        font-size: 14px;
    }
    .contact-form
    {
        order: 1;
    }
    .contact-details
    {
        order: 2;
    }
    .contact-map
    {
        order: 3;
    }
    .detail-card
    {
        padding: 15px;
    }
    .contact-grid
    {
        gap: 20px;
    }    
}
@media(max-width: 520px)
{
    .special-offer-content
    {
        flex-direction: column-reverse;
    }

}

/*Contact Us Page CSS End*/

/*******************************/
/********* Footer CSS **********/
/*******************************/

/* Footer Styles */
.site-footer {
    background: var(--darker-bg);
    color: var(--text-light);
    padding: 70px 0 30px;
    position: relative;
    border-top: 1px solid var(--gold-primary);
}


.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

/* Footer Columns */
.footer-column {
    padding: 0 15px;
}

/* About Column */
.footer-logo {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-light);
}
.footer-logo img
{
    height: 75px;
}

.logo-highlight {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-about {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a:hover {
    background: var(--gold-primary);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

/* Links Column */
.footer-title {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gold-gradient);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--gold-primary);
    border-radius: 50%;
    transition: var(--transition);
}


/* Contact Column */
.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    line-height: 1.5;
}

.contact-item i {
    color: var(--gold-primary);
    margin-right: 15px;
    margin-top: 3px;
    font-size: 16px;
}

.contact-item span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.5;
}

/* Copyright */
.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-column {
        padding: 0;
    }
    
    .footer-title {
        margin-bottom: 15px;
    }
}

/*******************************/
/********* Footer End **********/
/*******************************/

/*Back To Top CSS Start*/

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--darker-bg);
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px var(--overlay-dark);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px var(--overlay-dark);
}

.back-to-top i {
  font-size: 1.2rem;
  transition: var(--transition);
}

.back-to-top:hover i {
  transform: translateY(-3px);
}

/*Back To Top CSS End*/


/*Animation CSS*/

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}


/*ALL Responsive CSS*/

@media(max-width: 767px)
{
    .navbar .navbar-brand
    {
        height: 45px;
    }
    .feature-text p
    {
        font-size: 14px;
    }
    .section-subtitle
    {
        font-size: 14px;
    }
    .service-card p
    {
        font-size: 14px;
    }
    .studio-features li
    {
        font-size: 15px;
    }
    .pricing-btn
    {
        padding: 10px;
        font-size: 14px;
    }
    .plan-features li
    {
        font-size: 14px;
    }
    .footer-about, .footer-links a, .contact-item span
    {
        font-size: 14px;
    }
    .about-text p
    {
        font-size: 14px;
    }
    .signature
    {
        font-size: 1.5rem;
    }
    .reason-card h3
    {
        font-size: 1.3rem;
    }
    .reason-card p
    {
        font-size: 14px;
    }
    .category-header h3
    {
        font-size: 18px;
    }
    .category-header
    {
        padding: 15px;
    }
    .service-name, .service-price
    {
        font-size: 14px;
    }
    .special-offer h3
    {
        font-size: 28px;
    }
    .price-discounted
    {
        font-size: 30px;
    }
    .special-offer p
    {
        font-size: 14px;
    }
    .price-wrapper
    {
        justify-content: flex-start;
    }
    .pricing-header
    {
        text-align: left;
    }
    .member-name
    {
        font-size: 22px;
    }
    .about-meta
    {
        flex-direction: column;
    }
    .service-footer
    {
        padding: 10px 20px;
    }

    .polygon-badge.hexagon .percent
    {
        font-size: 65px;
    }
    .polygon-badge.hexagon {
        width: 190px;
        height: 195px;
    }
    .cta-wrapper {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
    }
    .contact-form-title
    {
        font-size: 20px;
    }
    .cta-tag
    {
        font-size: 0.6rem;
    }
    .price
    {
        font-size: 16px;
    }

}
@media(max-width: 991px)
{
    .hero-content
    {
        float: none;
    }
    .site-footer
    {
        padding: 20px 0 30px;
    }
    .offer-badge
    {
        top: -15px;
        right: 10px;
        transform: rotate(0deg);
    }
    .plan-badge
    {
        top: -47px;
        right: 0;
        transform: rotate(0deg);
    }
    .navbar-nav {
        margin-top: 10px;
    }
    .about-us-content
    {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link:focus,
    .navbar-dark .navbar-nav .nav-link:hover,
    .navbar-dark .navbar-nav .nav-link.active {
        font-size: 14px;
    }
    .cta-content
    {
        padding: 25px;
    }
    .special-offer
    {
        padding: 20px;
    }
    .cta-btn {
        padding: 10px 22px;
        font-size: 12px;
    }

}