/*
==============================================
  SKINCURA PROFESSIONAL STYLING
  Modern, elegant styling with smooth animations
  Maintains existing color scheme (--primary: #7f4e59)
==============================================
*/

/* ============================================
   TYPOGRAPHY & GLOBAL ENHANCEMENTS
============================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', sans-serif;
    --shadow-soft: 0 4px 20px rgba(127, 78, 89, 0.08);
    --shadow-medium: 0 8px 40px rgba(127, 78, 89, 0.12);
    --shadow-strong: 0 15px 50px rgba(127, 78, 89, 0.18);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

body {
    font-family: var(--font-body);
    letter-spacing: 0.02em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.section-head h2,
.text-primary.m-b10 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.03em;
}

/* ============================================
   HEADER ENHANCEMENTS
============================================ */
.site-header {
    position: relative;
    z-index: 1000;
}

.top-bar {
    padding: 10px 0;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.top-bar ul li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.top-bar .fa {
    font-size: 14px;
    opacity: 0.9;
}

.sticky-header.main-bar-wraper {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-soft);
}

.main-bar {
    padding: 5px 0;
    transition: var(--transition-smooth);
}

.logo-header img {
    max-height: 60px;
    transition: var(--transition-smooth);
}

/* Ensure logo doesn't overlap navigation */
.header.center .main-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header.center .header-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
}

/* Center logo layout */
.header.center .header-nav .nav.navbar-nav {
    display: flex;
    align-items: center;
}

.header.center .header-nav .nav.navbar-nav:first-child {
    margin-right: 20px;
}

.header.center .header-nav .nav.navbar-nav:last-child {
    margin-left: 20px;
}

