:root {
    --primary: rgb(255, 144, 9);
    --primary-dark: #c48237;
    --bg-dark: #0a0a0b;
    --text-main: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.7);
    --primary-soft: #eff6ff;
    --dark: #0f172a;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
    --font-acc: 'Inter', sans-serif;
    --dash-primary: rgb(255, 144, 9);
    --dash-primary-soft: #eff6ff;
    --dash-bg: #f8fafc;
    --dash-sidebar-bg: #ffffff;
    --dash-text-main: #1e293b;
    --dash-text-muted: #64748b;
    --dash-border: #e2e8f0;
    --dash-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --dash-radius: 12px;
}

/*  */
body {
    font-family: var(--font-main);
    background-color: #fff;
    color: #1a1a1a;
}


body.no-scroll {
    overflow: hidden;
}

/*
search styles
*/

.search-tab input[type="radio"]:checked+span,
.search-tab.active {
    background: #fff;
    color: #000;
}

.search-tab {
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.top-scroll {
    width: 45px;
    height: 45px;
    line-height: 45px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary);
    color: #fff;
    text-align: center;
    border-radius: 12px;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
}

.btn-action-icon {
    width: 35px;
    height: 35px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    color: #444;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.btn-action-icon.wp:hover {
    background: #25D366;
    color: white;
}

.btn-action-icon.phn:hover {
    background: var(--primary);
    color: white;
}

.fs-inner-container {
    padding-top: 30px;
    background: #f8f9fa;
    /* Light grey background to make glass cards pop */
}

/* Fix for the glass search bar inside the content container */
.search-glass-wrap {
    background: #1a1a1a;
    /* Dark background since it's not over a hero image here */
    margin-top: 10px;
}

.search-input,
.search-select {
    color: #fff;
}

/*modals*/
.contact-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-link:hover {
    color: #3b82f6;
    /* Primary blue on hover */
    text-decoration: underline;
}

.help-modal-dark .contact-link {
    color: rgba(255, 255, 255, 0.8);
}

/* Modal Sizing & Glassmorphism */
.modal-content {
    border: none !important;
    border-radius: 24px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2) !important;
}

.modal-lg {
    max-width: 800px;
}

/* Makes the Maintenance modal wider */

.modal-header {
    border-bottom: 1px solid #f1f5f9;
    padding: 25px 30px;
}

.modal-title {
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
}

/* Custom Modern Inputs */
.input-modern {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    background: #f8fafc;
    font-size: 15px;
    color: #1e293b;
    transition: all 0.2s;
    margin-bottom: 15px;
}

