/*
Theme Name: star
Description: Specific styles of the theme relative ti this website.
*/


:root {
    --color-black: #131313;
    --color-gold: #D5A44B;
    --color-blue: #1B3050;
    --color-light-grey: #F8F8F8;
    --color-grey: #999999;
    --color-white: #FFFFFF;
    
    --font-primary: 'Raveo Display', sans-serif;
}


html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 100px; 
}

@media (max-width: 991px) {
    section[id] {
        scroll-margin-top: 70px;
    }
}




/*==== Header =====*/

@media (min-width: 992px) {
    #site-header {
        background-color: transparent;
        box-shadow: none;
        padding: 20px 0;
    }
    
    #site-header.sticky {
        background-color: transparent;
        box-shadow: none;
        padding: 15px 0;
    }
    
    #site-header .flex-parent {
        background-color: #fff;
        border-radius: 50px;
        padding: 35px 30px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    /* Logo styling */
    #site-header .header-logo {
        padding: 0;
        margin: 0;
    }
    
    #site-header .header-logo img {
        max-height: 50px;
        max-width: 150px;
    }
    
    /* Center menu items */
    #site-header .navbar-collapse {
        display: flex;
        justify-content: center;
        padding: 0 20px;
    }

    #site-header .navbar-collapse {
        flex: none;
    }
    
    #site-header .navbar-nav {
        margin-right: 0 !important;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    /* Menu item styling */
    #site-header .navbar-nav > li > a {
        color: var(--color-black);
        font-size: 16px;
        font-weight: 500;
        padding: 10px 20px;
        transition: all 0.3s ease;
    }
    
    #site-header .navbar-nav > li > a:hover,
    #site-header .navbar-nav > li > a:focus,
    #site-header .navbar-nav > .active > a {
        color: #c9a961;
        background-color: transparent;
    }
}

/* Header Contact Button */

@media (min-width: 992px) {
    .header-contact-button {
        display: flex;
        align-items: center;
        padding-left: 0;
        margin-left: 10px;
    }
    
    .header-contact-button .btn-contact-us {
        display: inline-block;
        background-color: #2c3e57;
        color: #fff;
        padding: 12px 30px;
        border-radius: 50px;
        font-size: 16px;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.3s ease;
        white-space: nowrap;
        border: 1px solid;
        border-color: var(--color-blue);
    }
    
    .header-contact-button .btn-contact-us:hover {
        background-color: var(--color-white);
        color: var(--color-blue);
    }
}

/* Hide contact button on mobile */
@media (max-width: 991px) {
    .header-contact-button {
        display: none;
    }
}



/* Mobile Header  */

@media (max-width: 991px) {
    #site-header {
        background-color: #fff;
        height: 60px;
        border: none;
    }
    
    #site-header.sticky {
        background-color: #fff;
        box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, .5);
    }
}





/* Hero Section */
.lh-hero-section {
    position: relative;
    height: 100vh;
    max-height: 1500px;
    display: flex;
    align-items: flex-end; 
    overflow: hidden;
}

/* Swiper Background */
.lh-hero-swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.lh-hero-swiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.lh-slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.lh-slide-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.25) 60%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

/* Hero Container */
.lh-hero-section .container {
    position: relative;
    z-index: 2;
}

.lh-hero-section .cont-wrap {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 10px 80px;
    width: 100%;
}

/* Hero Content */
.lh-hero-content {
    max-width: 750px;
}

.lh-hero-tagline {
    color: var(--color-white);
    font-size: 18px;
    margin-bottom: 28px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.3px;
}

.lh-hero-tagline i {
    font-size: 18px;
    color: var(--color-gold);
}

.lh-hero-title {
    color: var(--color-white);
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -1.5px;
}

/* Hero Stats */
.lh-hero-stats {
    display: flex;
    gap: 75px;
    align-items: flex-end;
}

.lh-stat-item {
    position: relative;
}

.lh-stat-number {
    color: var(--color-white);
    font-size: 60px;
    font-weight: 500;
    margin: 0 0 10px 0;
    line-height: 1;
    letter-spacing: -1.5px;
}

.lh-stat-label {
    color: var(--color-white);
    font-size: 17px;
    font-weight: 400;
    margin: 0;
    opacity: 0.95;
    letter-spacing: 0.3px;
}

/* Responsive Styles */

/* Extra Large Desktop - 1400px */
@media (max-width: 1400px) {
    .lh-hero-section .cont-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 50px;
    }
    
    .lh-hero-content {
        max-width: 100%;
    }
    
    .lh-hero-stats {
        width: 100%;
        justify-content: flex-start;
    }
}

/* Large Desktop - 1200px */
@media (max-width: 1200px) {
    .lh-hero-section .container {
        padding: 0 40px;
    }
    
    .lh-hero-section .cont-wrap {
        padding: 0 0 70px;
    }
    
    .lh-hero-tagline {
        font-size: 17px;
        margin-bottom: 26px;
    }
    
    .lh-hero-tagline i {
        font-size: 17px;
    }
    
    .lh-hero-title {
        font-size: 58px;
    }
    
    .lh-hero-stats {
        gap: 70px;
    }
    
    .lh-stat-number {
        font-size: 58px;
    }
    
    .lh-stat-label {
        font-size: 18px;
    }
}

/* Tablet Landscape - 992px */
@media (max-width: 992px) {
    .lh-hero-section .container {
        padding: 0 30px;
    }
    
    .lh-hero-section .cont-wrap {
        padding: 0 0 60px;
        gap: 45px;
    }
    
    .lh-hero-tagline {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .lh-hero-tagline i {
        font-size: 16px;
    }
    
    .lh-hero-title {
        font-size: 50px;
    }
    
    .lh-hero-stats {
        gap: 60px;
    }
    
    .lh-stat-number {
        font-size: 50px;
    }
    
    .lh-stat-label {
        font-size: 17px;
    }
}

/* Tablet Portrait - 768px */
@media (max-width: 768px) {
    .lh-hero-section {
        /* min-height: 100vh; */
        align-items: flex-end;
    }
    
    .lh-hero-section .container {
        padding: 0 20px;
    }
    
    .lh-hero-section .cont-wrap {
        padding: 0 0 50px;
        gap: 40px;
    }
    
    .lh-slide-bg::before {
        background: linear-gradient(to right, rgba(0, 0, 0, 0.70) 0%, rgba(0, 0, 0, 0.50) 100%);
    }
    
    .lh-hero-tagline {
        font-size: 15px;
        margin-bottom: 20px;
        gap: 8px;
    }
    
    .lh-hero-tagline i {
        font-size: 14px;
    }
    
    .lh-hero-title {
        font-size: 42px;
        letter-spacing: -1px;
    }
    
    .lh-hero-stats {
        gap: 50px;
    }
    
    .lh-stat-number {
        font-size: 42px;
        margin-bottom: 8px;
        letter-spacing: -1px;
    }
    
    .lh-stat-label {
        font-size: 16px;
    }
}

/* Mobile - 576px */
@media (max-width: 576px) {
    .lh-hero-section {
        /* min-height: 100vh; */
        align-items: flex-end;
    }
    
    .lh-hero-section .container {
        padding: 0 15px;
    }
    
    .lh-hero-section .cont-wrap {
        padding: 0 0 40px; 
        gap: 35px;
    }
    
    .lh-slide-bg::before {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.75) 100%);
    }
    
    .lh-hero-tagline {
        font-size: 14px;
        margin-bottom: 18px;
    }
    
    .lh-hero-tagline i {
        font-size: 12px;
    }
    
    .lh-hero-title {
        font-size: 36px;
        line-height: 1.2;
    }
    
    .lh-hero-stats {
        width: 100%;
        gap: 40px;
        flex-wrap: wrap;
    }
    
    .lh-stat-item {
        flex: 0 0 auto;
    }
    
    .lh-stat-number {
        font-size: 36px;
        margin-bottom: 6px;
    }
    
    .lh-stat-label {
        font-size: 15px;
    }
}

@media (max-width: 320px) {
    .lh-hero-section {
        align-items: flex-end; 
    }
    
    .lh-hero-section .container {
        padding: 0 10px;
    }
    
    .lh-hero-section .cont-wrap {
        padding: 0 0 35px; 
        gap: 30px;
    }
    
    .lh-hero-tagline {
        font-size: 13px;
        margin-bottom: 16px;
        gap: 6px;
    }
    
    .lh-hero-tagline i {
        font-size: 11px;
    }
    
    .lh-hero-title {
        font-size: 30px;
        line-height: 1.2;
        letter-spacing: -0.8px;
    }
    
    .lh-hero-stats {
        gap: 30px;
    }
    
    .lh-stat-number {
        font-size: 32px;
        margin-bottom: 5px;
        letter-spacing: -0.8px;
    }
    
    .lh-stat-label {
        font-size: 14px;
    }
}


