:root {
    --primary-color: #3e5124;
    --light-primary: #6a7f3e;
    --ultra-light-primary: #e3e8d9;
    --white: #ffffff;
    --dark-gray: #2a2a2a;
    --black: #000000;
    --white-color: #ffffff;
    --light-gray: #f2f5eb;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--white);
    color: var(--dark-gray);
    overflow-x: hidden;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
}

.container-fluid {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
}

.navbar {
    background-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 20px rgba(62, 81, 36, 0.1);
    padding: 0;
    transition: all 0.3s ease;
    position: relative;
    height: 60px;
    /* Reduced height */
}

.navbar.scrolled {
    padding: 0;
    background-color: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 5px 20px rgba(62, 81, 36, 0.15);
    height: 50px;
    /* Reduced height when scrolled */
}

.navbar-brand {
    padding: 0;
    position: absolute;
    top: -5px;
    /* Adjusted to float more above the header */
    left: 15px;
    z-index: 1030;
    transition: all 0.5s ease;
}

.navbar-brand img {
    height: 110px;
    filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.1));
    transition: all 0.5s ease;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin: 5px;
    background-color: white;
}

.navbar.scrolled .navbar-brand {
    top: -15px;
}

.navbar.scrolled .navbar-brand img {
    height: 90px;
}

