@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Playball&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
:root {
    --primary-color: #0D0D0D;
    --secondary-color: #E3007C;
    --accent-color: #CB9600;
    --formal-color: #ffffff;
    --dark-color: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Oswald', sans-serif;
}

html, body {
    background-color: #0D0D0D;
    color: #fff;
    overflow-x: hidden;
    width: 100%;
}
/* Global scrollbar */
::-webkit-scrollbar {
    width: 3.5px;
}


::-webkit-scrollbar-track {
    background: #ffffff;
}


::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 10px;
}


::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Global scrollbar end*/
/* Navbar Styles */
.navbar {
    background-color: var(--primary-color) !important;
    padding: 1rem 0;
    min-height: 90px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1000;
}

.container.px-5 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
}

.navbar-brand {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-start;
}

/* Updated logo positioning - it will hang over the black area */
.main-logo {
    height: 135px;
    position: absolute;
    top: -20px;
    left: 0;
    z-index: 2005;
    transition: transform 0.3s ease;
}

.navbar-collapse {
    flex: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    margin: 0 2rem;
}

.nav-link {
    color: var(--formal-color) !important;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.5rem 0 !important;
    margin: 0 1.2rem;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    white-space: nowrap;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color) !important;
}

/* Mobile Toggle Button */
.menu-toggle-btn {
    width: 40px;
    height: 30px;
    background: none;
    border: none;
    position: relative;
    z-index: 3000;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-toggle-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--formal-color);
    transition: all 0.3s ease-in-out;
}

.menu-toggle-btn.active span:nth-child(1) {
    transform: translateY(13px) rotate(45deg);
}

.menu-toggle-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle-btn.active span:nth-child(3) {
    transform: translateY(-13px) rotate(-45deg);
}

/* Fullscreen Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height */
    background-color: var(--primary-color);
    z-index: 2500;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.85, 0, 0.15, 1);
    display: flex;
    flex-direction: column;
    padding: 120px 30px 50px;
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    transform: translateY(0);
}

.menu-close-btn {
    position: absolute;
    top: 25px;
    right: 30px;
    background: none;
    border: none;
    color: var(--formal-color);
    font-size: 2rem;
    cursor: pointer;
    z-index: 2600;
}

.menu-toggle-btn.active span {
    background-color: var(--formal-color);
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0 0 50px 0;
}

.mobile-nav-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    color: var(--formal-color);
    text-decoration: none;
    font-size: 2.227rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s;
}

.mobile-nav-list a i {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s;
}

.mobile-nav-list a:hover,
.mobile-nav-list a.active {
    color: var(--secondary-color);
}

.mobile-nav-list a:hover i,
.mobile-nav-list a.active i {
    opacity: 1;
    transform: translateX(0);
}

.menu-footer {
    margin-top: auto;
}

.social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.social-grid a {
    color: var(--formal-color);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    transition: 0.3s;
}

.social-grid a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

/* Hero Section Layout - 4 Columns */
.hero-section {
    height: calc(100vh - 90px);
    width: 100%;
    position: relative;
}

.hero-flex-container {
    display: flex;
    height: 100%;
    width: 100%;
}

/* Column 1: Social Sidebar */
.col-socials {
    width: 70px;
    background-color: #1f1f1f;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 100; /* Priority interaction layer */
}

.social-links-vertical {
    display: flex;
    flex-direction: column;
    gap: 110px;
}

.social-links-vertical a {
    color: #FEFEFE;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    transform: rotate(-90deg);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    padding: 12px 25px;
    border-radius: 40px;
    z-index: 1;
    /* Smooth out the initial state to prevent focus flicker */
    transform-origin: center;
    backface-visibility: hidden;
}

.social-links-vertical a i {
    transform: rotate(90deg); /* Maintain icon orientation */
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-size: 1.15rem;
    min-width: 20px;
    display: flex;
    justify-content: center;
}

.social-links-vertical a:hover {
    /* STAY AT -90 TO PREVENT SHEDDING/FLICKER */
    transform: rotate(-90deg) scale(1.1);
    color: #ffffff !important;
    /* Wonderful Glow Effect */
    background: rgba(227, 0, 124, 0.1);
    box-shadow: 
        0 0 20px rgba(227, 0, 124, 0.3),
        inset 0 0 15px rgba(227, 0, 124, 0.2);
    border: 1px solid var(--secondary-color);
}

.social-links-vertical a:hover i {
    transform: rotate(90deg) scale(1.4);
    color: var(--secondary-color);
    filter: drop-shadow(0 0 8px var(--secondary-color));
}

/* Column 2: Grayscale Man Image */
.col-man-image {
    width: 290px;
    height: 100%;
    overflow: hidden;
}

.col-man-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

/* Column 3: Black content area (where logo hangs above) */
.col-hero-content {
    background-color: #1f1f1f;
    width: 265px;
    /* Width matching the hanging logo area */
    height: 100%;
    z-index: 10;
    flex-shrink: 0;
}

/* Column 4: Big Salon Image */
.col-main-image {
    flex-grow: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.col-main-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    pointer-events: none;
}

.col-main-image img,
.col-main-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 0;
}

.hero-text-content {
    position: absolute;
    left: 360px;
    top: 55%;
    transform: translateY(-50%);
    z-index: 100;
    width: max-content;
}

.hero-main-title {
    font-size: 6rem;
    line-height: 0.95;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

#dynamic-text {
    display: inline-block;
    transition: all 0.5s ease-in-out;
    color: var(--secondary-color);
}

.fade-out {
    opacity: 0;
    transform: translateY(20px);
}

.fade-in {
    opacity: 0;
    transform: translateY(-20px);
}

.hero-description {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 690px;
}