/* Who We Are Section */
.lh-whoweare-section {
    padding: 100px 0;
    background-color: var(--color-light-grey);
}

.lh-whoweare-section .cont-wrap {
    display: flex;
    flex-direction: column;
}

/* Who We Are Header */
.lh-whoweare-header {
    text-align: center;
    margin-bottom: 30px;
}

/* Who We Are Content */
.lh-whoweare-content {
    max-width: 1100px;
    margin: 0 auto;
}

.lh-whoweare-title {
    font-size: 44px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-black);
    margin: 0 0 50px 0;
    text-align: center;
}

/* Two Column Text */
.lh-whoweare-text {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.lh-whoweare-col {
    flex: 0 0 calc(50% - 30px);
    max-width: calc(50% - 30px);
}

.lh-whoweare-col p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-grey);
    margin: 0 0 20px 0;
}

.lh-whoweare-col p:last-child {
    margin-bottom: 0;
}

/* Three Pillars */
.lh-whoweare-pillars {
    display: flex;
    flex-direction: row;
    gap: 40px;
    margin-top: 30px;
}

.lh-pillar-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lh-pillar-item i {
    font-size: 16px;
    color: var(--color-gold);
}

.lh-pillar-item span {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-black);
}

/* Responsive Styles */

/* 1200px and below */
@media (max-width: 1200px) {
    .lh-whoweare-section {
        padding: 90px 0;
    }
    
    .lh-whoweare-content {
        max-width: 1000px;
    }
    
    .lh-whoweare-title {
        font-size: 40px;
        margin-bottom: 45px;
    }
    
    .lh-whoweare-text {
        gap: 50px;
    }
    
    .lh-whoweare-col {
        flex: 0 0 calc(50% - 25px);
        max-width: calc(50% - 25px);
    }
    
    .lh-whoweare-col p {
        font-size: 15px;
        margin-bottom: 18px;
    }
    
    .lh-whoweare-pillars {
        margin-top: 25px;
        gap: 35px;
    }
    
    .lh-pillar-item span {
        font-size: 15px;
    }
}

/* 992px and below */
@media (max-width: 992px) {
    .lh-whoweare-section {
        padding: 80px 0;
    }
    
    .lh-whoweare-section .container {
        padding: 0 40px;
    }
    
    .lh-whoweare-content {
        max-width: 100%;
    }
    
    .lh-whoweare-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .lh-whoweare-text {
        flex-direction: column;
        gap: 30px;
    }
    
    .lh-whoweare-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .lh-whoweare-col p {
        font-size: 15px;
        margin-bottom: 16px;
    }
    
    .lh-whoweare-pillars {
        flex-direction: row;
        gap: 30px;
        margin-top: 25px;
    }
}

/* 768px and below */
@media (max-width: 768px) {
    .lh-whoweare-section {
        padding: 70px 0;
    }
    
    .lh-whoweare-section .container {
        padding: 0 30px;
    }
    
    .lh-whoweare-header {
        margin-bottom: 25px;
    }
    
    .lh-whoweare-title {
        font-size: 30px;
        margin-bottom: 35px;
    }
    
    .lh-whoweare-text {
        gap: 25px;
    }
    
    .lh-whoweare-col p {
        font-size: 14px;
        margin-bottom: 14px;
    }
    
    .lh-whoweare-pillars {
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
    }
    
    .lh-pillar-item i {
        font-size: 14px;
    }
    
    .lh-pillar-item span {
        font-size: 14px;
    }
}

/* 576px and below */
@media (max-width: 576px) {
    .lh-whoweare-section {
        padding: 60px 0;
    }
    
    .lh-whoweare-section .container {
        padding: 0 20px;
    }
    
    .lh-whoweare-header {
        margin-bottom: 20px;
    }
    
    .lh-whoweare-title {
        font-size: 26px;
        margin-bottom: 30px;
    }
    
    .lh-whoweare-text {
        gap: 20px;
    }
    
    .lh-whoweare-col p {
        font-size: 14px;
        margin-bottom: 12px;
    }
}

/* 320px and below */
@media (max-width: 320px) {
    .lh-whoweare-section {
        padding: 50px 0;
    }
    
    .lh-whoweare-section .container {
        padding: 0 15px;
    }
    
    .lh-whoweare-title {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .lh-whoweare-col p {
        font-size: 13px;
    }
    
    .lh-pillar-item i {
        font-size: 13px;
    }
    
    .lh-pillar-item span {
        font-size: 13px;
    }
}



/* About Section */
.lh-about-section {
    padding: 100px 0;
    background-color: var(--color-white);
}

.lh-about-section .cont-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* About Header */
.lh-about-header {
    text-align: center;
    margin-bottom: 50px;
}

.lh-section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-black);
    letter-spacing: 0.3px;
}

.lh-section-label i {
    font-size: 10px;
    color: var(--color-gold);
}

/* About Content */
.lh-about-content {
    max-width: 100%;
    margin: 0 auto 100px;
    text-align: center;
}

.lh-about-text {
    font-size: 42px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--color-black);
    margin: 0;
}

.lh-highlight {
    color: var(--color-gold);
}

/* About Logos - MUCH LARGER */
.lh-about-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    flex-wrap: nowrap;
    width: 100%;
}

.lh-logo-item {
    height: 140px;
    width: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lh-logo-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    /* filter: grayscale(100%);
    opacity: 0.6; */
    transition: all 0.3s ease;
}

.lh-logo-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsive Styles */

/* Large Desktop - 1200px */
@media (max-width: 1200px) {
    .lh-about-section {
        padding: 80px 0;
    }
    
    .lh-about-section .container {
        padding: 0 40px;
    }
    
    .lh-about-text {
        font-size: 38px;
    }
    
    .lh-about-logos {
        gap: 70px;
    }
    
    .lh-logo-item {
        width: 220px;
        height: 120px;
    }
}

/* Tablet Landscape - 992px */
@media (max-width: 992px) {
    .lh-about-section {
        padding: 70px 0;
    }
    
    .lh-about-section .container {
        padding: 0 30px;
    }
    
    .lh-about-header {
        margin-bottom: 40px;
    }
    
    .lh-about-content {
        margin-bottom: 80px;
    }
    
    .lh-about-text {
        font-size: 32px;
    }
    
    .lh-about-logos {
        gap: 60px;
        row-gap: 60px;
        flex-wrap: wrap;
    }
    
    .lh-logo-item {
        height: 110px;
        width: calc(33.333% - 40px);
        flex: 0 0 calc(33.333% - 40px);
    }
}

/* Tablet Portrait - 768px */
@media (max-width: 768px) {
    .lh-about-section {
        padding: 60px 0;
    }
    
    .lh-about-section .container {
        padding: 0 20px;
    }
    
    .lh-about-header {
        margin-bottom: 30px;
    }
    
    .lh-section-label {
        font-size: 14px;
    }
    
    .lh-section-label i {
        font-size: 8px;
    }
    
    .lh-about-content {
        margin-bottom: 60px;
    }
    
    .lh-about-text {
        font-size: 26px;
        line-height: 1.5;
    }
    
    .lh-about-logos {
        gap: 50px;
        row-gap: 50px;
    }
    
    .lh-logo-item {
        height: 100px;
        width: calc(50% - 25px);
        flex: 0 0 calc(50% - 25px);
    }
}

/* Mobile - 576px */
@media (max-width: 576px) {
    .lh-about-section {
        padding: 50px 0;
    }
    
    .lh-about-section .container {
        padding: 0 15px;
    }
    
    .lh-about-header {
        margin-bottom: 25px;
    }
    
    .lh-section-label {
        font-size: 13px;
        gap: 8px;
    }
    
    .lh-about-content {
        margin-bottom: 50px;
    }
    
    .lh-about-text {
        font-size: 22px;
        line-height: 1.5;
    }
    
    .lh-about-logos {
        gap: 40px;
        row-gap: 40px;
    }
    
    .lh-logo-item {
        height: 85px;
        width: calc(50% - 20px);
        flex: 0 0 calc(50% - 20px);
    }
}

/* Extra Small Mobile - 320px */
@media (max-width: 320px) {
    .lh-about-section {
        padding: 40px 0;
    }
    
    .lh-about-section .container {
        padding: 0 10px;
    }
    
    .lh-about-header {
        margin-bottom: 20px;
    }
    
    .lh-section-label {
        font-size: 12px;
        gap: 6px;
    }
    
    .lh-about-content {
        margin-bottom: 40px;
    }
    
    .lh-about-text {
        font-size: 18px;
        line-height: 1.6;
    }
    
    .lh-about-logos {
        gap: 30px;
        row-gap: 30px;
    }
    
    .lh-logo-item {
        height: 75px;
        width: calc(50% - 15px);
        flex: 0 0 calc(50% - 15px);
    }
}




/* Message to Clients Section */
.lh-message-section {
    padding: 100px 0;
    background-color: var(--color-white);
}