.header.center .logo-header {
    position: relative;
    z-index: 10;
    /* padding: 0 25px; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.header.center .logo-header img {
    max-height: 60px;
    width: auto;
}

/* Navigation styling */
.header-nav .nav > li > a {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 25px 14px;
    position: relative;
    transition: var(--transition-smooth);
}

.header-nav .nav > li > a::before {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.header-nav .nav > li:hover > a::before,
.header-nav .nav > li.active > a::before {
    width: 30px;
}

/* Dropdown menus */
.header-nav .nav > li .sub-menu {
    border-radius: 8px;
    box-shadow: var(--shadow-medium);
    border: none;
    border-top: 3px solid var(--primary);
    padding: 10px 0;
    min-width: 280px !important;
    width: 280px !important;
    animation: dropdownFade 0.3s ease;
    /* Default positioning for left side menus */
    left: 0 !important;
    right: auto !important;
}

/* CRITICAL: Force right alignment for menus with .left class to prevent overflow */
.header-nav .nav > li > .sub-menu.left {
    left: auto !important;
    right: 0 !important;
}

/* Target all submenus in the second navbar (right side of logo) */
.header-nav .nav.navbar-nav:last-child > li > .sub-menu {
    left: auto !important;
    right: 0 !important;
}

/* Desktop-specific submenu positioning */
@media (min-width: 992px) {
    /* Ensure parent li is positioned */
    .header-nav .nav > li {
        position: relative;
    }

    /* First nav group (left of logo) - keep default left alignment */
    .header-nav .nav.navbar-nav:first-child > li > .sub-menu {
        left: 0 !important;
        right: auto !important;
    }

    /* All items in second nav group (right of logo) should align right */
    .header-nav .nav.navbar-nav:last-child > li > .sub-menu {
        left: auto !important;
        right: 0 !important;
    }
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-nav .nav > li .sub-menu li a {
    padding: 12px 25px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: var(--transition-smooth);
}

.header-nav .nav > li .sub-menu li a:hover {
    padding-left: 30px;
    background: rgba(127, 78, 89, 0.05);
}

/* Book Now button */
.booking-btn {
    background: var(--primary) !important;
    border-radius: 30px !important;
    padding: 10px 22px !important;
    font-weight: 600 !important;
    font-size: 12px !important;
    letter-spacing: 0.08em !important;
    box-shadow: 0 4px 15px rgba(127, 78, 89, 0.3);
    transition: var(--transition-smooth) !important;
    margin-left: 10px;
}

.booking-btn:hover {
    transform: translateY(-2px);
    background: #5e3a42 !important;
    box-shadow: 0 8px 25px rgba(127, 78, 89, 0.4) !important;
}

/* ============================================
   HERO/SLIDER SECTION
============================================ */
.fullwidthbanner-container {
    position: relative;
}

.fullwidthbanner-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.fullwidthabanner video {
    filter: brightness(0.95) contrast(1.05);
}

/* ============================================
   SECTION STYLING
============================================ */
.section-full {
    position: relative;
    overflow: hidden;
}

/* Reduce section padding/spacing */
.content-inner {
    padding: 60px 0 !important;
}

.content-inner-1 {
    padding: 50px 0 !important;
}

.content-inner-2 {
    padding: 50px 0 !important;
}

.section-head {
    margin-bottom: 35px;
}

.section-head h2 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-head p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Elegant separator */
.dlab-separator.style-icon {
    position: relative;
    margin: 20px 0;
}

.dlab-separator.style-icon::before,
.dlab-separator.style-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.dlab-separator.style-icon::before {
    right: calc(50% + 30px);
}

.dlab-separator.style-icon::after {
    left: calc(50% + 30px);
}

.dlab-separator.style-icon i {
    font-size: 24px;
    opacity: 0.8;
}

/* ============================================
   PHIACADEMY CAROUSEL SECTION
============================================ */
.blog-carousel .item {
    padding: 15px;
}

.blog-post.blog-style-1 {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    background: #fff;
}

.blog-post.blog-style-1:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.dlab-post-media {
    overflow: hidden;
}

.dlab-post-media img {
    transition: var(--transition-smooth);
}

.blog-post.blog-style-1:hover .dlab-post-media img {
    transform: scale(1.08);
}

/* ============================================
   TRAINING PROGRAMS SECTION
============================================ */
.about-hair-beauty {
    padding: 50px 0;
}

.about-hair-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    position: relative;
}

.about-hair-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.about-hair-content p {
    font-size: 15px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 30px;
    text-align: justify;
}

/* Appointment box */
.about-hair-bx {
    background: linear-gradient(135deg, #fff9f7 0%, #fff 100%);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(127, 78, 89, 0.1);
    transition: var(--transition-smooth);
}

.about-hair-bx:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.about-hair-bx h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 10px;
}

.about-hair-bx h4 {
    font-weight: 500;
    margin-bottom: 25px;
}

/* ============================================
   BUTTONS
============================================ */
.site-button {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 15px 35px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 4px 15px rgba(127, 78, 89, 0.25);
}

.site-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.site-button:hover::before {
    left: 100%;
}

.site-button:hover,
.site-button:focus,
.site-button:active,
.active > .site-button {
    transform: translateY(-3px);
    background-color: #5e3a42 !important;
    border-color: #5e3a42 !important;
    box-shadow: 0 8px 25px rgba(127, 78, 89, 0.35);
}

/* Override pink colors from theme */
.bg-primary,
.site-button,
.pagination > .active > a,
.pagination > .active > span,
.owl-dots-primary-full.owl-theme .owl-dots .owl-dot span,
.testimonial-text.bg-primary {
    background-color: var(--primary) !important;
}

.site-button:active,
.site-button:hover,
.site-button:focus,
.active > .site-button,
.bg-primary-dark,
.pagination > li > a:hover,
.pagination > li > span:hover,
.owl-btn-1.primary .owl-prev:hover,
.owl-btn-1.primary .owl-next:hover {
    background-color: #5e3a42 !important;
}

/* Ensure text colors use theme */
a:hover,
.text-primary,
a.text-primary:hover {
    color: var(--primary) !important;
}

a.text-primary:hover,
a.text-primary:focus {
    color: #5e3a42 !important;
}

/* ============================================
   TESTIMONIALS SECTION
============================================ */
.testimonial-9 {
    background: #fff;
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    position: relative;
    margin: 10px 5px;
}

.testimonial-9::before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 80px;
    color: var(--primary);
    opacity: 0.15;
    position: absolute;
    top: 15px;
    left: 25px;
    line-height: 1;
}

.testimonial-9:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.testimonial-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
}