.hero-btns-group {
    display: flex;
    gap: 15px;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .navbar {
        min-height: 70px;
    }

    .main-logo {
        height: 80px;
        top: 0;
        position: relative;
    }

    .hero-section {
        height: calc(100vh - 70px);
        height: calc(100dvh - 70px);
        position: relative;
        overflow: hidden;
    }

    .hero-flex-container {
        height: 100%;
    }

    /* Hide side columns in mobile/tablet */
    .col-socials, .col-man-image, .col-hero-content {
        display: none !important;
    }

    .col-main-image {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }

    .hero-text-content {
        position: absolute;
        left: 20px;
        right: 20px;
        top: 40%;
        transform: translateY(-50%);
        width: auto;
        text-align: left;
        padding: 0;
        z-index: 10;
        display: block !important;
    }

    .hero-main-title {
        font-size: 3.5rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }

    .hero-btns-group {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .hero-btns-group .btn-fold {
        width: 100%;
    }
.container.px-5{
    padding-left: 10px !important;
    padding-right: 10px;
}
}

@media (max-width: 575px) {
    .hero-main-title {
        font-size: 2.8rem;
    }
    
    .mobile-nav-list a {
        font-size: 1.8rem;
    }
}

@media (min-width: 992px) and (max-width: 1023px) {
    .hero-main-title{
        font-size: 4rem !important;
        line-height: 1.2;
    }
    .main-logo{
    height: 85px;
    }
    .hero-description {
    font-size: 1.3rem;
    max-width: 640px;
}
.col-hero-content{
    width: 180px;
}
}
@media (min-width: 1024px) and (max-width: 1366px)  {

    .hero-main-title{
        font-size: 4rem !important;
        line-height: 1.2;
    }
    .main-logo{
    height: 85px;
    }
    .col-man-image {
    width: 350px;
    height: 100%;
    overflow: hidden;
}
.col-hero-content{
    width: 200px;
}
}

@media (min-width: 1367px) {
.main-logo{
    height: 95px;
}
}

/* About Section Styles */
.lk-about-section-classname {
    padding: 100px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.about-bg-layer {
    position: absolute;
    bottom: -40px;
    left: -200px;
    z-index: 1;
    width: 80%;
    opacity: 1;
    pointer-events: none;
}

.about-main-image {
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    max-width: 600px;
    height: 450px; /* Fixed height for image stacking */
    overflow: hidden;
    border-radius: 8px;
}

.about-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.about-slide.active {
    opacity: 1;
    z-index: 1;
}

.about-logo {
    max-width: 180px;
}

.about-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.about-desc {
    font-family: 'Rubik', sans-serif;
    color: #666;
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.btn-black:hover {
    background-color: var(--secondary-color);
    color: #fff;
    transform: translateY(-5px);
}

/* Responsive adjustments for About Section */
@media (max-width: 991px) {
    .about-logo {
        display: none !important;
    }
    .about-main-image {
        height: 350px;
    }
    .about-title {
        font-size: 2.8rem;
    }
    .about-bg-layer {
        left: -30px;
        width: 100%;
    }
}

@media (max-width: 575px) {
    .lk-about-section-classname {
        padding: 60px 0;
    }
    .about-title {
        font-size: 2.2rem;
    }
}
/* Features */

.lk-features-prefix {
    position: relative;
    padding: 120px 0 80px;
    background-color: #ffffff; /* Bottom half background */
    overflow: hidden;
}

/* New Split Background Logic */
.features-split-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 600px; /* Adjust height to cover roughly half of the 3 images */
    z-index: 0;
    overflow: hidden;
}

.features-bg-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f5f5f5; /* Figma requested color */
    background-image: url('../assets/Background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1; /* Fully visible as per user request */
}

/* Semi-transparent overlay removed to keep Background.png visible */

.features-bg-watermark {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    width: 85%;
    max-width: 1100px;
    opacity: 0.8; /* Increased visibility as per request */
    pointer-events: none;
}

.features-bg-watermark img {
    width: 100%;
    height: auto;
}

.features-header {
    position: relative;
    z-index: 2;
    margin-bottom: 70px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.features-title {
    font-size: 4rem;
    font-weight: 800;
    color: #252525;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 1px;
    list-style: 50px;
}

.features-subtitle {
    color: #707070;
    font-size: 1.25rem;
    /* font-weight: 400; */
    line-height: 1.2;
    max-width: 700px;
    margin: 0 auto;
    font-family: "Oswald", sans-serif;
}

.features-cards-row {
    position: relative;
    z-index: 3;
    margin-top: -18px;
}

.feature-card {
    position: relative;
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding-left: 55px;
}

/* .feature-card:hover {
    transform: translateY(-15px);
} */

.feature-image {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    /* border-radius: 4px; */
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.feature-card:hover .feature-image img {
    transform: scale(1.15);
    cursor: pointer;
}

/* Side Label Styles */
.side-label {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 75px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 4;
    color: #fff;
    transition: width 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    cursor: pointer;
}

.feature-card:hover .side-label {
    width: 100%;
}

.side-label .label-content {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 1.75rem;
    white-space: nowrap;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.feature-card:hover .side-label .label-content {
    writing-mode: horizontal-tb;
    transform: rotate(0deg);
    flex-direction: column;
    gap: 15px;
}

.side-label .label-content i {
    transform: rotate(90deg);
    font-size: 1.6rem;
    transition: transform 0.6s ease;
}

.feature-card:hover .side-label .label-content i {
    transform: rotate(0deg);
}

.label-content img {
    width: 35px;
    transition: transform 0.6s ease, width 0.6s ease;
}

.feature-card:hover .label-content img {
    width: 60px; /* Make icon larger when centered */
}

/* Specific rotation for 2nd and 3rd card icons */
.feature-card:hover .side-label.makeup .label-content img,
.feature-card:hover .side-label.skin-care .label-content img {
    transform: rotate(90deg);
}

/* Triangle arrow pointing into image */
.side-label::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    z-index: 5;
    transition: opacity 0.3s ease;
}

.feature-card:hover .side-label::after {
    opacity: 0;
}

/* Color variations */
.side-label.hair-essentials {
    background-color: #E3007C;
}
.side-label.hair-essentials::after {
    border-left: 12px solid #E3007C;
}

.side-label.makeup, 
.side-label.skin-care {
    background-color: #CB9600;
}
.side-label.makeup::after,
.side-label.skin-care::after {
    border-left: 12px solid #CB9600;
}


/* Responsive adjustments */
@media (max-width: 1199px) {
    .features-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 991px) {
    .features-title {
        font-size: 2.8rem;
    }
    .feature-card {
        padding-left: 45px;
    }
    .side-label {
        width: 45px;
    }
    .side-label .label-content {
        font-size: 0.95rem;
        gap: 15px;
    }
    .side-label .label-content i {
        font-size: 1.3rem;
    }
    .features-split-bg {
        height: 500px;
    }
}

@media (max-width: 767px) {
    .features-cards-row {
        height: 412px; /* Fixed height to contain the stack */
        position: relative;
        margin-top: 40px;
        display: block !important;
    }
    
    .features-cards-row > div {
        position: absolute !important;
        width: 100% !important;
        left: 0;
        transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        cursor: pointer;
    }

    /* Stack positioning - Background cards peak from TOP */
    .features-cards-row > div:nth-child(1) { top: 0; z-index: 1; transform: scale(0.9); }
    .features-cards-row > div:nth-child(2) { top: 45px; z-index: 2; transform: scale(0.95); }
    .features-cards-row > div:nth-child(3) { top: 90px; z-index: 3; transform: scale(1); }

    /* Active State (via JS) */
    .features-cards-row > div.stack-active {
        top: 160px !important; /* Move to bottom of stack area */
        z-index: 10 !important;
        transform: scale(1) translateY(0) !important;
    }

    /* Adjust sibling items when any item is active */
    .features-cards-row > div.stack-behind-1 { top: 0px !important; z-index: 1 !important; transform: scale(0.9) !important; }
    .features-cards-row > div.stack-behind-2 { top: 80px !important; z-index: 2 !important; transform: scale(0.95) !important; }

    .features-cards-row > div.stack-active .feature-card {
        box-shadow: 0 -20px 60px rgba(0,0,0,0.4);
    }

    /* Transform side-label to top-label on mobile */
    .feature-card {
        padding-left: 0;
        padding-top: 60px;
        margin-bottom: 0;
        background: #fff;
        border-radius: 15px;
        overflow: hidden;
    }

    .side-label {
        width: 100% !important;
        height: 60px;
        top: 0;
        left: 0;
        right: 0;
        bottom: auto;
        flex-direction: row;
        writing-mode: horizontal-tb;
        padding: 0 20px;
        justify-content: flex-start;
    }

    .side-label .label-content {
        writing-mode: horizontal-tb;
        transform: rotate(0deg);
        flex-direction: row;
        font-size: 1.1rem;
        gap: 12px;
    }

    .side-label::after {
        display: none;
    }

    .feature-image {
        border-radius: 0;
        box-shadow: none;
        aspect-ratio: 16/10;
    }

    .features-split-bg {
        height: 600px;
    }
    
    .lk-features-prefix {
        padding-bottom: 150px; 
    }

    .feature-card:hover .feature-image img {
        transform: none !important;
    }

    .feature-card:hover .side-label {
        width: 100% !important;
    }

    .feature-card:hover .side-label .label-content {
        writing-mode: horizontal-tb !important;
        transform: none !important;
        flex-direction: row !important;
        gap: 12px !important;
    }

    .feature-card:hover .label-content img {
        width: 35px !important;
        transform: inherit !important;
    }

    .feature-card:hover .side-label.makeup .label-content img,
    .feature-card:hover .side-label.skin-care .label-content img {
        transform: rotate(0deg) !important;
    }
}

/* ── Services Data Block ── */
.lk-service-section-data {
    position: relative;
    background-color: #161616;
    padding: 90px 0 60px; 
    overflow: visible; 
    width: 100%;
}

.ssd-bg-watermark {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1100px;
    z-index: -1;
    pointer-events: none;
    opacity: 0.35;
}

.ssd-bg-watermark img {
    width: 100%;
    height: auto;
}

/* Header */
.ssd-header {
    margin-bottom: 50px;
    position: relative;
}

.ssd-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.ssd-subtitle {
    font-family: 'Rubik', sans-serif;
    color: rgba(255,255,255,0.65);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Service Boxes */
.ssd-boxes-row {
    margin: 10px auto 0;
    max-width: 800px; 
}

.ssd-box {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    border-radius: 7px;
    margin: 0 auto;
    max-width: 175px; 
    cursor: pointer;
    perspective: 1000px; 
    transform-style: preserve-3d;
}

.ssd-box:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.ssd-box-icon {
    width: 59px;
    height: 55px;
    object-fit: contain;
    margin-bottom: 16px;
    filter: invert(14%) sepia(97%) saturate(6055%) hue-rotate(305deg) brightness(100%) contrast(105%);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), filter 0.6s ease;
}

.ssd-box:hover .ssd-box-icon {
    transform: translateZ(40px) rotateY(15deg) scale(1.1);
    filter: drop-shadow(15px 15px 10px rgba(0,0,0,0.15)) invert(14%) sepia(97%) saturate(6055%) hue-rotate(305deg) brightness(100%) contrast(105%);
}

.ssd-box-label {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ── SSD Info Row Styles ── */
.ssd-info-container {
    max-width: 1240px;
    margin-top: 100px; 
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.ssd-info-row {
    align-items: flex-start !important; 
}

.ssd-info-card {
    min-height: 440px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ssd-info-card:hover {
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

.freshness-card:hover, .video-card:hover {
    transform: translateY(10px); 
}

.work-hours-card:hover {
    transform: translateY(-10px);
}

.work-hours-card {
    background: url('../assets/time-bg.png') no-repeat center center;
    background-size: cover;
    padding: 40px;
    height: 480px; 
}

.work-hours-card .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85); 
    z-index: 1;
}

.work-hours-card .card-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.card-info-title {
    font-family: 'Oswald', sans-serif;
    color: var(--secondary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.card-info-text {
    font-family: 'Rubik', sans-serif;
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
    line-height: 1.5;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
}

.hours-list li:last-child {
    border-bottom: none;
}

.closed-label {
    color: var(--accent-color);
    font-weight: bold;
}

.freshness-card {
    background-color: var(--accent-color);
    padding: 45px 40px;
    text-align: center;
    z-index: 2;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 20px 20px; 

}

.freshness-card::before,
.freshness-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.freshness-card::before {
    background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 50%),
                linear-gradient(45deg, rgba(0,0,0,0.05) 0%, transparent 40%);
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.freshness-card::after {
    background: linear-gradient(315deg, rgba(255,255,255,0.12) 0%, transparent 60%),
                linear-gradient(225deg, rgba(0,0,0,0.05) 0%, transparent 40%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.ssd-info-card .card-content {
    position: relative;
    z-index: 5;
}

.freshness-card .card-content {
    z-index: 2;
}

.fresh-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.fresh-text {
    font-family: 'Rubik', sans-serif;
    color: #ffffff;
    font-size: 1.05rem;
    margin-bottom: 35px;
    opacity: 0.9;
}

.btn-pink {
    background-color: var(--secondary-color) !important;
}

.video-card {
    height: 350px;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.video-thumbnail::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
}

.play-btn {
    position: relative;
    z-index: 3;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-btn:hover {
    transform: scale(1.1);
}

.play-icon-wrapper {
    width: 100px;
    height: 100px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--secondary-color);
    padding-left: 8px;
    box-shadow: 0 0 30px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 991px) {
    .ssd-boxes-row {
        max-width: 600px; 
        margin-left: auto;
        margin-right: auto;
    }
    .ssd-box {
        max-width: 100%;
        padding: 50px 15px;
    }
    .ssd-info-card {
        min-height: auto;
        padding: 50px 30px;
        transform: none !important; 
        margin-bottom: 20px;
    }
    .video-thumbnail {
        height: 350px;
    }
    .fresh-title {
        font-size: 2.22rem;
    }
    .lk-service-section-data {
        padding-bottom: 40px;
    }
}

#videoModal .modal-dialog {
    max-width: 900px;
}

#videoModal .modal-content {
    background-color: #000;
    box-shadow: 0 0 60px rgba(0,0,0,0.9);
    border-radius: 15px;
    overflow: visible; 
    border: 2px solid var(--accent-color);
}

.modal-cancel-btn {
    background-color: var(--secondary-color);
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    position: absolute;
    top: -25px;
    right: -25px;
    z-index: 100;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-cancel-btn:hover {
    transform: rotate(90deg) scale(1.1);
    background-color: var(--accent-color);
}

.modal-backdrop.show {
    opacity: 0.8;
    backdrop-filter: blur(8px); 
}

.lk-services-section-classname {
    position: relative;
    padding: 35px 0;
    background-color: var(--accent-color);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.services-bg-animated {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.15; 
}

.svg-flow-track {
    display: flex;
    width: fit-content;
    height: 100%;
    align-items: center;
    animation: flowLeft 36s linear infinite;
}

.svg-item {
    padding: 0 40px;
    flex-shrink: 0;
    color: #ffffff;
    display: flex;
    align-items: center;
}

.svg-item svg {
    height: 100px;
    width: auto;
    display: block;
}

.svg-item.svg-big svg    { height: 160px; }
.svg-item.svg-medium svg { height: 120px; }
.svg-item.svg-small svg  { height: 65px;  }

.svg-item.pos-up       { transform: translateY(-22px); }
.svg-item.pos-way-up   { transform: translateY(-38px); }
.svg-item.pos-down     { transform: translateY(22px);  }
.svg-item.pos-way-down { transform: translateY(38px);  }

@keyframes flowLeft {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.svg-flow-track .svg-item:nth-child(6n+1) svg { height: 155px; }
.svg-flow-track .svg-item:nth-child(6n+1) { transform: translateY(-28px); }

.svg-flow-track .svg-item:nth-child(6n+2) svg { height: 115px; }
.svg-flow-track .svg-item:nth-child(6n+2) { transform: translateY(24px); }

.svg-flow-track .svg-item:nth-child(6n+3) svg { height: 70px; }
.svg-flow-track .svg-item:nth-child(6n+3) { transform: translateY(-40px); }

.svg-flow-track .svg-item:nth-child(6n+4) svg { height: 160px; }
.svg-flow-track .svg-item:nth-child(6n+4) { transform: translateY(36px); }

.svg-flow-track .svg-item:nth-child(6n+5) svg { height: 75px; }
.svg-flow-track .svg-item:nth-child(6n+5) { transform: translateY(-18px); }

.svg-flow-track .svg-item:nth-child(6n+6) svg { height: 120px; }
.svg-flow-track .svg-item:nth-child(6n+6) { transform: translateY(30px); }

.cta-text {
    font-family: 'Oswald', sans-serif;
    font-size: 50px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lk-services-section-classname .btn-fold {
    background-color: var(--secondary-color);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    padding: 15px 40px;
}

@media (max-width: 991px) {
    .cta-text {
        font-size: 2.2rem;
    }
    .svg-item svg {
        height: 80px;
    }
}

@media (max-width: 767px) {
    .cta-text {
        font-size: 1.6rem;
    }
    .lk-services-section-classname {
        padding: 60px 0;
    }
}

.lk-gallery-section {
    position: relative;
    padding: 100px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.gal-split-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 950px; 
    z-index: 0;
    overflow: hidden;
}

.gal-bg-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/background-gallery.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1; 
}

.gal-header-container {
    position: relative;
    z-index: 1;
}

.gal-header {
    margin-bottom: 60px;
    position: relative;
}


.gal-bg-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1000px;
    z-index: -1;
    pointer-events: none;
    opacity: 0.65; 
}

.gal-bg-watermark img {
    width: 100%;
    height: auto;
}

.gal-title {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.gal-subtitle {
    font-family: 'Rubik', sans-serif;
    color: #666;
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.gal-grid-row {
    margin-top: 40px;
}

.gal-img-box {
    display: block;
    position: relative;
    overflow: hidden;
    height: 480px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    text-decoration: none;
}

.gal-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; 
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(227, 0, 124, 0.85); 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.gal-img-box:hover .gal-overlay {
    opacity: 1;
}

.gal-link-icon {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gal-link-text {
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.gal-line {
    width: 60px;
    height: 3px;
    background-color: #ffffff;
    margin-top: 15px;
    transform: scaleX(0);
    transition: transform 0.4s ease 0.2s;
    transform-origin: left;
}

.gal-img-box:hover .gal-link-icon,
.gal-img-box:hover .gal-link-text {
    transform: translateY(0);
}

.gal-img-box:hover .gal-line {
    transform: scaleX(1);
}

.gal-img-box:hover img {
    transform: scale(1.1);
}

/* ── Mobile Gallery Adjustments ── */
@media (max-width: 767px) {
    .gal-img-box {
        height: 280px;
    }

    .gal-overlay {
        opacity: 1 !important; 
        top: auto;
        bottom: 0;
        height: 45px;
        background-color: var(--secondary-color);
        flex-direction: row;
        padding: 0 15px;
        gap: 8px;
        justify-content: flex-start;
    }

    .gal-link-icon {
        font-size: 1rem;
        margin-bottom: 0;
        transform: none !important;
    }

    .gal-link-text {
        font-size: 0.85rem;
        transform: none !important;
    }

    .gal-line {
        display: none;
    }

    .gal-header {
        margin-bottom: 30px;
    }

    .gal-title {
        font-size: 2.5rem;
    }
}


/* Responsive */
@media (max-width: 1199px) {
    .gal-img-box { height: 400px; }
}

@media (max-width: 991px) {
    .gal-title { font-size: 3rem; }
    .gal-img-box { height: 320px; }
    .lk-gallery-section::before { height: 75%; }
}

@media (max-width: 767px) {
    .gal-title { font-size: 2.5rem; }
    .gal-img-box { height: 280px; }
    .lk-gallery-section { padding: 60px 0; }
}

/* ── Pricing Section Styles ── */
.lk-pricing-section {
    position: relative;
    padding: 120px 0;
    min-height: 800px;
    background: url('../assets/price-bg.png') no-repeat center center;
    background-size: cover;
}

/* Darkist overlay */
.pricing-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    z-index: 1;
}

.pricing-container {
    position: relative;
    z-index: 2;
}

.pricing-header {
    margin-bottom: 60px;
}

.pricing-title {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* White box wrapper for content */
.pricing-tabs-wrapper {
    background-color: #ffffff;
    padding: 70px 60px;
    border-radius: 4px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

/* Nav Tabs styling as centered boxes */
.pricing-nav {
    border-bottom: none !important;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
}

.pricing-nav .nav-item {
    flex: 1;
    max-width: 170px;
}

.pricing-nav .nav-link {
    width: 100%;
    height: 135px;
    background-color: #ffffff;
    border: 1px solid #e5e5e5 !important;
    border-radius: 6px !important;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.pricing-nav .nav-link img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    /* Default gray/light state */
    filter: grayscale(1) opacity(0.5);
}

.pricing-nav .nav-link span {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 0.5px;
    color: #888; /* Gray by default */
    transition: color 0.3s ease;
}

/* Active and Hover states */
.pricing-nav .nav-link:hover,
.pricing-nav .nav-link.active {
    border-color: var(--accent-color) !important;
    box-shadow: 0 10px 30px rgba(203, 150, 0, 0.1);
}

.pricing-nav .nav-link:hover img,
.pricing-nav .nav-link.active img {
    filter: none;
    filter: invert(14%) sepia(97%) saturate(6055%) hue-rotate(305deg) brightness(100%) contrast(105%);
}

.pricing-nav .nav-link:hover span,
.pricing-nav .nav-link.active span {
    color: var(--secondary-color); /* Pink when active/hover */
}

.pricing-nav .nav-link.active {
    background-color: #fff;
}

/* Pricing Loader */
.tab-content.pricing-content {
    position: relative;
    min-height: 400px;
}

.pricing-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none; /* Hidden by default */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.8);
}

.pricing-loader.active {
    display: flex;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(227, 0, 124, 0.1);
    border-left-color: var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Hide content when loading */
.tab-pane.loading-pane {
    display: none !important;
}

/* Price Item Card */
.price-item {
    background-color: #FDF8F2; /* Warm nude background */
    display: flex;
    align-items: center;
    padding: 15px 25px;
    border-radius: 5px;
    transition: all 0.3s ease;
    min-height: 95px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.price-item:hover {
    transform: scale(1.02);
    background-color: #ffffff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.price-avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 2px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.price-info {
    flex-grow: 1;
}

.price-info h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1px;
    text-transform: capitalize;
}

.price-info p {
    font-family: 'Rubik', sans-serif;
    font-size: 0.9rem;
    color: #888;
    margin: 0;
}

.price-val {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-left: 15px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .pricing-tabs-wrapper { padding: 40px 25px; }
    .pricing-nav {
        justify-content: center !important;
        gap: 15px !important;
    }
    .pricing-nav .nav-item { 
        flex: 0 0 calc(50% - 15px) !important;
        max-width: calc(50% - 15px) !important;
        margin: 0 !important;
    }
    .pricing-title { font-size: 3rem; }
}

@media (max-width: 767px) {
    .price-item { 
        flex-direction: column; 
        text-align: center; 
        padding: 15px 10px;
        min-height: 160px;
    }
    .price-avatar {
        margin-right: 0;
        margin-bottom: 12px;
        width: 55px;
        height: 55px;
    }
    .price-info p {
        display: none !important; /* Hide description on mobile as requested */
    }
    .price-info h4 {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }
    .price-val { 
        font-size: 1.4rem;
        margin-left: 0;
        margin-top: auto;
    }
}

@media (max-width: 575px) {
    .pricing-nav { 
        gap: 10px !important; 
    }
    .pricing-nav .nav-item { 
        flex: 0 0 calc(50% - 10px) !important;
        max-width: calc(50% - 10px) !important;
    }
    .pricing-nav .nav-link { height: 110px; }
    .pricing-title { font-size: 2.22rem; }
}

/* ── Appointment Form Section Styles ── */
.lk-salon-form-section {
    position: relative;
    padding: 100px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.form-split-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%; /* Covers top half and a bit more */
    background: url('../assets/form-bg.png') no-repeat center center;
    background-size: cover;
    z-index: 0;
}

/* Floating Icons */
.form-floating-icon {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    max-width: 150px;
}

.form-floating-icon.left-icon {
    left: 5%;
    top: 20%;
    /* Animation removed as requested */
}

.form-floating-icon.right-icon {
    right: 5%;
    top: 15%;
}

.form-floating-icon img {
    width: 100%;
    height: auto;
    opacity: 0.8;
}

@keyframes rounding {
    0%, 100% { transform: rotate(-5deg) translateY(0); }
    50% { transform: rotate(15deg) translateY(-20px); }
}

.form-main-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1250px; /* Increased width */
    margin: 0 auto;
    box-shadow: 0 40px 100px rgba(0,0,0,0.15);
    background-color: #fff;
    border-radius: 4px;
    overflow: hidden;
}

.form-side-img {
    height: 100%;
    min-height: 460px; /* Decreased height */
}

.form-side-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-center-content {
    background-color: var(--accent-color);
    padding: 30px 45px; /* Decreased vertical padding */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
}

.form-subtitle {
    font-family: 'Rubik', sans-serif;
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    margin-bottom: 25px; /* Reduced margin */
    line-height: 1.6;
}

/* ── Advanced Animated Inputs ── */
.lk-input {
    background-color: #ffffff !important;
    border: 1.5px solid rgba(0, 0, 0, 0.03) !important;
    border-radius: 12px !important;
    padding: 18px 28px !important;
    font-family: 'Rubik', sans-serif;
    font-size: 1rem;
    color: #222;
    box-shadow: 
        0 4px 10px rgba(0,0,0,0.02),
        inset 0 0 0 0 transparent;
    transition: 
        transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.4s ease,
        border-color 0.4s ease,
        background-color 0.4s ease !important;
    outline: none !important;
    position: relative;
}

.lk-input:hover {
    transform: translateY(-4px) scale(1.005);
    border-color: rgba(227, 0, 124, 0.2) !important; /* Soft Pink tint */
    box-shadow: 
        0 12px 30px rgba(0,0,0,0.06),
        0 4px 6px rgba(0,0,0,0.02) !important;
}

.lk-input:focus {
    transform: translateY(-6px) scale(1.02);
    background-color: #ffffff !important;
    border-color: var(--secondary-color) !important;
    box-shadow: 
        0 20px 45px rgba(227, 0, 124, 0.12), 
        0 10px 15px rgba(0,0,0,0.05),
        0 0 0 5px rgba(227, 0, 124, 0.05) !important;
}

/* Placeholder Animation */
.lk-input::placeholder {
    color: #bbb;
    transition: all 0.3s ease;
    font-weight: 300;
}

.lk-input:focus::placeholder {
    transform: translateX(10px);
    opacity: 0;
}

/* Dropdown/Select Special Look */
select.lk-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23E3007C' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 25px center;
}

.lk-input::placeholder {
    color: #aaa;
}

/* Specific styling for Date/Time picker */
input[type="datetime-local"].lk-input {
    color: #555;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.btn-appointment {
    background-color: var(--secondary-color);
    color: #ffffff;
    border: none;
    padding: 18px 45px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
}

.btn-appointment:hover {
    background-color: #c2006a;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(227, 0, 124, 0.3);
}

/* Responsive */
@media (max-width: 1199px) {
    .form-title { font-size: 2.5rem; }
    .form-center-content { padding: 40px 30px; }
}

@media (max-width: 991px) {
    .lk-salon-form-section { padding: 60px 0; }
    .form-side-img { min-height: 300px; display: none; }
    .form-floating-icon { display: none; }
}

/* ── Feedback Section Styles ── */
.ik-salon-feedback-section {
    padding: 120px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.feedback-header {
    margin-bottom: 80px;
    z-index: 1;
}

.feedback-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -80%);
    z-index: -1;
    width: 100%;
    max-width: 650px;
    opacity: 1;
}

.feedback-watermark img {
    width: 100%;
    height: auto;
}

.feedback-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

/* ── Feedback Slider Rebuild ── */
.feedback-slider-container {
    padding: 30px 0;
    margin-top: 40px;
    overflow: hidden;
    position: relative;
    cursor: grab;
    user-select: none;
}

.feedback-slider-container:active {
    cursor: grabbing;
}

.feedback-slider-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
}

.feedback-card {
    flex: 0 0 calc((100% - 60px) / 3); /* 3 cards on desktop */
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    min-height: 380px;
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.4s ease;
}

.feedback-card:hover {
    transform: translateY(-8px);
}

.card-header-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.feedback-brand {
    max-height: 35px;
    width: auto;
    object-fit: contain;
}

.feedback-quote {
    height: 40px;
    opacity: 0.1;
}

.feedback-text {
    font-family: 'Rubik', sans-serif;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 40px;
    font-style: italic;
    flex-grow: 1;
}

.feedback-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary-color);
}

.author-meta h5 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #222;
    margin: 0;
}

.author-role {
    font-family: 'Rubik', sans-serif;
    font-size: 0.85rem;
    color: var(--secondary-color);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Indicators */
.feedback-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 50px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--secondary-color);
    width: 35px;
    border-radius: 10px;
    transform: scale(1.1);
}

/* Responsive Footer Padding Fix */
.lk-salon-footer {
    position: relative;
    background-color: #1F1F1F;
    color: #ffffff;
    padding-top: 80px;
    padding-bottom: 0;
    overflow: hidden;
}

@media (max-width: 1199px) { /* Tablet Portrait / Desktop Small */
    .feedback-card {
        flex: 0 0 calc((100% - 30px) / 2); /* 2 cards */
    }
}

@media (max-width: 767px) { /* Mobile */
    .feedback-card {
        flex: 0 0 100%; /* 1 card */
    }
    .feedback-slider-track {
        gap: 0;
    }
    .feedback-text {
        font-size: 1.05rem;
    }
}


/* Floating SVG Background */
.footer-bg-svgs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.05;
}

.f-svg {
    position: absolute;
    color: #ffffff;
    animation: floatingSVG 15s infinite ease-in-out;
}

.f-svg svg {
    width: 50px;
    height: 50px;
}
.s4,.s3{
    width: 70px;
    height: 70px;
}
.s1 { top: 10%; left: 5%; animation-duration: 18s; }
.s2 { top: 40%; left: 85%; animation-duration: 22s; transform: rotate(45deg); }
.s3 { top: 70%; left: 15%; animation-duration: 20s; }
.s4 { top: 20%; left: 60%; animation-duration: 25s; }
.s5 { top: 60%; left: 45%; animation-duration: 19s; }
.s6 { top: 80%; left: 75%; animation-duration: 21s; }
.s7 { top: 15%; left: 30%; animation-duration: 23s; opacity: 0.04; }
.s8 { top: 50%; left: 15%; animation-duration: 20s; transform: rotate(-30deg); }
.s9 { top: 75%; left: 55%; animation-duration: 24s; opacity: 0.03; }
.s10 { top: 35%; left: 25%; animation-duration: 17s; }
.s11 { top: 65%; left: 90%; animation-duration: 26s; transform: rotate(15deg); }
.s12 { top: 90%; left: 35%; animation-duration: 21s; }

@keyframes floatingSVG {
    0% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, 50px) rotate(45deg); }
    66% { transform: translate(-20px, 80px) rotate(-45deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

/* Footer Top Bar */
.footer-top-bar {
    position: relative;
    z-index: 1;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 80px;
}

.footer-logo img {
    max-height: 80px;
}

.footer-subscription-form {
    display: flex;
    background-color: #ffffff;
    padding: 8px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.sub-input {
    flex: 1;
    border: none;
    padding: 15px 25px;
    outline: none;
    font-family: 'Rubik', sans-serif;
    color: #333;
}



/* Main Content */
.footer-main-content {
    position: relative;
    z-index: 1;
    padding-bottom: 80px;
}

.footer-col-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 35px;
    position: relative;
    display: inline-block;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 18px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-family: 'Rubik', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: block;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 8px;
}

/* Recent News */
.recent-news-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.news-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.news-thumb {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 4px;
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-item:hover .news-thumb img {
    transform: scale(1.1);
}

.news-content h5 {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 8px;
}

.news-content h5 a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-content h5 a:hover {
    color: var(--primary-color);
}

.news-date {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
}

/* Contact Info */
.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    color: rgba(255,255,255,0.6);
    font-family: 'Rubik', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-info i {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-top: 4px;
}

/* Footer Bottom */
.footer-bottom {
    background-color: #141414;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.copyright-text {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    font-family: 'Rubik', sans-serif;
}

.text-pink {
    color: var(--secondary-color);
}

/* Responsive Footer */
@media (max-width: 991px) {
    .footer-subscription-form { margin-top: 20px; }
    .footer-col { margin-bottom: 50px; }
}

@media (max-width: 767px) {
    .footer-subscription-form {
        flex-direction: column;
        background-color: transparent;
        padding: 0;
        box-shadow: none;
        gap: 15px;
    }

    .sub-input {
        width: 100%;
        background-color: #ffffff;
        border-radius: 4px;
        padding: 12px 20px;
    }

    .footer-subscription-form .btn-fold {
        width: 100%;
        justify-content: center;
        border-radius: 4px;
    }

    .footer-col-title {
        font-size: 1.05rem;
        margin-bottom: 25px;
    }

    .footer-links a, .contact-info li {
        font-size: 0.85rem;
    }

    .news-thumb {
        width: 60px;
        height: 60px;
    }

    .news-content h5 {
        font-size: 0.8rem;
    }
}

/* ── Service Page Styles ── */
.service-hero-section {
    background-color: var(--primary-color);
}

.service-hero-flex {
    display: flex;
}

.service-side-socials {
    width: 70px;
    background-color: #1f1f1f;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    min-height: calc(100vh - 90px);
    z-index: 100; /* Ensure it's above journey section overlap */
}

.service-hero-main-inner {
    flex: 1;
    position: relative;
    min-height: calc(100vh - 90px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6));
    z-index: 1;
}

.service-hero-content-box {
    position: relative;
    z-index: 10;
}

.service-hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 4.375rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 60px;
    text-transform: capitalize;
}

.service-selection-bar-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    padding: 35px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.selection-label {
    display: block;
    color: #ffffff;
    font-family: 'Rubik', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 12px;
    font-weight: 400;
}

.service-select {
    background-color: #ffffff !important;
    border: none !important;
    border-radius: 4px !important;
    padding: 14px 20px !important;
    font-family: 'Rubik', sans-serif;
    font-size: 0.95rem;
    color: #333 !important;
    height: 52px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
}

.service-submit-btn {
    width: 100%;
    background-color: var(--accent-color);
    color: #ffffff;
    border: none;
    height: 52px;
    border-radius: 4px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.service-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Mobile Responsiveness for Service Page */
@media (max-width: 991px) {
    .service-hero-flex { display: block; }
    .service-side-socials { display: none; }
    .service-hero-title { font-size: 3rem; margin-bottom: 40px; text-align: center; }
    .service-hero-main-inner { min-height: 600px; padding: 60px 20px; }
    .service-selection-bar-wrapper { margin-top: 30px; }
}

/* ── Service Overlap Section Rebuild ── */
.service-overlap-section {
    position: relative;
    z-index: 20;
    margin-top: -180px; 
    padding-bottom: 100px;
}

.overlap-box-left {
    background: #fff;
    /* border-radius: 12px; */
    overflow: hidden;
    /* box-shadow: 0 40px 100px rgba(0,0,0,0.15); */
    max-height: 600px; /* Keeps left poster shorter */
    position: relative; /* Added to center the logo */
}

.overlap-logo-overlay {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    z-index: 10;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

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

.overlap-box-right {
    background-color: #ffffff; /* Premium white background */
    padding: 60px 0 30px;
    /* border-radius: 12px; */
    box-shadow: 0 40px 120px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    min-height: 900px; /* Adjusted to house the header + 10 items perfectly */
}

.booking-list-title {
    font-family: 'Rubik', sans-serif;
    font-size: 1.65rem;
    color: #111;
    margin-bottom: 40px;
    font-weight: 600;
    line-height: 1.4;
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.scrolling-booking-wrapper {
    max-height: 700px; /* Calculated to show exactly 10 items before scrolling */
    overflow-y: auto;
    padding: 0px 16px;
}

.scrolling-booking-wrapper::-webkit-scrollbar {
    width: 6px;
}
.scrolling-booking-wrapper::-webkit-scrollbar-thumb {
    background-color: #e0e0e0;
    border-radius: 10px;
}

.booking-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 45px;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: background 0.3s ease;
}

.booking-item:hover {
    background-color: #f9f9f9;
}

.booking-main-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    margin-right: 40px;
}

.service-name-text {
    font-family: 'Rubik', sans-serif;
    font-size: 1.05rem;
    color: #222;
    margin: 0;
    font-weight: 400;
}

.service-name-text2 {
    font-family: 'Rubik', sans-serif;
    font-size: 1.05rem;
    color: #fff;
    margin: 0;
    font-weight: 400;
}

.service-duration {
    font-family: 'Rubik', sans-serif;
    font-size: 0.9rem;
    color: #999;
    font-weight: 300;
}

.btn-book-now {
    background-color: var(--secondary-color);
    color: #ffffff;
    padding: 10px 24px !important;
    border-radius: 4px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 0.9rem !important;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    min-width: 115px;
    text-align: center;
    border: none;
}

.btn-book-now:hover {
    background-color: #c2006a;
    color: #fff;
    transform: translateY(-2px);
}

/* Tablet Landscape (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .service-overlap-section {
        margin-top: 60px !important; /* Positive margin for landscape as requested */
    }
}

/* Tablet Portrait & Mobile (max-width: 991px) */
@media (max-width: 991px) {
    .overlap-box-left {
        display: none !important; /* Hide left box in Portrait */
    }
    /* Force the right box column to take full width when left is gone */
    .overlap-container .col-md-7 {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    .service-overlap-section {
        margin-top: 40px; /* Separated from hero */
    }
    .overlap-box-right {
        min-height: auto;
        padding-top: 40px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    }
    .booking-item {
        padding: 15px 25px;
    }
    .booking-main-info {
        margin-right: 20px;
    }
}

@media (max-width: 767px) {
    .service-overlap-section {
        margin-top: 40px;
    }
    .booking-list-title {
        font-size: 1rem;
    }
    .service-name-text {
        font-size: 0.95rem;
        max-width: 120px;
    }
}

/* ── Our Work Gallery Section ── */

.work-gallery-section {
    padding-bottom: 80px;
    position: relative;
    z-index: 10;
}

.gallery-container {
    margin-top: -200px; /* Slight overlap on hero */
}

.gallery-column {
    display: flex;
    flex-direction: column;
    gap: 30px; /* Responsive spacing as shown in screenshot */
}

.gallery-item {
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); /* Soft gallery shadows */
    position: relative; /* Added for absolute overlay */
}

.item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
    z-index: 5;
}

.item-overlay span {
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .item-overlay {
    opacity: 0.85; /* Semi-transparent secondary color */
    visibility: visible;
    cursor: pointer;
}

.gallery-item:hover .item-overlay span {
    transform: translateY(0);
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: all 0.6s cubic-bezier(0.85, 0, 0.15, 1);
    cursor: pointer;
}

/* High-end hover effect */
.gallery-item:hover img {
    transform: scale(1.06);
}

/* Height calibration for taller mockup images */
.tall-img {
    min-height: 480px; 
    object-fit: cover;
}

@media (max-width: 991px) {
    .gallery-container {
        margin-top: -60px;
    }
    .gallery-column {
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .gallery-container {
        margin-top: -160px; /* Reset on mobile */
    }
}

/* ── Contact Us Page Extensions ── */
.contact-us-hero {
    position: relative;
    overflow: hidden;
}

.map-container {
    width: 100%;
    height: 450px;
}

.map-container iframe {
    filter: grayscale(0.2) contrast(1.1); /* Subtle premium map filter */
}

.contact-us-main-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--primary-color);
}

.contact-us-intro {
    font-family: 'Rubik', sans-serif;
    line-height: 1.8;
    color: #666;
    font-size: 1.05rem;
}

.contact-us-input {
    border: 1px solid #eee;
    padding: 15px 20px;
    border-radius: 4px;
    font-family: 'Rubik', sans-serif;
    background-color: #fafafa;
    transition: all 0.3s ease;
}

.contact-us-input:focus {
    border-color: var(--secondary-color);
    box-shadow: none;
    background-color: #fff;
}

.branch-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #222;
}

.branch-address {
    font-family: 'Rubik', sans-serif;
    line-height: 1.6;
    color: #555;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.branch-phones span {
    display: block;
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

@media (max-width: 991px) {
    .contact-us-main-title {
        font-size: 2.2rem;
    }
    .ps-lg-5 {
        padding-left: 0 !important;
        margin-top: 50px;
    }
}

/* ── Custom Gallery Image Expansion Styles ── */
.gallery-custom-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    cursor: zoom-out;
}

.gallery-custom-lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    box-shadow: 0 0 60px rgba(0,0,0,0.6);
    border: 2px solid rgba(255, 255, 255, 0.05);
    transform: scale(0.9);
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
}

.gallery-custom-lightbox.active .lightbox-content img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: -20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 3.5rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    color: var(--secondary-color);
    transform: rotate(90deg) scale(1.1);
}