.lh-message-section .cont-wrap {
    display: flex;
    flex-direction: column;
}

/* Message Wrapper */
.lh-message-wrapper {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    justify-content: center;
}

.lh-message-image img {
    width: 100%;
    max-height: 600px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    object-position: center top;
}

.lh-message-content {
    max-width: 55%;
}

/* Title */
.lh-message-title {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-blue);
    margin: 0 0 35px 0;
}

/* Message Text */
.lh-message-text {
    text-align: left;
}

.lh-message-intro {
    font-size: 20px;
    font-weight: 500;
    color: var(--color-black);
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.lh-message-text > p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-grey);
    margin: 0 0 20px 0;
}

/* Three Priorities */
.lh-message-priorities {
    margin: 30px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lh-message-priorities p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-black);
    font-weight: 500;
    margin: 0;
}

/* CEO Details */
.lh-ceo-details {
    margin-top: 35px;
}

.lh-ceo-name {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-black);
    margin: 0 0 5px 0;
}

.lh-ceo-title {
    font-size: 15px;
    color: var(--color-grey);
    margin: 0;
    font-weight: 500;
}

/* Responsive Styles */

/* 1200px and below */
@media (max-width: 1200px) {
    .lh-message-section {
        padding: 90px 0;
    }
    
    .lh-message-wrapper {
        gap: 60px;
    }
    
    .lh-message-image img {
        max-height: 550px;
    }
    
    .lh-message-title {
        font-size: 38px;
        margin-bottom: 30px;
    }
    
    .lh-message-intro {
        font-size: 19px;
    }
    
    .lh-message-text > p {
        font-size: 15px;
    }
    
    .lh-message-priorities p {
        font-size: 15px;
    }
    
    .lh-ceo-name {
        font-size: 22px;
    }
}

/* 992px and below */
@media (max-width: 992px) {
    .lh-message-section {
        padding: 80px 0;
    }
    
    .lh-message-section .container {
        padding: 0 40px;
    }
    
    .lh-message-wrapper {
        flex-direction: column;
        gap: 50px;
        align-items: center;
    }
    
    .lh-message-image {
        flex: 0 0 100%;
        max-width: 600px;
        display: flex;
        justify-content: center;
    }
    
    .lh-message-image img {
        max-height: 500px;
        width: 100%;
    }
    
    .lh-message-content {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .lh-message-title {
        font-size: 36px;
        margin-bottom: 28px;
    }
    
    .lh-message-intro {
        font-size: 18px;
        margin-bottom: 18px;
    }
    
    .lh-message-text > p {
        font-size: 15px;
        margin-bottom: 18px;
    }
    
    .lh-message-priorities {
        margin: 28px 0;
    }
    
    .lh-ceo-details {
        margin-top: 30px;
    }
}

/* 768px and below */
@media (max-width: 768px) {
    .lh-message-section {
        padding: 70px 0;
    }
    
    .lh-message-section .container {
        padding: 0 30px;
    }
    
    .lh-message-wrapper {
        gap: 40px;
    }
    
    .lh-message-image {
        max-width: 500px;
    }
    
    .lh-message-image img {
        max-height: 450px;
    }
    
    .lh-message-title {
        font-size: 30px;
        margin-bottom: 25px;
    }
    
    .lh-message-intro {
        font-size: 17px;
        margin-bottom: 16px;
    }
    
    .lh-message-text > p {
        font-size: 14px;
        margin-bottom: 16px;
    }
    
    .lh-message-priorities {
        margin: 25px 0;
    }
    
    .lh-message-priorities p {
        font-size: 14px;
    }
    
    .lh-ceo-details {
        margin-top: 28px;
    }
    
    .lh-ceo-name {
        font-size: 20px;
    }
    
    .lh-ceo-title {
        font-size: 14px;
    }
}

/* 576px and below */
@media (max-width: 576px) {
    .lh-message-section {
        padding: 60px 0;
    }
    
    .lh-message-section .container {
        padding: 0 20px;
    }
    
    .lh-message-wrapper {
        gap: 35px;
    }
    
    .lh-message-image {
        max-width: 100%;
    }
    
    .lh-message-image img {
        max-height: 400px;
    }
    
    .lh-message-title {
        font-size: 26px;
        margin-bottom: 22px;
    }
    
    .lh-message-intro {
        font-size: 16px;
        margin-bottom: 14px;
    }
    
    .lh-message-text > p {
        font-size: 14px;
        margin-bottom: 14px;
    }
    
    .lh-message-priorities {
        margin: 22px 0;
        gap: 6px;
    }
    
    .lh-message-priorities p {
        font-size: 14px;
    }
    
    .lh-ceo-details {
        margin-top: 25px;
    }
    
    .lh-ceo-name {
        font-size: 19px;
    }
}

/* 320px and below */
@media (max-width: 320px) {
    .lh-message-section {
        padding: 50px 0;
    }
    
    .lh-message-section .container {
        padding: 0 15px;
    }
    
    .lh-message-wrapper {
        gap: 30px;
    }
    
    .lh-message-image img {
        max-height: 350px;
    }
    
    .lh-message-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .lh-message-intro {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    .lh-message-text > p {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .lh-message-priorities p {
        font-size: 13px;
    }
    
    .lh-ceo-name {
        font-size: 18px;
    }
    
    .lh-ceo-title {
        font-size: 13px;
    }
}




/* Services Section */
.lh-services-section {
    padding: 100px 0;
}

.lh-services-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    width: 100%;
}

.lh-services-section .cont-wrap {
    display: flex;
    flex-direction: column;
}

/* Services Header */
.lh-services-header {
    text-align: center;
    margin-bottom: 80px;
}

.lh-services-header .lh-section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-black);
    letter-spacing: 0.3px;
    margin-bottom: 20px;
}

.lh-services-header .lh-section-label i {
    font-size: 10px;
    color: var(--color-gold);
}

.lh-services-title {
    font-size: 44px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-black);
    margin: 0 0 30px 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.lh-services-btn {
    display: inline-block;
    background-color: var(--color-blue);
    color: var(--color-white);
    padding: 14px 28px;
    border: 1px solid var(--color-blue);
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.lh-services-btn:hover {
    background-color: var(--color-white);
    color: var(--color-blue);
    border-color: var(--color-blue);
    transform: translateY(-2px);
}

/* Services */
.lh-services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Service Card */
.lh-service-card {
    background-color: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    flex: 0 0 calc(50% - 30px);
    max-width: calc(50% - 30px);
}

.lh-service-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.lh-service-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.lh-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.lh-service-card:hover .lh-service-image img {
    transform: scale(1.05);
}

.lh-service-content {
    padding: 30px;
}

.lh-service-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-black);
    margin: 0 0 15px 0;
}

.lh-service-desc {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-grey);
    margin: 0;
}

/* Services Responsive Breakpoints */

/* 1200px and below */
@media (max-width: 1200px) {
    .lh-services-section {
        padding: 90px 0;
    }
    
    .lh-services-section .container {
        padding: 0 50px;
    }
    
    .lh-services-header {
        margin-bottom: 70px;
    }
    
    .lh-services-header .lh-section-label {
        font-size: 15px;
        gap: 9px;
        margin-bottom: 18px;
    }
    
    .lh-services-header .lh-section-label i {
        font-size: 9px;
    }
    
    .lh-services-title {
        font-size: 40px;
        margin-bottom: 28px;
    }
    
    .lh-services-btn {
        padding: 13px 26px;
        font-size: 15px;
    }
    
    .lh-services-grid {
        gap: 50px;
        max-width: 1100px;
    }
    
    .lh-service-card {
        flex: 0 0 calc(50% - 25px);
        max-width: calc(50% - 25px);
    }
    
    .lh-service-image {
        height: 280px;
    }
    
    .lh-service-content {
        padding: 28px;
    }
    
    .lh-service-title {
        font-size: 22px;
        margin-bottom: 14px;
    }
    
    .lh-service-desc {
        font-size: 15px;
    }
}