.input-modern:focus {
    outline: none;
    border-color: #2563eb;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.field-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

/* Selection Chips */
.chips-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.chip-label {
    cursor: pointer;
    margin-bottom: 0;
}

.chip-label input {
    display: none;
}

.chip-label span {
    display: inline-block;
    padding: 10px 20px;
    background: #f1f5f9;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.chip-label input:checked+span {
    background: #2563eb;
    color: #fff;
}

/* Buttons */
.btn-submit {
    background: #2563eb;
    color: white;
    font-weight: 700;
    padding: 14px 30px;
    border-radius: 12px;
    border: none;
    width: 100%;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #d8771d;
    transform: translateY(-2px);
}

.help-modal-dark {
    background: #0f172a !important;
    color: white !important;
}

.text-primary {
    color: var(--primary) !important;
}


/*
Search filters
*/
.modern-search-sidebar {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.search-tabs-sidebar {
    background: #f4f4f4;
    padding: 5px;
    border-radius: 12px;
    display: flex;
}

.tab-item {
    flex: 1;
    text-align: center;
    padding: 8px;
    cursor: pointer;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    margin: 0;
}

.tab-item.active {
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.search-label {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    color: #888;
    margin-bottom: 4px;
    display: block;
}

.form-control-modern {
    width: 100%;
    border: 1px solid #eee;
    background: #f9f9f9;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    margin-bottom: 15px;
}

.btn-search-modern {
    background: #0066ff;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 12px;
    font-weight: 700;
    transition: 0.3s;
}

.btn-search-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

.amenities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.amenity-item {
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.advanced-toggle {
    font-size: 12px;
    font-weight: 700;
    color: #0066ff;
    text-decoration: none !important;
}

/* Map & Sidebar height fix */
.half-map .fs-left-map-box {
    top: 80px;
    /* Adjust to match your header height */
    height: calc(100vh - 80px);
}

/* Customer Dashboard*/
/* Container Section */
.dashboard-wrapper {
    background-color: var(--dash-bg);
    min-height: 100vh;
    padding: 100px 0;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;

}

/* Sidebar Styling */
.dash-sidebar {
    background: var(--dash-sidebar-bg);
    border-radius: var(--dash-radius);
    border: 1px solid var(--dash-border);
    box-shadow: var(--dash-shadow);

    overflow: hidden;

}

/* Profile Section */
.dash-user-profile {
    padding: 30px 24px;
    text-align: center;
    border-bottom: 1px solid var(--dash-border);

}

.dash-avatar-circle {
    width: 60px;
    height: 60px;
    background: var(--dash-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 12px;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

.dash-user-profile h4 {
    margin: 0;
    font-size: 14px;
    color: var(--dash-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dash-user-profile .user-name {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--dash-text-main);
    margin-top: 4px;
}

/* Navigation Menu */
.dash-menu-list {
    list-style: none;
    padding: 20px 12px;
    margin: 0;
}

.dash-menu-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--dash-text-muted);
    text-transform: uppercase;
    padding: 10px 15px;
    letter-spacing: 0.5px;
}

.dash-menu-item {
    margin-bottom: 4px;
}

.dash-menu-link {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: var(--dash-text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.dash-menu-link i {
    width: 20px;
    margin-right: 12px;
    font-size: 18px;
    color: var(--dash-text-muted);
    transition: all 0.2s ease;
}

.dash-menu-link:hover {
    background: var(--dash-primary-soft);
    color: var(--dash-primary);
}

.dash-menu-link:hover i {
    color: var(--dash-primary);
    transform: translateX(3px);
}

/* Active State */
.dash-menu-item.active .dash-menu-link {
    background: var(--dash-primary);
    color: #ffffff;
}

.dash-menu-item.active .dash-menu-link i {
    color: #ffffff;
}

/* Footer / Logout */
.dash-sidebar-footer {
    padding: 15px;
    border-top: 1px solid var(--dash-border);
    display: flex;
    justify-content: center;
}

.btn-logout {
    color: #ef4444;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    transition: background 0.2s;
}

.btn-logout:hover {
    background: #fef2f2;
}


/* --- Modern Header Styles --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 15px 0;
    background: transparent;
    border-bottom: 1px solid transparent;
}

.header.header-fixed {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
}

.nav-right {
    justify-content: flex-end;
}

.nav-center {
    flex: 1 0 auto;

}

.nav-link {
    font-family: var(--font-acc);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-wrap: nowrap;
    padding: 13px;
    border-radius: 30px;
    transition: all 0.3s ease;

}

.header.header-fixed .nav-link {
    color: #1a1a1a;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    color: var(--dark);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
  
}

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

.logo-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    transition: transform 0.3s ease;
    font-size: 30px;
}

.logo-box:hover {
    transform: scale(1.05);
    color: var(--primary);
}

.logo-box img {
    height: 65px;
    transition: transform 0.3s ease;
}

/* .header:not(.header-fixed) .logo-box img {
    filter: brightness(0) invert(1);
} */

.company-name {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-main);
    transition: color 0.4s ease;
}



.header.header-fixed .company-name {
    color: #1a1a1a;
}

.login-btn {
    background: var(--primary);
    color: #fff !important;
   padding: 10px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-wrap:nowrap;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    background: var(--primary-dark);
}

/* --- Desktop Default Settings --- */
.mobile_nav,
.mobile-menu {
    display: none;
    /* Hidden on PC by default */
}

/* --- Mobile Logic (Screens smaller than 991px) --- */
@media (max-width: 991px) {

    .mobile_nav,
    .mobile-menu {
        display: block
            /* Hidden on PC by default */
    }

    /* 1. Hide the desktop linkfs */
    .nav-left,
    .nav-right {
        display: none !important;
    }

    /* 2. Show the mobile toggle area */
    .mobile_nav {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    /* 3. Ensure the container spreads out logo and hamburger */
    .header-container {
        padding: 0 3px;
    }

    /* 4. Hamburger Icon Styling */
    .nav-toggle {
        cursor: pointer;
        display: flex;
        flex-direction: column;
        gap: 5px;
        width: 30px;
    }

    .nav-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: #1a1a1a;
        /* Change to white if header is transparent */
        transition: 0.3s;
    }

    /* 5. Mobile Menu Overlay Styling */
    /* --- Modern Mobile Menu --- */
    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        /* Hidden off-screen */
        width: 100%;
        height: 100vh;
        background: var(--white);
        z-index: 9999;
        transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        visibility: hidden;
    }

    .mobile-menu.active {
        right: 0;
        visibility: visible;
    }

    .mobile-menu-inner {
        display: flex;
        flex-direction: column;
        height: 100%;
        padding: 30px 25px;
    }

    /* Header Section */
    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 20px;
        border-bottom: 1px solid var(--dash-border);
        color:black;
    }

    .mobile-menu-header .logo-box img {
        height: 40px;
    }

    .close-menu {
        width: 45px;
        height: 45px;
        background: var(--bg-light);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--dark);
        font-size: 20px;
        cursor: pointer;
        transition: 0.3s;
    }

    .close-menu:hover {
        background: var(--primary-soft);
        color: var(--primary);
    }

    /* Content Section */
    .mobile-menu-content {
        flex: 1;
        padding-top: 40px;
    }

    .menu-label {
        font-family: var(--font-acc);
        text-transform: uppercase;
        font-size: 11px;
        letter-spacing: 2px;
        color: var(--text-muted);
        font-weight: 700;
        margin-bottom: 20px;
    }

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

    .mobile-nav-list li {
        margin-bottom: 10px;
    }

    .mobile-nav-list .nav-link {
        font-family: var(--font-main);
        font-size: 24px;
        font-weight: 600;
        color: var(--dark) !important;
        text-decoration: none;
        display: flex;
        align-items: center;
        padding: 10px 0;
        transition: transform 0.3s ease, color 0.3s ease;
    }

    .mobile-nav-list .nav-link:hover {
        
        transform: translateX(10px);
    }

    /* Footer Section */
    .mobile-menu-footer {
        padding-top: 20px;
        border-top: 1px solid var(--dash-border);
    }

    .login-btn-mobile {
        background: var(--primary);
        color: white !important;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 25px;
        border-radius: 15px;
        text-decoration: none;
        font-family: var(--font-main);
        font-weight: 600;
        font-size: 18px;
        box-shadow: 0 10px 20px rgba(9, 173, 255, 0.2);
        margin-bottom: 25px;
    }

    .menu-contact-info p {
        font-family: var(--font-acc);
        font-size: 14px;
        color: var(--text-muted);
        margin-bottom: 5px;
    }

    /* Blur effect on body when menu is open */
    body.menu-open {
        overflow: hidden;
    }
}

/* --- Sub-page Header (Solid by default) --- */
.header.header-sub {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header.header-sub .nav-link,
.header.header-sub .company-name {
    color: #1a1a1a !important;
}

.header-sub .mobile_nav .nav-toggle span {
    background: #1a1a1a;
}

/* Slick Arrows Styling */
.slick-prev,
.slick-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.slick-prev:hover,
.slick-next:hover {
    background: var(--primary);
}

.slick-prev:before,
.slick-next:before {
    color: #000;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 18px;
    opacity: 1;
}

.slick-prev {
    left: 20px;
}

.slick-next {
    right: 20px;
}

.slick-prev:before {
    content: "\f053";
}

.slick-next:before {
    content: "\f054";
}

.slick-prev:hover:before,
.slick-next:hover:before {
    color: #fff;
}

.property-gallery-contained {
    margin-bottom: 30px;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

.property-gallery-contained img {
    height: 450px;
    object-fit: cover;
    width: 100%;
}

/* --- Socials & Other Styles --- */
.sticky-social {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
}

.sticky-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    color: #fff !important;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.sticky-social a:hover {
    width: 55px;
}

.sticky-social .fb {
    background: #3b5998;
}

.sticky-social .yt {
    background: #ff0000;
}

.sticky-social .ig {
    background: #e4405f;
}

.sticky-social .li {
    background: #0077b5;
}

/* Hide on mobile so it doesn't block content */
/* @media screen and (max-width: 768px) {
    .sticky-social {
        display: none !important;
    }
}

/* Mobile Adjustments */


/* Toggle Animation */
.nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background: #fff !important;
}

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

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background: #fff !important;
}

@media screen and (max-width: 790px) {
    .single-blog img {
        width: 100%;
        height: auto !important;
    }
}

/* --- Front Page Styles --- */
.hero_banner {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    padding-top: 100px;
}

.hero_banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 5%;
}

.hero-text-wrap {
    margin-bottom: 50px;
    max-width: 800px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -2px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s forwards;
}

/* --- Modern Search Bar --- */
.search-glass-wrap {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    max-width: 1100px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.4s forwards;
}

.search-item {
    flex: 1;
    min-width: 200px;
    padding: 15px 25px;
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.search-item:last-child {
    border-right: none;
    flex: 0 0 auto;
}

.search-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.search-input {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    outline: none !important;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.search-select {
    appearance: none;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    cursor: pointer;
    outline: none !important;
}

.search-select option {
    background: #1a1a1a;
    color: #fff;
}

.search-btn-modern {
    background: var(--primary);
    color: #fff;
    border: none;
    height: 60px;
    width: 60px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.search-btn-modern:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.4);
}

.search-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.search-tab {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.search-tab.active {
    background: #fff;
    color: #000;
}

/* --- Property Cards --- */
.property-card-modern {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.property-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.property-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

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

.property-card-modern:hover .property-img-wrap img {
    transform: scale(1.1);
}

.property-status-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #ffa500;
    color: #000;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    z-index: 2;
}

.shortlist-form-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
}

.heart-btn-circle {
    width: 45px;
    height: 45px;
    background: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.heart-btn-circle:hover {
    color: #ef4444;
    transform: scale(1.1);
}

.heart-btn-circle i.fas {
    color: #ef4444;
}

.property-content-modern {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.type-badge-mini {
    display: inline-flex;
    align-items: center;
    background: #f1f5f9;
    color: #475569;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
    align-self: flex-start;
}

.property-title-modern {
    margin-bottom: 10px;
}

.property-title-modern a {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    line-height: 1.3;
}

.property-location-modern {
    color: #94a3b8;
    font-size: 15px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.property-divider {
    height: 1px;
    background: #f1f5f9;
    margin-bottom: 20px;
}

.property-stats-modern {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
}

.stat-item i {
    font-size: 16px;
    color: #94a3b8;
}

.no-img-placeholder {
    width: 100%;
    height: 100%;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-size: 40px;
}

.listing-name a {
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.listing-name a:hover {
    color: var(--primary);
}

.listing-location {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.property-meta-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1e293b;
    font-weight: 600;
    font-size: 15px;
}

.meta-item i {
    font-size: 18px;
    opacity: 0.6;
}

.property-type-label {
    font-family: var(--font-main);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: #64748b;
    margin-top: auto;
    padding-top: 15px;
}

/* --- Sections --- */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@media (max-width: 768px) {
    .search-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }

    .search-glass-wrap {
        border-radius: 20px;
    }

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

/* --- Recommended Properties Section --- */

/* --- Services Section --- */
.service-card-modern {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 40px;
    border-radius: 30px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.service-card-modern:hover {
    background: #fff;
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.service-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 25px;
}

.service-card-modern h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-card-modern p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.section-title {
    font-size: 50px;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.2;

    color: #1a1a1a;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
}

/* --- Why FREA Section --- */
.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item h4 {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
}

.stat-item p {
    color: #888;
    font-size: 14px;
}

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

.why-card {
    background: #fff;
    padding: 30px;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.why-card i {
    font-size: 30px;
    color: var(--primary);
    margin-bottom: 20px;
}

.why-card h4 {
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-card p {
    color: #888;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.why-card:hover {
    background: #fff;
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.why-card.active {
    background: var(--primary);
    border-color: var(--primary);
}

.why-card.active i,
.why-card.active h4,
.why-card.active p {
    color: #fff;
}

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

    .stats-row {
        gap: 20px;
    }
}

/* Base Card Style */
.dash-glass-card {

    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    /* Initial Shadow: 10px right, 10px bottom */
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.05);
}

/* Hover State */
.dash-glass-card:hover {
    transform: translateY(-8px) translateX(-2px);
    border-color: var(--primary) !important;
    /* Larger Shadow: 20px right, 25px bottom */
    box-shadow: 20px 25px 40px rgba(0, 0, 0, 0.1);
}

/* Utility Class for transition (if not already working) */
.transition-all {
    transition: all 0.4s ease-in-out;
}

/* --- Listing Process Section --- */
.rounded-40 {
    border-radius: 40px;
}

.process-image-wrap {
    position: relative;
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: #fff;
    padding: 15px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
}

.step-modern {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}

.step-number {
    font-family: var(--font-acc);
    font-weight: 800;
    font-size: 32px;
    color: rgba(0, 102, 255, 0.32);
    line-height: 1;
}

.step-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.step-content p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* --- Blogs Section --- */
.blog-carousel {
    margin: 0 -15px;
}

.blog-slide-item {
    padding: 15px;
}

.blog-card-modern {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
    cursor: pointer;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.blog-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.blog-thumb {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.blog-card-modern:hover .blog-thumb img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: #fff;
    padding: 10px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3);
}

.blog-date span {
    display: block;
    font-size: 20px;
}

.blog-info {
    padding: 30px;
}

.blog-info h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.blog-info p {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* --- CTA Section --- */
/* Container Box */
.cta-minimal {
    background: #f19035;
    /* Deep charcoal, almost black */
    padding: 60px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* The "Bottom-Right" Shadow you asked for earlier */
.shadow-bottom-right {
    box-shadow: 25px 25px 50px rgba(0, 0, 0, 0.15);
}

/* Content Styling */
.cta-badge {
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}

.cta-title {
    font-size: 36px;
    font-weight: 800;
    color: #1f1111;
    letter-spacing: -1px;
    margin-bottom: 15px;
}

.cta-text {
    color: #251111;
    font-size: 16px;
    max-width: 500px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* The Button */
.btn-sleek {
    background: #0e0101;
    color: #ea6f0b;
    padding: 18px 40px;
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    border: 2px solid #000000;
}

.btn-sleek:hover {
    background: transparent;
    color: #160303;
    transform: translateX(5px);
}

/* Accent Highlight */

/* Background subtle detail */
.cta-minimal::after {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: var(--primary);
    filter: blur(150px);
    opacity: 0.15;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 991px) {
    .cta-minimal {
        flex-direction: column;
        text-align: center;
        padding: 50px 30px;
    }

    .cta-text {
        margin: 0 auto 30px auto;
    }

    .cta-title {
        font-size: 28px;
    }
}

/* --- Footer Styles --- */
footer {
    background: var(--bg-dark);
    color: #fff;
    padding: 80px 0 0;
    font-family: var(--font-main);
}

.footer-middle {
    padding-bottom: 60px;
}

.footer_widget h4.widget_title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.footer_widget h4.widget_title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

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

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

.footer-menu li a {
    color: var(--text-dim);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

.footer-menu li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.logoholder {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    text-decoration: none;
    margin-bottom: 25px;
}

.img-footer {
    height: 40px;
}

.sociallinks li a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sociallinks li a i {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

.sociallinks li a:hover i {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--text-dim);
    font-size: 14px;
}

/* --- Back to Top --- */
#back2Top {
    width: 45px;
    height: 45px;
    line-height: 45px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary);
    color: #fff !important;
    text-align: center;
    border-radius: 12px;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
}

#back2Top:hover {
    transform: translateY(-5px);
    background: var(--primary-dark);
}

@media (max-width: 768px) {
    footer {
        padding: 60px 0 0;
    }

    .footer_widget {
        margin-bottom: 40px;
    }
}

/* --- Property Detail Page --- */
.property-gallery-wrap {
    padding-top: 120px;
    background: #f8f9fa;
}

.featured_slick_gallery-slide .featured_slick_padd {
    padding: 0 10px;
}

.featured_slick_gallery-slide img {
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.featured_slick_gallery-slide img:hover {
    transform: scale(1.02);
}

.property-main-header {
    background: #fff;
    padding: 40px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.property-title-wrap h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -1px;
}

.property-location {
    color: #666;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.property-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.stat-card label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 5px;
    font-weight: 600;
}

.stat-card span {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

/* Unit Cards */
.unit-premium-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
}

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

.unit-img-wrap {
    height: 250px;
    overflow: hidden;
    position: relative;
}

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

.unit-type-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: #fff;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.unit-details-wrap {
    padding: 30px;
}

.unit-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.unit-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.unit-amenities-mini {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid #f1f1f1;
}

.mini-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-size: 14px;
    font-weight: 600;
}

.mini-stat img {
    width: 18px;
    opacity: 0.7;
}

/* Sidebar Agent */
.agent-glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.agent-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.agent-thumb {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.agent-info h5 {
    margin: 0;
    font-weight: 700;
    font-size: 18px;
}

.agent-info p {
    margin: 0;
    color: #888;
    font-size: 13px;
}

.agent-actions {
    display: flex;
    gap: 10px;
}

.agent-btn {
    flex: 1;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.agent-btn.wp {
    background: #25D366;
    color: #fff;
}

.agent-btn.ph {
    background: #007bff;
    color: #fff;
}

.agent-btn.ml {
    background: #f8f9fa;
    color: #1a1a1a;
    border: 1px solid #eee;
}

.agent-btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}

.section-title-modern {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.section-title-modern::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 4px;
    background: var(--primary);
    border-radius: 10px;
}

.amenity-modern-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

.amenity-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.amenity-item:hover {
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.amenity-item img {
    width: 25px;
    height: 25px;
}

.amenity-item span {
    font-size: 13px;
    font-weight: 600;
    color: #444;
}

@media (max-width: 992px) {
    .property-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .property-stats-grid {
        grid-template-columns: 1fr;
    }

    .property-title-wrap h2 {
        font-size: 28px;
    }
}

/* --- Dashboard Modern Styles --- */
.dash-glass-card {
    background: #fff;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
    margin-bottom: 30px;
}

.dash-section-title {
    font-weight: 800;
    font-size: 24px;
    letter-spacing: -0.5px;
    margin-bottom: 30px;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 15px;
}

.dash-section-title:after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(0, 0, 0, 0.05);
}

.form-label-modern {
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 10px;
    display: block;
}

.modern-textarea {
    min-height: 120px;
    border-radius: 20px !important;
    padding: 20px !important;
}

.btn-update {
    background: var(--primary);
    color: #fff !important;
    font-weight: 800;
    padding: 18px 40px;
    border-radius: 18px;
    font-size: 16px;
    letter-spacing: 0.5px;
    box-shadow: 0 15px 35px rgba(243, 110, 30, 0.2);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-update:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(243, 110, 30, 0.3);
}

.img-preview-wrap {
    width: 100%;
    height: 150px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 15px;
    border: 2px dashed rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.img-preview-wrap img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

/* --- Auth Pages (Login / Register) --- */
.auth-page-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    padding: 140px 0 80px;
}

.auth-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.02);
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    transition: transform 0.4s ease;
}

.auth-header {
    background: #fff;
    padding: 40px 40px 10px;
    text-align: center;
}

.auth-header h3 {
    font-weight: 800;
    font-size: 32px;
    letter-spacing: -1px;
    margin-bottom: 10px;
}

.auth-header p {
    color: #888;
    font-size: 14px;
}

.auth-body {
    padding: 40px;
}

.modern-form .form-group {
    margin-bottom: 25px;
    position: relative;
}

.modern-form label {
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #444;
    margin-bottom: 8px;
}

.modern-form .form-control {
    height: 60px;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 0 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.modern-form .form-control:focus {
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.05);
}

.auth-btn {
    height: 60px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    width: 100%;
    transition: all 0.3s ease;
}

.auth-link {
    display: block;
    text-align: center;
    margin-top: 25px;
    font-weight: 600;
    font-size: 14px;
    color: #666;
}

.auth-link a {
    color: var(--primary);
    text-decoration: none;
}

/* --- About Page --- */
.about-hero {
    /* Large padding for impact */
    padding: 180px 0;

    /* Background logic */
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed;
    /* Optional: creates a slight parallax effect */

    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.about-hero h1 {
    font-size: 72px;
    /* Larger for center alignment */
    font-weight: 800;
    letter-spacing: -3px;
    margin-bottom: 25px;
    line-height: 1;
    color: #ffffff;
}

.about-hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    /* Slightly transparent white for a sleek look */
    max-width: 700px;
    margin: 0 auto;
    /* Centering the paragraph block */
    line-height: 1.6;
    font-weight: 400;
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .about-hero {
        padding: 120px 20px;
    }

    .about-hero h1 {
        font-size: 48px;
    }
}

.story-img-wrap {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding-top: 50px;
}

.value-card {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.05);
}

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

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: #fff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 25px;
}

.value-card h3 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 22px;
}

.team-card-modern {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.team-img {
    height: 400px;
    width: 100%;
    object-fit: cover;
}

.team-info-body {
    padding: 40px;
}

.team-info-body h4 {
    font-weight: 800;
    font-size: 28px;
    margin-bottom: 15px;
}

.cta-modern {
    background: var(--primary);
    padding: 50px 0;
    border-radius: 50px;
    margin: 50px auto;
    text-align: center;
    color: #fff;
}

.cta-modern h2 {
    font-weight: 800;
    font-size: 48px;
    margin-bottom: 20px;
    color: #fff;
}

@media (max-width: 992px) {
    .about-hero h1 {
        font-size: 48px;
    }

    .team-img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .auth-page-wrap {
        padding: 120px 20px 60px;
    }

    .auth-header {
        padding: 30px 20px 10px;
    }

    .auth-body {
        padding: 30px 20px;
    }
}

.modern-article {
    color: #444;
    line-height: 1.8;
    font-size: 16px;
}

.modern-article p {
    margin-bottom: 20px;
}

.modern-article h1,
.modern-article h2,
.modern-article h3,
.modern-article h4 {
    color: #1a1a1a;
    font-weight: 700;
    margin: 30px 0 15px;
}

/* --- Blog Modern Styles --- */
.blog-card-modern {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    margin-bottom: 30px;
}

.blog-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.blog-img-wrap {
    height: 240px;
    overflow: hidden;
    position: relative;
    background: #eee;
}

.blog-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card-modern:hover .blog-img-wrap img {
    transform: scale(1.1);
}

.blog-date-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 8px 15px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 13px;
    color: #1a1a1a;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
}

.blog-card-body {
    padding: 30px;
}

.blog-card-body .bl-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-card-body .bl-title a {
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.blog-card-body .bl-title a:hover {
    color: var(--primary);
}

.blog-card-body p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* --- Single Blog Styles --- */
.single-blog-header {
    padding: 200px 0 80px;
    background: #fff;
    text-align: center;
}

.single-blog-header h1 {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -1.5px;
    max-width: 900px;
    margin: 0 auto 30px;
    line-height: 1.2;
}

.post-meta-modern {
    display: flex;
    justify-content: center;
    gap: 30px;
    color: #888;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.post-featured-img-wrap {
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

.post-content-body {
    padding: 50px 0;
    font-size: 18px;
    line-height: 1.8;
}

/* --- Career Modern Styles --- */
.career-hero {
    padding: 200px 0 100px;
    background: #fff;
    position: relative;
}

.career-hero h1 {
    font-size: 64px;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.career-hero-content {
    position: relative;
    z-index: 2;
}

.btn-theme {
    background-color: #000000;
    color: #fff !important;
    border: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-block;
}

.btn-theme:hover {
    background-color: #0261bc;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(2, 118, 227, 0.25);
    color: #fff !important;
    text-decoration: none;
}

.rounded-3xl {
    border-radius: 30px !important;
}

.rounded-2xl {
    border-radius: 20px !important;
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
}

.career-benefit-card {
    background: #fff;
    border-radius: 30px;
    padding: 40px;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.career-benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

.career-section-title {
    font-weight: 800;
    font-size: 32px;
    letter-spacing: -1px;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.career-section-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.vacancy-card {
    background: #fff;
    border-radius: 30px;
    padding: 40px;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.vacancy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.vacancy-title {
    font-weight: 800;
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.vacancy-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #666;
    font-size: 14px;
}

.meta-item i {
    color: var(--primary);
}

.btn-apply-modern {
    background: #f8f9fa;
    color: #1a1a1a;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 15px;
    border: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-apply-modern:hover {
    background: var(--primary);
    color: #fff !important;
    transform: scale(1.05);
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 220px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    border-radius: 20px;
    padding: 15px 0;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 5px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

/* Invisible bridge to prevent closing on hover gap */
.nav-dropdown-content::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
}

.nav-dropdown-content a {
    color: #1a1a1a !important;
    padding: 12px 25px;
    text-decoration: none;
    display: block;
    font-family: var(--font-acc);
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-dropdown-content a:hover {
    background-color: var(--primary-soft);
    color: var(--primary) !important;
    padding-left: 30px;
}

.nav-dropdown:hover .nav-dropdown-content {
    display: block;
    animation: navFadeInDown 0.3s ease forwards;
}

@keyframes navFadeInDown {
    from {
        opacity: 0;
        transform: translate(-50%, 10px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* Adjustments for fixed header */
.header.header-fixed .nav-dropdown-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
}

/* Centering and Overlapping Search Bar Redesign */
.hero_banner {
    position: relative;
    padding-bottom: 0px;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5%;
}

.search-form-wrap {
    position: absolute;
    bottom: 0;

    transform: translate(0%, 100%);
    width: 90%;
    max-width: 1200px;
    z-index: 100;
}

.search-glass-modern {
    background: rgba(20, 20, 22, 0.6);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 30px 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
}

.search-field-group {
    flex: 1;
    padding: 0 25px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.search-field-group:last-of-type {
    border-right: none;
}

.field-label-alt {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 8px;
    letter-spacing: 1.5px;
}

.field-select-modern {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    outline: none !important;
    cursor: pointer;
    padding: 5px 0;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
}

.field-select-modern option {
    background: #1a1a1a;
    color: #fff;
    padding: 10px;
}

.search-btn-modern {
    background: var(--primary);
    color: #fff;
    border: none;
    height: 75px;
    width: 75px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-left: 25px;
    flex-shrink: 0;
}

.search-btn-modern:hover {
    transform: scale(1.1) rotate(5deg);
    background: var(--primary-dark);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 991px) {
    .search-form-wrap {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        width: 100%;
        margin-top: 40px;
    }

    .search-glass-modern {
        flex-direction: column;
        gap: 20px;
        padding: 40px 30px;
        border-radius: 25px;
    }

    .search-field-group {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 0 0 20px 0;
        width: 100%;
    }

    .search-btn-modern {
        
        margin-left: 0;
        height: 50px;
    }
}

/* --- Service Bento Grid (Matching Design) --- */
.service-bento-section {
    padding: 100px 0;
    background: #fff;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 12px;
}

.bento-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none !important;
    display: block;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.bento-card.top-left {
    border-top-left-radius: 100px;
}

.bento-card.bottom-left {
    border-bottom-left-radius: 100px;
}

.bento-card.top-right {
    border-top-right-radius: 100px;
}

.bento-card.bottom-right {
    border-bottom-right-radius: 100px;
}

.bento-card:hover {
    transform: scale(1.01) translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.bento-card.tall {
    grid-row: span 2;
}

.bento-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.bento-card:hover img {
    transform: scale(1.1);
}

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    flex-direction: column;
    padding: 30px;
    color: #fff;
    z-index: 2;
    transition: background 0.4s ease;
}

.bento-card:hover .bento-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.bento-label {
    font-size: 13px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 5px;
    opacity: 0.9;
}

.bento-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    max-width: 80%;
}

.bento-title {
    font-size: 24px;
    font-weight: 700;
    margin-top: 10px;
    line-height: 1.2;
}

.bento-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.more-details {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.play-icon {
    font-size: 18px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.bento-card:hover .play-icon {
    transform: translateX(5px);
    opacity: 1;
}

@media (max-width: 1200px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .bento-card.tall {
        grid-row: span 1;
        height: 400px;
    }

    .bento-card {
        height: 300px;
        border-radius: 30px !important;
    }
}

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

/* --- Modern Footer (Matching Image) --- */
.modern-footer {
    background: #0a0a1a;
    padding: 80px 0 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter', sans-serif;
}

.footer-top {
    padding-bottom: 60px;
}

.footer-logo-text {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
    margin-bottom: 25px;
}

.footer-logo-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.05);
}

.footer-brand-name {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.2;
}


.footer-desc {
    font-size: 15px;
    line-height: 1.8;
    max-width: 300px;
    margin-bottom: 0;
}

.footer-column-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
}

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

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

.footer-links-list a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none !important;
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-links-list a:hover {
    color: #FF9009;
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact-item i {
    color: #FF9009;
    font-size: 18px;
    margin-top: 4px;
}

.footer-contact-text {
    font-size: 15px;
    line-height: 1.6;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    width: 100%;
}

.footer-bottom-row {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright-text {
    font-size: 14px;
    opacity: 0.5;
    margin-bottom: 0;
}

.license-text {
    font-size: 14px;
    opacity: 0.5;
    margin-bottom: 0;
    font-weight: 500;
}

@media (max-width: 991px) {
    .footer-column {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .footer-bottom-row {
        flex-direction: column;
        text-align: center;
    }
}
/* --- Team Page Styles --- */

.founder-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 450px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.founder-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: #fff;
    transition: all 0.5s ease;
}

.founder-info-default h3 {
    font-size: 22px;
    margin-bottom: 5px;
    font-weight: 700;
}

.founder-info-default span {
    font-size: 14px;
    opacity: 0.9;
}

.founder-bio {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    transform: translateY(20px);
}

.founder-bio h3 {
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 20px;
}

.founder-bio p {
    font-size: 15px;
    line-height: 1.6;
}

.founder-card:hover .founder-bio {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.founder-card:hover .founder-img {
    transform: scale(1.1);
}

/* Team Portrait Cards */
.team-portrait-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.portrait-img-wrap {
    height: 350px;
    overflow: hidden;
    background: #f8f9fa;
}

.portrait-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.portrait-footer {
    padding: 20px;
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
}

.portrait-footer h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1e293b;
}

.portrait-footer span {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

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

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

/* Agent Compact Cards */
.agent-compact-card {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.agent-img-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    flex-shrink: 0;
}

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

.agent-details h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 3px;
    color: #1e293b;
}

.agent-details p {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 10px;
}

.agent-social {
    display: flex;
    gap: 12px;
}

.agent-social a {
    color: #94a3b8;
    font-size: 14px;
    transition: color 0.3s;
}

.agent-social a:hover {
    color: var(--primary);
}

.agent-compact-card:hover {
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(255, 144, 9, 0.1);
}