.nav-link {
    color: var(--dark-gray) !important;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin: 0 10px;
    padding: 20px 5px !important;
    /* Reduced padding for smaller navbar */
    position: relative;
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-link {
    padding: 15px 5px !important;
    /* Reduced padding when scrolled */
}

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

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 15px;
    /* Adjusted for smaller navbar */
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.navbar.scrolled .nav-link::after {
    bottom: 10px;
    /* Adjusted for smaller navbar when scrolled */
}

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

.dropdown-menu {
    border: none;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
    padding: 10px 20px;
    color: var(--dark-gray);
    transition: all 0.3s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: var(--ultra-light-primary);
    color: var(--primary-color);
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler i {
    color: var(--primary-color);
    font-size: 24px;
}

/* Spacer for navbar-brand offset */
.navbar-brand-spacer {
    width: 150px;
}

.contact-info {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
    transition: all 0.3s ease;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    margin-left: 15px;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.social-icons a {
    margin-left: 15px;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.highlight-text {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-cta {
    background-color: var(--primary-color);
    color: white !important;
    border-radius: 4px;
    padding: 10px 20px !important;
    margin-left: 15px;
    box-shadow: 0 4px 10px rgba(62, 81, 36, 0.3);
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    background-color: var(--light-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(62, 81, 36, 0.4);
}

.nav-cta::after {
    display: none;
}

/* Ultra-Modern Luxury Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: var(--black);
}

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

.hero-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 3;
    padding: 0 50px;
}

.hero-content-inner {
    max-width: 600px;
}

.hero-tag {
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 30px;
    position: relative;
    padding-left: 40px;
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeInLeft 0.8s forwards;
    animation-delay: 0.3s;
}

.hero-tag:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 30px;
    height: 1px;
    background-color: var(--primary-color);
}

.hero-title {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
    animation-delay: 0.5s;
}

.hero-title .highlight {
    color: var(--light-primary);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 400px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
    animation-delay: 0.7s;
}

.hero-buttons {
    display: flex;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
    animation-delay: 0.9s;
}

.btn-primary-outline {
    display: inline-block;
    padding: 12px 30px;
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
    border: 1px solid var(--primary-color);
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary-outline:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--primary-color);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-primary-outline:hover {
    color: var(--white);
}

.btn-primary-outline:hover:after {
    width: 100%;
}

.btn-video {
    display: flex;
    align-items: center;
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    margin-left: 30px;
    transition: all 0.3s ease;
}

.btn-video:hover {
    color: var(--light-primary);
}

.btn-video-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-right: 15px;
    transition: all 0.3s ease;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.btn-video:hover .btn-video-icon {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.stats-container {
    display: flex;
    margin-top: 40px;
    opacity: 0;
    animation: fadeIn 0.8s forwards;
    animation-delay: 1.2s;
}

.stat-item {
    margin-right: 40px;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    padding: 15px;
    border-radius: 5px;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0;
    font-family: 'Montserrat', sans-serif;
}

.stat-number .plus {
    color: var(--light-primary);
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
}

.hero-scroll {
    position: absolute;
    right: 40px;
    bottom: 40px;
    z-index: 3;
    transform: rotate(90deg);
    transform-origin: bottom right;
    opacity: 0;
    animation: fadeIn 0.8s forwards;
    animation-delay: 1.4s;
}

.hero-scroll a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.hero-scroll a:hover {
    color: var(--light-primary);
}

.hero-scroll a:before {
    content: "";
    width: 40px;
    height: 1px;
    background-color: var(--white);
    margin-right: 15px;
    transition: all 0.3s ease;
}

.hero-scroll a:hover:before {
    width: 60px;
    background-color: var(--light-primary);
}

/* Keyframe Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: var(--white);
        padding: 15px;
        border-radius: 5px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        z-index: 1000;
        max-height: 80vh;
        overflow-y: auto;
        transition: all 0.3s ease;
        transform-origin: top;
        transform: scaleY(0);
        opacity: 0;
    }

    .navbar-collapse.show {
        transform: scaleY(1);
        opacity: 1;
    }

    .nav-link {
        padding: 12px 5px !important;
    }

    .navbar.scrolled .nav-link {
        padding: 12px 5px !important;
    }

    .nav-link::after {
        bottom: 7px;
    }

    .navbar.scrolled .nav-link::after {
        bottom: 7px;
    }

    .nav-cta {
        margin: 10px 0 0 5px;
        display: inline-block;
    }

    .contact-info {
        text-align: center;
    }

    .social-icons {
        margin-top: 10px;
        text-align: center;
    }

    .social-icons a {
        margin: 0 8px;
    }

    .contact-info a {
        margin: 0 8px;
    }

    .dropdown-menu {
        display: none;
        border: none;
        box-shadow: none;
        background-color: var(--ultra-light-primary);
        padding: 0 0 0 15px;
        margin: 0;
        transition: all 0.3s ease;
    }

    .dropdown-menu.show {
        display: block;
    }

    .dropdown-item {
        padding: 8px 15px;
    }

    .split-hero {
        flex-direction: column;
    }

    .hero-left {
        width: 100%;
        padding: 100px 30px 50px;
        background-color: rgba(0, 0, 0, 0.7);
    }

    .hero-right {
        width: 100%;
        height: 50vh;
    }

    .diagonal-divider {
        display: none;
    }

    .hero-accent-line {
        left: 20px;
        height: 50vh;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-scroll {
        display: none;
    }

    .stats-container {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 40px;
    }


    .navbar-brand {
        top: -40px;
        /* Further adjusted to float more above the header on mobile */
        left: 10px;
    }

    .navbar-brand img {
        height: 120px;
    }

    .navbar.scrolled .navbar-brand {
        top: -35px;
    }

    .navbar.scrolled .navbar-brand img {
        height: 80px;
    }

    .navbar-brand-spacer {
        width: 0;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-video {
        margin-left: 0;
        margin-top: 15px;
    }

    .stats-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-item {
        margin: 0 10px 15px;
    }

    .hero-scroll {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .navbar-brand {
        top: -35px;
        /* Adjusted for extra small screens */
    }

    .navbar-brand img {
        height: 120px;
    }

    .navbar.scrolled .navbar-brand img {
        height: 65px;
    }

    .contact-info {
        font-size: 12px;
    }

    .contact-info a,
    .social-icons a {
        margin: 0 5px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-tag {
        font-size: 0.7rem;
        letter-spacing: 3px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .hero-left {
        padding: 80px 20px 40px;
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: var(--white);
        padding: 15px;
        border-radius: 5px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        z-index: 1000;
        max-height: 80vh;
        overflow-y: auto;
        transition: all 0.3s ease;
        transform-origin: top;
        transform: scaleY(0);
        opacity: 0;
    }

    .navbar-collapse.show {
        transform: scaleY(1);
        opacity: 1;
    }

    .nav-link {
        padding: 10px 5px !important;
        /* Reduced padding for mobile */
    }

    .navbar.scrolled .nav-link {
        padding: 10px 5px !important;
        /* Reduced padding for mobile when scrolled */
    }

    .nav-link::after {
        bottom: 5px;
        /* Adjusted for smaller navbar on mobile */
    }

    .navbar.scrolled .nav-link::after {
        bottom: 5px;
        /* Adjusted for smaller navbar on mobile when scrolled */
    }

    .nav-cta {
        margin: 10px 0 0 5px;
        display: inline-block;
    }

    .contact-info {
        text-align: center;
    }

    .social-icons {
        margin-top: 10px;
        text-align: center;
    }

    .social-icons a {
        margin: 0 8px;
    }

    .contact-info a {
        margin: 0 8px;
    }
}

/*  */
.luxury-section {
    padding: 100px 0;
    background-color: var(--white-color);
    position: relative;
    overflow: hidden;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 0;
}

.luxury-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    color: #555;
    margin-bottom: 3rem;
    max-width: 700px;
}

.feature-card {
    padding: 40px 30px;
    background-color: var(--white-color);
    border-radius: 10px;
    transition: all 0.4s ease;
    height: 100%;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.feature-card:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(122, 87, 48, 0.15);
}

.feature-card:hover:before {
    height: 6px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: var(--ultra-light-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-desc {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.luxury-pattern {
    position: absolute;
    opacity: 0.03;
    z-index: 0;
}

.pattern-1 {
    top: 10%;
    left: -5%;
    width: 300px;
    height: 300px;
    background-image: radial-gradient(var(--primary-color) 2px, transparent 2px);
    background-size: 30px 30px;
    transform: rotate(15deg);
}

.pattern-2 {
    bottom: 10%;
    right: -5%;
    width: 250px;
    height: 250px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
}

.highlight-text {
    color: var(--primary-color);
    font-weight: 600;
}

.testimonial-slider {
    padding: 60px 0 40px;
    position: relative;
}

.testimonial-card {
    background-color: var(--ultra-light-primary);
    padding: 30px;
    border-radius: 10px;
    margin: 30px 15px;
    position: relative;
}

.testimonial-quote {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.client-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.client-info {
    margin-left: 20px;
}

.client-name {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0;
    font-size: 1.1rem;
}

.client-position {
    font-size: 0.9rem;
    color: #777;
}

.btn-luxury {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.btn-luxury:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.counter-wrapper {
    position: relative;
    padding: 60px 0;
    background-color: var(--ultra-light-primary);
    margin-top: 80px;
    border-radius: 10px;
}

.counter-item {
    text-align: center;
}

.counter-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.counter-text {
    font-size: 1rem;
    color: #555;
    font-weight: 500;
}

@media (max-width: 991px) {
    .luxury-section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .counter-wrapper {
        margin-top: 60px;
    }
}

@media (max-width: 767px) {
    .luxury-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .luxury-subtitle {
        font-size: 1rem;
    }

    .feature-card {
        margin-bottom: 30px;
    }

    .counter-wrapper {
        padding: 40px 0;
    }

    .counter-item {
        margin-bottom: 30px;
    }
}

/* About Us Section Styles */
.about-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.about-bg-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: radial-gradient(var(--ultra-light-primary) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    z-index: -1;
}

.about-heading {
    position: relative;
    margin-bottom: 30px;
}

.about-heading .subtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 500;
}

.about-heading h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    color: var(--dark-gray);
}

.about-heading h2::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -15px;
    left: 0;
}

.about-text {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(51, 51, 51, 0.8);
    margin-bottom: 25px;
}

.about-text strong {
    color: var(--dark-gray);
}

.about-image-container {
    position: relative;
    height: 100%;
}

.about-main-image {
    width: 80%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
}

.about-main-image:hover {
    transform: scale(1.02);
}

.about-accent-image {
    position: absolute;
    width: 60%;
    height: auto;
    border-radius: 10px;
    bottom: -20%;
    right: 0;
    z-index: 3;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border: 5px solid var(--white);
    transition: all 0.5s ease;
}

.about-accent-image:hover {
    transform: translateY(-10px);
}

.about-decorative-element {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    top: 10%;
    right: 5%;
    z-index: 1;
    opacity: 0.2;
}

.mission-vision-section {
    background-color: var(--light-gray);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.mission-vision-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.mission-vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mission-vision-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    top: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: all 0.4s ease;
}

.mission-vision-card:hover::before {
    height: 10px;
}

.mission-vision-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--ultra-light-primary);
    border-radius: 50%;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.mission-vision-card:hover .mission-vision-icon {
    background-color: var(--primary-color);
}

.mission-vision-icon i {
    font-size: 28px;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.mission-vision-card:hover .mission-vision-icon i {
    color: var(--white);
}

.mission-vision-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.mission-vision-text {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(51, 51, 51, 0.8);
}

.milestone-section {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
}

.milestone-heading {
    text-align: center;
    margin-bottom: 60px;
}

.milestone-heading h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.milestone-heading h3::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.milestone-heading p {
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
    margin-top: 30px;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--light-primary);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-container {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-container::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--white);
    border: 4px solid var(--primary-color);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-left {
    left: 0;
}

.timeline-right {
    left: 50%;
}

.timeline-right::after {
    left: -10px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: var(--white);
    position: relative;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.timeline-year {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.timeline-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.timeline-description {
    font-size: 14px;
    line-height: 1.7;
}

.values-section {
    padding: 100px 0;
    background-color: var(--ultra-light-primary);
    position: relative;
    overflow: hidden;
}

.values-heading {
    text-align: center;
    margin-bottom: 60px;
}

.values-heading h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.values-heading h3::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.values-heading p {
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
    margin-top: 30px;
}

.value-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.value-card::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: var(--ultra-light-primary);
    border-radius: 50%;
    top: -75px;
    right: -75px;
    z-index: 0;
    transition: all 0.4s ease;
}

.value-card:hover::before {
    transform: scale(1.2);
}

.value-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--ultra-light-primary);
    border-radius: 50%;
    margin: 0 auto 25px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    background-color: var(--primary-color);
}

.value-icon i {
    font-size: 28px;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.value-card:hover .value-icon i {
    color: var(--white);
}

.value-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-gray);
    position: relative;
    z-index: 1;
}

.value-description {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(51, 51, 51, 0.8);
    position: relative;
    z-index: 1;
}

.team-section {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
}

.team-heading {
    text-align: center;
    margin-bottom: 60px;
}

.team-heading h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.team-heading h3::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.team-heading p {
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
    margin-top: 30px;
}

.team-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.team-img-container {
    position: relative;
    overflow: hidden;
}

.team-img {
    width: 100%;
    height: auto;
    transition: all 0.7s ease;
}

.team-card:hover .team-img {
    transform: scale(1.05);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.7) 100%);
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-name {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-gray);
}

.team-position {
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 500;
}

.team-description {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(51, 51, 51, 0.8);
    margin-bottom: 20px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--ultra-light-primary);
    color: var(--primary-color);
    transition: all 0.3s ease;
    padding: 10px;
    text-decoration: none;
}

.team-social a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.cta-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/api/placeholder/1200/300');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-heading {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.cta-btn {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--white);
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    color: var(--primary-color);
}

/* Media Queries */
@media (max-width: 991.98px) {

    .about-section,
    .mission-vision-section,
    .milestone-section,
    .values-section,
    .team-section {
        padding: 80px 0;
    }

    .about-heading h2,
    .milestone-heading h3,
    .values-heading h3,
    .team-heading h3 {
        font-size: 32px;
    }

    .about-accent-image {
        width: 50%;
    }

    .value-card,
    .mission-vision-card {
        margin-bottom: 30px;
    }

    .timeline::after {
        left: 31px;
    }

    .timeline-container {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-right {
        left: 0;
    }

    .timeline-right::after {
        left: 21px;
    }

    .timeline-left::after {
        left: 21px;
    }
}

@media (max-width: 767.98px) {

    .about-section,
    .mission-vision-section,
    .milestone-section,
    .values-section,
    .team-section {
        padding: 60px 0;
    }

    .about-heading h2,
    .milestone-heading h3,
    .values-heading h3,
    .team-heading h3,
    .cta-heading {
        font-size: 28px;
    }

    .about-main-image {
        width: 100%;
        margin-top: 30px;
    }

    .about-accent-image {
        display: none;
    }

    .team-card {
        margin-bottom: 30px;
    }

    .cta-section {
        padding: 60px 0;
    }
}

@media (max-width: 575.98px) {

    .about-section,
    .mission-vision-section,
    .milestone-section,
    .values-section,
    .team-section {
        padding: 50px 0;
    }

    .about-heading h2,
    .milestone-heading h3,
    .values-heading h3,
    .team-heading h3,
    .cta-heading {
        font-size: 24px;
    }

    .about-heading .subtitle {
        font-size: 12px;
    }

    .mission-vision-card,
    .value-card {
        padding: 25px;
    }

    .mission-vision-title {
        font-size: 20px;
    }

    .timeline-content {
        padding: 15px;
    }

    .timeline-year {
        font-size: 20px;
    }

    .timeline-title {
        font-size: 16px;
    }

    .cta-text {
        font-size: 14px;
    }

    .cta-btn {
        padding: 12px 25px;
    }
}

/* Additional luxury styles and animations */
.lis-btn-ripple {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: lis-ripple-animation 0.6s linear;
    pointer-events: none;
    z-index: 10;
}

@keyframes lis-ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Luxury hover effects */
.lis-residence-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.lis-residence-card.animate {
    animation: lis-card-entrance 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes lis-card-entrance {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lis-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(122, 87, 48, 0) 0%, rgba(122, 87, 48, 0.1) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.lis-residence-card:hover .lis-image-container::before {
    opacity: 1;
}

/* Gold accent details */
.lis-residence-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--light-primary), var(--primary-color), var(--light-primary));
    transform: translateX(-50%);
    transition: width 0.5s ease;
}

.lis-residence-card:hover::after {
    width: 80%;
}

/* Signature project animations */
.lis-signature-image.animate {
    animation: lis-fade-right 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.lis-signature-content.animate {
    animation: lis-fade-left 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes lis-fade-right {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

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

@keyframes lis-fade-left {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

/* Floating animation for badge */
.lis-signature-badge {
    animation: lis-float 3s ease-in-out infinite;
}

@keyframes lis-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Shimmer effect for luxury tags */
.lis-luxury-tag {
    position: relative;
    overflow: hidden;
}

.lis-luxury-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0) 100%);
    animation: lis-shimmer 2.5s infinite;
}

@keyframes lis-shimmer {
    to {
        left: 150%;
    }
}

/* Luxury Residences Section */
.lis-residences-section {
    position: relative;
    background-color: var(--white);
    overflow: hidden;
}

.lis-residences-intro {
    position: relative;
    background-color: var(--white);
    overflow: hidden;
}

.lis-residences-intro::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background-color: var(--ultra-light-primary);
    opacity: 0.7;
    border-radius: 0 0 0 400px;
    z-index: 0;
}

.lis-residences-intro::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: var(--ultra-light-primary);
    opacity: 0.5;
    border-radius: 50%;
    z-index: 0;
}

.lis-section-header {
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}

.lis-luxury-tag {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--primary-color);
    background-color: var(--ultra-light-primary);
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 25px;
    position: relative;
}

.lis-luxury-tag::before,
.lis-luxury-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background-color: var(--primary-color);
}