/* 992px and below */
@media (max-width: 992px) {
    .lh-services-section {
        padding: 80px 0;
    }
    
    .lh-services-section .container {
        padding: 0 40px;
    }
    
    .lh-services-header {
        margin-bottom: 60px;
    }
    
    .lh-services-header .lh-section-label {
        font-size: 14px;
        gap: 8px;
        margin-bottom: 16px;
    }
    
    .lh-services-header .lh-section-label i {
        font-size: 8px;
    }
    
    .lh-services-title {
        font-size: 36px;
        margin-bottom: 26px;
    }
    
    .lh-services-btn {
        padding: 12px 24px;
        font-size: 15px;
    }
    
    .lh-services-grid {
        gap: 40px;
        max-width: 900px;
    }
    
    .lh-service-card {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
    
    .lh-service-image {
        height: 260px;
    }
    
    .lh-service-content {
        padding: 25px;
    }
    
    .lh-service-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .lh-service-desc {
        font-size: 15px;
    }
}

/* 768px and below */
@media (max-width: 768px) {
    .lh-services-section {
        padding: 70px 0;
    }
    
    .lh-services-section .container {
        padding: 0 30px;
    }
    
    .lh-services-header {
        margin-bottom: 50px;
    }
    
    .lh-services-header .lh-section-label {
        font-size: 13px;
        gap: 7px;
        margin-bottom: 14px;
    }
    
    .lh-services-header .lh-section-label i {
        font-size: 7px;
    }
    
    .lh-services-title {
        font-size: 30px;
        margin-bottom: 24px;
    }
    
    .lh-services-btn {
        padding: 11px 22px;
        font-size: 14px;
    }
    
    .lh-services-grid {
        gap: 20px;
        max-width: 100%;
    }
    
    .lh-service-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .lh-service-image {
        height: 240px;
    }
    
    .lh-service-content {
        padding: 22px;
    }
    
    .lh-service-title {
        font-size: 19px;
        margin-bottom: 11px;
    }
    
    .lh-service-desc {
        font-size: 14px;
        line-height: 1.7;
    }
}

/* 576px and below */
@media (max-width: 576px) {
    .lh-services-section {
        padding: 60px 0;
    }
    
    .lh-services-section .container {
        padding: 0 20px;
    }
    
    .lh-services-header {
        margin-bottom: 40px;
    }
    
    .lh-services-header .lh-section-label {
        font-size: 12px;
        gap: 6px;
        margin-bottom: 12px;
    }
    
    .lh-services-header .lh-section-label i {
        font-size: 6px;
    }
    
    .lh-services-title {
        font-size: 26px;
        margin-bottom: 22px;
    }
    
    .lh-services-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .lh-services-grid {
        gap: 18px;
    }
    
    .lh-service-image {
        height: 220px;
    }
    
    .lh-service-content {
        padding: 20px;
    }
    
    .lh-service-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .lh-service-desc {
        font-size: 14px;
    }
}

/* 320px and below */
@media (max-width: 320px) {
    .lh-services-section {
        padding: 50px 0;
    }
    
    .lh-services-section .container {
        padding: 0 15px;
    }
    
    .lh-services-header {
        margin-bottom: 35px;
    }
    
    .lh-services-header .lh-section-label {
        font-size: 11px;
        gap: 5px;
        margin-bottom: 10px;
    }
    
    .lh-services-header .lh-section-label i {
        font-size: 5px;
    }
    
    .lh-services-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .lh-services-btn {
        padding: 9px 18px;
        font-size: 13px;
    }
    
    .lh-services-grid {
        gap: 15px;
    }
    
    .lh-service-image {
        height: 200px;
    }
    
    .lh-service-content {
        padding: 18px;
    }
    
    .lh-service-title {
        font-size: 17px;
        margin-bottom: 9px;
    }
    
    .lh-service-desc {
        font-size: 13px;
    }
}



/* Gallery Section */
.lh-gallery-section {
    padding: 100px 0;
    background-color: var(--color-light-grey);
}

.lh-gallery-section .cont-wrap {
    display: flex;
    flex-direction: column;
}

/* Gallery Header */
.lh-gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.lh-gallery-header .lh-section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-black);
    letter-spacing: 0.3px;
    margin-bottom: 20px;
}

.lh-gallery-header .lh-section-label i {
    font-size: 10px;
    color: var(--color-gold);
}

.lh-gallery-title {
    font-size: 44px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-black);
    margin: 0 0 20px 0;
}

.lh-gallery-desc {
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-grey);
    margin: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Gallery Grid - Using Flexbox */
.lh-gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 50px;
}

/* Gallery Card */
.lh-gallery-card {
    background-color: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
}

.lh-gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Hidden Gallery Items */
.lh-gallery-hidden {
    display: none;
}

/* Gallery Card Image */
.lh-gallery-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.lh-gallery-card-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.lh-gallery-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.lh-gallery-card:hover .lh-gallery-card-image img {
    transform: scale(1.1);
}

/* Gallery Card Overlay */
.lh-gallery-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(27, 48, 80, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lh-gallery-card:hover .lh-gallery-card-overlay {
    opacity: 1;
}

.lh-gallery-card-overlay i {
    font-size: 40px;
    color: var(--color-white);
}

/* Load More Button */
.lh-gallery-button-wrap {
    text-align: center;
}

.lh-gallery-load-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--color-blue);
    color: var(--color-white);
    padding: 14px 32px;
    border: 2px solid var(--color-blue);
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lh-gallery-load-more:hover {
    background-color: var(--color-white);
    color: var(--color-blue);
    transform: translateY(-2px);
}

.lh-gallery-load-more.hidden {
    display: none;
}

.lh-gallery-load-more i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.lh-gallery-load-more:hover i {
    transform: translateY(3px);
}

/* Responsive Styles */

/* 1200px and below */
@media (max-width: 1200px) {
    .lh-gallery-section {
        padding: 90px 0;
    }
    
    .lh-gallery-header {
        margin-bottom: 50px;
    }
    
    .lh-gallery-title {
        font-size: 40px;
        margin-bottom: 18px;
    }
    
    .lh-gallery-desc {
        font-size: 17px;
    }
    
    .lh-gallery-grid {
        gap: 25px;
        margin-bottom: 45px;
    }
    
    .lh-gallery-card {
        flex: 0 0 calc(33.333% - 16.67px);
        max-width: calc(33.333% - 16.67px);
    }
    
    .lh-gallery-card-overlay i {
        font-size: 36px;
    }
}

/* 992px and below */
@media (max-width: 992px) {
    .lh-gallery-section {
        padding: 80px 0;
    }
    
    .lh-gallery-header {
        margin-bottom: 45px;
    }
    
    .lh-gallery-header .lh-section-label {
        font-size: 15px;
        gap: 9px;
        margin-bottom: 18px;
    }
    
    .lh-gallery-header .lh-section-label i {
        font-size: 9px;
    }
    
    .lh-gallery-title {
        font-size: 36px;
        margin-bottom: 16px;
    }
    
    .lh-gallery-desc {
        font-size: 16px;
    }
    
    .lh-gallery-grid {
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .lh-gallery-card {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
    
    .lh-gallery-card-overlay i {
        font-size: 32px;
    }
    
    .lh-gallery-load-more {
        padding: 12px 28px;
        font-size: 15px;
    }
}

/* 768px and below */
@media (max-width: 768px) {
    .lh-gallery-section {
        padding: 70px 0;
    }
    
    .lh-gallery-header {
        margin-bottom: 40px;
    }
    
    .lh-gallery-header .lh-section-label {
        font-size: 14px;
        gap: 8px;
        margin-bottom: 16px;
    }
    
    .lh-gallery-header .lh-section-label i {
        font-size: 8px;
    }
    
    .lh-gallery-title {
        font-size: 30px;
        margin-bottom: 14px;
    }
    
    .lh-gallery-desc {
        font-size: 15px;
    }
    
    .lh-gallery-grid {
        gap: 18px;
        margin-bottom: 35px;
    }
    
    .lh-gallery-card {
        border-radius: 10px;
    }
    
    .lh-gallery-card-overlay i {
        font-size: 28px;
    }
}

/* 576px and below */
@media (max-width: 576px) {
    .lh-gallery-section {
        padding: 60px 0;
    }
    
    .lh-gallery-header {
        margin-bottom: 35px;
    }
    
    .lh-gallery-header .lh-section-label {
        font-size: 13px;
        gap: 7px;
        margin-bottom: 14px;
    }
    
    .lh-gallery-header .lh-section-label i {
        font-size: 7px;
    }
    
    .lh-gallery-title {
        font-size: 26px;
        margin-bottom: 12px;
    }
    
    .lh-gallery-desc {
        font-size: 14px;
    }
    
    .lh-gallery-grid {
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .lh-gallery-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .lh-gallery-card-overlay i {
        font-size: 24px;
    }
    
    .lh-gallery-load-more {
        padding: 11px 24px;
        font-size: 14px;
        gap: 10px;
    }
}

/* 320px and below */
@media (max-width: 320px) {
    .lh-gallery-section {
        padding: 50px 0;
    }
    
    .lh-gallery-header {
        margin-bottom: 30px;
    }
    
    .lh-gallery-header .lh-section-label {
        font-size: 12px;
        gap: 6px;
        margin-bottom: 12px;
    }
    
    .lh-gallery-header .lh-section-label i {
        font-size: 6px;
    }
    
    .lh-gallery-title {
        font-size: 22px;
        margin-bottom: 10px;
    }
    
    .lh-gallery-desc {
        font-size: 13px;
    }
    
    .lh-gallery-grid {
        gap: 12px;
    }
    
    .lh-gallery-card {
        border-radius: 8px;
    }
    
    .lh-gallery-load-more {
        padding: 10px 20px;
        font-size: 13px;
    }
}





/* Projects Section */
.lh-projects-section {
    padding: 100px 0;
    background-color: var(--color-blue);
    position: relative;
    overflow: hidden;
}


.lh-projects-section .cont-wrap {
    display: flex;
    gap: 60px;  /* Reduced from 80px */
    align-items: stretch;
}


/* Left Column */
.lh-projects-left {
   flex: 0 0 38%;
    max-width: 38%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


/* Projects Header */
.lh-projects-header {
    margin-bottom: 40px;
}


.lh-projects-header .lh-section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-white);
    letter-spacing: 0.3px;
    margin-bottom: 20px;
}


.lh-projects-header .lh-section-label i {
    font-size: 10px;
    color: var(--color-gold);
}


.lh-projects-title {
    font-size: 44px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-white);
    margin: 0 0 20px 0;
}


.lh-projects-desc {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 30px 0;
}


.lh-projects-btn {
    display: inline-block;
    background-color: var(--color-white);
    color: var(--color-blue);
    padding: 14px 28px;
    border: 1px solid var(--color-white);
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}


.lh-projects-btn:hover {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
    transform: translateY(-2px);
}


/* Building Illustration */
.lh-building-illustration {
    margin-top: auto;
}


.lh-building-illustration img {
    width: 100%;
    height: auto;
    display: block;
}


/* Right Column */
.lh-projects-right {
    flex: 0 0 57%;
    max-width: 57%;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}


/* Project Card */
.lh-project-card {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
}


.lh-project-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    min-height: 300px;
}


