/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Glowen';
    src: url('../fonts/Glowen.woff2') format('woff2'),
         url('../fonts/Glowen.woff') format('woff'),
         url('../fonts/Glowen.ttf') format('truetype'),
         url('../fonts/Glowen.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Typography */
.lk-hero-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

/* Header Navigation */
.lk-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
    padding: 1.5rem 2rem;
}

.lk-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

.lk-logo img{
    width: 230px;
}

.lk-nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: #FFF;
}

.lk-hero-video-containern{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.lk-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    color: #1E1E1E;
    font-family: Sora;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 21.6px */
    letter-spacing: 2.52px;
    text-transform: uppercase;
    padding: 8px 12px;
    position: relative;
    overflow: hidden;
}

.lk-menu-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgb(82 83 101);
}

.lk-menu-btn:active {
    transform: translateY(0);
    background: rgba(28, 29, 54, 0.15);
}

.lk-contact-icons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: absolute;
    right: 0;
    left: auto;
    top: 250px;
}

.lk-contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
    padding: 7px;
}

.lk-contact-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Hero Section */
.lk-hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.lk-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.lk-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.lk-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.lk-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 2rem;
}

.lk-hero-subtitle {
    color: #FFF;
    text-align: center;
    font-family: Sora;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 21.6px */
    letter-spacing: 2.52px;
    text-transform: uppercase;
}

.lk-hero-title {
    color: #FFF;
    text-align: center;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.48);
    /* Display XL */
    font-family: Glowen;
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 76.8px */
}

.lk-cta-btn {
    display: inline-flex;
    padding: 16px 24px;
    justify-content: center;
    align-items: baseline;
    gap: 16px;
    background: #F9F8F6;
    color: #1C1D36;
    font-family: Sora;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 19.2px */
    letter-spacing: 2.24px;
    text-transform: uppercase;
    border: unset;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.lk-cta-btn:hover {
    /* background: #1C1D36;
    color: #F9F8F6; */
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(28, 29, 54, 0.3);
}

.lk-cta-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(28, 29, 54, 0.2);
}

.lk-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.lk-feature-item {
    border-radius: 61px;
    background: rgba(255, 255, 255, 0.13);
    box-shadow: 0 3px 7.3px 0 rgba(0, 0, 0, 0.43);
    backdrop-filter: blur(3.5px);
    width: 200px;
    padding: 10px;
    position: relative;
    border: 1px solid transparent;
    background-clip: padding-box;
}

.lk-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 61px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.3) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

/* .lk-feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
} */

.lk-feature-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
}

/* Content Section */
.lk-content {
    background: #EEE;
    padding: 5rem 0;
    position: relative;
}