.lis-luxury-tag::before {
    left: -40px;
}

.lis-luxury-tag::after {
    right: -40px;
}

.lis-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-gray);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.lis-highlight {
    color: var(--primary-color);
    position: relative;
}

.lis-highlight::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 10px;
    bottom: 5px;
    left: 0;
    background-color: var(--ultra-light-primary);
    z-index: -1;
}

.lis-elegant-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 25px auto;
    width: 100%;
    max-width: 150px;
}

.lis-elegant-divider span {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--light-primary) 20%, var(--light-primary) 80%, transparent);
    flex-grow: 1;
}

.lis-elegant-divider i {
    color: var(--primary-color);
    font-size: 12px;
    margin: 0 15px;
}

.lis-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* Residential Categories */
.lis-residential-categories {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    padding: 0 20px;
}

.lis-category {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #555;
    cursor: pointer;
    position: relative;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.lis-category::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--light-primary));
    transition: all 0.4s ease;
}

.lis-category:hover,
.lis-category.active {
    color: var(--primary-color);
}

.lis-category:hover::after,
.lis-category.active::after {
    width: 100%;
}

/* Residences Portfolio */
.lis-portfolio-slider {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.lis-residence-item {
    width: 33.333%;
    padding: 0 15px;
    margin-bottom: 50px;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.lis-residence-card {
    position: relative;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    height: 100%;
}

.lis-residence-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(122, 87, 48, 0.12);
}

.lis-image-container {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.lis-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.7s ease;
}

.lis-residence-card:hover .lis-image-container img {
    transform: scale(1.05);
}

.lis-residence-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--light-primary));
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 8px 15px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(122, 87, 48, 0.2);
    z-index: 1;
}