.testimonial-detail {
    border-top: 1px solid rgba(127, 78, 89, 0.1);
    padding-top: 20px;
}

.testimonial-name {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--primary);
    letter-spacing: 0.05em;
}

/* Owl carousel dots */
.owl-dots-primary-full.owl-theme .owl-dots {
    margin-top: 40px;
}

.owl-dots-primary-full.owl-theme .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.owl-dots-primary-full.owl-theme .owl-dots .owl-dot.active span {
    width: 35px;
    border-radius: 6px;
}

/* ============================================
   ABOUT US SECTION
============================================ */
.spa-about-bx {
    padding: 50px 0;
}

.spa-bx-img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.spa-bx-img::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--primary);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.spa-bx-img img {
    width: 100%;
    height: auto;
    transition: var(--transition-smooth);
}

.spa-bx-img:hover img {
    transform: scale(1.05);
}

.spa-about-content {
    padding-left: 50px;
}

.spa-about-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
    position: relative;
}

.spa-about-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
}

.spa-about-content p {
    font-size: 15px;
    line-height: 1.9;
    color: #555;
    text-align: justify;
    margin-bottom: 30px;
}

/* ============================================
   CONTACT SECTION
============================================ */
.contact-style-1 {
    padding: 50px 0;
}

.contact-style-1 h2 {
    font-size: 42px;
    margin-bottom: 40px;
}

.contact-area {
    background: #fff;
    border-radius: 20px !important;
    border: none !important;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    padding: 40px !important;
}

.contact-area:hover {
    box-shadow: var(--shadow-medium);
}

.contact-area h4 {
    font-family: var(--font-heading);
    font-size: 26px;
    margin-bottom: 15px;
    color: #333;
}

.icon-bx-wraper {
    transition: var(--transition-smooth);
}

.icon-bx-wraper:hover {
    transform: translateX(5px);
}

.icon-bx-xs {
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(127, 78, 89, 0.08);
    border: none !important;
    transition: var(--transition-smooth);
}

.icon-bx-wraper:hover .icon-bx-xs {
    background: var(--primary);
}

.icon-bx-wraper:hover .icon-cell {
    color: #fff !important;
}

.icon-content h6 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.1em;
    margin-bottom: 5px;
}