.lk-content:before {
    content: '';
    background-image: url(https://static-application-data.s3.amazonaws.com/2ejlZ5BNo9/1754454015-estate-baldwin.png);
    position: absolute;
    top: 0;
    left: 0;
    width: 500px;
    height: 250px;
    background-size: cover;
}

.lk-content-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.lk-content-header {
    text-align: center;
}

.lk-welcome-banner {
    background: #2c3e50;
    padding: 10px;
    display: inline-block;
    margin-bottom: 1rem;
    color: #F9F8F6;
    text-align: center;
    font-family: Sora;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 1.68px;
    text-transform: uppercase;
}

.lk-content-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.lk-content-title {
    color: #1C2B36;
    text-align: center;
    font-family: Glowen;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.lk-content-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.lk-content-text p {
    color: #5F5F5F;
    text-align: center;
    font-family: Sora;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}

.lk-content-text .lk-cta-btn {
    margin-top: 2rem;
    background: #1C1D36;
    padding: 16px 24px;
    color:#F9F8F6;
    font-family: Sora;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

.lk-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.lk-image-item {
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.lk-image-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.lk-image-item.lk-image-outdoor-lounge img {
    height: 250px;
}

.lk-image-item.lk-image-basketball-court img {
    height: 250px;
}

.lk-image-item.lk-image-swimming-pool img {
    height: 200px;
}

.lk-image-item.lk-image-playground img {
    height: 200px;
}

.lk-image-outdoor-lounge{
    position: absolute;
    top: 70px;
    left: 40px;
}

.lk-image-basketball-court{
    position: absolute;
    top: 70px;
    right: 40px;
}

.lk-image-swimming-pool{
    position: absolute;
    bottom: 0;
    left: 50px;
}

.lk-image-playground{
    position: absolute;
    bottom: 0;
    right: 50px;
}

/* Decorative Elements */
.lk-decorative-palm {
    position: absolute;
    width: 200px;
    height: 200px;
    background-size: contain;
    opacity: 0.1;
    z-index: 1;
}

.lk-palm-top-left {
    top: 0;
    left: 0;
    transform: rotate(-45deg);
}

.lk-palm-bottom-right {
    bottom: 0;
    right: 0;
    transform: rotate(135deg);
}

/* Menu Overlay */
.lk-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lk-menu-container.active {
    transform: translateX(0);
    z-index: 9;
    overflow: scroll;
}

.lk-menu-container {
    background: #F9F8F6;
    max-width: 800px;
    width: 100%;
    padding: 3rem;
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    transform: translateX(100%);
    transition: all .3s ease;
}

.lk-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.lk-menu-close {
    background: #FFF;
    border: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: #2c3e50;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 16px;
}

.lk-menu-close span{
    color: #1E1E1E;
    font-family: Sora;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 2.52px;
    text-transform: uppercase;
}

.lk-menu-nav {
    margin-bottom: 3rem;
    position: relative;
}

.lk-menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    padding-left: 20px;
}

.lk-menu-list li {
    margin: 0;
    position: relative;
}

.lk-menu-list li:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #e0e0e0;
}

.lk-menu-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 12px;
    color: #1C2B36;
    font-family: Sora;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    margin: 4px 0;
    transition: all 0.3s ease;
}

.lk-menu-link::before {
    content: '';
    width: 18px;
    height: 19px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='19' viewBox='0 0 18 19' fill='none'%3E%3Cpath d='M15 9.49988H3' stroke='%235F5F5F' stroke-width='1.125' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11.2501 13.25C11.2501 13.25 15 10.4882 15 9.5C15 8.5118 11.25 5.75 11.25 5.75' stroke='%235F5F5F' stroke-width='1.125' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: inline-block;
    margin-right: 8px;
}

.lk-menu-link.active {
    background: rgba(0, 123, 255, 0.15);
    border-color: #0056b3;
    color: #007bff;
}

.lk-menu-adventure {
    margin-bottom: 3rem;
}

.lk-adventure-title {
    color: #1C2B36;
    font-family: Glowen;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    margin-bottom: 1rem;
}

.lk-adventure-text {
    color: #5F5F5F;
    font-family: Sora;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.lk-menu-actions {
    display: flex;
    gap: 1rem;
}

.lk-menu-btn {
    flex: 1;
    padding: 16px;
    border: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.lk-contact-direct {
    background: #262626;
    padding: 16px 24px;
    color: #F9F8F6;
    font-family: Sora;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

.lk-schedule-call {
    background: #1C1D36;
    padding: 16px 24px;
    color: #F9F8F6;
    font-family: Sora;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

@media (max-width: 1290px){
    .lk-image-item{
        display: none;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    /* Amenities: show two per view */
    .lk-amenity-card { flex: 0 0 calc(50% - 15px); }
    .lk-hero-title {
        font-size: 3rem;
    }
    
    .lk-content-title {
        font-size: 2.5rem;
    }

    .lk-features {
        gap: 2rem;
        margin: 3rem;
    }

    .lk-hero{
        height: auto;
        padding-top: 82px;
    }
}

/* Video background optimizations */
@media (max-width: 768px) {
    /* Amenities: show two per view at 768 too for a denser look */
    .lk-amenity-card { flex: 0 0 calc(50% - 10px); }
    .lk-hero-video {
        object-position: center;
    }
}

/* Reduce video quality on slower connections */
@media (prefers-reduced-motion: reduce) {
    .lk-hero-video {
        display: none;
    }
    
    .lk-hero-background {
        background-image: url('../images/hero-background.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}

@media (max-width: 768px) {
    .lk-header {
        padding: 1rem;
    }
    
    .lk-nav-right {
        gap: 1rem;
    }
    
    .lk-contact-icons {
        display: none;
    }
    
    .lk-hero-title {
        font-size: 2.5rem;
    }
    
    .lk-content-title {
        font-size: 2rem;
    }
    
    .lk-content-title-wrapper {
        flex-direction: column;
        gap: 1rem;
    }
    
    .lk-features {
        gap: 1.5rem;
    }
    
    .lk-feature-item {
        min-width: 120px;
    }
    
    .lk-menu-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    /* Amenities: single card on phones */
    .lk-amenity-card { flex: 0 0 100%; }
    .lk-hero-title {
        font-size: 2rem;
    }
    
    .lk-content-title {
        font-size: 1.8rem;
    }
    
    .lk-features {
        gap: 1rem;
        margin: 2rem;
    }
    
    .lk-feature-item {
        min-width: 100px;
    }
    
    /* .lk-feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    } */
    
    .lk-feature-text {
        font-size: 0.8rem;
    }
}

/* Responsive Design for Baldwin Sections */
@media (max-width: 1024px) {
    .lk-baldwin-text {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .lk-baldwin-interactive {
        flex-direction: column;
        gap: 2rem !important;
    }
    
    .lk-baldwin-title {
        font-size: 2rem;
    }
    
    .lk-heading-title {
        font-size: 20px;
    }
    
    .lk-content-image {
        min-height: 350px;
    }
    
    .lk-amenities-list {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .lk-quote-text {
        font-size: 1.5rem;
    }
    
    .lk-baldwin-dark-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .lk-baldwin-light {
        padding: 3rem 0;
    }
    
    .lk-baldwin-title {
        font-size: 1.8rem;
    }
    
    .lk-heading-item {
        padding: 1rem 1.5rem;
    }
    
    .lk-heading-title {
        font-size: 18px;
    }
    
    .lk-heading-indicator {
        width: 35px;
        height: 35px;
    }
    
    .lk-amenities-container {
        padding: 1.5rem;
    }
    
    .lk-amenities-list li {
        font-size: 14px;
        padding-left: 1.2rem;
    }
    
    .lk-content-image {
        min-height: 300px;
    }
    
    .lk-baldwin-dark {
        padding: 3rem 0;
    }
    
    .lk-quote-text {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .lk-baldwin-title {
        font-size: 1.5rem;
    }
    
    .lk-content-image {
        min-height: 250px;
    }
    
    .lk-heading-item {
        padding: 0.8rem 1rem;
    }
    
    .lk-heading-title {
        font-size: 16px;
    }
    
    .lk-heading-indicator {
        width: 30px;
        height: 30px;
    }
    
    .lk-amenities-container {
        padding: 1rem;
    }
    
    .lk-amenities-list li {
        font-size: 13px;
        padding-left: 1rem;
    }
    
    .lk-baldwin-dark {
        padding: 2rem 0;
    }
    
    .lk-quote-text {
        font-size: 1.2rem;
    }
}

/* The Baldwin Light Section */
.lk-baldwin-light {
    background: #f8f9fa;
    padding: 5rem 0;
    position: relative;
}

.lk-baldwin-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
}

.lk-baldwin-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.lk-baldwin-title {
    color:#1C2B36;
    font-family: Glowen;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 57.6px */
}

.lk-baldwin-description {
    color: #5F5F5F;
    font-family: Sora;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    margin: 0;
    text-align: center;
}

.lk-baldwin-center-image {
    text-align: center;
}

.lk-baldwin-center-image img {
    width: 100%;
    max-width: 500px;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.lk-baldwin-amenities {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.lk-amenities-section {
    position: relative;
}

.lk-amenities-title {
    color: #000;
    font-family: Glowen;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 43.2px */
    margin-bottom: 1rem;
}

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

.lk-amenities-list li {
    color: #000;
    font-family: Sora;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 25.2px */
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

/* The Baldwin Dark Section */
.lk-baldwin-dark {
    position: relative;
    padding: 5rem 0;
    background-image: url('https://d10w0xb1xxwn2r.cloudfront.net/2ejlZ5BNo9/1754375179-lk-baldwin-dark.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.lk-baldwin-dark-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.lk-baldwin-dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.lk-baldwin-dark-content {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: center;
}

.lk-baldwin-quote {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.lk-quote-text {
    color: #F9F8F6;
    font-family: Glowen;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    margin: 0;
}

.lk-baldwin-video-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.lk-video-player {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    animation: videoPlayerFloat 3s ease-in-out infinite;
}

.lk-video-player::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid rgba(255, 255, 255, 0.31);
    border-radius: 50%;
    animation: videoPlayerRingPulse 2s ease-in-out infinite;
    z-index: -1;
    will-change: transform;
}

.lk-video-player::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid rgba(255, 255, 255, 0.31);
    border-radius: 50%;
    animation: videoPlayerRingPulse 2s ease-in-out infinite 0.7s;
    z-index: -1;
    will-change: transform;
}

.lk-video-player:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    animation-play-state: paused;
}

.lk-video-player:active {
    transform: scale(0.95);
    transition: all 0.1s ease;
}

.lk-video-player img{
    width: 120px;
    animation: playButtonGlow 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.lk-video-player:hover img {
    animation: none;
    filter: brightness(1.2) drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.lk-play-button {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Animation Classes */
/* .lk-slide-up {
    animation: slideUp 0.8s ease-out;
} */

.lk-scale-in {
    animation: scaleIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

@keyframes videoPlayerRingPulse {
    0% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 0.2;
        transform: scale(1.3);
    }
    100% {
        opacity: 0.8;
        transform: scale(1);
    }
}

@keyframes playButtonGlow {
    0%, 100% {
        filter: brightness(1) drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
    }
    50% {
        filter: brightness(1.1) drop-shadow(0 0 15px rgba(255, 255, 255, 0.4));
    }
}

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

/* Interactive Baldwin Section */
.lk-baldwin-interactive {
    display: flex;
    gap: 4rem;
    margin-top: 3rem;
}

/* Content Image */
.lk-content-image {
    flex: 1;
    position: relative;
    min-height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.lk-image-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    visibility: hidden;
}

.lk-image-section.active {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
}

.lk-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

/* Interactive Headings */
.lk-interactive-headings {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Interactive Headings */
.lk-interactive-headings {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.lk-heading-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    gap: 20px;
    border-bottom: 1px solid #EEE;
}

.lk-heading-title {
    font-family: Glowen;
    font-size: 24px;
    font-weight: 400;
    margin: 0;
    transition: color 0.3s ease;
}

.lk-heading-item.active .lk-heading-title {
    color: black;
}

/* .lk-heading-indicator {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(142, 68, 173, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
} */

.lk-heading-item.active .lk-heading-indicator {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
}

/* .lk-heading-indicator i {
    color: #8e44ad;
    font-size: 16px;
    transition: all 0.3s ease;
} */

.lk-heading-item.active .lk-heading-indicator i {
    color: white;
}

/* Amenities List Container */
.lk-amenities-container {
    display: none;
    animation: slideDown 0.4s ease-out;
}

.lk-amenities-container.active {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
        max-height: 0;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        max-height: 500px;
    }
}

.lk-amenities-list {
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 1rem;
}

.lk-amenities-list li {
    color: #1C2B36;
    font-family: Sora;
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    padding-left: 1.5rem;
    position: relative;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInListItem 0.5s ease forwards;
    animation-delay: calc(var(--item-index, 0) * 0.1s);
}

.lk-amenities-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M8.99988 0L7.01074 3.44531H10.989L8.99988 0Z' fill='%23262626'/%3E%3Cpath d='M5.18385 4.5H1.20557L3.19471 7.94531L5.18385 4.5Z' fill='%23262626'/%3E%3Cpath d='M1.20557 13.5H5.18385L3.19471 10.0547L1.20557 13.5Z' fill='%23262626'/%3E%3Cpath d='M12.8159 13.5H16.7942L14.8051 10.0547L12.8159 13.5Z' fill='%23262626'/%3E%3Cpath d='M10.989 14.5547H7.01074L8.99988 18L10.989 14.5547Z' fill='%23262626'/%3E%3Cpath d='M16.7942 4.5H12.8159L14.8051 7.94531L16.7942 4.5Z' fill='%23262626'/%3E%3Cpath d='M14.196 9L11.5979 4.5H6.40176L3.80371 9L6.40176 13.5H11.5979L14.196 9Z' fill='%23262626'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

@keyframes slideInListItem {
    to {
        opacity: 1;
        transform: translateX(0);
    }
} 

/* Indoor Luxuries Section */
.lk-indoor-luxuries {
    background: #F9F8F6;
    padding: 5rem 0;
}

.lk-luxuries-container {
    margin: 0 auto;
    /* padding: 0 2rem; */
}

.lk-luxuries-header{
    display: flex;
    justify-content: center;
    align-items: center;
}

.lk-luxuries-title {
    color: #1C2B36;
    font-family: Glowen;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.lk-luxuries-content {
    display: flex;
    justify-content: center;
}

.lk-luxuries-slider {
    /* max-width: 1200px; */
    width: 100%;
    position: relative;
}

.lk-amenities-slider {
    position: relative;
    overflow: hidden;
    /* border-radius: 16px; */
    margin-bottom: 2rem;
}

.lk-amenities-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    gap: 30px;
    will-change: transform;
    transition: transform 0.5s ease;
}

.lk-amenity-card {
    position: relative;
    flex: 0 0 calc(33.333% - 20px);
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.lk-amenity-card.active { outline: none; }

.lk-amenity-image {
    position: relative;
    /* border-radius: 12px; */
    overflow: hidden;
}

.lk-amenity-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    border-radius: 16px 16px 0 0;
}

.lk-amenity-content {
    background: #FFF;
    padding: 24px;
    border-radius: 0 0 8px 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.lk-amenity-name {
    color: #1C2B36;
    font-family: Glowen;
    font-size: 28px;
    font-weight: 400;
    line-height: 120%;
    margin: 0;
}

.lk-amenity-description {
    color: #5F5F5F;
    font-family: Sora;
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
    margin: 0;
}

.lk-amenities-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 2rem;
}

.lk-nav-arrow {
    background: #ffffff;
    border: 2px solid #e9ecef;
    color: #1C1D36;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.lk-nav-arrow#prevAmenity {
    left: 20px;
    width: 35px;
    height: 35px;
}

.lk-nav-arrow#nextAmenity {
    right: 20px;
    width: 35px;
    height: 35px;
}

.lk-nav-arrow:hover:not(:disabled) {
    /* background: #1C1D36;
    color: #F9F8F6;
    border-color: #1C1D36; */
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(28, 29, 54, 0.3);
}

.lk-nav-arrow:active:not(:disabled) {
    transform: translateY(-50%) scale(0.95);
    box-shadow: 0 2px 8px rgba(28, 29, 54, 0.2);
}

.lk-nav-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: translateY(-50%);
}

.lk-nav-arrow:disabled:hover {
    background: #ffffff;
    color: #1C1D36;
    border-color: #e9ecef;
    transform: translateY(-50%);
    box-shadow: none;
}

.lk-amenity-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.lk-amenity-dot.active {
    background: #1C1D36;
    transform: scale(1.3);
    opacity: 1;
}

.lk-amenity-dot:hover {
    background: #1C1D36;
    transform: scale(1.2);
    opacity: 0.8;
}

.lk-nav-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

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

.lk-dot.active {
    background: #8e44ad;
    transform: scale(1.2);
}

.lk-dot:hover {
    background: #8e44ad;
    transform: scale(1.1);
}

.lk-outdoor-adventures{
    background: #EEE;
    padding: 5rem 0;
    position: relative;
}

.lk-adventures-container {
    margin: 0 auto;
    padding: 0 2rem;
}

.lk-adventures-header {
    text-align: center;
    margin-bottom: 3rem;
}

.lk-adventures-title {
    color:#1C2B36;
    font-family: Glowen;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.lk-adventures-slider {
    position: relative;
    margin-bottom: 2rem;
    overflow: hidden;
}

.lk-adventures-slider .swiper-wrapper {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.lk-adventures-slider .swiper-slide {
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scroll indicator for adventure slider */
.lk-adventures-slider::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: linear-gradient(90deg, #1C1D36 0%, #666 50%, #1C1D36 100%);
    border-radius: 2px;
    opacity: 0.7;
    z-index: 10;
    animation: pulse 2s infinite;
}

.lk-adventures-slider::after {
    content: 'Scroll to explore';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-family: Sora;
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    z-index: 10;
}

@keyframes pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Enhanced slide transitions for scroll-triggered slider */
.lk-adventure-card.swiper-slide-active {
    transform: scale(1);
    opacity: 1;
    filter: brightness(1);
}

.lk-adventure-card.swiper-slide-prev,
.lk-adventure-card.swiper-slide-next {
    transform: scale(0.95);
    opacity: 0.8;
}

.lk-adventure-card.swiper-slide {
    transform: scale(0.9);
}

.lk-adventures-slider-container {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    padding: 0 20px;
}

.lk-adventure-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 300px;
    opacity: 1;
    visibility: visible;
    transform: none;
    position: relative;
    transition: all 0.5s ease;
    transform: scale(0.95);
}

.lk-adventure-card.swiper-slide-active {
    transform: scale(1);
    opacity: 1;
}

.lk-adventure-card.swiper-slide-prev,
.lk-adventure-card.swiper-slide-next {
    transform: scale(0.98);
    opacity: 0.9;
}

.lk-adventure-card.active {
    opacity: 1;
    visibility: visible;
    transform: none;
    position: relative;
}

.lk-adventure-image {
    position: relative;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    cursor: pointer;
}

.lk-adventure-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.lk-zoom-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.36);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    padding: 10px;
}

.lk-zoom-icon:hover {
    background: rgba(0, 0, 0, 0.36);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.lk-zoom-icon svg {
    width: 20px;
    height: 20px;
}

/* Ensure zoom icons work with amenity and attraction images */
.lk-amenity-image,
.lk-attraction-image {
    position: relative;
    overflow: hidden;
}

/* Lightbox Styles */
.lk-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.lk-lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.lk-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.lk-lightbox.active .lk-lightbox-content {
    transform: scale(1);
}

.lk-lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 10;
    transition: all 0.3s ease;
}

.lk-lightbox-close:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.lk-lightbox-image-container {
    max-height: 70vh;
    overflow: hidden;
}

.lk-lightbox-image {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: cover;
    display: block;
}

.lk-lightbox-info {
    padding: 24px;
    background: #fff;
}

.lk-lightbox-title {
    color: #1C2B36;
    font-family: Glowen;
    font-size: 28px;
    font-weight: 400;
    line-height: 120%;
    margin: 0 0 12px 0;
}

.lk-lightbox-description {
    color: #5F5F5F;
    font-family: Sora;
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    margin: 0;
}

.lk-adventure-content {
    background: #F9F8F6;
    padding: 24px;
    border-radius: 0 0 8px 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.lk-adventure-name {
    color: #1C2B36;
    font-family: Glowen;
    font-size: 28px;
    font-weight: 400;
    line-height: 120%;
    margin: 0;
}

.lk-adventure-description {
    color: #5F5F5F;
    font-family: Sora;
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
    margin: 0;
}

.lk-adventures-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.lk-nav-arrow {
    background: #ffffff;
    border: 2px solid #e9ecef;
    color: #1C1D36;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.lk-nav-arrow#prevAdventure {
    left: -15px;
    width: 35px;
    height: 35px;
}

.lk-nav-arrow#nextAdventure {
    right: -15px;
    width: 35px;
    height: 35px;
}

.lk-nav-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: translateY(-50%);
}

.lk-nav-arrow:disabled:hover {
    background: #ffffff;
    color: #1C1D36;
    border-color: #e9ecef;
    transform: translateY(-50%);
    box-shadow: none;
}

.lk-adventure-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #e9ecef;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lk-adventure-dot.active {
    background: #1C1D36;
    transform: scale(1.2);
}

.lk-adventure-dot:hover {
    background: #1C1D36;
    transform: scale(1.1);
}

/* Shabbos-Friendly Section */
.lk-shabbos-friendly {
    background: #F9F8F6;
    padding: 5rem 0;
}

.lk-shabbos-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.lk-shabbos-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lk-shabbos-text {
    flex: 1;
    max-width: 600px;
}

.lk-shabbos-title {
    color: #1C2B36;
    font-family: Glowen;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.lk-shabbos-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.lk-shabbos-features li {
    color: #5F5F5F;
    font-family: Sora;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 2.5rem;
}

.lk-shabbos-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12.5167 3.22329C11.8634 3.00948 10.9737 3.00003 9 3.00003C7.94137 3.00003 7.18496 3.00044 6.58885 3.04111C5.99948 3.08132 5.6218 3.15837 5.31493 3.28548C4.39608 3.66608 3.66605 4.39611 3.28545 5.31497C3.15834 5.62184 3.08129 5.99951 3.04108 6.58888C3.0004 7.18499 3 7.94141 3 9.00003C3 10.0587 3.0004 10.8151 3.04108 11.4112C3.08129 12.0006 3.15834 12.3783 3.28545 12.6851C3.66605 13.604 4.39608 14.334 5.31493 14.7146C5.6218 14.8417 5.99948 14.9187 6.58885 14.9589C7.18496 14.9997 7.94137 15 9 15C10.0586 15 10.8151 14.9997 11.4112 14.9589C12.0005 14.9187 12.3782 14.8417 12.6851 14.7146C13.604 14.334 14.3339 13.604 14.7146 12.6851C14.8417 12.3783 14.9187 12.0006 14.9589 11.4112C14.9996 10.8151 15 10.0587 15 9.00003C15 8.42568 15 7.93788 14.9931 7.51211C14.9864 7.09795 15.3168 6.7568 15.7309 6.75013C16.1451 6.74345 16.4863 7.07379 16.493 7.48795C16.5 7.92708 16.5 8.42651 16.5 8.99523V9.02763C16.5 10.0527 16.5 10.8601 16.4555 11.5133C16.41 12.1791 16.3158 12.739 16.1004 13.2591C15.5675 14.5455 14.5455 15.5676 13.2591 16.1004C12.739 16.3158 12.179 16.41 11.5133 16.4555C10.8601 16.5 10.0526 16.5 9.02767 16.5H8.97233C7.94738 16.5 7.13989 16.5 6.48675 16.4555C5.821 16.41 5.26102 16.3158 4.74091 16.1004C3.45451 15.5676 2.43248 14.5455 1.89963 13.2591C1.6842 12.739 1.58998 12.1791 1.54456 11.5133C1.49999 10.8601 1.5 10.0527 1.5 9.02763V8.97243C1.5 7.94741 1.49999 7.13992 1.54456 6.48677C1.58998 5.82104 1.6842 5.26104 1.89963 4.74094C2.43248 3.45455 3.45451 2.43251 4.74091 1.89966C5.26102 1.68422 5.821 1.59001 6.48674 1.54459C7.13989 1.50002 7.94737 1.50002 8.9724 1.50003H9C9.0543 1.50003 9.10808 1.50002 9.16125 1.50002C10.9235 1.49975 12.0724 1.49957 12.9833 1.79771C13.3769 1.92656 13.5917 2.35013 13.4628 2.7438C13.3339 3.13746 12.9103 3.35214 12.5167 3.22329ZM16.3978 3.74705C16.6065 4.10484 16.4857 4.56407 16.1278 4.77278L15.9616 4.86976C13.2655 6.44252 11.0992 8.78321 9.73965 11.5929C9.6339 11.8113 9.429 11.9652 9.18968 12.0057C8.95035 12.0462 8.70622 11.9684 8.53448 11.7968L5.52438 8.78988C5.23133 8.49716 5.23108 8.02233 5.52382 7.72923C5.81655 7.4362 6.29143 7.43594 6.58447 7.72871L8.87235 10.0142C10.369 7.34712 12.5533 5.12138 15.2058 3.57409L15.3721 3.47712C15.7298 3.26841 16.1891 3.38926 16.3978 3.74705Z' fill='%235F5F5F'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

.lk-book-now-btn {
    background: #1C1D36;
    border: none;
    padding: 16px 24px;
    color: #F9F8F6;
    font-family: Sora;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.lk-book-now-btn:hover {
    background: #2A2B4A;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(28, 29, 54, 0.4);
}

.lk-book-now-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(28, 29, 54, 0.3);
}

.lk-shabbos-images {
    position: relative;
    max-width: 500px;
}

.lk-kitchen-image {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: -2rem;
    position: relative;
    z-index: 2;
}

.lk-kitchen-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Ready to Experience Luxury Section */
.lk-experience-luxury {
    background: #1C1D36;
    padding: 5rem 0;
    text-align: center;
    position: relative;
}

.lk-experience-luxury:before {
    content: '';
    background-image: url(https://d10w0xb1xxwn2r.cloudfront.net/2ejlZ5BNo9/1754393234-lk-experience-luxury-image.png);
    position: absolute;
    top: 0;
    left: 0;
    width: 550px;
    height: 250px;
    background-size: cover;
}

.lk-experience-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.lk-experience-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.lk-experience-title {
    color: #F9F8F6;
    font-family: Glowen;
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.lk-experience-subtitle {
    color: #F9F8F6;
    font-family: Glowen;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.lk-check-availability-btn {
    background: #EEE;
    padding: 16px 24px;
    gap: 16px;
    color: #1C1D36;
    font-family: Sora;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    border: none;
    display: inline-flex;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.lk-check-availability-btn:hover {
    /* background: #1C1D36;
    color: #F9F8F6; */
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgb(187 188 214 / 30%);
}

.lk-check-availability-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(28, 29, 54, 0.2);
}

/* Relaxation Awaits You Section */
.lk-relaxation-awaits {
    background: #F9F8F6;
    padding: 5rem 0;
    position: relative;
}

.lk-relaxation-awaits::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 200px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 0C22.4 0 0 22.4 0 50s22.4 50 50 50 50-22.4 50-50S77.6 0 50 0zm0 80c-16.6 0-30-13.4-30-30s13.4-30 30-30 30 13.4 30 30-13.4 30-30 30z" fill="%23E0E0E0" opacity="0.3"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.1;
}

.lk-relaxation-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.lk-relaxation-header {
    margin-bottom: 3rem;
}

.lk-relaxation-text {
    display: flex;
    align-items: center;
}

.lk-relaxation-title {
    color: #1C2B36;
    font-family: Glowen;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    flex: 1;
}

.lk-relaxation-description {
    color: #5F5F5F;
    font-family: Sora;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    flex: 1;
}

.lk-relaxation-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.lk-feature-card {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.lk-feature-image {
    height: 500px;
    overflow: hidden;
    position: relative;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.lk-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lk-feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(28, 43, 54, 0.8) 0%, rgba(28, 43, 54, 0.4) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lk-feature-card:hover .lk-feature-overlay {
    opacity: 1;
}

.lk-feature-overlay-text {
    color: white;
}

.lk-feature-overlay-text h4 {
    font-family: Glowen;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 0.5rem;
    line-height: 120%;
}

.lk-feature-overlay-text p {
    font-family: Sora;
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    opacity: 0.9;
}

.lk-feature-title {
    color: #1E1E1E;
    font-family: Sora;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px;
    border-radius: 0 0 16px 0;
    background: #F9F8F6;
    margin: 0;
}

.lk-feature-description {
    color: #1E1E1E;
    font-family: Sora;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    position: absolute;
    bottom: 0;
    right: 0;
    background: #F9F8F6;
    border-radius: 16px 0 0 0;
    margin: 0;
    padding: 10px;
}

/* Explore the Area Section */
.lk-explore-area {
    background: white;
    padding: 5rem 0;
}

.lk-explore-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.lk-explore-header {
    margin-bottom: 3rem;
}

.lk-explore-text {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lk-explore-title {
    color: #1C2B36;
    font-family: Glowen;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    flex: 1;
}

.lk-explore-description {
    color: #5F5F5F;
    font-family: Sora;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    flex: 1;
}

.lk-location-bar {
    background-image: url(https://d10w0xb1xxwn2r.cloudfront.net/2ejlZ5BNo9/1754897752-lk-explore-area.png);
    background-repeat: no-repeat;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background-size: cover;
}

.lk-location-label {
    color: #1C1D36;
    text-align: center;
    font-family: Glowen;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.lk-location-info {
    display: flex;
    gap: 2rem;
}

.lk-location-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 8px;
    background: #FFF;
    color: #1E1E1E;
    font-family: Sora;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 1.68px;
    text-transform: uppercase;
}

.lk-location-item i {
    color: #1C2B36;
    font-size: 12px;
}

.lk-attractions-slider {
    position: relative;
    margin-bottom: 2rem;
    overflow: hidden;
}

.lk-attractions-slider-container {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.lk-attraction-card {
    flex: 0 0 calc(33.333% - 20px);
    /* min-width: 350px; */
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.lk-attraction-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #F9F8F6;
    padding: 8px;
    border-radius: 8px;
    color:#1C2B36;
    font-family: Sora;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 1.68px;
    text-transform: uppercase;
    z-index: 2;
}

.lk-attraction-image {
    overflow: hidden;
    position: relative;
}

.lk-attraction-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.lk-attraction-content {
    padding: 20px;
    background: #F9F8F6;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.lk-attraction-title {
    color: #1C2B36;
    font-family: Glowen;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    margin: 0;
}

.lk-attraction-distance {
    color: #5F5F5F;
    font-family: Sora;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 1.68px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lk-attraction-distance svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.lk-attraction-expanded{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.lk-attraction-description {
    color:#5F5F5F;
    font-family: Sora;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin: 0;
}

.lk-attraction-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
}

.lk-activity-tag {
    background: #EEE;
    padding: 6px 12px;
    border-radius: 8px;
    cursor: pointer;
    color: #1C2B36;
    font-family: Sora;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 1.68px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.lk-activity-tag:hover {
    background: #1C1D36;
    color: #F9F8F6;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(28, 29, 54, 0.2);
}

.lk-attraction-brand {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
}

.lk-view-map-btn {
    color: #1C1D36;
    font-family: Sora;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    border: none;
    cursor: pointer;
    align-self: flex-start;
    background: #F9F8F6;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 8px 16px;
    position: relative;
    overflow: hidden;
}

.lk-view-map-btn:hover {
    background: #1C1D36;
    color: #F9F8F6;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(28, 29, 54, 0.3);
}

.lk-view-map-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(28, 29, 54, 0.2);
}

.lk-attractions-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.lk-nav-arrow {
    background: #ffffff;
    border: 2px solid #e9ecef;
    color: #1C1D36;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.lk-nav-arrow#prevAttraction {
    left: 20px;
    width: 35px;
    height: 35px;
}

.lk-nav-arrow#nextAttraction {
    right: 20px;
    width: 35px;
    height: 35px;
}

.lk-nav-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: translateY(-50%);
}

.lk-nav-arrow:disabled:hover {
    background: #ffffff;
    color: #1C1D36;
    border-color: #e9ecef;
    transform: translateY(-50%);
    box-shadow: none;
}

.lk-attraction-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #FFF;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lk-attraction-dot.active {
    background: #1C1D36;
}

/* Responsive Design for All Sections */
@media (max-width: 1024px) {
    .lk-shabbos-content {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
    
    .lk-shabbos-text {
        max-width: 100%;
    }
    
    .lk-shabbos-images {
        max-width: 100%;
    }
    
    .lk-luxuries-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .lk-luxuries-title,
    .lk-shabbos-title,
    .lk-experience-title,
    .lk-relaxation-title,
    .lk-explore-title {
        font-size: 2.5rem;
    }
    
    .lk-relaxation-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .lk-luxury-item {
        padding: 1.5rem;
    }
    
    .lk-luxury-title {
        font-size: 20px;
    }
    
    .lk-location-bar {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .lk-location-info {
        justify-content: center;
    }
    
    .lk-amenity-image img {
        height: 400px;
    }
    
    .lk-amenity-name {
        font-size: 24px;
    }
    
    .lk-nav-arrow {
        width: 40px;
        height: 40px;
    }

    .lk-adventures-slider-container{
        padding: 0;
    }

    .lk-adventure-card{
        flex: 0 0 calc(50% - 15px);
    }

    .lk-attraction-card{
        flex: 0 0 calc(50% - 17px);
    }
}

@media (max-width: 768px) {
    .lk-indoor-luxuries,
    .lk-shabbos-friendly,
    .lk-experience-luxury,
    .lk-relaxation-awaits,
    .lk-explore-area,
    .lk-content {
        padding: 3rem 0;
    }
    
    .lk-luxuries-title,
    .lk-shabbos-title,
    .lk-experience-title,
    .lk-relaxation-title,
    .lk-explore-title {
        font-size: 25px;
    }
    
    .lk-experience-subtitle,
    .lk-relaxation-description,
    .lk-explore-description {
        font-size: 14px;
    }

    /* Show two adventure cards per row on tablets */
    /* .lk-adventures-slider-container {
        gap: 20px;
    } */
    .lk-adventure-card {
        flex: 0 0 calc(100%);
        min-width: 0;
    }
    
    .lk-luxuries-image img {
        height: 300px;
    }
    
    .lk-relaxation-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .lk-feature-image {
        height: 400px;
    }
    
    .lk-luxury-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .lk-luxury-icon {
        align-self: center;
    }
    
    .lk-luxury-navigation {
        margin-top: 2rem;
    }
    
    .lk-kitchen-image {
        height: 300px;
    }
    
    .lk-attraction-card {
        min-width: 300px;
    }
    
    .lk-attraction-content {
        padding: 1rem;
    }

    .lk-luxuries-container{
        gap: 0;
    }

    .lk-baldwin-interactive{
        gap: 0 !important;
    }

    .lk-outdoor-adventures{
        padding: 2rem 0;
    }

    .lk-sukkah-container{
        padding-top: 1rem !important;
    }

    .lk-sukkah-card{
        padding: 20px;
    }

    .lk-baldwin-light{
        padding: 3rem 0;
    }

    .lk-baldwin-title{
        font-size: 35px;
    }

    .lk-guest-experiences{
        padding: 3rem 0 !important;
    }

    .lk-faq-section{
        padding: 3rem 0 !important;
    }

    .lk-faq-left{
        align-items: center !important;
    }

    .lk-faq-right{
        gap: 0 !important;
    }

    .lk-contact-details{
        margin-bottom: 0 !important;
    }

    .lk-contact-booking-content{
        padding-bottom: 20px !important;
    }

    .lk-info-blocks{
        justify-content: center !important;
    }

    .lk-experience-luxury:before,
    .lk-guest-experiences:before,
    .lk-content:before{
        display: none !important;
    }

    .lk-footer-sections{
        flex-direction: column;
        gap: 20px;
    }

    .lk-footer-section{
        align-items: center !important;
    }

    .lk-stay-updated-description{
        text-align: left;
    }

    .lk-experience-quote h3{
        font-size: 50px !important;
    }

    .lk-sukkah-image{
        flex: 1;
    }

    .lk-sukkah-content{
        flex: 1;
    }

    .lk-sukkah-image img{
        width: 100% !important;
    }

    .lk-relaxation-text,
    .lk-explore-text{
        flex-direction: column;
    }

    .lk-baldwin-text{
        grid-template-columns: auto;
        gap: 0;
    }

    .lk-baldwin-interactive{
        margin-top: 0;
    }

    .lk-explore-header{
        margin-bottom: 0;
    }

    .lk-attraction-card{
        flex: 0 0 calc(100%);
    }

    .lk-amenity-card{
        flex: 0 0 calc(100%);
    }
}

@media (max-width: 520px){
    .lk-form-row{
        flex-direction: column;
        gap: 0 !important;
    }

    .lk-contact-booking-left{
        width: 100%;
    }

    .lk-info-block{
        width: 100%;
    }

    .lk-adventure-card{
        flex: 0 0 calc(100%);
    }
}

@media (max-width: 480px) {
    .lk-luxuries-title,
    .lk-shabbos-title,
    .lk-experience-title,
    .lk-relaxation-title,
    .lk-explore-title {
        font-size: 1.8rem;
    }
    
    .lk-experience-subtitle,
    .lk-relaxation-description,
    .lk-explore-description {
        font-size: 14px;
    }
    
    .lk-luxuries-image img {
        height: 250px;
    }
    
    .lk-feature-image {
        height: 280px;
    }
    
    .lk-luxury-item {
        padding: 1rem;
    }
    
    .lk-luxury-title {
        font-size: 18px;
    }
    
    .lk-nav-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .lk-kitchen-image {
        height: 250px;
    }
    
    .lk-attraction-card {
        min-width: auto;
    }
    
    .lk-attraction-tags {
        flex-direction: column;
    }
    
    .lk-activity-tag {
        text-align: center;
    }
    
    .lk-amenity-image img {
        height: 250px;
    }
    
    .lk-amenity-content {
        width: 100%;
        padding: 16px;
    }
    
    .lk-amenity-name {
        font-size: 20px;
    }
    
    .lk-amenity-description {
        font-size: 14px;
    }
    
    .lk-nav-arrow {
        width: 36px;
        height: 36px;
    }

    /* On small phones, show one adventure card per view */
    .lk-adventure-card {
        flex: 0 0 100%;
        min-width: 0;
    }
    .lk-adventure-image img {
        height: 260px;
    }

    .lk-baldwin-dark-content{
        grid-template-columns: auto;
    }

    .lk-sukkah-description{
        font-size: 14px !important;
    }

    .lk-sukkah-name{
        font-size: 20px !important;
    }

    .lk-location-info{
        flex-direction: column;
        gap: 1rem;
    }

    .lk-experience-quote h3{
        font-size: 30px !important;
    }

    .lk-feature-title{
        font-size: 14px;
    }

    .lk-feature-description{
        font-size: 13px;
    }

    .lk-attraction-title{
        font-size: 20px;
    }

    .lk-attraction-description,
    .lk-view-map-btn{
        font-size: 12px;
    }

    .lk-activity-tag{
        font-size: 10px;
    }

    .lk-attraction-expanded{
        gap: 5px;
    }

    .lk-contact-label{
        font-size: 20px !important;
    }

    .lk-contact-value,
    .lk-info-content p{
        font-size: 13px !important;
    }

    .lk-info-head h5{
        font-size: 16px !important;
    }

    .lk-info-blocks{
        gap: 0 !important;
    }

    .lk-cta-btn{
        font-size: 14px;
        gap: 10px;
        padding: 12px 18px;
    }
} 

/* Plan Your Adventures Section */
.lk-plan-adventures {
    background: #1C1D36;
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.lk-plan-adventures::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://d10w0xb1xxwn2r.cloudfront.net/2ejlZ5BNo9/1754393234-lk-experience-luxury-image.png');
    background-repeat: no-repeat;
    opacity: 0.3;
    pointer-events: none;
    width: 550px;
    height: 250px;
    background-size: cover;
}

.lk-plan-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.lk-plan-content h2 {
    color: #F9F8F6;
    text-align: center;
    font-family: Glowen;
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 76.8px */
}

.lk-plan-content p {
    color: #F9F8F6;
    text-align: center;
    font-family: Glowen;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.lk-plan-cta {
    background: #EEE;
    border: none;
    padding: 16px 24px;
    color: #1C1D36;
    font-family: Sora;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.lk-plan-cta:hover {
    /* background: #1C1D36;
    color: #F9F8F6; */
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgb(187 188 214 / 30%);
}

.lk-plan-cta:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(28, 29, 54, 0.2);
}

.lk-plan-cta i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.lk-plan-cta:hover i {
    transform: translateX(3px);
}

/* Guest Experiences Section */
.lk-guest-experiences {
    background: #EEE;
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.lk-guest-experiences:before {
    content: '';
    position: absolute;
    top: 80px;
    right: 0;
    bottom: 0;
    background-image: url(https://d10w0xb1xxwn2r.cloudfront.net/2ejlZ5BNo9/1754400425-lk-guest-experiences.png);
    background-repeat: no-repeat;
    pointer-events: none;
    width: 270px;
    height: 550px;
    background-size: cover;
}

.lk-experiences-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.lk-experiences-label {
    background: #1C1D36;
    color: #F9F8F6;
    text-align: center;
    font-family: Sora;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    text-transform: uppercase;
    padding: 10px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 30px;
}

.lk-experiences-slider {
    position: relative;
    min-height: 400px;
    overflow: visible; /* Ensure content is visible */
}

/* Ensure Swiper slides are visible */
.lk-experiences-slider .swiper-slide {
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
    transform: none !important;
}

.lk-experience-card {
    /* Remove absolute positioning and visibility hiding for Swiper compatibility */
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: all 0.5s ease;
}

/* Remove the .active class styles since Swiper handles this */

.lk-experience-quote {
    position: relative;
    margin-bottom: 30px;
}

.lk-experience-quote h3 {
    color: #1C2B36;
    text-align: center;
    font-family: Glowen;
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 76.8px */
}

.lk-experience-review {
    margin-bottom: 30px;
}

.lk-experience-review p {
    color:#5F5F5F;
    text-align: center;
    font-family: Sora;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 25.6px */
}

.lk-experience-rating {
    margin-bottom: 30px;
}

.lk-stars {
    margin-bottom: 15px;
}

.lk-stars i {
    color: #1a2332;
    font-size: 20px;
    margin: 0 2px;
}

.lk-guest-info {
    text-align: center;
}

.lk-guest-name {
    color: #1E1E1E;
    text-align: center;
    font-family: Sora;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}

.lk-guest-stay {
    color: #5F5F5F;
    text-align: center;
    font-family: Sora;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 1.68px;
    text-transform: uppercase;
}

.lk-experiences-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.lk-nav-circle {
    background: #ffffff;
    border: 2px solid #e9ecef;
    color: #1a2332;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.lk-nav-circle:hover {
    background: #1a2332;
    color: #ffffff;
    border-color: #1a2332;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.lk-nav-circle:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.lk-nav-circle:disabled:hover {
    background: #ffffff;
    color: #1a2332;
    border-color: #e9ecef;
    transform: none;
    box-shadow: none;
}

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

.lk-experience-dot.active {
    background: #1a2332;
    transform: scale(1.2);
}

.lk-experience-dot:hover {
    background: #1a2332;
    transform: scale(1.1);
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .lk-plan-content h2 {
        font-size: 36px;
    }
    
    .lk-plan-content p {
        font-size: 16px;
    }
    
    .lk-experiences-quote h3 {
        font-size: 28px;
    }
    
    .lk-experiences-review p {
        font-size: 16px;
    }
    
    .lk-plan-cta {
        padding: 14px 28px;
        font-size: 14px;
    }

    .lk-content-text .lk-cta-btn{
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .lk-plan-content h2 {
        font-size: 28px;
    }
    
    .lk-experiences-quote h3 {
        font-size: 24px;
    }
    
    .lk-experiences-navigation {
        gap: 15px;
    }
    
    .lk-nav-circle {
        width: 45px;
        height: 45px;
        font-size: 14px;
    }

    .lk-quote-text{
        font-size: 30px;
    }

    .lk-adventures-title{
        font-size: 36px;
    }

    .lk-adventure-name{
        font-size: 20px;
    }

    .lk-adventure-description{
        font-size: 12px;
    }

    .lk-sukkah-content{
        padding: 10px !important;
    }
} 

/* Expansive Sukkah Area Section */
.lk-sukkah-area {
    background: #EEE;
    padding: 3rem 0;
}

.lk-sukkah-card {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
}

.lk-sukkah-image {
    position: relative;
    margin-bottom: 20px;
}

.lk-sukkah-image img {
    width: 400px;
    height: 225px;
    object-fit: cover;
    display: block;
    border-radius: 16px 0 0 16px;
}

.lk-sukkah-brand {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.lk-sukkah-content {
    background: #FFF;
    padding: 24px;
    border-radius: 0px 16px 16px 0px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: calc(100% - 40px);
    height: 225px;
    box-shadow: 0 1px 7.6px 0 rgba(0, 0, 0, 0.18);
}

.lk-sukkah-container{
    padding-top: 5rem;
}

.lk-sukkah-name {
    color: #1C2B36;
    font-family: Glowen;
    font-size: 28px;
    font-weight: 400;
    line-height: 120%;
    margin: 0;
}

.lk-sukkah-description {
    color: #5F5F5F;
    font-family: Sora;
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
    margin: 0;
} 

/* Contact & Booking Section */
.lk-contact-booking {
    background: #1C1D36;
    background-size: cover;
    background-position: center;
    position: relative;
}

.lk-contact-booking-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    padding-top: 200px;
}

.lk-contact-booking-video-container{
    position: absolute;
    height: 600px;
    width: 100%;
}
.lk-contact-booking-video-container video{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.lk-contact-booking-card {
    background: #F9F8F6;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.lk-contact-booking-header {
    margin-bottom: 40px;
}

.lk-contact-booking-label {
    display: inline-flex;
    background: #262626;
    padding: 10px;
    margin-bottom: 20px;
    color: #F9F8F6;
    text-align: center;
    font-family: Sora;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 1.68px;
    text-transform: uppercase;
}

.lk-contact-booking-title {
    margin: 0;
    color: #000;
    font-family: Glowen;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.lk-contact-booking-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    padding-bottom: 40px;
}

.lk-contact-booking-left {
    flex: 2;
}

.lk-request-info-title {
    margin-bottom: 30px;
    color: #000;
    font-family: Sora;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.lk-contact-form {
    width: 100%;
}

.lk-form-row {
    display: flex;
    gap: 30px;
}

.lk-form-column {
    flex: 1;
}

.lk-form-group {
    margin-bottom: 20px;
}

.lk-form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1C1D36;
    margin-bottom: 8px;
}

.lk-form-group input,
.lk-form-group select,
.lk-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    font-size: 1rem;
    background: #FFF;
    color: #333;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.lk-form-group input:focus,
.lk-form-group select:focus,
.lk-form-group textarea:focus {
    outline: none;
    border-color: #1C1D36;
    box-shadow: 0 0 0 3px rgba(28, 29, 54, 0.1);
}

/* Date Input Placeholder Styles */
.lk-date-input-wrapper {
    position: relative;
    width: 100%;
}

.lk-date-placeholder {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #5F5F5F;
    pointer-events: none;
    transition: opacity 0.3s ease;
    font-size: 14px;
    z-index: 2;
    font-family: inherit;
    cursor: pointer;

}

.lk-date-input-wrapper input[type="date"] {
    position: relative;
    z-index: 2;
}

/* Hide the default date input placeholder on webkit browsers */
.lk-date-input-wrapper input[type="date"]::-webkit-datetime-edit-fields-wrapper {
    color: transparent;
}

.lk-date-input-wrapper input[type="date"]:not([value=""])::-webkit-datetime-edit-fields-wrapper {
    color: #333;
}

/* Hide the default date format text when empty */
.lk-date-input-wrapper input[type="date"]::-webkit-datetime-edit {
    color: transparent;
}

.lk-date-input-wrapper input[type="date"]:not([value=""])::-webkit-datetime-edit {
    color: #333;
}

/* Hide the calendar icon when empty */
.lk-date-input-wrapper input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0.3;
}

.lk-date-input-wrapper input[type="date"]:not([value=""])::-webkit-calendar-picker-indicator {
    opacity: 1;
}

/* For Firefox */
.lk-date-input-wrapper input[type="date"]:not([value=""]) {
    color: #333;
}

.lk-date-input-wrapper input[type="date"][value=""] {
    color: transparent;
}

/* For Firefox - hide the default text */
.lk-date-input-wrapper input[type="date"]:invalid::-webkit-datetime-edit {
    color: transparent;
}

/* Additional rules to hide default date format */
.lk-date-input-wrapper input[type="date"]:not(.has-value)::-webkit-datetime-edit-fields-wrapper {
    color: transparent !important;
}

/* Swiper Custom Styles */
.swiper-pagination {
    position: relative !important;
    width: auto !important;
    display: inline-flex;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.07);
    padding: 12px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #1C1D36 !important;
    opacity: 1;
    transform: scale(1.2);
}

/* Hide default navigation arrows when using custom ones */
.swiper-button-next,
.swiper-button-prev {
    display: none;
}

/* Ensure sliders work properly */
.swiper {
    overflow: hidden;
}

.swiper-wrapper {
    display: flex;
    transition-property: transform;
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
}

.lk-date-input-wrapper input[type="date"]:not(.has-value)::-webkit-datetime-edit {
    color: transparent !important;
}

.lk-date-input-wrapper input[type="date"]:not(.has-value)::-webkit-datetime-edit-text {
    color: transparent !important;
}

.lk-date-input-wrapper input[type="date"]:not(.has-value)::-webkit-datetime-edit-month-field {
    color: transparent !important;
}

.lk-date-input-wrapper input[type="date"]:not(.has-value)::-webkit-datetime-edit-day-field {
    color: transparent !important;
}

.lk-date-input-wrapper input[type="date"]:not(.has-value)::-webkit-datetime-edit-year-field {
    color: transparent !important;
}

.lk-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.lk-send-inquiry-btn {
    background: #1C1D36;
    border: none;
    padding: 16px 24px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color:#F9F8F6;
    font-family: Sora;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    transition: all 0.3s ease;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.lk-send-inquiry-btn:hover {
    background: #2A2B4A;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(28, 29, 54, 0.4);
}

.lk-send-inquiry-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(28, 29, 54, 0.3);
}

.lk-send-inquiry-btn:disabled {
    background: #999;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.lk-contact-booking-right {
    flex: 1;
    max-width: 350px;
}

.lk-contact-details {
    margin-bottom: 40px;
}

.lk-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid #EEE;
    padding-bottom: 20px;
}

/* .lk-contact-item i {
    color: #1C1D36;
    font-size: 1.1rem;
    margin-top: 2px;
    min-width: 20px;
} */

.lk-contact-info {
    display: flex;
    flex-direction: column;
}

.lk-contact-label {
    color: #5F5F5F;
    font-family: Glowen;
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.lk-contact-value {
    color: #1E1E1E;
    font-family: Sora;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
}

.lk-info-blocks {
    display: flex;
    gap: 20px;
    padding-top: 40px;
    border-top: 1px dotted #B8B1A7;
    justify-content: space-between;
    flex-wrap: wrap;
}

.lk-info-head{
    display: flex;
    gap: 15px;
    align-items: center;
}

.lk-info-head h5{
    margin: 0;
    color: #1C2B36;
    font-family: Sora;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.lk-info-block {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex-direction: column;
}

.lk-info-block i {
    color: #1C1D36;
    font-size: 1.2rem;
    margin-top: 2px;
    min-width: 20px;
}

.lk-info-content h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #1C1D36;
    margin: 0 0 5px 0;
}

.lk-info-content p {
    color: #5F5F5F;
    font-family: Sora;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    margin: 0;
}

/* Responsive styles for Contact & Booking section */
@media (max-width: 1024px) {
    .lk-contact-booking-content {
        flex-direction: column;
        gap: 40px;
    }

    .lk-contact-booking-right {
        max-width: 100%;
    }

    .lk-shabbos-features li{
        text-align: left;
    }

    .lk-contact-booking-left{
        width: 100%;
    }
}

@media (max-width: 768px) {
    .lk-contact-booking-card {
        padding: 40px 30px;
    }

    .lk-contact-booking-title {
        font-size: 2rem;
    }

    .lk-request-info-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .lk-contact-booking-card {
        padding: 30px 20px;
    }

    .lk-contact-booking-title {
        font-size: 1.8rem;
    }

    .lk-info-block {
        padding: 15px;
    }

    .lk-relaxation-header{
        margin-bottom: 1rem;
    }
}

@media (max-width: 375px){
    .lk-nav-container{
        flex-direction: column;
        gap: 10px;
    }

    .lk-hero{
        padding-top: 130px;
    }

    .lk-feature-description{
        font-size: 10px;
    }

    .lk-feature-title {
        font-size: 12px;
    }

    .lk-view-map-btn{
        padding: 4px 16px;
    }
}

/* Stay Updated Section */
.lk-stay-updated {
    background: #1C1D36;
    color: #FFF;
}

/* Stay Updated Section when inside footer */
.lk-footer .lk-stay-updated {
    background: transparent;
    margin-bottom: 40px;
}

.lk-stay-updated-container {
    max-width: 1200px;
    margin: 0 auto;
}

.lk-stay-updated-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.lk-stay-updated-left {
    flex: 1;
    display: flex;
    gap: 20px;
    max-width: 500px;
}

.lk-stay-updated-text{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lk-stay-updated-title {
    color:#F9F8F6;
    font-family: Glowen;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    margin: 0;
}

.lk-stay-updated-description {
    color:#F9F8F6;
    font-family: Sora;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    margin: 0;
}

.lk-stay-updated-right {
    flex: 1;
    max-width: 400px;
}

.lk-newsletter-form {
    width: 100%;
}

.lk-email-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #1C1D36;
    border: 1px solid #EEE;
    gap: 20px;
    padding: 0px 0px 0px 10px;
}

.lk-email-icon {
    color: #666;
    margin-left: 1rem;
    font-size: 1.1rem;
}

.lk-email-input {
    flex: 1;
    border: none;
    background: #1C1D36;
    color: #F9F8F6;
    font-family: Sora;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.lk-email-input:focus-visible{
    border: none;
    outline: none;
}

.lk-subscribe-btn {
    background: #F9F8F6;
    border: none;
    color: #1C1D36;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.lk-subscribe-btn:hover {
    background: #1C1D36;
    color: #F9F8F6;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(28, 29, 54, 0.3);
}

.lk-subscribe-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(28, 29, 54, 0.2);
}

/* Responsive styles for Stay Updated section */
@media (max-width: 768px) {
    .lk-stay-updated-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .lk-stay-updated-left {
        max-width: 100%;
    }

    .lk-stay-updated-right {
        max-width: 100%;
    }

    .lk-stay-updated-title {
        font-size: 2rem;
        text-align: left;
    }
}

@media (max-width: 480px) {

    .lk-stay-updated-title {
        font-size: 1.8rem;
    }

    .lk-stay-updated-description {
        font-size: 1rem;
    }
}

/* Footer Section */
.lk-footer {
    background: #1C1D36;
    color: #FFF;
    padding: 45px 0 20px;
}

.lk-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.lk-footer-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 40px;
}

.lk-footer-brand {
    flex: 1;
    max-width: 300px;
}

.lk-footer-sections {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.lk-footer-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lk-footer-section-title {
    color: #FFF;
    font-family: Sora;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    margin: 0;
}

.lk-social-icons {
    display: flex;
    gap: 1rem;
}

.lk-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 5px;
}

.lk-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lk-footer-links li {
    position: relative;
    padding-left: 16px;
}

.lk-footer-links li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 5px;
    height: 5px;
    background: #F9F8F6;
    border-radius: 1px;
    opacity: 0.9;
}

.lk-footer-links a {
    color: #FFF;
    font-family: Sora;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    text-decoration: none;
}

.lk-footer-links a:hover {
    color: #FFF;
}

.lk-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.lk-footer-copyright p {
    color: #FFF;
    font-family: Sora;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    margin: 0;
}

.lk-footer-legal {
    display: flex;
    gap: 2rem;
}

.lk-footer-legal a {
    text-decoration: none;
    color: #FFF;
    font-family: Sora;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.lk-footer-legal a:hover {
    color: #FFF;
}

/* Responsive styles for Footer */
@media (max-width: 768px) {
    .lk-footer-content {
        flex-direction: column;
        gap: 2rem;
        align-items: center !important;
    }

    .lk-footer-brand {
        max-width: 100%;
        text-align: center;
    }

    .lk-footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .lk-footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .lk-footer {
        padding: 40px 0 20px;
    }

    .lk-footer-sections {
        gap: 1.5rem;
    }

    .lk-footer-legal {
        flex-direction: column;
        gap: 1rem;
    }
}

/* FAQ Section Styles */
.lk-faq-section {
    background: linear-gradient(180deg, #EEE 0%, #FFF 50.04%);
    padding: 5rem 0;
    position: relative;
}

.lk-faq-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.lk-faq-left {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 22px;
}

.lk-faq-label {
    background-color: #1C1D36;
    padding: 10px;
    color: #F9F8F6;
    text-align: center;
    font-family: Sora;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 1.68px;
    text-transform: uppercase;
    display: inline-block;
}

.lk-faq-title {
    color: #1C2B36;
    font-family: Glowen;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    margin: 0;
}

.lk-faq-intro {
    color: #5F5F5F;
    font-family: Sora;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    max-width: 300px;
    margin: 0;
}

.lk-faq-right {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.lk-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.lk-faq-item {
    border-bottom: 1px solid #EEE;
    transition: all 0.3s ease;
    cursor: pointer;
}

.lk-faq-item:hover {
    transform: translateX(5px);
}

.lk-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lk-faq-question:hover h3 {
    color: #1C1D36;
    transform: translateX(3px);
}

.lk-faq-question h3 {
    color: #1C2B36;
    font-family: Sora;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin: 0;
    flex: 1;
    padding-right: 20px;
    transition: all 0.3s ease;
}

.lk-faq-toggle {
    background: none;
    border: none;
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222222;
    font-size: 16px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    border-radius: 50%;
}

.lk-faq-toggle:hover {
    background-color: rgba(28, 43, 54, 0.1);
    transform: scale(1.1);
    color: #1C1D36;
}

.lk-faq-toggle i {
    transition: all 0.3s ease;
    font-size: 16px;
    color: #1C1D36;
}

.lk-faq-item.active .lk-faq-toggle i {
    transform: none;
}

.lk-faq-toggle:focus {
    outline: 2px solid #1C1D36;
    outline-offset: 2px;
}

.lk-faq-item:focus-within {
    background-color: rgba(28, 43, 54, 0.05);
}

/* Removed duplicate hover effect - now handled above */

.lk-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
    padding: 0 0 0 0;
    opacity: 0;
    transform: translateY(-10px);
}

.lk-faq-item.active .lk-faq-answer {
    max-height: 500px;
    padding: 0 0 25px 0;
    opacity: 1;
    transform: translateY(0);
}

.lk-faq-answer p {
    color: #5F5F5F;
    font-family: Sora;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin: 0;
    transition: color 0.3s ease;
}

.lk-faq-item:hover .lk-faq-answer p {
    color: #4A4A4A;
}

.lk-faq-contact{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lk-faq-contact-title {
    color: #1C2B36;
    font-family: Glowen;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    margin: 0;
}

.lk-faq-contact-text {
    color: #5F5F5F;
    font-family: Sora;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin: 0;
}

.lk-faq-contact-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.lk-faq-contact-btn {
    padding: 16px 24px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.lk-faq-contact-btn.lk-contact-direct {
    background-color: #1C1D36;
    color: #F9F8F6;
    font-family: Sora;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.lk-faq-contact-btn.lk-contact-direct:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(28, 29, 54, 0.3);
}

.lk-faq-contact-btn.lk-schedule-call {
    background-color: #F9F8F6;
    color: #1C1D36;
    font-family: Sora;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    border: 1px solid #1C1D36;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.lk-faq-contact-btn.lk-schedule-call:hover {
    background-color: #1C1D36;
    color: #F9F8F6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(28, 29, 54, 0.2);
}

.lk-faq-contact-btn.lk-schedule-call:hover {
    background-color: #1c1d36;
    color: #fff;
}

.lk-faq-contact-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.lk-faq-contact-btn:hover i {
    transform: translateX(4px);
}

/* Responsive Design for FAQ Section */
@media (max-width: 1024px) {
    .lk-faq-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .lk-faq-left {
        position: static;
        text-align: center;
    }
    
    .lk-faq-title {
        font-size: 40px;
    }
    
    .lk-faq-intro {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .lk-faq-container {
        padding: 0 1.5rem;
        gap: 40px;
    }
    
    .lk-faq-title {
        font-size: 32px;
    }
    
    .lk-faq-question {
        padding: 24px 0;
    }
    
    .lk-faq-question h3 {
        font-size: 16px;
    }
    
    .lk-faq-contact {
        padding: 30px 24px;
    }
    
    .lk-faq-contact-buttons {
        flex-direction: column;
    }
    
    .lk-faq-contact-btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .lk-faq-section {
        padding: 60px 0;
    }
    
    .lk-faq-container {
        padding: 0 1rem;
    }
    
    .lk-faq-title {
        font-size: 28px;
    }
    
    .lk-faq-intro {
        font-size: 16px;
    }
    
    .lk-faq-question {
        padding: 20px 0;
    }
    
    .lk-faq-question h3 {
        font-size: 15px;
    }
    
    .lk-faq-contact {
        padding: 24px 20px;
    }
    
    .lk-faq-contact-title {
        font-size: 20px;
    }
}

/* Video Modal Styles */
#lkVideoModal .modal-fullscreen {
    padding: 0;
}

#lkVideoModal .modal-content {
    background: #000;
    border: none;
    border-radius: 0;
    height: 100vh;
}

#lkVideoModal .modal-header {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    background: transparent;
    border: none;
    padding: 1rem;
}

#lkVideoModal .btn-close {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

#lkVideoModal .btn-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

#lkVideoModal .modal-body {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.lk-video-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lk-fullscreen-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

/* Video controls styling */
/* .lk-fullscreen-video::-webkit-media-controls {
    background: rgba(0, 0, 0, 0.5);
}

.lk-fullscreen-video::-webkit-media-controls-panel {
    background: rgba(0, 0, 0, 0.7);
} */

/* Responsive video modal */
@media (max-width: 768px) {
    #lkVideoModal .btn-close {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .lk-fullscreen-video {
        object-fit: cover;
    }
}

@media (max-width: 480px) {
    #lkVideoModal .btn-close {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
}

/* Photo Gallery Section Styles */
.lk-photo-gallery {
    padding: 5rem 0;
    background-color: #EEE;
}

.lk-gallery-header {
    text-align: center;
    margin-bottom: 40px;
}

.lk-gallery-title {
    color: #1C2B36;
    text-align: center;
    font-family: Glowen;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    margin: 0;
}

.lk-gallery-filters {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.lk-filter-btn {
    background: none;
    border: none;
    padding: 10px 0;
    position: relative;
    transition: all 0.3s ease;
    color: #5F5F5F;
    text-align: center;
    font-family: Sora;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 1.68px;
    text-transform: uppercase;
}

.lk-filter-btn:hover {
    color: #1E1E1E;
}

.lk-filter-btn.active {
    color: #1E1E1E;
}

.lk-filter-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #1C2B36;
}

.lk-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.lk-gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.lk-gallery-item.hidden {
    display: none;
}

.lk-gallery-item:hover {
    transform: scale(1.02);
}

.lk-gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.lk-gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.lk-gallery-item a {
    cursor: pointer;
}

.lk-gallery-item:hover img {
    transform: scale(1.05);
}

.lk-gallery-load-more {
    text-align: -webkit-center;
}

.lk-load-more-btn {
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
    text-align: center;
    font-family: Sora;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 1.68px;
    text-transform: uppercase;
}

.lk-load-more-btn:hover {
    color: #000;
    transform: translateY(-2px);
}



/* Responsive styles for photo gallery */
@media (max-width: 1024px) {
    .lk-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .lk-gallery-item img {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .lk-photo-gallery {
        padding: 60px 0;
    }
    
    .lk-gallery-title {
        font-size: 36px;
    }
    
    .lk-gallery-filters {
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .lk-filter-btn {
        font-size: 14px;
    }
    
    .lk-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .lk-gallery-item img {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .lk-photo-gallery {
        padding: 40px 0;
    }
    
    .lk-gallery-title {
        font-size: 28px;
    }
    
    .lk-gallery-filters {
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .lk-filter-btn {
        font-size: 12px;
        padding: 8px 0;
    }
    
    .lk-gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .lk-gallery-item img {
        height: 200px;
    }
}