.lis-discover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.lis-residence-card:hover .lis-discover-overlay {
    opacity: 1;
}

.lis-discover-btn {
    background-color: var(--white);
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.lis-residence-card:hover .lis-discover-btn {
    transform: translateY(0);
}

.lis-discover-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.lis-discover-btn i {
    transition: all 0.3s ease;
}

.lis-discover-btn:hover i {
    transform: translateX(5px);
}

.lis-residence-details {
    padding: 30px;
}

.lis-residence-location {
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.lis-residence-name {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.lis-residence-card:hover .lis-residence-name {
    color: var(--primary-color);
}

.lis-residence-features {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.lis-feature {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: #666;
}

.lis-feature i {
    color: var(--primary-color);
    font-size: 14px;
}

.lis-residence-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.lis-tag {
    display: inline-block;
    background-color: var(--ultra-light-primary);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 4px;
}

/* Signature Project Section */
.lis-signature-project {
    margin: 50px 0 50px;
    position: relative;
    overflow: hidden;
}

.lis-signature-image {
    position: relative;
    height: 100%;
    min-height: 600px;
    overflow: hidden;
}

.lis-signature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.lis-signature-badge {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 120px;
    height: 120px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
}

.lis-signature-content {
    padding: 80px 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f9f9f9;
}

.lis-project-name {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 25px;
    line-height: 1.2;
}

.lis-project-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.lis-project-highlights {
    margin-top: 30px;
    margin-bottom: 40px;
}

.lis-highlight-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.lis-icon {
    width: 40px;
    height: 40px;
    background-color: var(--ultra-light-primary);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-right: 15px;
    flex-shrink: 0;
}

.lis-content {
    display: flex;
    flex-direction: column;
}

.lis-label {
    font-size: 13px;
    font-weight: 600;
    color: #888;
    margin-bottom: 5px;
}

.lis-value {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark-gray);
}

.lis-cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.lis-primary-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--light-primary));
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 14px 30px;
    border-radius: 4px;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(122, 87, 48, 0.15);
    transition: all 0.3s ease;
}