.icon-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Contact Form */
.bg-gray {
    background: linear-gradient(135deg, #f8f5f6 0%, #fff 100%) !important;
    border-radius: 20px;
    padding: 40px !important;
    box-shadow: var(--shadow-soft);
}

.bg-gray h4 {
    font-family: var(--font-heading);
    font-size: 26px;
    margin-bottom: 25px;
}

.form-control {
    border: 2px solid #eee;
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 14px;
    transition: var(--transition-smooth);
    background: #fff;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(127, 78, 89, 0.1);
}

.form-control::placeholder {
    color: #999;
    font-size: 13px;
}

textarea.form-control {
    min-height: 120px;
    resize: none;
}

/* Map container */
.contact-style-1 iframe {
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

/* Social icons */
.dlab-social-icon-lg li a {
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 50%;
    font-size: 16px;
    transition: var(--transition-smooth);
}

.dlab-social-icon-lg li a:hover {
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 8px 20px rgba(127, 78, 89, 0.3);
}

/* ============================================
   FOOTER
============================================ */
.site-footer {
    background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
}

.footer-top {
    padding: 50px 0 30px;
}

/* Footer White/Light Theme */
.footer-white .footer-top h6,
.footer-white .footer-top .footer-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--primary) !important;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-white .footer-top h6::after,
.footer-white .footer-top .footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-white .widget_services ul li {
    margin-bottom: 12px;
}

.footer-white .widget_services ul li a {
    color: #555 !important;
    font-size: 14px;
    transition: var(--transition-smooth);
    position: relative;
    padding-left: 0;
}

.footer-white .widget_services ul li a:hover {
    color: var(--primary) !important;
    padding-left: 10px;
}

.footer-white .widget_getintuch ul li {
    color: #444 !important;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
    padding-left: 45px;
    position: relative;
}

.footer-white .widget_getintuch ul li i {
    color: var(--primary) !important;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 5px;
}

.footer-white .widget_getintuch ul li strong {
    color: var(--primary) !important;
    display: block;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.footer-white .widget_getintuch ul li a {
    color: #444 !important;
    transition: var(--transition-smooth);
}

.footer-white .widget_getintuch ul li a:hover {
    color: var(--primary) !important;
}

/* Social Icons in Footer */
.footer-white .dlab-social-icon li a {
    background: var(--primary) !important;
    color: #fff !important;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    transition: var(--transition-smooth);
}

.footer-white .dlab-social-icon li a:hover {
    background: #5e3a42 !important;
    transform: translateY(-3px);
}

.footer-bottom {
    background: rgba(127, 78, 89, 0.05);
    padding: 20px 0;
    font-size: 13px;
    border-top: 1px solid rgba(127, 78, 89, 0.1);
}

.footer-bottom span,
.footer-bottom p {
    color: #666 !important;
}

.footer-bottom a {
    color: var(--primary) !important;
    transition: var(--transition-smooth);
}

.footer-bottom a:hover {
    color: #5e3a42 !important;
}

/* ============================================
   FLOATING ELEMENTS
============================================ */
/* Floating CTA Buttons */
.floating-cta {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-cta a {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

/* Ripple effect on hover */
.floating-cta a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.floating-cta a:hover::before {
    width: 100px;
    height: 100px;
}

/* Enhanced hover with scale and rotate */
.floating-cta a:hover {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 8px 25px rgba(0,0,0,0.35);
}

/* Call button specific styles */
.floating-cta .call-btn {
    background: linear-gradient(135deg, var(--primary) 0%, #5e3a42 100%);
    animation: callPulse 2s infinite;
}

.floating-cta .call-btn:hover {
    background: linear-gradient(135deg, #5e3a42 0%, var(--primary) 100%);
    animation: none;
}

.floating-cta .call-btn i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.floating-cta .call-btn:hover i {
    transform: rotate(20deg);
}

/* WhatsApp button specific styles */
.floating-cta .whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    animation: whatsappPulse 2s 0.5s infinite;
}

.floating-cta .whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    animation: none;
}

.floating-cta .whatsapp-btn i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.floating-cta .whatsapp-btn:hover i {
    transform: scale(1.1);
}

/* Pulse animations */
@keyframes callPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(127, 78, 89, 0.3), 0 0 0 0 rgba(127, 78, 89, 0.7);
    }
    50% {
        box-shadow: 0 4px 20px rgba(127, 78, 89, 0.4), 0 0 0 10px rgba(127, 78, 89, 0);
    }
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0);
    }
}

/* Scroll to top */
.scroltop {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary) !important;
    border: none;
    box-shadow: 0 4px 20px rgba(127, 78, 89, 0.4);
    transition: var(--transition-smooth);
    color: #fff !important;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroltop:hover {
    transform: translateY(-5px);
    background: #5e3a42 !important;
    box-shadow: 0 8px 30px rgba(127, 78, 89, 0.5);
    color: #fff !important;
}

.scroltop::before {
    color: #fff !important;
}

