:root {
    --primary-color: #071d3a; /* Navy */
    --secondary-color: #0b2a4f; /* Navy 2 */
    --text-color: #132033; /* Dark Text */
    --text-light: #667085; /* Muted Text */
    --light-bg: #f5f7fb; /* Soft BG */
    --white: #ffffff;
    --border-color: #e5e5e5;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.16);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== HEADER & NAVBAR ==================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: white;
    box-shadow: var(--shadow-sm);
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

main {
    margin-top: 180px; /* Adjust based on header height */
}

.logo {
    font-size: 2.11rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: var(--transition-fast);
    display: block;
    text-align: center;
    margin-bottom: 10px;
}

.logo:hover {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.2rem;
    transition: var(--transition-fast);
    position: relative;
    padding: 5px 0;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.btn-primary {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 2px 8px rgba(255, 107, 0, 0.2);
}

.btn-primary:hover {
    background: #e55a00;
    box-shadow: 0 4px 16px rgba(255, 107, 0, 0.3);
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: translateY(0);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
    padding: 8px;
    border-radius: 6px;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.menu-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
}

/* ==================== HERO SECTION ==================== */
.hero {
    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0.45)
        ),
        url('../images/properties/hero.png');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.2;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 300;
}

.search-bar {
    background: var(--white);
    padding: 16px 20px;
    border-radius: 12px;
    display: flex;
    gap: 12px;
    max-width: 900px;
    margin: 30px auto 0;
    box-shadow: var(--shadow-lg);
    animation: slideUp 0.8s ease-out 0.2s both;
    flex-wrap: wrap;
}

.search-bar input,
.search-bar select {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    flex: 1;
    min-width: 150px;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    font-family: inherit;
}

.search-bar input:focus,
.search-bar select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.search-bar button {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-fast);
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(255, 107, 0, 0.2);
}

.search-bar button:hover {
    background: #e55a00;
    box-shadow: 0 4px 16px rgba(255, 107, 0, 0.3);
    transform: translateY(-2px);
}

/* ==================== SECTIONS ==================== */
section {
    animation: fadeIn 0.6s ease-out;
}

.featured-properties {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.05) 0%, rgba(11, 44, 61, 0.03) 100%);
    position: relative;
    overflow: hidden;
}

.featured-properties::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.featured-properties .section-title {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.latest-listings {
    padding: 60px 0;
}

.why-choose-us {
    padding: 60px 0 !important;
}

.section-title {
    text-align: center;
    margin: 0 0 50px;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: -0.5px;
}

.section-title + .property-grid {
    animation: fadeIn 0.6s ease-out 0.1s both;
}

/* ==================== PROPERTY CARDS ==================== */
.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
    margin-bottom: 50px;
}

.property-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
    animation: fadeInUp 0.6s ease-out;
    position: relative;
    border: 1px solid rgba(255, 107, 0, 0.1);
}

.property-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease-out;
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.15);
    border-color: var(--primary-color);
}

.property-card:hover::before {
    transform: scaleX(1);
}

.property-image {
    height: 240px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    position: relative;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.property-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255, 107, 0, 0.3);
    animation: slideInDown 0.4s ease-out;
}

.property-badge.sold {
    background: #999;
}

.property-badge.reserved {
    background: #4CAF50;
}

.property-badge.promo {
    background: var(--primary-color);
    color: #000;
    left: auto;
    right: 12px;
    font-weight: 800;
    box-shadow: 0 2px 12px rgba(255, 204, 0, 0.4);
}

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

.property-price {
    color: var(--primary-color);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.property-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-color);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.property-location {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.property-location i {
    color: var(--primary-color);
    font-size: 0.85rem;
}

.property-meta {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: auto;
    flex-wrap: wrap;
    gap: 8px;
}

.property-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.property-meta i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.btn-view {
    display: block;
    text-align: center;
    margin-top: 16px;
    padding: 12px 16px;
    background: var(--primary-color);
    color: var(--white) !important;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition-fast);
    border: 2px solid var(--primary-color);
}

.btn-view:hover {
    background: transparent;
    color: var(--primary-color) !important;
}

/* ==================== FEATURES SECTION ==================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    text-align: center;
}

.feature-item {
    padding: 30px 20px;
    transition: var(--transition);
    animation: fadeInUp 0.6s ease-out;
}

.feature-item:hover {
    transform: translateY(-8px);
}

.feature-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: inline-block;
    transition: var(--transition);
}

.feature-item:hover i {
    transform: scale(1.1) rotate(5deg);
}

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-color);
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* ==================== FOOTER ==================== */
.site-footer {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #051a28 100%);
    color: var(--white);
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-links h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 0.95rem;
}

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

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ==================== UTILITY CLASSES ==================== */
.text-center {
    text-align: center;
}

.mt-50 {
    margin-top: 50px;
}

.mb-50 {
    margin-bottom: 50px;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: row;
        justify-content: space-between;
        padding: 0 15px;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 140px; /* Adjust based on sticky header height */
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 0;
        box-shadow: var(--shadow-md);
        z-index: 999;
        max-height: calc(100vh - 140px);
        overflow-y: auto;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 15px 20px;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
        font-size: 1rem;
        text-align: left;
    }

    .menu-toggle {
        display: block;
        order: 3;
    }

    .logo {
        font-size: 1.5rem;
        margin-bottom: 0;
        text-align: left;
        order: 1;
    }

    .user-menu {
        order: 2;
        margin-left: auto;
        margin-right: 15px;
    }

    main {
        margin-top: 140px;
    }
}