.lis-primary-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(122, 87, 48, 0.2);
    color: var(--white);
}

.lis-secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 14px 30px;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.lis-secondary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--light-primary));
    transition: all 0.4s ease;
    z-index: -1;
}

.lis-secondary-btn:hover {
    color: var(--white);
}

.lis-secondary-btn:hover::before {
    left: 0;
}

.lis-secondary-btn i {
    transition: all 0.3s ease;
}

.lis-secondary-btn:hover i {
    transform: translateX(5px);
}

/* Experience Section */
.lis-experience-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/api/placeholder/1920/800');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.lis-experience-content {
    max-width: 800px;
    margin: 0 auto;
    color: var(--white);
}

.lis-experience-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.lis-experience-content p {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

.lis-experience-btn {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.lis-experience-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--light-primary));
    transition: all 0.4s ease;
    z-index: -1;
}

.lis-experience-btn:hover {
    color: var(--white);
}

.lis-experience-btn:hover::before {
    width: 100%;
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .lis-residence-item {
        width: 50%;
    }

    .lis-signature-content {
        padding: 60px 40px;
    }

    .lis-project-name {
        font-size: 36px;
    }
}

@media (max-width: 991.98px) {
    .lis-residences-intro {
        padding: 100px 0 60px;
    }

    .lis-title {
        font-size: 42px;
    }

    .lis-signature-image {
        min-height: 500px;
    }

    .lis-signature-content {
        padding: 50px 30px;
    }

    .lis-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .lis-primary-btn,
    .lis-secondary-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .lis-residences-intro {
        padding: 80px 0 50px;
    }

    .lis-title {
        font-size: 36px;
    }

    .lis-description {
        font-size: 16px;
    }

    .lis-residence-item {
        width: 100%;
        margin-bottom: 30px;
    }

    .lis-residential-categories {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .lis-signature-badge {
        top: 20px;
        right: 20px;
        width: 100px;
        height: 100px;
        font-size: 14px;
    }

    .lis-signature-image {
        min-height: 400px;
    }

    .lis-project-name {
        font-size: 32px;
    }

    .lis-experience-section {
        padding: 80px 0;
    }

    .lis-experience-content h2 {
        font-size: 32px;
    }

    .lis-experience-content p {
        font-size: 16px;
    }
}

@media (max-width: 575.98px) {
    .lis-residences-intro {
        padding: 70px 0 40px;
    }

    .lis-luxury-tag {
        font-size: 10px;
        padding: 6px 16px;
    }

    .lis-luxury-tag::before,
    .lis-luxury-tag::after {
        width: 20px;
    }

    .lis-luxury-tag::before {
        left: -25px;
    }

    .lis-luxury-tag::after {
        right: -25px;
    }

    .lis-title {
        font-size: 30px;
    }

    .lis-elegant-divider {
        max-width: 120px;
    }

    .lis-category {
        font-size: 12px;
        padding: 8px 5px;
    }

    .lis-signature-content {
        padding: 40px 20px;
    }

    .lis-project-name {
        font-size: 28px;
    }

    .lis-highlight-item {
        margin-bottom: 15px;
    }

    .lis-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .lis-experience-content h2 {
        font-size: 28px;
    }
}

.gallery-section {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-color: var(--ultra-light-primary);
    z-index: 0;
    clip-path: polygon(100px 0, 100% 0, 100% 100%, 0 100%);
}

/* Gallery Filter */
.gallery-filter {
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.gallery-filter .filter-item {
    cursor: pointer;
    padding: 8px 20px;
    margin: 5px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    border: 1px solid transparent;
    border-radius: 30px;
    background-color: var(--ultra-light-primary);
    color: var(--dark-gray);
    transition: all 0.3s ease;
}

.gallery-filter .filter-item:hover,
.gallery-filter .filter-item.active {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 5px 15px rgba(122, 87, 48, 0.3);
    transform: translateY(-3px);
}

/* Gallery Grid */
.gallery-container {
    margin-left: -15px;
    margin-right: -15px;
    position: relative;
}

.gallery-item {
    position: relative;
    padding: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.4s ease;
}

/* Added for filter animation */
.gallery-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    height: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.gallery-item-inner {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 300px;
    transition: all 0.5s ease;
    cursor: pointer;
}

.gallery-item-inner:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.gallery-img {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: all 0.5s ease;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1.5s ease;
}

.gallery-item-inner:hover .gallery-img img {
    transform: scale(1.1);
}

.gallery-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 1;
}

.gallery-item-inner:hover .gallery-info {
    opacity: 1;
    transform: translateY(0);
}

.gallery-info h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 5px;
}