/* WhatsApp button */
.whatsapp-float {
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.5);
    }
}

/* Vertical booking button on left side */
.booking-vertical-btn {
    position: fixed;
    left: 25px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: left center;
    background: linear-gradient(135deg, var(--primary) 0%, #5e3a42 100%);
    color: #fff !important;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 16px 32px;
    border-radius: 0 0 25px 25px;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 8px 25px rgba(127, 78, 89, 0.5);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: none;
    animation: bookingPulse 2.5s infinite;
    white-space: nowrap;
}

.booking-vertical-btn::before {
    content: '\f073  ';
    font-family: 'FontAwesome';
    font-size: 16px;
    margin-right: 8px;
}

.booking-vertical-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0 0 25px 25px;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}

.booking-vertical-btn:hover {
    background: linear-gradient(135deg, #5e3a42 0%, var(--primary) 100%);
    color: #fff !important;
    transform: translateY(-50%) translateX(12px) rotate(-90deg);
    box-shadow: 0 12px 40px rgba(127, 78, 89, 0.7);
    border-color: rgba(255, 255, 255, 0.5);
    animation: none;
}

.booking-vertical-btn:hover::after {
    transform: scaleY(1);
}

@keyframes bookingPulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(127, 78, 89, 0.5), 0 0 0 0 rgba(127, 78, 89, 0.7);
    }
    50% {
        box-shadow: 0 8px 30px rgba(127, 78, 89, 0.6), 0 0 0 15px rgba(127, 78, 89, 0);
    }
}

/* ============================================
   ANIMATIONS
============================================ */
/* Fade in up */
.animate-fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade in left */
.animate-fadeInLeft {
    animation: fadeInLeft 0.8s ease forwards;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Fade in right */
.animate-fadeInRight {
    animation: fadeInRight 0.8s ease forwards;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scale in */
.animate-scaleIn {
    animation: scaleIn 0.6s ease forwards;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Float animation */
.animate-float {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Smooth reveal on scroll */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children animation */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
}

.stagger-children.active > *:nth-child(1) { animation: fadeInUp 0.5s 0.1s forwards; }
.stagger-children.active > *:nth-child(2) { animation: fadeInUp 0.5s 0.2s forwards; }
.stagger-children.active > *:nth-child(3) { animation: fadeInUp 0.5s 0.3s forwards; }
.stagger-children.active > *:nth-child(4) { animation: fadeInUp 0.5s 0.4s forwards; }
.stagger-children.active > *:nth-child(5) { animation: fadeInUp 0.5s 0.5s forwards; }

/* ============================================
   RESPONSIVE ADJUSTMENTS
============================================ */
@media (max-width: 991px) {
    .section-head h2,
    .spa-about-content h2,
    .about-hair-content h2,
    .contact-style-1 h2 {
        font-size: 32px;
    }

    .spa-about-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .about-hair-bx {
        margin-top: 40px;
    }

    .footer-top {
        padding: 60px 0 40px;
    }
}

@media (max-width: 767px) {
    .section-head h2,
    .spa-about-content h2,
    .about-hair-content h2,
    .contact-style-1 h2 {
        font-size: 28px;
    }

    .section-full,
    .spa-about-bx,
    .contact-style-1,
    .about-hair-beauty {
        padding: 40px 0 !important;
    }

    .content-inner,
    .content-inner-1,
    .content-inner-2 {
        padding: 40px 0 !important;
    }

    .testimonial-9 {
        padding: 30px 25px;
    }

    .contact-area,
    .bg-gray {
        padding: 30px !important;
    }

    .booking-vertical-btn {
        left: 20px;
        bottom: 50%;
        top: auto;
        transform: translateY(50%) rotate(-90deg);
        font-size: 13px;
        padding: 14px 24px;
        border-radius: 0 0 20px 20px;
    }

    .booking-vertical-btn::before {
        font-size: 14px;
        margin-right: 6px;
    }
}

/* ============================================
   OWL CAROUSEL ARROWS
============================================ */
.owl-btn-center-lr .owl-prev,
.owl-btn-center-lr .owl-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff !important;
    color: var(--primary) !important;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.owl-btn-center-lr .owl-prev:hover,
.owl-btn-center-lr .owl-next:hover {
    background: var(--primary) !important;
    color: #fff !important;
    box-shadow: var(--shadow-medium);
    transform: scale(1.1);
}

/* ============================================
   IMAGE HOVER EFFECTS
============================================ */
.dlab-img-effect {
    overflow: hidden;
    border-radius: 15px;
}

.dlab-img-effect img {
    transition: var(--transition-smooth);
}

.dlab-img-effect:hover img {
    transform: scale(1.1);
}

/* Overlay effect */
.dlab-img-effect.overlay-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(127, 78, 89, 0.8), transparent);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 1;
}

.dlab-img-effect.overlay-primary:hover::before {
    opacity: 1;
}

/* ============================================
   INSTAGRAM REELS SLIDER SECTION
============================================ */
.instagram-reels-slider {
    padding: 10px 0 30px;
}

/* Instagram Follow Button - Smaller Size */
.instagram-reels-slider + .text-center .site-button {
    padding: 12px 28px;
    font-size: 12px;
    letter-spacing: 0.08em;
}

.instagram-reels-slider + .text-center .site-button i {
    font-size: 14px;
}

.instagram-reels-slider .item {
    padding: 10px;
}

.instagram-reel-card {
    display: block;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 40px rgba(127, 78, 89, 0.15);
    transition: var(--transition-smooth);
    text-decoration: none;
}

.instagram-reel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(127, 78, 89, 0.25);
}