.lh-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}


.lh-project-card:hover .lh-project-image img {
    transform: scale(1.05);
}


.lh-project-info {
    background-color: var(--color-white);
    padding: 24px 28px;
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}


/* Make the white info box clickable */
.lh-project-info.lh-clickable {
    cursor: pointer;
    text-decoration: none;
    display: flex;
    height: -webkit-fill-available;
}


.lh-project-info.lh-clickable:hover {
    text-decoration: none;
}


.lh-project-card:hover .lh-project-info {
    border-color: var(--color-gold);
    background-color: var(--color-blue);
}


.lh-project-text {
    flex: 1;
    padding-right: 15px;
}


.lh-project-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-black);
    margin: 0 0 6px 0;
    line-height: 1.2;
    transition: all 0.3s ease;
}


.lh-project-card:hover .lh-project-title {
    color: var(--color-white);
}


.lh-project-subtitle {
    font-size: 15px;
    line-height: 1.4;
    color: var(--color-grey);
    margin: 0;
    transition: all 0.3s ease;
}


.lh-project-card:hover .lh-project-subtitle {
    color: rgba(255, 255, 255, 0.85);
}


.lh-project-link {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: var(--color-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 16px;
    transition: all 0.3s ease;
}


.lh-project-card:hover .lh-project-link {
    background-color: var(--color-white);
}


.lh-project-card:hover .lh-project-link i {
    color: var(--color-blue);
}


/* Override link color for project links */
.lh-project-link,
.lh-project-link:active,
.lh-project-link:hover,
.lh-project-link:focus,
.lh-project-link:visited {
    color: var(--color-white) !important;
    text-decoration: none !important;
}


/* Popup Content Styling */
.lh-popup-content {
    max-width: 700px;
    padding: 40px;
    background: var(--color-blue);
    border-radius: 20px;
}


.lh-popup-content h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--color-white);
    margin: 0 0 20px 0;
    line-height: 1.3;
}


.lh-popup-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-light-grey);
    margin: 25px 0 15px 0;
}


.lh-popup-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-white);
    margin: 0 0 20px 0;
}


.lh-popup-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}


.lh-popup-content ul li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-light-grey);
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
}


.lh-popup-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: bold;
    font-size: 18px;
}


.lh-popup-content ul li strong {
    color: var(--color-white);
    font-weight: 600;
}


/* Fancybox customization */

.fancybox-button svg path {
    fill: var(--color-white);
    stroke-width: 0;
}

/* Projects Responsive Breakpoints */


/* 1200px and below */
@media (max-width: 1200px) {
    .lh-projects-section {
        padding: 90px 0;
    }
    
    .lh-projects-section .extended-container {
        margin-left: -50px;
        margin-right: -50px;
        padding-left: 50px;
        padding-right: 50px;
    }
    
    .lh-projects-section .cont-wrap {
        gap: 60px;
    }
    
    .lh-projects-header .lh-section-label {
        font-size: 15px;
        gap: 9px;
        margin-bottom: 18px;
    }
    
    .lh-projects-header .lh-section-label i {
        font-size: 9px;
    }
    
    .lh-projects-title {
        font-size: 38px;
        margin-bottom: 18px;
    }
    
    .lh-projects-desc {
        font-size: 15px;
        margin-bottom: 28px;
    }
    
    .lh-projects-btn {
        padding: 13px 26px;
        font-size: 15px;
    }
    
    .lh-building-illustration {
        max-width: 350px;
    }
    
    .lh-projects-right {
        gap: 25px;
    }
    
    .lh-project-card {
        flex: 0 0 calc(50% - 12.5px);
        max-width: calc(50% - 12.5px);
        gap: 11px;
    }
    
    .lh-project-image {
        height: 280px;
        border-radius: 18px;
    }
    
    .lh-project-info {
        padding: 22px 26px;
        border-radius: 18px;
    }
    
    .lh-project-title {
        font-size: 20px;
        margin-bottom: 5px;
    }
    
    .lh-project-subtitle {
        font-size: 14px;
    }
    
    .lh-project-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}