.gallery-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 0;
}

.gallery-icons {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease 0.1s;
    z-index: 2;
}

.gallery-item-inner:hover .gallery-icons {
    opacity: 1;
    transform: translateY(0);
}

.gallery-icon {
    width: 45px;
    height: 45px;
    background-color: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.gallery-icon:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 7px 15px rgba(0, 0, 0, 0.3);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 0;
}

.gallery-item-inner:hover .gallery-overlay {
    opacity: 1;
}

/* Gallery badge */
.design-style {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* CTA Button */
.view-all-btn {
    margin-top: 30px;
    text-align: center;
}

.btn-luxury {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    z-index: -1;
}

.btn-luxury:hover {
    color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(122, 87, 48, 0.3);
}

.btn-luxury:hover::before {
    left: 0;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .section-title h2 {
        font-size: 36px;
    }

    .gallery-section::before {
        width: 30%;
    }

    .gallery-item-inner {
        height: 250px;
    }
}

@media (max-width: 767.98px) {
    .section-title h2 {
        font-size: 32px;
    }

    .gallery-section {
        padding: 70px 0;
    }

    .gallery-section::before {
        display: none;
    }

    .gallery-filter .filter-item {
        padding: 6px 15px;
        font-size: 13px;
    }
}

@media (max-width: 575.98px) {
    .section-title h2 {
        font-size: 28px;
    }

    .section-title h2:after {
        width: 50%;
    }

    .gallery-info {
        padding: 20px;
    }

    .gallery-info h4 {
        font-size: 18px;
    }

    .gallery-icons {
        top: 15px;
        right: 15px;
    }

    .gallery-icon {
        width: 40px;
        height: 40px;
    }

    .design-style {
        top: 15px;
        left: 15px;
        padding: 4px 12px;
        font-size: 11px;
    }
}
/* Divider */
.luxury-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, rgba(122, 87, 48, 0.1), rgba(122, 87, 48, 0.8), rgba(122, 87, 48, 0.1));
    margin: 50px 0;
}