/* Ensure no hover color/layer on expanded image */
.lightbox-content img:hover {
    transform: scale(1) !important;
}

@media (max-width: 767px) {
    .lightbox-close {
        top: -60px;
        right: 0;
        font-size: 2.5rem;
    }
    .lightbox-content {
        max-width: 95%;
    }
    .footer-logo {
    display: flex;
    justify-content: center;
  }

  .footer-logo img {
    margin: 0 auto;
  }
}

/* ── Video Gallery Special Trigger (work5.png) ── */
.video-gallery-trigger {
    position: relative;
    cursor: pointer;
}

.video-overlay-permanent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent layer */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 6; /* Above the hover overlay if any */
    pointer-events: none; /* Let clicks pass to the gallery-item */
    transition: background-color 0.3s ease;
}

.gallery-item:hover .video-overlay-permanent {
    background-color: rgba(0, 0, 0, 0.6);
}

.video-overlay-permanent span {
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background-color: var(--secondary-color);
    padding: 12px 24px;
    border-radius: 4px;
    box-shadow: 0 10px 25px rgba(227, 0, 124, 0.4);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% { transform: scale(1); box-shadow: 0 10px 25px rgba(227, 0, 124, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 15px 35px rgba(227, 0, 124, 0.6); }
    100% { transform: scale(1); box-shadow: 0 10px 25px rgba(227, 0, 124, 0.4); }
}

/* ── Video Grid Lightbox ── */
.video-grid-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.98);
    z-index: 20000;
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 80px 30px 40px;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.5s ease;
    cursor: default;
}