/* 992px and below */
/* 992px and below - Stack cards vertically */
@media (max-width: 992px) {
    .lh-projects-section {
        padding: 80px 0;
    }
    
    .lh-projects-section .container {
        padding: 0 40px;
    }
    
    .lh-projects-section .extended-container {
        margin-left: -40px;
        margin-right: -40px;
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .lh-projects-section .cont-wrap {
        gap: 50px;
        flex-direction: column; /* Stack vertically */
    }
    
    /* Left side takes full width */
    .lh-projects-left {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .lh-projects-header {
        margin-bottom: 30px;
    }
    
    .lh-projects-header .lh-section-label {
        font-size: 14px;
        gap: 8px;
        margin-bottom: 16px;
    }
    
    .lh-projects-header .lh-section-label i {
        font-size: 8px;
    }
    
    .lh-projects-title {
        font-size: 32px;
        margin-bottom: 16px;
    }
    
    .lh-projects-desc {
        font-size: 15px;
        margin-bottom: 26px;
    }
    
    .lh-projects-btn {
        padding: 12px 24px;
        font-size: 15px;
        display: none; /* Hide button on tablet/mobile */
    }
    
    /* Hide building illustration on tablet and below */
    .lh-building-illustration {
        display: none;
    }
    
    /* Right side takes full width */
    .lh-projects-right {
        flex: 0 0 100%;
        max-width: 100%;
        gap: 30px; /* Space between cards */
    }
    
    /* Cards stack vertically - 1 per row */
    .lh-project-card {
        flex: 0 0 100%;
        max-width: 100%;
        gap: 10px;
    }
    
    .lh-project-image {
        height: 280px;
        border-radius: 16px;
    }
    
    .lh-project-info {
        padding: 20px 24px;
        border-radius: 16px;
    }
    
    .lh-project-title {
        font-size: 20px;
    }
    
    .lh-project-subtitle {
        font-size: 14px;
    }
    
    .lh-project-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .lh-popup-content {
        padding: 30px 25px;
    }
    
    .lh-popup-content h3 {
        font-size: 24px;
    }
    
    .lh-popup-content h4 {
        font-size: 18px;
    }
    
    .lh-popup-content p,
    .lh-popup-content ul li {
        font-size: 15px;
    }
}



/* 768px and below */
@media (max-width: 768px) {
    .lh-projects-section {
        padding: 70px 0;
    }
    
    .lh-projects-section .container {
        padding: 0 30px;
    }
    
    .lh-projects-section .extended-container {
        margin-left: -30px;
        margin-right: -30px;
        padding-left: 30px;
        padding-right: 30px;
    }
    
    .lh-projects-section .cont-wrap {
        flex-direction: column;
        gap: 50px;
    }
    
    .lh-projects-left {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .lh-projects-header {
        margin-bottom: 0;
    }
    
    .lh-projects-header .lh-section-label {
        font-size: 13px;
        gap: 7px;
        margin-bottom: 14px;
    }
    
    .lh-projects-header .lh-section-label i {
        font-size: 7px;
    }
    
    .lh-projects-title {
        font-size: 28px;
        margin-bottom: 14px;
    }
    
    .lh-projects-desc {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .lh-projects-btn {
        padding: 11px 22px;
        font-size: 14px;
    }
    
    .lh-building-illustration {
        display: none;
    }
    
    .lh-projects-right {
        flex: 0 0 100%;
        max-width: 100%;
        gap: 40px;
    }
    
    .lh-project-card {
        flex: 0 0 100%;
        max-width: 100%;
        gap: 10px;
    }
    
    .lh-project-image {
        height: 240px;
        border-radius: 16px;
    }
    
    .lh-project-info {
        padding: 20px 22px;
        border-radius: 16px;
    }
    
    .lh-project-title {
        font-size: 20px;
    }
    
    .lh-project-subtitle {
        font-size: 14px;
    }
}


/* 576px and below */
@media (max-width: 576px) {
    .lh-projects-section {
        padding: 60px 0;
    }
    
    .lh-projects-section .container {
        padding: 0 20px;
    }
    
    .lh-projects-section .extended-container {
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .lh-projects-section .cont-wrap {
        gap: 40px;
    }
    
    .lh-projects-header .lh-section-label {
        font-size: 12px;
        gap: 6px;
        margin-bottom: 12px;
    }
    
    .lh-projects-header .lh-section-label i {
        font-size: 6px;
    }
    
    .lh-projects-title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .lh-projects-desc {
        font-size: 14px;
        margin-bottom: 22px;
    }
    
    .lh-projects-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .lh-projects-right {
        gap: 40px;
    }
    
    .lh-project-card {
        gap: 9px;
    }
    
    .lh-project-image {
        height: 220px;
        border-radius: 14px;
    }
    
    .lh-project-info {
        padding: 18px 20px;
        border-radius: 14px;
    }
    
    .lh-project-title {
        font-size: 18px;
    }
    
    .lh-project-subtitle {
        font-size: 13px;
    }
    
    .lh-project-link {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }
    
    .lh-popup-content {
        padding: 25px 20px;
    }
    
    .lh-popup-content h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .lh-popup-content h4 {
        font-size: 17px;
        margin: 20px 0 12px 0;
    }
    
    .lh-popup-content p,
    .lh-popup-content ul li {
        font-size: 14px;
    }
    
    .lh-popup-content ul li {
        padding-left: 22px;
    }
}


/* 320px and below */
@media (max-width: 320px) {
    .lh-projects-section {
        padding: 50px 0;
    }
    
    .lh-projects-section .container {
        padding: 0 15px;
    }
    
    .lh-projects-section .extended-container {
        margin-left: -15px;
        margin-right: -15px;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .lh-projects-section .cont-wrap {
        gap: 35px;
    }
    
    .lh-projects-header .lh-section-label {
        font-size: 11px;
        gap: 5px;
        margin-bottom: 10px;
    }
    
    .lh-projects-header .lh-section-label i {
        font-size: 5px;
    }
    
    .lh-projects-title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .lh-projects-desc {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .lh-projects-btn {
        padding: 9px 18px;
        font-size: 13px;
    }
    
    .lh-projects-right {
        gap: 40px;
    }
    
    .lh-project-card {
        gap: 8px;
    }
    
    .lh-project-image {
        height: 200px;
        border-radius: 12px;
    }
    
    .lh-project-info {
        padding: 16px 18px;
        border-radius: 12px;
    }
    
    .lh-project-title {
        font-size: 17px;
    }
    
    .lh-project-subtitle {
        font-size: 12px;
    }
    
    .lh-project-link {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
}



/* PDF Downloads Section */
.lh-pdf-section {
    padding: 100px 0;
    background-color: var(--color-white);
}

.lh-pdf-section .cont-wrap {
    display: flex;
    flex-direction: column;
}

/* PDF Header */
.lh-pdf-header {
    text-align: center;
    margin-bottom: 60px;
}

.lh-pdf-header .lh-section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-black);
    letter-spacing: 0.3px;
    margin-bottom: 20px;
}

.lh-pdf-header .lh-section-label i {
    font-size: 10px;
    color: var(--color-gold);
}

.lh-pdf-title {
    font-size: 44px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-black);
    margin: 0 0 20px 0;
}

.lh-pdf-desc {
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-grey);
    margin: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* PDF Grid */
.lh-pdf-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

/* PDF Card */
.lh-pdf-card {
    background-color: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.lh-pdf-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

/* PDF Image */
.lh-pdf-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.lh-pdf-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
}

.lh-pdf-card:hover .lh-pdf-image img {
    transform: scale(1.1);
}

/* PDF Content */
.lh-pdf-content {
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.lh-pdf-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #E74C3C;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 24px;
    transition: all 0.3s ease;
}

.lh-pdf-card:hover .lh-pdf-icon {
    background-color: var(--color-blue);
    transform: scale(1.1);
}

.lh-pdf-info {
    flex: 1;
}

.lh-pdf-card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-black);
    margin: 0 0 6px 0;
    line-height: 1.2;
}

.lh-pdf-subtitle {
    font-size: 15px;
    line-height: 1.4;
    color: var(--color-grey);
    margin: 0 0 8px 0;
}

.lh-pdf-meta {
    font-size: 13px;
    color: #999;
    display: block;
}

.lh-pdf-download-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: var(--color-light-grey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-blue);
    font-size: 16px;
    transition: all 0.3s ease;
}

.lh-pdf-card:hover .lh-pdf-download-icon {
    background-color: var(--color-gold);
    color: var(--color-white);
    transform: scale(1.1);
}

/* Responsive Styles */

/* 1200px and below */
@media (max-width: 1200px) {
    .lh-pdf-section {
        padding: 90px 0;
    }
    
    .lh-pdf-header {
        margin-bottom: 50px;
    }
    
    .lh-pdf-title {
        font-size: 40px;
        margin-bottom: 18px;
    }
    
    .lh-pdf-desc {
        font-size: 17px;
    }
    
    .lh-pdf-grid {
        gap: 25px;
    }
    
    .lh-pdf-card {
        flex: 0 0 calc(33.333% - 16.67px);
        max-width: calc(33.333% - 16.67px);
    }
}

/* 992px and below */
@media (max-width: 992px) {
    .lh-pdf-section {
        padding: 80px 0;
    }
    
    .lh-pdf-header {
        margin-bottom: 45px;
    }
    
    .lh-pdf-title {
        font-size: 36px;
        margin-bottom: 16px;
    }
    
    .lh-pdf-desc {
        font-size: 16px;
    }
    
    .lh-pdf-grid {
        gap: 20px;
    }
    
    .lh-pdf-card {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
    
    .lh-pdf-image {
        height: 200px;
    }
}

/* 768px and below */
@media (max-width: 768px) {
    .lh-pdf-section {
        padding: 70px 0;
    }
    
    .lh-pdf-header {
        margin-bottom: 40px;
    }
    
    .lh-pdf-title {
        font-size: 30px;
        margin-bottom: 14px;
    }
    
    .lh-pdf-desc {
        font-size: 15px;
    }
    
    .lh-pdf-grid {
        gap: 18px;
    }
    
    .lh-pdf-content {
        padding: 20px;
    }
    
    .lh-pdf-icon {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
    
    .lh-pdf-card-title {
        font-size: 18px;
    }
}

/* 576px and below */
@media (max-width: 576px) {
    .lh-pdf-section {
        padding: 60px 0;
    }
    
    .lh-pdf-header {
        margin-bottom: 35px;
    }
    
    .lh-pdf-title {
        font-size: 26px;
        margin-bottom: 12px;
    }
    
    .lh-pdf-desc {
        font-size: 14px;
    }
    
    .lh-pdf-grid {
        gap: 15px;
    }
    
    .lh-pdf-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .lh-pdf-image {
        height: 220px;
    }
    
    .lh-pdf-content {
        padding: 18px;
        gap: 12px;
    }
    
    .lh-pdf-icon {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }
    
    .lh-pdf-download-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

/* 320px and below */
@media (max-width: 320px) {
    .lh-pdf-section {
        padding: 50px 0;
    }
    
    .lh-pdf-title {
        font-size: 22px;
    }
    
    .lh-pdf-image {
        height: 200px;
    }
    
    .lh-pdf-card-title {
        font-size: 17px;
    }
}



/* Contact Section */

.lh-contact-section {
    padding: 100px 0 100px;
    background-color: var(--color-white);
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin: 40px 10px 10px 10px;
}

/* Background Image */
.lh-contact-bg-image {
    position: absolute;
    overflow: hidden;
    z-index: 1;
    top: 0;
    height: 100%;
    width: 100%;
}

.lh-contact-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact Container */
.lh-contact-section .extended-container {
    margin: 0 auto;
    padding: 0 60px; 
    position: relative;
    z-index: 2;
}

.lh-contact-section .cont-wrap {
    display: block;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}

/* Contact Form Box */
.lh-contact-form-box {
    background-color: var(--color-white);
    border-radius: 30px;
    padding: 50px 70px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    max-width: none;
    margin: 0 auto;
}

.lh-contact-content-wrapper {
    max-width: 650px;
    margin: 0 auto;
    width: 100%;
}

/* Contact Header */
.lh-contact-header {
    text-align: center;
    margin-bottom: 35px;
}

.lh-contact-header .lh-section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-black);
    letter-spacing: 0.3px;
    margin-bottom: 18px;
}

.lh-contact-header .lh-section-label i {
    font-size: 10px;
    color: var(--color-gold);
}

.lh-contact-title {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-black);
    margin: 0;
}

/* Column Layout */
.lh-contact-form .wpcf7-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Make select full width on second row */
.lh-contact-form .wpcf7-form > p:nth-child(4) {
    grid-column: 0 / -1;
}

/* Submit button full width */
.lh-contact-form .wpcf7-form > p:has(input[type="submit"]) {
    grid-column: 1 / -1;
}

/* Ensure CF7 wraps are block */
.lh-contact-form .wpcf7-form-control-wrap {
    width: 100%;
    display: block;
}

/* Input Styling */
.lh-contact-form input[type="text"],
.lh-contact-form input[type="email"],
.lh-contact-form input[type="tel"],
.lh-contact-form select,
.lh-contact-form textarea {
    width: 100%;
    padding: 0px 18px;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    font-size: 15px;
    color: var(--color-black);
    background-color: #F8F8F8;
    transition: all 0.3s ease;
    font-family: inherit;
}

.lh-contact-form input[type="text"]:focus,
.lh-contact-form input[type="email"]:focus,
.lh-contact-form input[type="tel"]:focus,
.lh-contact-form select:focus,
.lh-contact-form textarea:focus {
    background-color: var(--color-white);
    border-color: var(--color-blue);
    outline: none;
}

.lh-contact-form input::placeholder,
.lh-contact-form textarea::placeholder {
    color: #999999;
}

/* Select Dropdown */
.lh-contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23999' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 45px;
    cursor: pointer;
}

.lh-contact-form textarea {
    min-height: 100px;
    resize: vertical;
    grid-column: 1 / -1;
}

/* Submit Button */
.lh-contact-form input[type="submit"] {
    background-color: var(--color-blue);
    color: var(--color-white);
    border: 1px solid var(--color-blue);
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    grid-column: 1 / -1;
}

.lh-contact-form input[type="submit"]:hover {
    background-color: transparent;
    color: var(--color-blue);
    border-color: var(--color-blue);
}

/* Validation Messages */
.lh-contact-form .wpcf7-not-valid-tip {
    font-size: 13px;
    color: #dc3545;
    margin-top: 5px;
}

.lh-contact-form .wpcf7-response-output {
    margin: 20px 0 0 0;
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
    grid-column: 1 / -1;
}

.lh-contact-form .wpcf7-validation-errors {
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    color: #856404;
}

.lh-contact-form .wpcf7-mail-sent-ok {
    background-color: #d4edda;
    border: 1px solid #28a745;
    color: #155724;
}

/* ===== CF7 Spinner – center inside button ===== */

.lh-contact-form .wpcf7-form > p:has(input[type="submit"]) {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lh-contact-form .wpcf7-submit {
    position: relative;
    z-index: 1;
}

/* Hide text while submitting */
.lh-contact-form form.submitting .wpcf7-submit {
    color: transparent !important;
    pointer-events: none;
}

/* Center the spinner over the button */
.lh-contact-form .wpcf7-spinner {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    background: rgba(255, 255, 255, 0.3) !important;
    padding: 8px !important;
    border-radius: 50% !important;
    z-index: 2;
}





/* Contact Form Images - Left and Right */
.lh-contact-form-box {
    position: relative;
    background-color: var(--color-white);
    border-radius: 30px;
    padding: 50px 70px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    max-width: none;
    margin: 0 auto;
    overflow: hidden; 
}

.cont-sec-bg {
    position: absolute;
    height: 100%;
    width: auto;
    max-width: 350px;
    object-fit: contain;
    z-index: 0;
    pointer-events: none; 
}

.cont-sec-bg.left-img {
    left: 0;
    top: 50%;
    transform: translateY(-50%) scaleX(-1);
}

.cont-sec-bg.right-img {
    right: 0;
    top: 50%;
    transform: translateY(-50%) scaleX(1);
}

.lh-contact-content-wrapper {
    position: relative;
    z-index: 1;
    max-width: 650px;
    margin: 0 auto;
    width: 100%;
}


/* ===== Responsive Breakpoints ===== */

/* 1200px and below */
@media (max-width: 1200px) {
    .lh-contact-section { 
        padding: 10px 0; 
    }
    .lh-contact-bg-image {
        width: calc(100% - 0px);
        height: 420px;
        border-radius: 26px;
    }
    .lh-contact-section .extended-container { 
        padding: 0 50px; 
    }
    .lh-contact-form-box { 
        padding: 45px 60px; 
        border-radius: 26px; 
    }
    .lh-contact-header { 
        margin-bottom: 32px; 
    }
    .lh-contact-header .lh-section-label {
        font-size: 15px;
        gap: 9px;
        margin-bottom: 16px;
    }
    .lh-contact-header .lh-section-label i { 
        font-size: 9px; 
    }
    .lh-contact-title { 
        font-size: 30px; 
    }
    .lh-contact-form .wpcf7-form { 
        gap: 18px; 
    }
    .lh-contact-form input[type="submit"] {
        padding: 13px 38px;
        font-size: 15px;
    }
}

/* 992px and below */
@media (max-width: 992px) {
    .lh-contact-section { 
        padding: 5px 0; 
    }
    .lh-contact-bg-image {
        width: calc(100% - 0px);
        height: 400px;
        border-radius: 24px;
    }
    .lh-contact-section .extended-container { 
        padding: 0 40px; 
    }
    .lh-contact-form-box { 
        padding: 40px 50px; 
        border-radius: 24px; 
    }
    .lh-contact-header { 
        margin-bottom: 28px; 
    }
    .lh-contact-header .lh-section-label {
        font-size: 14px;
        gap: 8px;
        margin-bottom: 14px;
    }
    .lh-contact-header .lh-section-label i { 
        font-size: 8px; 
    }
    .lh-contact-title { 
        font-size: 28px; 
    }
    .lh-contact-form .wpcf7-form { 
        gap: 16px; 
    }
    .lh-contact-form textarea { 
        min-height: 90px; 
    }
    .lh-contact-form input[type="submit"] {
        padding: 13px 38px;
        font-size: 15px;
    }
}

/* 768px and below - Single Column */
@media (max-width: 768px) {
    .lh-contact-section { 
        padding: 5px 0; 
    }
    .lh-contact-bg-image {
        width: calc(100% - 60px);
        height: 380px;
        border-radius: 20px;
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        margin: 0 30px 40px;
    }
    .lh-contact-section .extended-container { 
        padding: 0 30px; 
    }
    .lh-contact-form-box { 
        padding: 35px 40px; 
        border-radius: 20px; 
    }
    .lh-contact-header { 
        margin-bottom: 26px; 
    }
    .lh-contact-header .lh-section-label {
        font-size: 13px;
        gap: 7px;
        margin-bottom: 12px;
    }
    .lh-contact-header .lh-section-label i { 
        font-size: 7px; 
    }
    .lh-contact-title { 
        font-size: 24px; 
    }
    .lh-contact-form .wpcf7-form {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .lh-contact-form .wpcf7-form > p:nth-child(4) { grid-column: 1; }
    .lh-contact-form input[type="submit"] {
        padding: 12px 32px;
        font-size: 14px;
    }
    .cont-sec-bg {
        display: none;
    }
}

/* 576px and below */
@media (max-width: 576px) {
    .lh-contact-section { 
        padding: 5px 0; 
    }
    .lh-contact-bg-image {
        width: calc(100% - 40px);
        height: 350px;
        border-radius: 18px;
        margin: 0 20px 35px;
    }
    .lh-contact-section .extended-container { 
        padding: 0 20px; 
    }
    .lh-contact-form-box { 
        padding: 30px 25px; 
        border-radius: 18px; 
    }
    .lh-contact-header { 
        margin-bottom: 22px; 
    }
    .lh-contact-header .lh-section-label {
        font-size: 12px;
        gap: 6px;
        margin-bottom: 10px;
    }
    .lh-contact-header .lh-section-label i { 
        font-size: 6px; 
    }
    .lh-contact-title { 
        font-size: 20px; 
    }
    .lh-contact-form .wpcf7-form { 
        gap: 12px; 
    }
    .lh-contact-form input[type="submit"] {
        padding: 12px 32px;
        font-size: 14px;
    }
}

/* 320px and below */
@media (max-width: 320px) {
    .lh-contact-section { 
        padding: 5px 0; 
    }
    .lh-contact-bg-image {
        width: calc(100% - 30px);
        height: 320px;
        border-radius: 16px;
        margin: 0 15px 30px;
    }
    .lh-contact-section .extended-container { 
        padding: 0 15px; 
    }
    .lh-contact-form-box { 
        padding: 25px 20px; 
        border-radius: 16px; 
    }
    .lh-contact-header { 
        margin-bottom: 18px; 
    }
    .lh-contact-header .lh-section-label {
        font-size: 11px;
        gap: 5px;
        margin-bottom: 8px;
    }
    .lh-contact-header .lh-section-label i { 
        font-size: 5px; 
    }
    .lh-contact-title { 
        font-size: 18px; 
    }
    .lh-contact-form .wpcf7-form { 
        gap: 10px; 
    }
    .lh-contact-form input[type="submit"] {
        padding: 10px 28px;
        font-size: 13px;
    }
}





/* Footer Section */
.lh-footer-section {
    background-color: var(--color-white);
    position: relative;
}

/* CTA Banner */
.lh-footer-cta {
    position: relative;
    margin-bottom: 0;
}

.lh-cta-bg {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
}

.lh-cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA Content */
.lh-footer-cta .container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    display: flex;
    align-items: center;
}

.lh-cta-content {
    max-width: 600px;
}

.lh-cta-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-white);
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* Footer Wrapper */
.lh-footer-wrapper {
    position: relative;
    background-color: var(--color-blue);
}

/* Footer Content */
.lh-footer-content {
    padding: 80px 0 60px;
    display: flex;
    gap: 100px;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

/* Watermark Logo */
.lh-cta-watermark {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
}

.lh-cta-watermark img {
    width: 260px;
    height: auto;
}

/* Footer Columns */
.lh-footer-col {
    flex: 1;
}

/* Footer About Column */
.lh-footer-about {
    max-width: 320px;
}

.lh-footer-logo {
    margin-bottom: 20px;
}

.lh-footer-logo img {
    width: 185px;
    height: auto;
}

.lh-footer-desc {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* Footer Links Column */
.lh-footer-links {
    max-width: 200px;
}

.lh-footer-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-white);
    margin: 0 0 25px 0;
}

.lh-footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lh-footer-menu li a {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
}

.lh-footer-menu li a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

/* Footer Contact Column */
.lh-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 320px;
}