/* Testimonials */
.testimonial-section {
    padding: 80px 0;
    background-color: var(--ultra-light-primary);
    position: relative;
    overflow: hidden;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background-color: rgba(122, 87, 48, 0.05);
    z-index: 0;
}

.testimonial-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(122, 87, 48, 0.05);
    z-index: 0;
}

.testimonial-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    margin: 15px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.testimonial-content::before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: -15px;
    left: -10px;
    font-size: 28px;
    color: rgba(122, 87, 48, 0.1);
    z-index: -1;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 3px solid var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-author-info h5 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark-gray);
}

.testimonial-author-info span {
    font-size: 14px;
    color: var(--light-primary);
}

.testimonial-rating {
    margin-top: 5px;
}

.testimonial-rating i {
    color: #FFD700;
    font-size: 14px;
}
/* Main Footer Styles */
.footer {
    background-color: #1e1e1e;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.footer-top {
    padding: 70px 0 40px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    margin-bottom: 25px;
    max-width: 200px;
    height: auto;
}

.footer-title {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 22px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
    text-transform: uppercase;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-text {
    margin-bottom: 25px;
    line-height: 1.8;
}

.footer-social-icons {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.footer-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    padding-left: 20px;
    font-size: 14px;
}

.footer-links a i {
    font-size: 12px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-links a:hover i {
    color: var(--primary-color);
}

.footer-contact-info p {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.footer-contact-info p i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--primary-color);
}

.footer-newsletter {
    margin-top: 30px;
}

.newsletter-title {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--white);
    font-weight: 500;
}