.reel-embed-wrapper {
    position: relative;
    background: #fafafa;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.reel-embed-wrapper iframe {
    display: block;
    width: 100%;
    min-height: 500px;
    border: none;
}

.reel-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    background: linear-gradient(135deg, var(--primary), #5e3a42);
    color: #fff;
    transition: var(--transition-smooth);
}

.instagram-reel-card:hover .reel-info {
    background: linear-gradient(135deg, #5e3a42, var(--primary));
}

.reel-info i {
    font-size: 20px;
    color: #fff;
}

.reel-info span {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Instagram Slider Navigation */
.instagram-reels-slider.owl-carousel .owl-nav {
    margin-top: 0;
}

.instagram-reels-slider.owl-carousel .owl-prev,
.instagram-reels-slider.owl-carousel .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #fff !important;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    opacity: 0;
}

.instagram-reels-slider.owl-carousel:hover .owl-prev,
.instagram-reels-slider.owl-carousel:hover .owl-next {
    opacity: 1;
}

.instagram-reels-slider.owl-carousel .owl-prev {
    left: -25px;
}

.instagram-reels-slider.owl-carousel .owl-next {
    right: -25px;
}

.instagram-reels-slider.owl-carousel .owl-prev:hover,
.instagram-reels-slider.owl-carousel .owl-next:hover {
    background: var(--primary) !important;
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.instagram-reels-slider.owl-carousel .owl-prev i,
.instagram-reels-slider.owl-carousel .owl-next i {
    font-size: 20px;
    color: var(--primary);
    transition: var(--transition-smooth);
}

.instagram-reels-slider.owl-carousel .owl-prev:hover i,
.instagram-reels-slider.owl-carousel .owl-next:hover i {
    color: #fff;
}

/* Instagram Slider Dots */
.instagram-reels-slider.owl-theme .owl-dots {
    margin-top: 30px;
}

.instagram-reels-slider.owl-theme .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    background: rgba(127, 78, 89, 0.2);
    transition: var(--transition-smooth);
}

.instagram-reels-slider.owl-theme .owl-dots .owl-dot.active span,
.instagram-reels-slider.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--primary);
    transform: scale(1.2);
}