@media (max-width: 480px) {
    .header-top .container {
        gap: 10px;
    }
    
    .btn-header {
        padding: 4px 8px;
        font-size: 0.7rem;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .nav-links {
        top: 130px;
    }
    
    main {
        margin-top: 130px;
    }
}

    .hero-content h1 {
        font-size: 2rem;
    }

    .search-bar {
        flex-direction: column;
        padding: 12px;
    }

    .search-bar input,
    .search-bar select,
    .search-bar button {
        width: 100%;
    }

    .property-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
    }

    .property-image {
        height: 200px;
    }

    .features-grid {
        gap: 24px;
    }

    .feature-item {
        padding: 20px 15px;
    }

    .feature-item i {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }


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

    .hero {
        min-height: 50vh;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

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

    .property-card {
        border-radius: 12px;
    }

    .property-price {
        font-size: 1.25rem;
    }

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

    .footer-grid {
        gap: 30px;
    }
}

/* ==================== SCROLLBAR STYLING ==================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e55a00;
}


/* ==================== USER MENU DROPDOWN ==================== */
.user-menu {
    position: relative;
}

.user-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition-fast);
}

.user-icon:hover {
    transform: scale(1.1);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    padding: 12px 0;
    margin-top: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-fast);
    z-index: 1001;
    border: 1px solid var(--border-color);
}

.user-menu:hover .dropdown-menu,
.user-menu:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-icon {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 0.95rem;
}

.dropdown-menu a:hover {
    background: var(--light-bg);
    color: var(--primary-color);
}

.dropdown-menu a i {
    width: 18px;
    text-align: center;
}

.dropdown-menu hr {
    margin: 8px 0;
    border: none;
    border-top: 1px solid var(--border-color);
}

/* ==================== NEW HEADER BUTTONS & SOCIAL ==================== */
.header-top {
    background: #f8f9fa;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.85rem;
    position: relative;
    z-index: 1001;
}

.header-top .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-direction: row;
    flex-wrap: wrap;
}
.header-top-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-header {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 6px 15px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    color: white !important;
    font-size: 0.8rem;
    text-transform: uppercase;
    transition: var(--transition-fast);
}
.btn-email { background: #071d3a; }
.btn-call { background: #071d3a; }
.btn-enlist { background: #0056b3; }

.btn-header:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: white;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.social-facebook { background: #3b5998; }
.social-instagram { background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }
.social-youtube { background: #ff0000; }
.social-viber { background: #7360f2; }
.social-whatsapp { background: #25d366; }
.social-wechat { background: #7bb32e; }

.social-icons a:hover {
    transform: scale(1.1);
}

.currency-selector {
    display: flex;
    align-items: center;
    gap: 8px;
}

.currency-selector select {
    padding: 2px 8px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 0.8rem;
}

/* ==================== IMPROVED HERO SECTION ==================== */
.hero-new {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/properties/hero.png');
    background-size: cover;
    background-position: center;
    min-height: 85vh;
    display: flex;
    align-items: center;
    color: #fff;
    padding: 80px 0;
}

.hero-new .container{
    max-width:1400px;
    width:100%;
    margin:0 auto;
    padding:0 80px;
}

.hero-text-side{
    max-width:700px;
    margin-left:0;
    text-align:left;
}

.hero-tagline {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.hero-text-side h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-text-side p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-budget { background: #d4a017; color: #000; }
.btn-budget:hover { background: #b8860b; }

.btn-location { background: #001f3f; color: #fff; border: 1px solid rgba(255,255,255,0.3); }
.btn-location:hover { background: #002d5a; }

.btn-list { background: #fff; color: #000; }
.btn-list:hover { background: #f0f0f0; }

.hero-card-side {
    flex: 0 0 400px;
}

.lookup-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    color: #000;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.lookup-card h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.lookup-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.lookup-item {
    display: flex;
    align-items: center;
    padding: 18px 25px;
    border: 1px solid #eee;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.2s ease;
}

.lookup-item:hover {
    background: #f9f9f9;
    border-color: #ddd;
    transform: translateX(5px);
}

/* ==================== BROWSE SECTIONS IMPROVEMENTS ==================== */
.browse-section {
    padding: 100px 0;
    background: #fff;
}

.browse-section .section-title {
    margin-bottom: 60px;
    font-size: 2.5rem;
    font-weight: 800;
}

.budget-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.budget-card-new {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.budget-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b00, #e55a00);
}

.budget-card-new:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(255, 107, 0, 0.15);
    border-color: #ff6b00;
}

.budget-card-new h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #333;
}

.budget-card-new .budget-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #666;
    margin-bottom: 20px;
}

.budget-card-new p {
    color: #888;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.budget-card-new .view-link {
    font-weight: 700;
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s ease;
}

.budget-card-new:hover .view-link {
    gap: 12px;
    color: var(--primary-color);
}

.location-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.location-card-new {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.location-card-new:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

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

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

.location-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
    transition: all 0.3s ease;
}

.location-card-new:hover .location-overlay {
    padding-bottom: 50px;
}

.location-overlay h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.location-overlay p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 20px;
    line-height: 1.5;
}

.location-btn {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid #fff;
    padding-bottom: 4px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .hero-new .container {
        flex-direction: column;
        text-align: center;
    }
    .hero-text-side {
        max-width: 100%;
    }
    .hero-btns {
        justify-content: center;
    }
    .hero-card-side {
        width: 100%;
        max-width: 450px;
    }
}
