/*
Theme Name: Lauderdale Hospitality Theme
Theme URI: https://www.lauderdalehospitality.com/
Author: Antigravity
Author URI: https://www.lauderdalehospitality.com/
Description: Custom premium WordPress theme for Lauderdale Hospitality, featuring private transportation booking and FIFA 2026 landing page templates.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lauderdale-hospitality
*/

#wpadminbar {
    z-index: 99999 !important;
}

/* Base / Global Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            outline: none;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            color: #0f172a;
            background-color: #f8fafc;
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            line-height: 1.2;
            color: #0f172a;
        }

        img {
            max-width: 100%;
            display: block;
            height: auto;
        }

        /* Combined Styles from components */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

    :root {
        --primary: #2d6a4f;
        --primary-dark: #1b4332;
        --primary-light: #52b788;
        --primary-rgb: 45, 106, 79;
        --accent: #ffb703;
        --accent-dark: #fb8500;
        --accent-rgb: 255, 183, 3;
        --text-dark: #0f172a;
        --text-light: #475569;
        --bg-light: #f8fafc;
        --bg-white: #ffffff;
        --font-display: 'Outfit', sans-serif;
        --font-body: 'Plus Jakarta Sans', sans-serif;
        
        --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        --transition-fast: all 0.2s ease;
        --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
        --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.06);
        --shadow-lg: 0 20px 40px rgba(27, 67, 50, 0.08);
        --radius-sm: 8px;
        --radius-md: 16px;
        --radius-lg: 24px;
        --radius-full: 9999px;
    }

    /* Override Elementor Header-Footer Builder hiding rules for the native header */
    body > #header {
        display: block !important;
    }

    /* Hide any duplicated headers injected via Elementor HTML widgets */
    .elementor #header {
        display: none !important;
    }

    /* Scope resets to #header so they don't leak to other WP areas */
    #header, #header * {
        box-sizing: border-box;
        font-family: var(--font-body);
    }

    #header a {
        text-decoration: none;
        color: inherit;
        transition: var(--transition-fast);
    }

    /* Sticky Header CSS */
    #header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.4);
        box-shadow: var(--shadow-sm);
        transition: var(--transition-smooth);
    }

    #header.scrolled {
        background: rgba(27, 67, 50, 0.95);
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: var(--shadow-md);
    }

    /* WordPress Admin Bar shifts */
    body.admin-bar #header {
        top: 32px !important;
    }
    @media (max-width: 782px) {
        body.admin-bar #header {
            top: 46px !important;
        }
        body.admin-bar #header nav {
            top: 46px !important;
        }
    }

    #header .container {
        max-width: 100%;
        padding: 0 24px;
        margin: 0 auto;
        width: 100%;
    }

    #header .header-wrap {
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: var(--transition-smooth);
    }

    #header.scrolled .header-wrap {
        height: 58px;
    }

    #header .logo-container,
    #header .custom-logo-link {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    #header .logo-img,
    #header .custom-logo {
        height: 52px !important;
        max-height: 52px !important;
        width: auto !important;
        display: block !important;
        object-fit: contain !important;
        transition: var(--transition-smooth);
    }

    #header.scrolled .logo-img,
    #header.scrolled .custom-logo {
        height: 42px !important;
        max-height: 42px !important;
        filter: brightness(0) invert(1) !important;
    }

    /* WordPress Navigation List Reset */
    #header nav ul {
        display: flex;
        align-items: center;
        gap: 20px;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    #header nav li {
        list-style: none;
        margin: 0;
        padding: 0;
        display: inline-flex;
        align-items: center;
    }

    #header nav a,
    #header nav li a {
        font-size: 0.74rem;
        font-weight: 700;
        color: var(--text-dark);
        position: relative;
        padding: 6px 0;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    #header.scrolled nav a,
    #header.scrolled nav li a {
        color: rgba(255, 255, 255, 0.9);
    }

    #header nav a::after,
    #header nav li a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--primary);
        border-radius: var(--radius-full);
        transition: var(--transition-smooth);
    }

    #header.scrolled nav a::after,
    #header.scrolled nav li a::after {
        background-color: var(--accent);
    }

    #header nav a:hover::after,
    #header nav li a:hover::after,
    #header nav a.active::after,
    #header nav li a.active::after {
        width: 100%;
    }

    #header nav a:hover,
    #header nav li a:hover {
        color: var(--primary);
    }

    #header.scrolled nav a:hover,
    #header.scrolled nav li a:hover {
        color: var(--accent);
    }

    #header .header-actions {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    #header .nav-cta-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        color: #ffffff !important;
        padding: 10px 24px;
        border-radius: var(--radius-full);
        font-weight: 700;
        font-size: 0.85rem;
        box-shadow: var(--shadow-sm);
        border: none;
        cursor: pointer;
        transition: var(--transition-smooth);
        text-decoration: none;
        white-space: nowrap;
    }

    #header .nav-cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(45, 106, 79, 0.3);
    }

    #header.scrolled .nav-cta-btn {
        background: linear-gradient(135deg, var(--accent), var(--accent-dark));
        color: var(--text-dark) !important;
    }

    #header.scrolled .nav-cta-btn:hover {
        box-shadow: 0 4px 15px rgba(255, 183, 3, 0.4);
    }

    /* Mobile Menu Toggle Button */
    #header .menu-toggle-btn {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        flex-direction: column;
        gap: 5px;
        width: 28px;
        padding: 4px;
        z-index: 1010;
    }

    #header .hamburger-line {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--text-dark);
        border-radius: var(--radius-full);
        transition: var(--transition-smooth);
    }

    #header.scrolled .hamburger-line {
        background-color: #ffffff;
    }

    /* Shift common floating accessibility widgets down slightly so they don't block header CTAs */
    #userwayAccessibilityIcon,
    .uwy,
    #pojo-a11y-toolbar,
    .pojo-a11y-toolbar-toggle,
    #wp-accessibility-toolbar {
        top: 90px !important;
    }

    /* Responsive Breakpoints */
    /* Mobile Menu Backdrop styling */
    .menu-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(15, 23, 42, 0.4);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        opacity: 0;
        pointer-events: none;
        z-index: 998;
        transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .menu-backdrop.show {
        opacity: 1;
        pointer-events: auto;
    }

    /* Responsive Breakpoints */
    @media (max-width: 1024px) {
        #header .container {
            padding: 0 24px;
        }

        #header .header-actions {
            display: none;
        }

        #header .menu-toggle-btn {
            display: flex;
        }

        #header nav {
            position: fixed;
            top: 0;
            right: 0;
            width: 320px;
            max-width: 85vw;
            height: 100vh;
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(25px);
            -webkit-backdrop-filter: blur(25px);
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            padding: 100px 32px 40px;
            gap: 0;
            box-shadow: -10px 0 40px rgba(15, 23, 42, 0.15);
            border-left: 1px solid rgba(255, 255, 255, 0.3);
            transform: translateX(100%);
            opacity: 0;
            pointer-events: none;
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            z-index: 999;
        }

        #header.scrolled nav {
            background: rgba(27, 67, 50, 0.96);
            border-left: 1px solid rgba(255, 255, 255, 0.1);
        }

        #header nav.open {
            transform: translateX(0);
            opacity: 1;
            pointer-events: auto;
        }

        #header nav ul {
            flex-direction: column;
            align-items: flex-start;
            width: 100%;
            gap: 0;
        }

        #header nav li {
            width: 100%;
            display: block;
        }

        /* Staggered Slide In Animations for Mobile Nav Links */
        #header nav.open a,
        #header nav.open li {
            opacity: 0;
            animation: slideInMobileLink 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        #header nav.open a:nth-child(1), #header nav.open li:nth-child(1) { animation-delay: 0.1s; }
        #header nav.open a:nth-child(2), #header nav.open li:nth-child(2) { animation-delay: 0.15s; }
        #header nav.open a:nth-child(3), #header nav.open li:nth-child(3) { animation-delay: 0.2s; }
        #header nav.open a:nth-child(4), #header nav.open li:nth-child(4) { animation-delay: 0.25s; }
        #header nav.open a:nth-child(5), #header nav.open li:nth-child(5) { animation-delay: 0.3s; }
        #header nav.open a:nth-child(6), #header nav.open li:nth-child(6) { animation-delay: 0.35s; }
        #header nav.open a:nth-child(7), #header nav.open li:nth-child(7) { animation-delay: 0.4s; }

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

        #header nav a,
        #header nav li a {
            font-size: 1.15rem;
            font-weight: 700;
            width: 100%;
            text-align: left;
            padding: 12px 0;
            border-bottom: 1px solid rgba(15, 23, 42, 0.06);
            color: var(--text-dark);
            text-transform: uppercase;
            letter-spacing: 1px;
            display: block;
            transition: color 0.3s ease, padding-left 0.3s ease;
        }

        #header nav a:hover,
        #header nav li a:hover {
            color: var(--primary);
            padding-left: 8px;
        }

        #header.scrolled nav a,
        #header.scrolled nav li a {
            border-bottom-color: rgba(255, 255, 255, 0.08);
            color: rgba(255, 255, 255, 0.95);
        }

        #header.scrolled nav a:hover,
        #header.scrolled nav li a:hover {
            color: var(--accent);
        }
        
        #header nav a.special-nav-link,
        #header nav li a.special-nav-link {
            border: 1px solid var(--accent-dark) !important;
            padding: 10px 16px !important;
            margin-top: 10px;
            text-align: center;
            border-radius: var(--radius-sm);
            background: rgba(255, 183, 3, 0.1) !important;
            color: var(--accent-dark) !important;
        }

        #header nav a.special-nav-link:hover,
        #header nav li a.special-nav-link:hover {
            background: var(--accent) !important;
            color: var(--text-dark) !important;
            padding-left: 0 !important;
        }
    }

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

    :root {
        --primary: #2d6a4f;
        --primary-dark: #1b4332;
        --primary-light: #52b788;
        --primary-rgb: 45, 106, 79;
        --accent: #ffb703;
        --accent-dark: #fb8500;
        --accent-rgb: 255, 183, 3;
        --text-dark: #0f172a;
        --text-light: #475569;
        --bg-light: #f8fafc;
        --bg-white: #ffffff;
        --font-display: 'Outfit', sans-serif;
        --font-body: 'Plus Jakarta Sans', sans-serif;
        
        --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        --transition-fast: all 0.2s ease;
        --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
        --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.06);
        --shadow-lg: 0 20px 40px rgba(27, 67, 50, 0.08);
        --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
        --radius-sm: 8px;
        --radius-md: 16px;
        --radius-lg: 24px;
        --radius-full: 9999px;
    }

    /* Core typography reset and layout rules */
    .lhg-main-wrap {
        font-family: var(--font-body);
        color: var(--text-dark);
        line-height: 1.6;
        box-sizing: border-box;
    }

    .lhg-main-wrap * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        outline: none;
    }

    .lhg-main-wrap h1, 
    .lhg-main-wrap h2, 
    .lhg-main-wrap h3, 
    .lhg-main-wrap h4, 
    .lhg-main-wrap h5, 
    .lhg-main-wrap h6 {
        font-family: var(--font-display);
        font-weight: 700;
        line-height: 1.2;
        color: var(--text-dark);
    }

    .lhg-main-wrap a {
        text-decoration: none;
        color: inherit;
        transition: var(--transition-fast);
    }

    .lhg-main-wrap img {
        max-width: 100%;
        display: block;
        height: auto;
    }

    .lhg-main-wrap .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
        width: 100%;
    }

    /* Repeating Pineapple Pattern Background Utility */
    .lhg-main-wrap .pineapple-bg {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='160' viewBox='0 0 100 160'%3E%3Cdefs%3E%3Cg id='p'%3E%3Cpath d='M0,-25 C-3,-35 -8,-40 -12,-35 C-14,-32 -8,-28 -3,-24 C-6,-28 -12,-35 -16,-25 C-18,-20 -12,-17 -6,-16 C-10,-18 -15,-18 -17,-12 C-18,-9 -13,-9 -7,-10 C-2,-10 0,-7 0,-7 C0,-7 2,-10 7,-10 C13,-9 18,-9 17,-12 C15,-18 10,-18 6,-16 C12,-17 18,-20 16,-25 C12,-35 6,-28 3,-24 C8,-28 14,-32 12,-35 C8,-40 3,-35 0,-25 Z' fill='%232d6a4f' fill-opacity='0.15'/%3E%3Cpath d='M0,-7 C-15,-7 -18,10 -18,25 C-18,40 -10,52 0,52 C10,52 18,40 18,25 C18,10 15,-7 0,-7 Z' fill='%23ffb703' fill-opacity='0.18'/%3E%3Cpath d='M-13,10 L11,40 M-17,23 L7,49 M-5,-2 L17,28 M11,10 L-13,40 M17,23 L-7,49 M5,-2 L-17,28' stroke='%23ffffff' stroke-width='1.5' stroke-opacity='0.7' stroke-linecap='round'/%3E%3C/g%3E%3C/defs%3E%3Cuse href='%23p' x='50' y='45'/%3E%3Cuse href='%23p' x='0' y='125'/%3E%3Cuse href='%23p' x='100' y='125'/%3E%3Cuse href='%23p' x='0' y='-35'/%3E%3Cuse href='%23p' x='100' y='-35'/%3E%3C/svg%3E");
        background-color: #ffffff;
    }

    /* Hero Slider Section */
    .lhg-main-wrap .hero-section {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        color: #ffffff;
        padding-top: 120px;
        padding-bottom: 60px;
        box-sizing: border-box;
    }

    .lhg-main-wrap .slider-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .lhg-main-wrap .slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1.2s ease-in-out;
        background-size: cover;
        background-position: center;
    }

    .lhg-main-wrap .slide.active {
        opacity: 1;
    }

    .lhg-main-wrap .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        background: linear-gradient(135deg, rgba(27, 67, 50, 0.45) 0%, rgba(15, 23, 42, 0.7) 100%);
    }

    /* Floating Center Card / CTA Button Wrapper */
    .lhg-main-wrap .hero-content {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 3;
        padding: 100px 40px 60px; /* Accounts for header height */
        pointer-events: none; /* Let background actions occur, button resets this */
        box-sizing: border-box;
    }

    .lhg-main-wrap .hero-card {
        position: absolute;
        background: transparent;
        border: none;
        box-shadow: none;
        margin: 0;
        padding: 0;
        pointer-events: auto; /* Re-enable clicks for the button */
        opacity: 1; /* Default visible */
        transition: opacity 0.4s ease; /* Fade transition instead of glide/slide */
    }

    /* Position coordinate classes for desktop */
    .lhg-main-wrap .hero-card.pos-slide-0 {
        top: 22%; /* Raised higher to avoid overlapping 'Florida' text */
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .lhg-main-wrap .hero-card.pos-center {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .lhg-main-wrap .hero-card.pos-bottom-left {
        bottom: 12%;
        left: 10%;
        top: auto;
        right: auto;
        transform: none;
    }

    .lhg-main-wrap .hero-card.pos-bottom-right {
        bottom: 12%;
        right: 10%;
        top: auto;
        left: auto;
        transform: none;
    }

    .lhg-main-wrap .hero-card.pos-top-left {
        top: 25%;
        left: 10%;
        bottom: auto;
        right: auto;
        transform: none;
    }

    .lhg-main-wrap .hero-card.pos-top-right {
        top: 25%;
        right: 10%;
        bottom: auto;
        left: auto;
        transform: none;
    }

    .lhg-main-wrap .hero-card.pos-bottom-center {
        bottom: 12%;
        left: 50%;
        top: auto;
        right: auto;
        transform: translateX(-50%);
    }

    .lhg-main-wrap .hero-card.pos-top-center {
        top: 25%;
        left: 50%;
        bottom: auto;
        right: auto;
        transform: translateX(-50%);
    }

    /* Mobile layout fallback (keep centered for usability) */
    @media (max-width: 768px) {
        .lhg-main-wrap .hero-content {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 24px;
        }

        .lhg-main-wrap .hero-card {
            position: relative !important;
            top: auto !important;
            bottom: auto !important;
            left: auto !important;
            right: auto !important;
            transform: none !important;
            margin: 0 auto !important;
        }
    }

    .lhg-main-wrap .hero-card .cta-btn-large {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        color: #ffffff;
        font-weight: 700;
        padding: 14px 30px;
        border-radius: var(--radius-full);
        font-size: 0.95rem;
        box-shadow: 0 10px 20px rgba(45, 106, 79, 0.25);
        transition: var(--transition-smooth);
        border: none;
        cursor: pointer;
    }

    .lhg-main-wrap .hero-card .cta-btn-large:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(45, 106, 79, 0.35);
    }

    .lhg-main-wrap .hero-card .cta-btn-large svg {
        width: 18px;
        height: 18px;
        fill: none;
        stroke: currentColor;
        stroke-width: 2.5;
        transition: var(--transition-smooth);
    }

    .lhg-main-wrap .hero-card .cta-btn-large:hover svg {
        transform: translateX(4px);
    }

    /* Slider Controls */
    .lhg-main-wrap .slider-control {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 4;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: #ffffff;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: var(--transition-smooth);
    }

    .lhg-main-wrap .slider-control:hover {
        background: rgba(255, 255, 255, 0.3);
        color: var(--accent);
    }

    .lhg-main-wrap .slider-control-prev {
        left: 30px;
    }

    .lhg-main-wrap .slider-control-next {
        right: 30px;
    }

    .lhg-main-wrap .slider-control svg {
        width: 20px;
        height: 20px;
        fill: none;
        stroke: currentColor;
        stroke-width: 2.5;
    }

    /* Section Layouts */
    .lhg-main-wrap .section-padding {
        padding: 100px 0;
        position: relative;
    }

    .lhg-main-wrap .section-header {
        max-width: 650px;
        margin: 0 auto 60px;
        text-align: center;
    }

    .lhg-main-wrap .section-badge {
        display: inline-block;
        font-size: 0.8rem;
        font-weight: 700;
        color: var(--primary);
        background-color: rgba(45, 106, 79, 0.08);
        padding: 6px 16px;
        border-radius: var(--radius-full);
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-bottom: 16px;
    }

    .lhg-main-wrap .section-title {
        font-size: 2.5rem;
        color: var(--text-dark);
        font-weight: 800;
        letter-spacing: -0.5px;
        margin-bottom: 16px;
    }

    .lhg-main-wrap .section-desc {
        font-size: 1.05rem;
        color: var(--text-light);
    }

    /* Airports & Cruise Ports Section */
    .lhg-main-wrap .ports-section {
        background-color: var(--bg-white);
    }

    .lhg-main-wrap .van-illustration {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        margin-bottom: 60px;
        padding: 20px 0;
    }

    .lhg-main-wrap .illustration-wrap {
        position: relative;
        width: 100%;
        max-width: 700px;
        height: 250px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .lhg-main-wrap .center-van {
        background: var(--bg-light);
        border: 2px solid rgba(45, 106, 79, 0.1);
        border-radius: var(--radius-md);
        padding: 20px 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
        z-index: 5;
        box-shadow: var(--shadow-md);
        transition: var(--transition-smooth);
    }

    .lhg-main-wrap .center-van:hover {
        transform: scale(1.05);
        border-color: var(--primary);
        box-shadow: var(--shadow-lg);
    }

    .lhg-main-wrap .center-van svg {
        width: 60px;
        height: 60px;
        fill: var(--primary);
        margin-bottom: 10px;
    }

    .lhg-main-wrap .center-van span {
        font-family: var(--font-display);
        font-weight: 700;
        font-size: 0.95rem;
        color: var(--primary-dark);
        text-align: center;
    }

    /* Connection Lines */
    .lhg-main-wrap .connection-node {
        position: absolute;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        z-index: 2;
        transition: var(--transition-smooth);
    }

    .lhg-main-wrap .connection-node:hover {
        transform: translateY(-5px);
    }

    .lhg-main-wrap .node-icon {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: var(--shadow-sm);
        transition: var(--transition-smooth);
    }

    .lhg-main-wrap .connection-node:hover .lhg-main-wrap .node-icon {
        transform: scale(1.1);
        box-shadow: var(--shadow-md);
    }

    .lhg-main-wrap .node-icon svg {
        width: 24px;
        height: 24px;
    }

    .lhg-main-wrap .node-label {
        font-size: 0.8rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* Node Positionings */
    .node-airport {
        top: 20px;
        left: 20px;
    }
    .node-airport .lhg-main-wrap .node-icon {
        background-color: #e3f2fd;
        color: #1e88e5;
        border: 2px solid #90caf9;
    }
    .node-airport .lhg-main-wrap .node-label { color: #1e88e5; }

    .node-port {
        bottom: 20px;
        left: 25px;
    }
    .node-port .lhg-main-wrap .node-icon {
        background-color: #e0f2f1;
        color: #00897b;
        border: 2px solid #80cbc4;
    }
    .node-port .lhg-main-wrap .node-label { color: #00897b; }

    .node-hotel {
        top: 15px;
        right: 25px;
    }
    .node-hotel .lhg-main-wrap .node-icon {
        background-color: #ede7f6;
        color: #5e35b1;
        border: 2px solid #b39ddb;
    }
    .node-hotel .lhg-main-wrap .node-label { color: #5e35b1; }

    .node-dest {
        bottom: 15px;
        right: 20px;
    }
    .node-dest .lhg-main-wrap .node-icon {
        background-color: #fbe9e7;
        color: #d84315;
        border: 2px solid #ffab91;
    }
    .node-dest .lhg-main-wrap .node-label { color: #d84315; }

    /* SVG Connecting Lines behind elements */
    .lhg-main-wrap .connecting-lines-svg {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 1;
        pointer-events: none;
    }

    .lhg-main-wrap .connecting-lines-svg line {
        stroke: #cbd5e1;
        stroke-width: 2;
        stroke-dasharray: 6 4;
    }

    /* Hubs Grid */
    .lhg-main-wrap .ports-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin-top: 40px;
    }

    .lhg-main-wrap .hub-column {
        background: var(--bg-light);
        border-radius: var(--radius-lg);
        padding: 40px;
        border: 1px solid rgba(0, 0, 0, 0.03);
        box-shadow: var(--shadow-sm);
    }

    .lhg-main-wrap .hub-column-header {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 24px;
        border-bottom: 2px solid rgba(0,0,0,0.05);
        padding-bottom: 16px;
    }

    .lhg-main-wrap .hub-column-header svg {
        width: 32px;
        height: 32px;
        fill: var(--primary);
    }

    .lhg-main-wrap .hub-column-header h3 {
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--primary-dark);
    }

    .lhg-main-wrap .hub-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding-left: 0;
    }

    .lhg-main-wrap .hub-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 12px 16px;
        background: var(--bg-white);
        border-radius: var(--radius-md);
        border: 1px solid rgba(0,0,0,0.02);
        box-shadow: 0 2px 4px rgba(0,0,0,0.01);
        transition: var(--transition-smooth);
    }

    .lhg-main-wrap .hub-item:hover {
        transform: translateX(5px);
        border-color: rgba(45, 106, 79, 0.15);
        box-shadow: var(--shadow-sm);
    }

    .lhg-main-wrap .hub-item-dot {
        width: 8px;
        height: 8px;
        background-color: var(--accent-dark);
        border-radius: 50%;
        margin-top: 8px;
        flex-shrink: 0;
    }

    .lhg-main-wrap .hub-item-text h4 {
        font-size: 1rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 2px;
    }

    .lhg-main-wrap .hub-item-text p {
        font-size: 0.85rem;
        color: var(--text-light);
    }

    .lhg-main-wrap .hub-footer-text {
        text-align: center;
        grid-column: 1 / -1;
        font-size: 1.15rem;
        font-weight: 600;
        color: var(--primary);
        margin-top: 20px;
        font-style: italic;
    }

    /* Fleet Section */
    .lhg-main-wrap .fleet-section {
        background-color: var(--bg-white);
    }

    .lhg-main-wrap .fleet-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .lhg-main-wrap .fleet-card {
        background: var(--bg-light);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-sm);
        border: 1px solid rgba(0, 0, 0, 0.03);
        transition: var(--transition-smooth);
    }

    .lhg-main-wrap .fleet-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-md);
    }

    .lhg-main-wrap .fleet-img-box {
        position: relative;
        height: 220px;
        overflow: hidden;
    }

    .lhg-main-wrap .fleet-img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition-smooth);
    }

    .lhg-main-wrap .fleet-card:hover .fleet-img-box img {
        transform: scale(1.05);
    }

    .lhg-main-wrap .fleet-content {
        padding: 30px;
    }

    .lhg-main-wrap .fleet-content h4 {
        font-size: 1.2rem;
        color: var(--primary-dark);
        margin-bottom: 12px;
    }

    .lhg-main-wrap .fleet-content p {
        font-size: 0.9rem;
        color: var(--text-light);
    }

    /* Excursions & Attractions Section */
    .lhg-main-wrap .excursions-section {
        background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
        color: #ffffff;
    }

    .lhg-main-wrap .excursions-section .lhg-main-wrap .section-title {
        color: #ffffff;
    }

    .lhg-main-wrap .excursions-section .lhg-main-wrap .section-badge {
        background-color: rgba(255, 255, 255, 0.15);
        color: #ffffff;
    }

    .lhg-main-wrap .excursions-grid {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 50px;
        align-items: center;
    }

    .lhg-main-wrap .excursions-list-wrap {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .lhg-main-wrap .excursion-card {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: var(--radius-md);
        padding: 20px;
        display: flex;
        align-items: center;
        gap: 16px;
        transition: var(--transition-smooth);
    }

    .lhg-main-wrap .excursion-card:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-4px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .lhg-main-wrap .excursion-icon {
        width: 45px;
        height: 45px;
        border-radius: var(--radius-sm);
        background: rgba(255, 255, 255, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .lhg-main-wrap .excursion-icon svg {
        width: 22px;
        height: 22px;
        fill: #ffffff;
    }

    .lhg-main-wrap .excursion-card h4 {
        font-size: 0.95rem;
        font-weight: 700;
        color: #ffffff;
        line-height: 1.3;
    }

    .lhg-main-wrap .excursions-img-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .lhg-main-wrap .excursion-img-box {
        position: relative;
        border-radius: var(--radius-md);
        overflow: hidden;
        height: 180px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        cursor: pointer;
    }

    .lhg-main-wrap .excursion-img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .lhg-main-wrap .excursion-img-box:hover img {
        transform: scale(1.1);
    }

    .lhg-main-wrap .excursion-img-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 16px;
        background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
        z-index: 2;
        color: #ffffff;
        transition: var(--transition-smooth);
    }

    .lhg-main-wrap .excursion-img-box h5 {
        font-family: var(--font-display);
        font-size: 1rem;
        font-weight: 700;
    }

    /* Book Transportation Section */
    .lhg-main-wrap .booking-section {
        background-color: var(--primary-dark);
        color: #ffffff;
    }

    .lhg-main-wrap .booking-section .lhg-main-wrap .section-title {
        color: #ffffff;
    }

    .lhg-main-wrap .booking-section .lhg-main-wrap .section-badge {
        background-color: rgba(255, 255, 255, 0.1);
        color: var(--primary-light);
    }

    .lhg-main-wrap .booking-section .lhg-main-wrap .section-desc {
        color: rgba(255, 255, 255, 0.8);
    }

    .lhg-main-wrap .booking-categories {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin-top: 40px;
    }

    .lhg-main-wrap .booking-card {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: var(--radius-lg);
        padding: 40px;
        box-shadow: var(--shadow-glass);
    }

    .lhg-main-wrap .booking-card-header {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 20px;
    }

    .lhg-main-wrap .booking-card-header svg {
        width: 32px;
        height: 32px;
        fill: var(--accent);
    }

    .lhg-main-wrap .booking-card-header h3 {
        font-size: 1.4rem;
        font-weight: 700;
        color: #ffffff;
    }

    .lhg-main-wrap .booking-links-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .lhg-main-wrap .booking-badge-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: var(--radius-md);
        padding: 14px 18px;
        font-weight: 600;
        font-size: 0.88rem;
        text-align: center;
        transition: var(--transition-smooth);
        cursor: pointer;
    }

    .lhg-main-wrap .booking-badge-btn:hover {
        background: var(--accent);
        color: var(--text-dark);
        border-color: var(--accent);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(255, 183, 3, 0.2);
    }

    .lhg-main-wrap .booking-badge-btn svg {
        width: 14px;
        height: 14px;
        fill: currentColor;
        opacity: 0.7;
    }

    /* Testimonials Section */
    .lhg-main-wrap .testimonials-section {
        background-color: var(--bg-white);
    }

    .lhg-main-wrap .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-top: 30px;
    }

    .lhg-main-wrap .testimonial-card {
        background: var(--bg-light);
        border-radius: var(--radius-lg);
        padding: 40px;
        position: relative;
        border: 1px solid rgba(0,0,0,0.02);
        box-shadow: var(--shadow-sm);
        transition: var(--transition-smooth);
    }

    .lhg-main-wrap .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-md);
        border-color: rgba(45, 106, 79, 0.1);
    }

    .lhg-main-wrap .quote-icon {
        position: absolute;
        top: 30px;
        right: 40px;
        width: 40px;
        height: 40px;
        fill: var(--accent);
        opacity: 0.3;
    }

    .lhg-main-wrap .rating-stars {
        display: flex;
        gap: 4px;
        margin-bottom: 20px;
    }

    .lhg-main-wrap .rating-stars svg {
        width: 18px;
        height: 18px;
        fill: var(--accent);
    }

    .lhg-main-wrap .testimonial-text {
        font-size: 1.05rem;
        line-height: 1.7;
        color: var(--text-light);
        font-style: italic;
        margin-bottom: 24px;
        font-family: var(--font-body);
    }

    .lhg-main-wrap .testimonial-author {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .lhg-main-wrap .author-avatar {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--primary), var(--primary-light));
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        font-weight: 700;
        font-size: 1.1rem;
        font-family: var(--font-display);
    }

    .lhg-main-wrap .author-info h4 {
        font-size: 1rem;
        font-weight: 700;
        color: var(--text-dark);
    }

    .lhg-main-wrap .author-info p {
        font-size: 0.8rem;
        color: var(--text-light);
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 0.5px;
    }

    /* Contact Us Section */
    .lhg-main-wrap .contact-section {
        position: relative;
        background-attachment: fixed;
    }

    .lhg-main-wrap .contact-wrapper {
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: var(--radius-lg);
        padding: 60px 40px;
        box-shadow: var(--shadow-lg);
        max-width: 900px;
        margin: 0 auto;
    }

    .lhg-main-wrap .contact-form {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        margin-top: 40px;
    }

    .lhg-main-wrap .form-group {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .lhg-main-wrap .form-group-full {
        grid-column: 1 / -1;
    }

    .lhg-main-wrap .form-group label {
        font-size: 0.85rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: var(--text-dark);
    }

    .lhg-main-wrap .form-group input,
    .lhg-main-wrap .form-group textarea {
        font-family: var(--font-body);
        font-size: 0.95rem;
        padding: 14px 18px;
        border: 1.5px solid #cbd5e1;
        border-radius: var(--radius-md);
        background-color: var(--bg-white);
        color: var(--text-dark);
        transition: var(--transition-fast);
    }

    .lhg-main-wrap .form-group input:focus,
    .lhg-main-wrap .form-group textarea:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
    }

    .lhg-main-wrap .contact-submit-btn {
        grid-column: 1 / -1;
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        color: #ffffff;
        font-weight: 700;
        padding: 16px 36px;
        border-radius: var(--radius-full);
        font-size: 1rem;
        border: none;
        cursor: pointer;
        box-shadow: 0 6px 20px rgba(45, 106, 79, 0.2);
        transition: var(--transition-smooth);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .lhg-main-wrap .contact-submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(45, 106, 79, 0.3);
    }

    /* Booking Modal Styling */
    .lhg-main-wrap .modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2000;
        background: rgba(15, 23, 42, 0.6);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        pointer-events: none;
        transition: var(--transition-smooth);
        padding: 24px;
    }

    .lhg-main-wrap .modal.open {
        opacity: 1;
        pointer-events: auto;
    }

    .lhg-main-wrap .modal-container {
        background: var(--bg-white);
        border-radius: var(--radius-lg);
        width: 100%;
        max-width: 650px;
        max-height: 90vh;
        overflow-y: auto;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        transform: scale(0.95) translateY(30px);
        transition: var(--transition-smooth);
        position: relative;
        border: 1px solid rgba(0,0,0,0.05);
    }

    .lhg-main-wrap .modal.open .lhg-main-wrap .modal-container {
        transform: scale(1) translateY(0);
    }

    .lhg-main-wrap .modal-close-btn {
        position: absolute;
        top: 24px;
        right: 24px;
        background: var(--bg-light);
        border: none;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: var(--transition-fast);
        color: var(--text-light);
        z-index: 10;
    }

    .lhg-main-wrap .modal-close-btn:hover {
        background-color: #e2e8f0;
        color: var(--text-dark);
        transform: rotate(90deg);
    }

    .lhg-main-wrap .modal-close-btn svg {
        width: 16px;
        height: 16px;
        fill: currentColor;
    }

    .lhg-main-wrap .modal-header {
        padding: 32px 40px 16px;
    }

    .lhg-main-wrap .modal-header h3 {
        font-size: 1.6rem;
        color: var(--primary-dark);
        font-weight: 800;
        margin-bottom: 4px;
    }

    .lhg-main-wrap .modal-header p {
        font-size: 0.9rem;
        color: var(--text-light);
    }

    .lhg-main-wrap .modal-body {
        padding: 0 40px 40px;
    }

    .lhg-main-wrap .modal-form {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .lhg-main-wrap .modal-form .lhg-main-wrap .form-group-full {
        grid-column: 1 / -1;
    }

    .lhg-main-wrap .modal-form label {
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: var(--text-dark);
        margin-bottom: 6px;
        display: block;
    }

    .lhg-main-wrap .modal-form input,
    .lhg-main-wrap .modal-form select,
    .lhg-main-wrap .modal-form textarea {
        font-family: var(--font-body);
        font-size: 0.9rem;
        padding: 12px 16px;
        border: 1.5px solid #cbd5e1;
        border-radius: var(--radius-md);
        width: 100%;
        background-color: var(--bg-white);
        color: var(--text-dark);
        transition: var(--transition-fast);
    }

    .lhg-main-wrap .modal-form input:focus,
    .lhg-main-wrap .modal-form select:focus,
    .lhg-main-wrap .modal-form textarea:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
    }

    .lhg-main-wrap .modal-submit-btn {
        grid-column: 1 / -1;
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        color: #ffffff;
        font-weight: 700;
        padding: 14px 30px;
        border-radius: var(--radius-full);
        font-size: 1rem;
        border: none;
        cursor: pointer;
        box-shadow: 0 6px 20px rgba(45, 106, 79, 0.2);
        transition: var(--transition-smooth);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 10px;
    }

    .lhg-main-wrap .modal-submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(45, 106, 79, 0.3);
    }

    /* Success Message Overlay styling */
    .lhg-main-wrap .toast-notification {
        position: fixed;
        bottom: 30px;
        right: 30px;
        background: #10b981;
        color: white;
        padding: 16px 24px;
        border-radius: var(--radius-md);
        box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
        display: flex;
        align-items: center;
        gap: 12px;
        z-index: 3000;
        transform: translateY(100px);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition-smooth);
    }

    .lhg-main-wrap .toast-notification.show {
        transform: translateY(0);
        opacity: 1;
    }

    .lhg-main-wrap .toast-notification svg {
        width: 20px;
        height: 20px;
        fill: none;
        stroke: currentColor;
        stroke-width: 3;
    }

    /* Animations */
    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(40px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Form Disabling visual state */
    .lhg-main-wrap .contact-submit-btn:disabled,
    .lhg-main-wrap .modal-submit-btn:disabled {
        opacity: 0.7;
        cursor: not-allowed;
        transform: none !important;
        box-shadow: none !important;
    }

    /* Responsive Breakpoints */
    @media (max-width: 1024px) {
        .hero-card {
            margin-top: 40px; /* shift down slightly on tablet */
        }
    }

    @media (max-width: 768px) {
        .hero-card {
            padding: 30px 20px;
        }

        .hero-card h2 {
            font-size: 1.8rem;
        }

        .hero-card p {
            font-size: 0.95rem;
        }

        .lhg-main-wrap .section-padding {
            padding: 60px 0;
        }

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

        .lhg-main-wrap .fleet-grid {
            grid-template-columns: 1fr;
        }

        .lhg-main-wrap .excursions-grid {
            grid-template-columns: 1fr;
        }

        .lhg-main-wrap .excursions-list-wrap {
            grid-template-columns: 1fr;
        }

        .lhg-main-wrap .ports-grid {
            grid-template-columns: 1fr;
        }

        .lhg-main-wrap .booking-categories {
            grid-template-columns: 1fr;
        }

        .lhg-main-wrap .booking-links-grid {
            grid-template-columns: 1fr;
        }

        .lhg-main-wrap .testimonials-grid {
            grid-template-columns: 1fr;
        }

        .lhg-main-wrap .contact-form {
            grid-template-columns: 1fr;
        }

        .lhg-main-wrap .modal-container {
            max-height: 95vh;
        }

        .lhg-main-wrap .modal-header,
        .lhg-main-wrap .modal-body {
            padding-left: 24px;
            padding-right: 24px;
        }
        
        .lhg-main-wrap .modal-form {
            grid-template-columns: 1fr;
        }
        
        .lhg-main-wrap .illustration-wrap {
            transform: scale(0.65);
            height: 180px;
        }
    }
    
    @media (max-width: 480px) {
        .lhg-main-wrap .illustration-wrap {
            display: none;
        }
        .lhg-main-wrap .van-illustration {
            margin-bottom: 0;
        }
    }

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

    :root {
        --primary: #2d6a4f;
        --primary-dark: #1b4332;
        --primary-light: #52b788;
        --accent: #ffb703;
        --accent-dark: #fb8500;
        --text-dark: #0f172a;
        --text-light: #475569;
        --bg-light: #f8fafc;
        --bg-white: #ffffff;
        --font-display: 'Outfit', sans-serif;
        --font-body: 'Plus Jakarta Sans', sans-serif;
        
        --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        --transition-fast: all 0.2s ease;
        --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
        --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.06);
        --shadow-lg: 0 20px 40px rgba(27, 67, 50, 0.08);
        --radius-sm: 8px;
        --radius-md: 16px;
        --radius-lg: 24px;
        --radius-full: 9999px;
    }

    /* Scope resets to footer so they don't leak to other WP areas */
    footer, footer * {
        box-sizing: border-box;
        font-family: var(--font-body);
    }

    footer h4 {
        font-family: var(--font-display);
        font-weight: 700;
    }

    footer a {
        text-decoration: none;
        color: inherit;
        transition: var(--transition-fast);
    }

    /* Footer styling */
    footer {
        background-color: #0b0f19;
        color: #94a3b8;
        padding: 80px 0 40px;
        border-top: 1px solid #1e293b;
        width: 100%;
    }

    footer .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
        width: 100%;
    }

    footer .footer-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 50px;
        margin-bottom: 60px;
    }

    footer .footer-col h4 {
        color: #ffffff;
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 24px;
        position: relative;
        padding-bottom: 8px;
    }

    footer .footer-col h4::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 2px;
        background-color: var(--accent);
        border-radius: var(--radius-full);
    }

    footer .footer-links {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding-left: 0;
    }

    footer .footer-links li {
        list-style: none;
    }

    footer .footer-links a {
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    footer .footer-links a::before {
        content: '→';
        color: var(--accent);
        font-weight: 700;
        transition: var(--transition-fast);
    }

    footer .footer-links a:hover {
        color: #ffffff;
        transform: translateX(4px);
    }

    footer .footer-col-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    footer .footer-logo-img {
        max-width: 240px;
        width: 100%;
        height: auto;
        filter: brightness(0) invert(1);
        margin-bottom: 20px;
        display: block;
    }

    footer .footer-info-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding-left: 0;
    }

    footer .footer-info-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        font-size: 0.9rem;
        text-align: left;
    }

    footer .footer-info-item svg {
        width: 18px;
        height: 18px;
        fill: var(--accent);
        margin-top: 3px;
        flex-shrink: 0;
    }

    footer .footer-info-item a:hover {
        color: #ffffff;
    }

    footer .footer-bottom {
        border-top: 1px solid #1e293b;
        padding-top: 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 0.85rem;
    }

    /* Responsive Breakpoints */
    @media (max-width: 1024px) {
        footer .footer-grid {
            grid-template-columns: 1fr 1fr;
        }
        footer .footer-col-logo {
            grid-column: 1 / -1;
            order: -1;
        }
    }

    @media (max-width: 768px) {
        footer .footer-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        footer .footer-bottom {
            flex-direction: column;
            gap: 15px;
            text-align: center;
        }
    }

    /* Banner Section Styles */
    .lhg-main-wrap .banner-section {
        padding: 50px 0 20px;
        background-color: var(--bg-light);
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .lhg-main-wrap .banner-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 1200px;
        padding: 0 24px;
    }

    .lhg-main-wrap .banner-link {
        display: flex;
        justify-content: center;
        width: 100%;
        text-decoration: none;
    }

    .lhg-main-wrap .banner-img {
        width: 60%;
        max-width: 100%;
        height: auto;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-md);
        transition: var(--transition-smooth);
    }

    .lhg-main-wrap .banner-img:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
    }

    @media (max-width: 768px) {
        .lhg-main-wrap .banner-section {
            padding: 30px 0 10px;
        }
        .lhg-main-wrap .banner-img {
            width: 85%;
        }
    }

    #header nav a.special-nav-link {
        font-weight: 800 !important;
        color: var(--accent-dark) !important; /* Standout color (gold/orange) */
        font-size: 0.82rem !important; /* Slightly larger font */
        border: 1px solid rgba(251, 133, 0, 0.4);
        padding: 6px 14px;
        border-radius: var(--radius-sm);
        background: rgba(255, 183, 3, 0.08);
        transition: var(--transition-smooth);
    }
    #header nav a.special-nav-link:hover {
        background: var(--accent);
        color: var(--text-dark) !important;
        border-color: var(--accent);
        box-shadow: 0 4px 12px rgba(255, 183, 3, 0.25);
    }
    #header.scrolled nav a.special-nav-link {
        color: var(--accent) !important;
        border-color: rgba(255, 183, 3, 0.5);
    }
    #header.scrolled nav a.special-nav-link:hover {
        background: var(--accent);
        color: var(--text-dark) !important;
    }