@media (max-width: 991px) {
    .instagram-reels-slider.owl-carousel .owl-prev,
    .instagram-reels-slider.owl-carousel .owl-next {
        display: none;
    }
}

/* ============================================
   PAGE BANNER / INNER PAGE HEADER
============================================ */
.dlab-bnr-inr {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.dlab-bnr-inr::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(127, 78, 89, 0.85), rgba(127, 78, 89, 0.7));

}

.dlab-bnr-inr-entry {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.dlab-bnr-inr-entry h1 {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.breadcrumb-row ul {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

.breadcrumb-row ul li {
    font-size: 14px;
    letter-spacing: 0.05em;
}

.breadcrumb-row ul li a {
    color: rgba(255,255,255,0.8);
    transition: var(--transition-smooth);
}

.breadcrumb-row ul li a:hover {
    color: #fff;
}

.breadcrumb-row ul li::after {
    content: '/';
    margin-left: 10px;
    color: rgba(255,255,255,0.5);
}

.breadcrumb-row ul li:last-child::after {
    display: none;
}

/* ============================================
   SERVICE CARDS & CONTENT BLOCKS
============================================ */
.content-block {
    padding: 50px 0;
}

.icon-bx-wraper.style1,
.service-box {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    text-align: center;
    margin-bottom: 30px;
}

.icon-bx-wraper.style1:hover,
.service-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.icon-bx-wraper.style1 .icon-bx-md,
.service-box .icon-bx-md {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(127, 78, 89, 0.1), rgba(127, 78, 89, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition-smooth);
}

.icon-bx-wraper.style1:hover .icon-bx-md,
.service-box:hover .icon-bx-md {
    background: var(--primary);
    transform: scale(1.1);
}

.icon-bx-wraper.style1:hover .icon-bx-md i,
.service-box:hover .icon-bx-md i {
    color: #fff !important;
}

.icon-bx-wraper.style1 h4,
.service-box h4 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 15px;
    transition: var(--transition-smooth);
}

.icon-bx-wraper.style1:hover h4 a,
.service-box:hover h4 a {
    color: var(--primary);
}

/* Service list sidebar */
.service-list {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: var(--shadow-soft);
}

.service-list li {
    margin-bottom: 8px;
}

.service-list li a {
    display: block;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    background: #f8f5f6;
    transition: var(--transition-smooth);
}

.service-list li a:hover,
.service-list li.active a {
    background: var(--primary);
    color: #fff;
    transform: translateX(5px);
}

/* Service detail content */
.service-detail-content {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
}

.service-detail-content h2,
.service-detail-content h3 {
    font-family: var(--font-heading);
    color: var(--primary);
    margin-bottom: 20px;
}

.service-detail-content p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.service-detail-content img {
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 25px;
}

/* ============================================
   GALLERY STYLING
============================================ */
.dlab-gallery-box {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.dlab-gallery-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.dlab-gallery-box .dlab-thum-bx {
    overflow: hidden;
}

.dlab-gallery-box .dlab-thum-bx img {
    transition: var(--transition-smooth);
}

.dlab-gallery-box:hover .dlab-thum-bx img {
    transform: scale(1.1);
}

.lightimg {
    position: relative;
}

.lightimg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(127, 78, 89, 0.6), transparent);
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.dlab-gallery-box:hover .lightimg::before {
    opacity: 1;
}

/* ============================================
   BOOKING FORM ENHANCEMENTS
============================================ */
#smartwizard {
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--shadow-medium);
}

#smartwizard h4 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 30px;
}

#smartwizard .form-group {
    margin-bottom: 25px;
}

#smartwizard label {
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #444;
    margin-bottom: 8px;
}

#smartwizard select {
    border: 2px solid #eee;
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 14px;
    width: 100%;
    transition: var(--transition-smooth);
    background: #fff;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%237f4e59' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