.newsletter-form .input-group {
    border-radius: 4px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.1);
}

.newsletter-form .form-control {
    border: none;
    background-color: rgba(255, 255, 255, 0.05);
    height: 45px;
    color: var(--white);
    padding-left: 15px;
    border-radius: 0;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    border-color: transparent;
}

.newsletter-form .btn {
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 0;
    padding: 0 20px;
    height: 45px;
    border: none;
}

.newsletter-form .btn:hover {
    background-color: var(--light-primary);
}

/* Copyright Section */
.copyright-section {
    background-color: #191919;
    padding: 20px 0;
    color: rgba(255, 255, 255, 0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
    width: 100%;
}

.copyright-text {
    margin: 0;
}

.copyright-text i {
    color: #ff6b6b;
    margin: 0 3px;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.footer-bottom-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
}

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

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* Responsive Fixes */
@media (max-width: 1199.98px) {
    .footer-title {
        font-size: 20px;
    }

    .footer-links a {
        font-size: 13px;
    }
}

@media (max-width: 991.98px) {
    .footer-top {
        padding: 60px 0 30px;
    }

    .footer-widget {
        margin-bottom: 40px;
    }

    .footer-title {
        margin-bottom: 20px;
    }
}

@media (max-width: 767.98px) {
    .footer-top {
        padding: 50px 0 20px;
    }

    .copyright-col,
    .links-col {
        width: 100%;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
        flex-wrap: wrap;
    }

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

    .copyright-text {
        text-align: center;
        margin-bottom: 10px;
    }
}

@media (max-width: 575.98px) {
    .footer-social-icons {
        justify-content: center;
    }

    .footer-text {
        text-align: center;
    }

    .footer-logo {
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    .footer-title {
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links {
        text-align: center;
    }

    .footer-contact-info {
        text-align: center;
    }

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

    .newsletter-title {
        text-align: center;
    }
}