.video-grid-lightbox.active {
    display: flex;
    opacity: 1;
}

.video-grid-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.video-grid-title {
    color: #fff;
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 40px;
    font-family: 'Oswald', sans-serif;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3x2 Grid */
    gap: 25px;
}

.video-item {
    position: relative;
    aspect-ratio: 16/9;
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-item:hover {
    transform: scale(1.04);
    border-color: var(--secondary-color);
    box-shadow: 0 20px 50px rgba(227, 0, 124, 0.2);
}

.video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.video-item:hover video {
    opacity: 1;
}

.video-play-hint {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 65px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    opacity: 0.9;
    transition: all 0.3s ease;
    z-index: 2;
    padding-left: 5px;
}

.video-item:hover .video-play-hint {
    transform: translate(-50%, -50%) scale(1.15);
    background-color: #fff;
    color: var(--secondary-color);
}

/* ── Fullscreen Player Layout ── */
.fullscreen-video-player {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 21000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.fullscreen-video-player.active {
    display: flex;
    opacity: 1;
}

.fullscreen-video-player video {
    max-width: 100%;
    max-height: 85vh;
    box-shadow: 0 0 80px rgba(0,0,0,1);
    border: 1px solid rgba(255,255,255,0.1);
}

.video-grid-close, .player-close {
    position: fixed;
    top: 30px;
    right: 40px;
    background: none;
    border: none;
    color: #fff;
    font-size: 3.5rem;
    cursor: pointer;
    z-index: 22000;
    transition: all 0.3s ease;
}

.video-grid-close:hover, .player-close:hover {
    color: var(--secondary-color);
    transform: rotate(90deg);
}

@media (max-width: 1199px) {
    .video-grid { grid-template-columns: repeat(2, 1fr); }
    .video-grid-title { font-size: 2.5rem; }
}

@media (max-width: 767px) {
    .video-grid { grid-template-columns: 1fr; gap: 20px; }
    .video-grid-close, .player-close { right: 20px; top: 20px; font-size: 2.5rem; }
    .video-grid-title { font-size: 2rem; margin-bottom: 30px; }
}

/* ── About Us Our Journey Styles ── */
.about-hero-content-box {
    position: relative;
    top: -20% !important;
    z-index: 10;
}
.about-journey-title {
    color: #fff;
    font-size: 4.4rem;
    font-weight: 800;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    position: relative;
    z-index: 5;
    letter-spacing: 2px;
    margin-bottom: 0;
}

.about-journey-section {
    position: relative;
    padding: 0 0 100px;
    z-index: 40;  
    background-color: transparent;  
}

.journey-image-wrapper {
    margin-top: -45vh;  
    position: relative;
    z-index: 10;
    padding: 0 10px;
}

.journey-main-img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.journey-content-box {
    max-width: 1200px;
    margin: 80px auto 0;
    padding: 0 20px;
}

.journey-content-box p {
    font-family: 'Rubik', sans-serif;
    font-size: 1.15rem;
    line-height: 2;
    color: #333;
    text-align: center;
    font-weight: 400;
}

/* Responsive Overlap Adjustments */
@media (max-width: 1199px) {
    .about-journey-title { font-size: 4rem; }
    .journey-image-wrapper { margin-top: -35vh; }
}

@media (max-width: 991px) {
    .service-hero-main-inner { min-height: 60vh; }
    .about-journey-title { font-size: 3rem; }
    .journey-image-wrapper { margin-top: -25vh; }
    .journey-content-box { margin-top: 50px; }
    .journey-content-box p { font-size: 1rem; line-height: 1.8; }
    
}

@media (max-width: 767px) {
    .about-journey-title { font-size: 2.2rem; }
    .journey-image-wrapper { margin-top: -15vh; } 
    .journey-content-box { margin-top: 40px; }
    .journey-content-box .journey-text {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: 0;
       
    }
    .journey-content-box.expanded .journey-text {
        -webkit-line-clamp: unset;
        line-clamp: unset;
    }
    .journey-read-more-btn {
        background: none;
        border: none;
        color: var(--secondary-color, #E3007C);
        font-family: 'Oswald', sans-serif;
        font-weight: 500;
        text-transform: uppercase;
        font-size: 0.9rem;
        letter-spacing: 1px;
        padding-top: 10px;
        cursor: pointer;
    }
   
}

/* ── About Us Why Choose Us (Features) Styles ── */
.journey-features-grid {
    position: relative;
    z-index: 10;
    margin-top: -20px !important;  
    padding-bottom: 60px;
}

.journey-feature-card-wrapper {
    perspective: 1000px;  
}

.journey-feature-card {
    display: block;
    background: #ffffff;
    border-radius: 0; 
    text-decoration: none !important;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
}

.journey-feature-img-box {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.journey-feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.journey-feature-overlay {
    position: absolute;
    inset: 0;
    background: rgba(227, 0, 124, 0.8);  
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s ease;
    transform: translateY(100%);
}

.journey-feature-overlay i {
    color: #fff;
    font-size: 3rem;
    transform: scale(0.5);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.journey-feature-info {
    padding: 40px 30px;
    background: #fff;
    position: relative;
    transition: all 0.5s ease;
}

.journey-feature-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #252525;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    text-align: left !important;

}

.journey-feature-desc {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    text-align: left !important;
}

.journey-feature-link {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--secondary-color, #E3007C);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
}

/* Hover Animations */
.journey-feature-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.15);
    border-color: rgba(227, 0, 124, 0.2);
}

.journey-feature-card:hover .journey-feature-img {
    transform: scale(1.1) rotate(2deg);
    filter: grayscale(0.5);
}

.journey-feature-card:hover .journey-feature-overlay {
    opacity: 1;
    transform: translateY(0);
}

.journey-feature-card:hover .journey-feature-overlay i {
    transform: scale(1);
    transition-delay: 0.1s;
}

.journey-feature-card:hover .journey-feature-name {
    color: var(--secondary-color, #E3007C);
}

.journey-feature-card:hover .journey-feature-link {
    gap: 10px;
}
.about-cta-dec{
    font-size:32px;
    font-weight: 200 !important;
    font-family: 'Rubik', sans-serif;;
}
/* Responsive Overlap */
@media (max-width: 991px) {
    .journey-features-grid {
        margin-top: -40px !important;
    }
    .journey-feature-img-box {
        height: 250px;
    }
}

@media (max-width: 767px) {
    .journey-features-grid {
        margin-top: 20px !important;  
        padding-bottom: 20px;
    }
    .journey-feature-img-box {
        height: 200px;
    }
    .journey-feature-name {
        font-size: 1.5rem;
    }
    .about-cta-dec{
    font-size:22px;
  
}
}

/* ── About Us Our Values Styles ── */
.about-values-section {
    position: relative;
    padding: 100px 0 0 0 !important;
    background-color: #fff;
}

.values-main-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #252525;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.values-grid {
    margin-top: 60px;
}

.value-item-card {
    position: relative;
    padding: 30px 15px;
    background: transparent;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
    cursor: pointer;
}

.value-icon-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
}

.value-icon-box {
    position: relative;
    z-index: 2;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.value-icon-box img {
    width: 80px;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
    transition: all 0.6s ease;
    animation: value-float 4s ease-in-out infinite;
}

.value-icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(203, 150, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.6s ease;
    z-index: 1;
}

.value-item-title {
    font-family: 'Rubik', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #000000;
    text-transform: uppercase;
    /* line-height: 1.3; */
    letter-spacing: 1px;
    transition: all 0.4s ease;
}

/* 3D Hover Interactions */
.value-item-card:hover {
    transform: translateY(-15px) rotateX(10deg);
}

.value-item-card:hover .value-icon-box img {
    transform: translateZ(50px) scale(1.1);
    animation-play-state: paused;
}

.value-item-card:hover .value-icon-glow {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.value-item-card:hover .value-item-title {
    color: #CB9600;  
    transform: translateZ(30px);
}

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

/* Responsive Overrides */
@media (max-width: 991px) {
    .values-main-title { font-size: 2.8rem; }
    .value-icon-wrapper { width: 100px; height: 100px; }
    .value-icon-box img { width: 65px; }
    .value-item-title { font-size: 1.2rem; }
}

@media (max-width: 575px) {
    .values-main-title { font-size: 2.2rem; }
    .value-item-card { padding: 20px 10px; }
    .value-icon-wrapper { width: 90px; height: 90px; }
    .value-icon-box img { width: 60px; }
    .value-item-title { font-size: 1rem; }
}

/* ── About Us Meet Our Team Styles ── */
.about-team-section {
    position: relative;
    padding: 100px 0;
    background-image: url('../assets/about-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #fdfdfb;
}

.team-main-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3.1rem;
    font-weight: 800;
    color: #202031;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: 1px;
}

.team-member-card {
    position: relative;
    perspective: 1000px;
}

.team-member-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1.1;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform-style: preserve-3d;
}

.team-member-img-box {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    background: #e9e9e9; /* Fallback */
    transition: all 0.6s ease;
}

/* Dynamic backgrounds per member as per screenshot */
.team-grid .col-lg-3:nth-child(1) .team-member-img-box { background-color: #A3B982; } /* Muted Green */
.team-grid .col-lg-3:nth-child(2) .team-member-img-box { background-color: #8E2331; } /* Deep Red */
.team-grid .col-lg-3:nth-child(3) .team-member-img-box { background-color: #DBE1E6; } /* Light Blue Grey */
.team-grid .col-lg-3:nth-child(4) .team-member-img-box { background-color: #B2B2B2; } /* Grey */

.team-member-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.team-member-role {
    display: block;
    font-family: 'Playball', cursive;
    color: #cb9600;
    font-size: 1.35rem;
    margin-bottom: 5px;
    transition: all 0.4s ease;
}

.team-member-name {
    font-family: 'Rubik', sans-serif;
    font-size: 1.9rem;
    font-weight: 500;
    color: #202031;
    text-transform: capitalize;
    margin: 0;
    transition: all 0.4s ease;
}

/* Hover Animations */
.team-member-card:hover .team-member-img-wrapper {
    transform: rotateY(-10deg) rotateX(5deg) scale(1.02);
    box-shadow: 20px 20px 50px rgba(0,0,0,0.15);
}

.team-member-card:hover .team-member-img-box img {
    transform: scale(1.08);
}

.team-member-card:hover .team-member-name {
    color: var(--secondary-color, #E3007C);
    transform: translateX(5px);
}

.team-member-card:hover .team-member-role {
    color: #1a1a1a;
    transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
    .team-main-title { font-size: 2.8rem; }
}

@media (max-width: 991px) {
    .team-main-title { font-size: 2.4rem; }
    .team-member-name { font-size: 1.6rem; }
}

@media (max-width: 767px) {
    .about-team-section { padding: 60px 0; }
    .team-grid .col-lg-3 { margin-bottom: 40px !important; }
     .journey-content-box p{
        text-align: left !important;
        font-size: 15px !important;
    }
}