.lh-footer-phone,
.lh-footer-email {
    font-size: 22px;
    font-weight: 500;
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.lh-footer-phone:hover,
.lh-footer-email:hover {
    color: var(--color-gold);
}

.lh-footer-email {
    font-size: 20px;
}

/* Social Icons */
.lh-footer-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.lh-social-link {
    width: 42px;
    height: 42px;
    background-color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-blue);
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.lh-social-link:hover {
    background-color: var(--color-gold);
    color: var(--color-white);
}

/* Footer Responsive Breakpoints */

/* 1200px and below */
@media (max-width: 1200px) {
    .lh-footer-section .container {
        padding: 0 50px;
    }
    
    .lh-cta-bg {
        height: 320px;
    }
    
    .lh-cta-content {
        max-width: 550px;
    }
    
    .lh-cta-title {
        font-size: 44px;
    }
    
    .lh-footer-content {
        padding: 70px 0 50px;
        gap: 80px;
    }
    
    .lh-cta-watermark {
        right: 50px;
    }
    
    .lh-cta-watermark img {
        width: 240px;
    }
    
    .lh-footer-about {
        max-width: 280px;
    }
    
    .lh-footer-desc {
        font-size: 14px;
    }
    
    .lh-footer-phone {
        font-size: 20px;
    }
    
    .lh-footer-email {
        font-size: 18px;
    }
}

/* 992px and below */
@media (max-width: 992px) {
    .lh-footer-section .container {
        padding: 0 40px;
    }
    
    .lh-cta-bg {
        height: 280px;
    }
    
    .lh-cta-content {
        max-width: 480px;
    }
    
    .lh-cta-title {
        font-size: 38px;
    }
    
    .lh-footer-content {
        padding: 60px 0 40px;
        gap: 60px;
    }
    
    .lh-cta-watermark {
        right: 40px;
    }
    
    .lh-cta-watermark img {
        width: 220px;
    }
    
    .lh-footer-about {
        max-width: 250px;
    }
    
    .lh-footer-contact {
        gap: 18px;
    }
    
    .lh-social-link {
        width: 40px;
        height: 40px;
        font-size: 17px;
    }
}

/* 768px and below */
@media (max-width: 768px) {
    .lh-footer-section .container {
        padding: 0 30px;
    }
    
    .lh-cta-bg {
        height: 250px;
    }
    
    .lh-cta-content {
        max-width: 100%;
    }
    
    .lh-cta-title {
        font-size: 32px;
    }
    
    .lh-footer-content {
        flex-direction: column;
        padding: 50px 0 40px;
        gap: 40px;
    }
    
    .lh-cta-watermark {
        right: 30px;
        opacity: 0.05;
    }
    
    .lh-cta-watermark img {
        width: 200px;
    }
    
    .lh-footer-about,
    .lh-footer-links,
    .lh-footer-contact {
        max-width: 100%;
    }
    
    .lh-footer-title {
        font-size: 17px;
        margin-bottom: 20px;
    }
}

/* 576px and below */
@media (max-width: 576px) {
    .lh-footer-section .container {
        padding: 0 20px;
    }
    
    .lh-cta-bg {
        height: 220px;
    }
    
    .lh-cta-title {
        font-size: 26px;
    }
    
    .lh-footer-content {
        padding: 40px 0 30px;
        gap: 35px;
    }
    
    .lh-cta-watermark {
        right: 20px;
        opacity: 0.04;
    }
    
    .lh-cta-watermark img {
        width: 160px;
    }
    
    .lh-footer-logo img {
        width: 150px;
    }
    
    .lh-footer-desc {
        font-size: 14px;
    }
    
    .lh-footer-phone {
        font-size: 18px;
    }
    
    .lh-footer-email {
        font-size: 16px;
    }
    
    .lh-social-link {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}

/* 320px and below */
@media (max-width: 320px) {
    .lh-footer-section .container {
        padding: 0 15px;
    }
    
    .lh-cta-bg {
        height: 200px;
    }
    
    .lh-cta-title {
        font-size: 22px;
    }
    
    .lh-footer-content {
        padding: 35px 0 25px;
        gap: 30px;
    }
    
    .lh-cta-watermark {
        right: 15px;
        opacity: 0.03;
    }
    
    .lh-cta-watermark img {
        width: 140px;
    }
    
    .lh-footer-logo img {
        width: 130px;
    }
    
    .lh-footer-desc {
        font-size: 13px;
    }
    
    .lh-footer-title {
        font-size: 16px;
        margin-bottom: 18px;
    }
    
    .lh-footer-menu {
        gap: 10px;
    }
    
    .lh-footer-menu li a {
        font-size: 15px;
    }
    
    .lh-footer-phone {
        font-size: 17px;
    }
    
    .lh-footer-email {
        font-size: 15px;
    }
    
    .lh-footer-contact {
        gap: 16px;
    }
    
    .lh-social-link {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }
}





/* Footer Bottom */
#footer-bottom {
    background-color: var(--color-blue);
    border-color: var(--color-grey);
    border-top: 1px solid;
    padding: 10px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-copyright,
.footer-credit {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    letter-spacing: 0.2px;
}

.footer-credit a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-credit a:hover {
    color: var(--color-gold);
}

/* Footer Bottom Responsive Breakpoints */

/* 1200px and below */
@media (max-width: 1200px) {
    #footer-bottom {
        padding: 22px 0;
    }
    
    #footer-bottom .container {
        padding: 0 50px;
    }
    
    .footer-copyright,
    .footer-credit {
        font-size: 13px;
    }
}

/* 992px and below */
@media (max-width: 992px) {
    #footer-bottom {
        padding: 20px 0;
    }
    
    #footer-bottom .container {
        padding: 0 40px;
    }
    
    .footer-copyright,
    .footer-credit {
        font-size: 13px;
    }
}

/* 768px and below */
@media (max-width: 768px) {
    #footer-bottom {
        padding: 18px 0;
    }
    
    #footer-bottom .container {
        padding: 0 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .footer-copyright,
    .footer-credit {
        font-size: 12px;
    }
}

/* 576px and below */
@media (max-width: 576px) {
    #footer-bottom {
        padding: 16px 0;
    }
    
    #footer-bottom .container {
        padding: 0 20px;
    }
    
    .footer-copyright,
    .footer-credit {
        font-size: 11px;
    }
}

/* 320px and below */
@media (max-width: 320px) {
    #footer-bottom {
        padding: 15px 0;
    }
    
    #footer-bottom .container {
        padding: 0 15px;
    }
    
    .footer-bottom-content {
        gap: 8px;
    }
    
    .footer-copyright,
    .footer-credit {
        font-size: 10px;
    }
}