#smartwizard select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 4px rgba(127, 78, 89, 0.1);
}

/* ============================================
   VIDEO STYLING
============================================ */
.video-bx {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-play-icon a {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    transition: var(--transition-smooth);
}

.video-play-icon a:hover {
    transform: scale(1.15);
    background: var(--primary);
    color: #fff;
}

/* ============================================
   COUNTER / STATS SECTION
============================================ */
.counter-style-1 {
    text-align: center;
    padding: 40px 20px;
}

.counter-style-1 .counter {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.counter-style-1 .counter-text {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666;
}

/* ============================================
   ACCORDION / FAQ STYLING
============================================ */
.dlab-accordion .acod-head a {
    display: block;
    padding: 20px 25px;
    background: #fff;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    position: relative;
}

.dlab-accordion .acod-head a::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--primary);
    transition: var(--transition-smooth);
}

.dlab-accordion .acod-head a:not(.collapsed) {
    background: var(--primary);
    color: #fff;
}

.dlab-accordion .acod-head a:not(.collapsed)::after {
    content: '-';
    color: #fff;
}

.dlab-accordion .acod-body {
    padding: 25px;
    background: #f8f5f6;
    border-radius: 0 0 10px 10px;
    margin-top: -10px;
    margin-bottom: 10px;
}

/* ============================================
   TEAM SECTION
============================================ */
.team-section {
    text-align: center;
    margin-bottom: 30px;
}

.team-section .dlab-media {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.team-section:hover .dlab-media {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.team-section .dlab-info h4 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 5px;
}

.team-section .dlab-info span {
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
}

/* ============================================
   PRICING TABLES
============================================ */
.pricingtable-wrapper {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.pricingtable-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.pricingtable-wrapper.active {
    background: var(--primary);
    color: #fff;
}

.pricingtable-wrapper.active * {
    color: #fff;
}

.pricingtable-price {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    margin: 20px 0;
}

.pricingtable-title h4 {
    font-family: var(--font-heading);
    font-size: 24px;
}

/* ============================================
   UTILITY CLASSES
============================================ */
.mt-40 {
    margin-top: 40px;
}

.mb-40 {
    margin-bottom: 40px;
}

.pt-80 {
    padding-top: 80px;
}

.pb-80 {
    padding-bottom: 80px;
}

.text-gradient {
    background: var(--primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: var(--primary);
}

/* Divider */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(127, 78, 89, 0.2), transparent);
    margin: 60px 0;
}

/* Decorative dots */
.decorative-dots {
    position: absolute;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(var(--primary) 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.1;
}

/* ============================================
   CENTER HEADER SPECIFIC FIXES
============================================ */
@media (min-width: 992px) {
    .header.center .header-nav.navbar-collapse {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .header.center .nav.navbar-nav {
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
    }

    .header.center .nav.navbar-nav > li {
        white-space: nowrap;
    }

    .header.center .logo-header.mostion {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 100;
    }

    .header.center .header-nav .nav.navbar-nav:first-child {
        padding-right: 100px;
    }

    .header.center .header-nav .nav.navbar-nav:last-child {
        padding-left: 100px;
    }
}

/* ============================================
   MOBILE MENU IMPROVEMENTS
============================================ */
@media (max-width: 991px) {
    .header-nav .nav > li > a {
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
    }

    .header-nav .nav > li > a::before {
        display: none;
    }

    .header-nav .nav > li .sub-menu {
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0;
        background: #f8f5f6;
    }

    .header-nav .nav > li .sub-menu li a {
        padding: 12px 30px;
    }
}

@media (max-width: 767px) {
    .dlab-bnr-inr {
        min-height: 250px;
    }

    .dlab-bnr-inr-entry h1 {
        font-size: 32px;
    }

    #smartwizard {
        padding: 30px 20px;
    }

    .service-detail-content {
        padding: 25px;
    }
}
