.text-justify {
    text-align: justify;
}

a {
    color: #050915;
    text-decoration: none;
}

a:hover {
    color: #0b1530;
}

.footer {
    background: #050915;
    color: #f5f7fa;
    padding: 3rem 0 1rem;
}

.footer h5 {
    color: #f5f7fa;
    margin-bottom: 1rem;
}

.footer a {
    color: #e0e6ed;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #ffff06;
}

.footer .social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer .text-primary-custom {
    color: #fff !important;
}

.footer .social-icon {
    width: 40px;
    height: 40px;
    background: #0b1530;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: all 0.3s ease;
}

.footer .social-icon i {
    color: #fff;
    font-size: 1.2rem;
}

.footer .social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(11, 21, 48, 0.18);
    color: #ffff06;
    background: #152759;
}

.footer .social-icon:hover i {
    color: #ffff06;
}

.mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    z-index: 1000;
    display: flex;
    flex-direction: row;
    display: none;
}

@media (max-width: 768px) {
    .mobile-nav {
        display: block;
    }
}

.mobile-nav-item {
    text-align: center;
    flex: 1;
    padding: 0.5rem;
    color: #6c757d;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.mobile-nav-item.active,
.mobile-nav-item:hover {
    color: #0b1530;
    transform: translateY(-2px);
}

.mobile-nav-item i {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    display: block;
}

.mobile-nav-item span {
    font-size: 0.7rem;
    font-weight: 500;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 768px) {
    .mobile-nav {
        display: flex !important;
        flex-direction: row !important;
    }
}

@media (min-width: 769px) {
    .mobile-nav {
        display: none !important;
    }
}

.mobile-nav .pull-refresh {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background: #0b1530;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.mobile-nav .pull-refresh.show {
    transform: translateX(-50%) translateY(20px);
}

#navbarNav .dropdown-toggle::after {
    border: none;
}

@media (max-width: 991.98px) {
    #navbarNav .desktop-user-actions {
        display: none !important;
    }
}

#navbarNav .desktop-user-actions .user-action-btn {
    background: transparent !important;
    color: #050915 !important;
    border-radius: 0;
    padding: 0.5rem 1rem !important;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    border: none;
    text-decoration: none;
}

#navbarNav .desktop-user-actions .user-action-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #0b1530;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

#navbarNav .desktop-user-actions .user-action-btn:hover {
    background: transparent !important;
    color: #0b1530 !important;
    transform: none;
    box-shadow: none;
}

#navbarNav .desktop-user-actions .user-action-btn:hover::after {
    width: 80%;
}

#navbarNav .desktop-user-actions .user-action-btn:hover i {
    transform: translateY(-2px);
}

#navbarNav .desktop-user-actions .user-action-btn:focus {
    outline: none;
    color: #0b1530 !important;
}

#navbarNav .desktop-user-actions .user-action-btn i {
    font-size: 1rem;
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
}

#navbarNav .desktop-user-actions .user-action-btn span {
    font-size: 0.95rem;
    font-weight: 500;
}

#navbarNav .desktop-user-actions .user-action-btn.active {
    color: #0b1530 !important;
}

#navbarNav .desktop-user-actions .user-action-btn.active::after {
    width: 80%;
}

@media (max-width: 991.98px) {
    #navbarNav .desktop-user-actions {
        display: none;
    }
}

#navbarNav .nav-item {
    margin: 0 0.25rem;
}

#navbarNav .nav-item .nav-link {
    position: relative;
    transition: all 0.3s ease;
}

#navbarNav .nav-item .nav-link:hover {
    color: #0b1530;
}

body.blue #navbarNav .desktop-user-actions .user-action-btn {
    color: rgba(255, 255, 255, 0.9) !important;
}

body.blue #navbarNav .desktop-user-actions .user-action-btn:hover {
    color: white !important;
}

body.blue #navbarNav .desktop-user-actions .user-action-btn:hover::after {
    background: rgba(255, 255, 255, 0.8);
}

body.blue #navbarNav .desktop-user-actions .user-action-btn.active {
    color: white !important;
}

body.blue #navbarNav .desktop-user-actions .user-action-btn.active::after {
    background: rgba(255, 255, 255, 0.8);
}

body.blue #navbarNav .desktop-user-actions .user-action-btn::after {
    background: rgba(255, 255, 255, 0.6);
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0b1530, #0a142f 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loading-screen .loader {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.dark-link {
    color: #050915;
    text-decoration: none;
}

.dark-link:hover {
    color: #0b1530;
}

.scroll-to-top {
    position: fixed;
    bottom: 32px;
    right: 112px;
    width: 50px;
    height: 50px;
    background: #0b1530;
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(11, 21, 48, 0.18);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: #010307;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 25px 50px rgba(11, 21, 48, 0.18);
}

.scroll-to-top:active {
    transform: translateY(0) scale(0.95);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 90px;
        right: 85px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

.scroll-to-top.bounce {
    animation: scrollTopBounce 0.6s ease-out;
}

@keyframes scrollTopBounce {
    0% {
        transform: translateY(20px) scale(0.3);
        opacity: 0;
    }
    50% {
        transform: translateY(-10px) scale(1.1);
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.pagination-custom {
    justify-content: center;
    margin-top: 50px;
}

.page-link {
    border: none;
    color: var(--primary-color);
    padding: 12px 18px;
    margin: 0 5px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.page-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.page-item.active .page-link {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

body .logo-white {
    display: none;
}

body .logo-blue {
    display: inline-block;
}

body.blue .logo-white {
    display: inline-block;
}

body.blue .logo-blue {
    display: none;
}

body.blue .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
}

body.blue .navbar-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

body.blue .navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
}

body .slogan-container {
    background: transparent;
    color: #fff;
    padding: 120px 0 60px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

body .slogan-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(5, 9, 21, 0.95) 0%, rgba(11, 21, 48, 0.85) 50%, rgba(5, 9, 21, 0.95) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

body .slogan-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.02) 50%, transparent 100%), radial-gradient(ellipse at top, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    animation: luxury-sweep 8s ease-in-out infinite;
}

body .slogan-container .site-slogan {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    letter-spacing: 12px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    padding: 0 40px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.95) 25%, rgba(255, 255, 6, 0.9) 50%, rgba(255, 255, 255, 0.95) 75%, rgba(255, 255, 255, 0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: premium-shine 6s linear infinite;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 20px rgba(255, 255, 6, 0.2));
}

body .slogan-container .site-slogan::before,
body .slogan-container .site-slogan::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 6, 0.5) 50%, rgba(255, 255, 255, 0.3) 100%);
}

body .slogan-container .site-slogan::before {
    left: -100px;
    transform: translateY(-50%);
}

body .slogan-container .site-slogan::after {
    right: -100px;
    transform: translateY(-50%) scaleX(-1);
}

@media (max-width: 1400px) {
    body .slogan-container .site-slogan {
        font-size: 1.3rem;
        letter-spacing: 10px;
    }

    body .slogan-container .site-slogan::before,
    body .slogan-container .site-slogan::after {
        width: 60px;
    }

    body .slogan-container .site-slogan::before {
        left: -80px;
    }

    body .slogan-container .site-slogan::after {
        right: -80px;
    }
}

@media (max-width: 1200px) {
    body .slogan-container .site-slogan {
        font-size: 1.2rem;
        letter-spacing: 8px;
    }

    body .slogan-container .site-slogan::before,
    body .slogan-container .site-slogan::after {
        display: none;
    }
}

@media (max-width: 768px) {
    body .slogan-container .site-slogan {
        font-size: 0.9rem;
        letter-spacing: 6px;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    body .slogan-container .site-slogan {
        font-size: 0.8rem;
        letter-spacing: 4px;
    }
}

.nav-link.text-white {
    color: white !important;
}

.nav-link.text-white:hover {
    color: white !important;
}

.nav-pills .nav-link.active,
.btn.active,
.btn:hover {
    background: #0b1530 !important;
    color: #fff !important;
    border-color: #0b1530 !important;
}

.login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: none;
}

.login-modal.show {
    opacity: 1;
    visibility: visible;
}

.login-modal-content {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    width: 90%;
    max-width: 400px;
    position: relative;
    transform: scale(0.8) translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px rgba(11, 21, 48, 0.18);
}

.show .login-modal-content {
    transform: scale(1) translateY(0);
}

.login-modal .close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-modal .close-modal:hover {
    color: #050915;
    transform: scale(1.1);
}

.login-modal .login-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.login-modal .login-header h3 {
    color: #050915;
    margin-bottom: 0.5rem;
}

.login-modal .login-header p {
    color: #6c757d;
    margin: 0;
}

.login-modal .form-group {
    margin-bottom: 1rem;
}

.login-modal .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #050915;
    font-weight: 500;
}

.login-modal .form-group .form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.login-modal .form-group .form-control:focus {
    outline: none;
    border-color: #0b1530;
    box-shadow: 0 0 0 3px rgba(58, 163, 246, 0.1);
}

.login-modal .btn-login {
    width: 100%;
    padding: 0.75rem;
    background: #0b1530;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.login-modal .btn-login::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.login-modal .btn-login:hover::before {
    left: 100%;
}

.login-modal .btn-login:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(11, 21, 48, 0.18);
}

.login-modal .btn-login:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.login-modal .login-links {
    text-align: center;
    margin-top: 1rem;
}

.login-modal .login-links a {
    color: #0b1530;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.login-modal .login-links a:hover {
    text-decoration: underline;
}

.login-modal .login-links a.register-link {
    margin-left: 1rem;
    color: #6c757d;
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(11, 21, 48, 0.1);
    z-index: 10001;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transform: translateX(400px);
    transition: transform 0.3s ease;
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    border-left: 4px solid #28a745;
}

.notification-success i {
    color: #28a745;
}

.notification-error {
    border-left: 4px solid #dc3545;
}

.notification-error i {
    color: #dc3545;
}

.notification-info {
    border-left: 4px solid #0b1530;
}

.notification-info i {
    color: #0b1530;
}

.notification span {
    font-weight: 500;
    color: #050915;
}

@media (max-width: 768px) {
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        transform: translateY(-100px);
    }

    .notification.show {
        transform: translateY(0);
    }
}

@keyframes slogan-pop {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    80% {
        transform: scale(1.08);
        opacity: 1;
    }
    100% {
        transform: scale(1);
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

:root {
    --primary-color: #0b1530;
    --secondary-color: #2980b9;
    --accent-color: #f39c12;
    --text-dark: #050915;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

.navbar {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: white !important;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: yellow !important;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(58, 163, 246, 0.3);
}

.hero-news {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-news::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1504711434969-e33886168f5c?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center / cover;
    opacity: 0.1;
    z-index: -1;
}

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

.news-category-filter {
    margin-bottom: 50px;
}

.category-btn {
    margin: 5px;
    border-radius: 25px;
    padding: 10px 20px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

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

.category-btn.active {
    background: var(--primary-color);
    color: white;
}

.news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

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

.news-card-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

.news-badge.market {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.news-badge.investment {
    background: linear-gradient(135deg, #27ae60, #229954);
}

.news-badge.project {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.news-badge.analysis {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.news-badge.guide {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.news-card-content {
    padding: 25px;
}

.news-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
    line-height: 1.4;
}

.news-title a {
    color: #050915;
    text-decoration: none;
}

.news-title a:hover {
    color: #0b1530;
}

.news-meta {
    display: flex;
    justify-content: between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.news-excerpt {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.featured-news {
    background: var(--bg-light);
    padding: 50px 0;
}

.featured-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.featured-card h3 a {
    color: #050915;
    text-decoration: none;
}

.featured-card h3 a:hover {
    color: #0b1530;
}

.search-bar {
    background: white;
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.search-input {
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 1.1rem;
}

.search-input:focus {
    outline: none;
    box-shadow: none;
}

.search-btn {
    border-radius: 50px;
    padding: 15px 30px;
}

.sidebar {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.trending-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.trending-item:hover {
    background: var(--bg-light);
    margin: 0 -15px;
    padding: 15px;
    border-radius: 10px;
}

.trending-item a {
    color: #050915;
    text-decoration: none;
}

.trending-item a:hover {
    color: #0b1530;
}

.trending-number {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 15px;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 80px;
    }

    .hero-news {
        padding: 100px 0 60px;
        text-align: center;
    }

    .section-padding {
        padding: 50px 0;
    }

    .news-card-image {
        height: 200px;
    }
}

.project-detail-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 120px 0 60px;
    border-bottom: 1px solid #e9ecef;
}

.project-detail-hero .breadcrumb {
    margin-bottom: 20px;
}

.project-detail-hero .breadcrumb a {
    color: #0b1530;
    text-decoration: none;
    transition: color 0.3s ease;
}

.project-detail-hero .breadcrumb a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.project-detail-hero .breadcrumb span {
    margin: 0 10px;
    color: #5a6c7d;
}

.project-detail-hero .project-header {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.project-detail-hero .project-header .project-main-info .project-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #2c3e50;
}

.project-detail-hero .project-header .project-main-info .project-location {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.project-detail-hero .project-header .project-main-info .project-location i {
    margin-right: 8px;
    color: #0b1530;
}

.project-detail-hero .project-header .project-main-info .project-status-info {
    display: flex;
    gap: 15px;
}

.project-detail-hero .project-header .project-main-info .project-status-info .project-status {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.project-detail-hero .project-header .project-main-info .project-status-info .project-status.selling {
    background: #27ae60;
    color: white;
}

.project-detail-hero .project-header .project-main-info .project-status-info .project-status.upcoming {
    background: #f39c12;
    color: white;
}

.project-detail-hero .project-header .project-main-info .project-status-info .project-status.completed {
    background: #5a6c7d;
    color: white;
}

.project-detail-hero .project-header .project-main-info .project-status-info .project-type {
    padding: 8px 16px;
    background: #e9ecef;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #5a6c7d;
}

.project-detail-hero .project-header .project-contact-info {
    text-align: right;
}

.project-detail-hero .project-header .project-contact-info .btn-contact,
.project-detail-hero .project-header .project-contact-info .btn-brochure {
    display: inline-block !important;
    margin-top: 5px !important;
    margin-bottom: 5px !important;
    padding: 15px 25px !important;
}

.project-detail-hero .project-header .project-contact-info .price-range {
    margin-bottom: 25px;
}

.project-detail-hero .project-header .project-contact-info .price-range .price-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.project-detail-hero .project-header .project-contact-info .price-range .price-value {
    font-size: 2rem;
    font-weight: bold;
    color: #0b1530;
}

.project-detail-hero .project-header .project-contact-info .btn {
    display: block;
    margin-bottom: 15px;
    padding: 15px 25px;
}

.project-detail-hero .project-header .project-contact-info .btn:last-child {
    margin-bottom: 0;
}

.project-detail-content {
    padding: 60px 0;
}

.project-detail-content .content-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.project-detail-content .content-section {
    margin-bottom: 50px;
}

.project-detail-content .content-section .section-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 25px;
    color: #333;
    border-bottom: 3px solid #007bff;
    padding-bottom: 10px;
}

.project-overview .overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.project-overview .overview-grid .overview-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.project-overview .overview-grid .overview-item .label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
}

.project-overview .overview-grid .overview-item .value {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
}

.project-description {
    line-height: 1.8;
    color: #666;
}

.project-description p {
    margin-bottom: 20px;
}

.project-description h3 {
    color: #333;
    margin: 30px 0 15px;
}

.project-description ul {
    padding-left: 20px;
}

.project-description ul li {
    margin-bottom: 8px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.amenities-grid .amenity-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.amenities-grid .amenity-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.amenities-grid .amenity-item .amenity-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0b1530, #000000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.amenities-grid .amenity-item .amenity-icon i {
    font-size: 1.8rem;
    color: white;
}

.amenities-grid .amenity-item:hover .amenity-icon {
    background: linear-gradient(135deg, #e67e22, #bf6516);
    transform: scale(1.1);
}

.amenities-grid .amenity-item h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.amenities-grid .amenity-item p {
    color: #5a6c7d;
    font-size: 0.9rem;
    line-height: 1.5;
}

.location-info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.location-info .location-map {
    border-radius: 8px;
    overflow: hidden;
}

.location-info .location-details h4 {
    margin-bottom: 15px;
    color: #333;
}

.location-info .location-details ul {
    list-style: none;
    padding: 0;
}

.location-info .location-details ul li {
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
    color: #666;
}

.location-info .location-details ul li:last-child {
    border-bottom: none;
}

.sidebar .contact-form-widget,
.sidebar .quick-info-widget {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.sidebar .contact-form-widget h3,
.sidebar .quick-info-widget h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #333;
}

.sidebar .contact-form .form-group {
    margin-bottom: 20px;
}

.sidebar .contact-form .form-group input,
.sidebar .contact-form .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
}

.sidebar .contact-form .form-group input:focus,
.sidebar .contact-form .form-group textarea:focus {
    outline: none;
    border-color: #0b1530;
}

.sidebar .contact-form .form-group textarea {
    height: 80px;
    resize: vertical;
}

.sidebar .contact-form .btn-full {
    width: 100%;
}

.sidebar .quick-info-list .info-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

.sidebar .quick-info-list .info-item:last-child {
    border-bottom: none;
}

.sidebar .quick-info-list .info-item .label {
    font-weight: 500;
    color: #666;
}

.sidebar .quick-info-list .info-item .value {
    color: #333;
    font-weight: 500;
}

.project-gallery {
    padding: 60px 0;
    background: #f8f9fa;
}

.project-gallery .section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

.project-gallery .gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.project-gallery .gallery-tabs .gallery-tab {
    background: transparent;
    border: 2px solid #e9ecef;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.project-gallery .gallery-tabs .gallery-tab.active,
.project-gallery .gallery-tabs .gallery-tab:hover {
    background: #0b1530;
    color: white;
    border-color: #0b1530;
}

.project-gallery .gallery-grid {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.project-gallery .gallery-grid.active {
    display: grid;
}

.project-gallery .gallery-grid .gallery-item {
    position: relative;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.project-gallery .gallery-grid .gallery-item.main-image {
    grid-column: span 2;
    height: 300px;
}

.project-gallery .gallery-grid .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-gallery .gallery-grid .gallery-item:hover img {
    transform: scale(1.08);
}

.project-gallery .gallery-grid .gallery-item .gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
}

.project-gallery .gallery-grid .gallery-item .gallery-overlay .gallery-title {
    color: white;
    font-weight: 500;
}

.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.lightbox-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-modal .lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-modal .lightbox-content .lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.lightbox-modal .lightbox-content .lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

.lightbox-modal .lightbox-content .lightbox-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-modal .lightbox-content .lightbox-navigation button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 4px;
}

.lightbox-modal .lightbox-content .lightbox-navigation button:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-modal .lightbox-content .lightbox-navigation .lightbox-prev {
    left: -60px;
}

.lightbox-modal .lightbox-content .lightbox-navigation .lightbox-next {
    right: -60px;
}

.related-projects {
    padding: 60px 0;
}

.related-projects .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.related-projects .section-header .section-title {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.related-projects .view-all-projects {
    text-align: center;
}

.project-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.project-card .project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-card .project-image a {
    display: block;
    height: 100%;
    text-decoration: none;
}

.project-card .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card .project-image:hover img {
    transform: scale(1.08);
}

.project-card .project-image .project-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    color: white;
}

.project-card .project-image .project-badge.selling {
    background: #27ae60;
}

.project-card .project-image .project-badge.upcoming {
    background: #f39c12;
}

.project-card .project-image .project-badge.completed {
    background: #5a6c7d;
}

.project-card .project-info {
    padding: 15px;
}

.project-card .project-info .project-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.project-card .project-info .project-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.project-card .project-info .project-title a:hover {
    color: #0b1530;
}

.project-card .project-info .project-location {
    color: #5a6c7d;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.project-card .project-info .project-location i {
    margin-right: 5px;
    color: #0b1530;
}

.project-card .project-info .project-price {
    color: #e67e22;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn.btn-primary {
    background: linear-gradient(135deg, #0b1530, #000000);
    color: white;
    border: none;
}

.btn.btn-primary:hover {
    background: linear-gradient(135deg, #010307, #000000);
    transform: translateY(-2px);
}

.btn.btn-outline {
    background: transparent;
    color: #0b1530;
    border: 2px solid #0b1530;
}

.btn.btn-outline:hover {
    background: #0b1530;
    color: white;
}

@media (max-width: 768px) {
    .project-detail-hero .project-header {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .project-detail-hero .project-header .project-contact-info {
        text-align: left;
    }

    .project-detail-hero .project-header .project-contact-info .btn {
        display: inline-block;
        margin-right: 15px;
        margin-bottom: 10px;
    }

    .content-layout {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    .location-info {
        grid-template-columns: 1fr !important;
    }

    .amenities-grid {
        grid-template-columns: 1fr !important;
    }

    .gallery-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }

    .gallery-grid .gallery-item.main-image {
        grid-column: span 1;
        height: 200px;
    }

    .related-projects-grid {
        grid-template-columns: 1fr !important;
    }
}

.properties-listings {
    padding: 1rem 0;
    background: #f8f9fa;
}

.properties-listings .listings-container .properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.properties-listings .listings-container .properties-grid .property-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.properties-listings .listings-container .properties-grid .property-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.properties-listings .listings-container .properties-grid .property-card .property-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.properties-listings .listings-container .properties-grid .property-card .property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.properties-listings .listings-container .properties-grid .property-card .property-image .property-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    z-index: 2;
}

.properties-listings .listings-container .properties-grid .property-card .property-image .property-badge.featured {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
}

.properties-listings .listings-container .properties-grid .property-card .property-image .property-badge.premium {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.properties-listings .listings-container .properties-grid .property-card .property-image .property-badge.new {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.properties-listings .listings-container .properties-grid .property-card .property-image .property-badge.commercial {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.properties-listings .listings-container .properties-grid .property-card .property-image .property-gallery {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    z-index: 2;
}

.properties-listings .listings-container .properties-grid .property-card .property-image .property-gallery i {
    margin-right: 4px;
}

.properties-listings .listings-container .properties-grid .property-card .property-content {
    padding: 1.5rem;
}

.properties-listings .listings-container .properties-grid .property-card .property-content .property-title {
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.properties-listings .listings-container .properties-grid .property-card .property-content .property-title a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.properties-listings .listings-container .properties-grid .property-card .property-content .property-title a:hover {
    color: #0b1530;
}

.properties-listings .listings-container .properties-grid .property-card .property-content .property-location {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.properties-listings .listings-container .properties-grid .property-card .property-content .property-location i {
    color: #0b1530;
    margin-right: 0.5rem;
    width: 14px;
}

.properties-listings .listings-container .properties-grid .property-card .property-content .property-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.properties-listings .listings-container .properties-grid .property-card .property-content .property-specs .spec-item {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 0.85rem;
}

.properties-listings .listings-container .properties-grid .property-card .property-content .property-specs .spec-item i {
    color: #0b1530;
    margin-right: 0.25rem;
    width: 12px;
    font-size: 0.8rem;
}

.properties-listings .listings-container .properties-grid .property-card .property-content .property-price {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    text-align: center;
}

.properties-listings .listings-container .properties-grid .property-card .property-content .property-price .price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0b1530;
    margin-bottom: 0.25rem;
}

.properties-listings .listings-container .properties-grid .property-card .property-content .property-price .price-per-sqm {
    font-size: 0.85rem;
    color: #6c757d;
}

.properties-listings .listings-container .properties-grid .property-card .property-content .property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.properties-listings .listings-container .properties-grid .property-card .property-content .property-footer .agent-info {
    display: flex;
    align-items: center;
    flex: 1;
}

.properties-listings .listings-container .properties-grid .property-card .property-content .property-footer .agent-info .agent-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 0.75rem;
    object-fit: cover;
}

.properties-listings .listings-container .properties-grid .property-card .property-content .property-footer .agent-info .agent-name {
    font-size: 0.9rem;
    color: #495057;
    font-weight: 500;
}

.properties-listings .listings-container .properties-grid .property-card .property-content .property-footer .contact-actions {
    display: flex;
    gap: 0.5rem;
}

.properties-listings .listings-container .properties-grid .property-card .property-content .property-footer .contact-actions .btn-sm {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
    border-radius: 8px;
}

.properties-listings .listings-container .properties-grid .property-card .property-content .property-footer .contact-actions .btn-sm.btn-outline-primary {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.properties-listings .listings-container .properties-grid .property-card .property-content .property-footer .contact-actions .btn-sm.btn-primary {
    background: linear-gradient(135deg, #0b1530, #010307);
    border: none;
    font-weight: 600;
}

.properties-listings .listings-container .properties-grid .property-card .property-content .property-footer .contact-actions .btn-sm.btn-primary:hover {
    background: linear-gradient(135deg, #060c1b, #000000);
    transform: translateY(-1px);
}

.properties-listings .listings-container .pagination-section {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.properties-listings .listings-container .pagination-section .pagination {
    display: flex;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.properties-listings .listings-container .pagination-section .pagination .page-item .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    color: #6c757d;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.properties-listings .listings-container .pagination-section .pagination .page-item .page-link:hover {
    border-color: #0b1530;
    color: #0b1530;
    background: rgba(58, 163, 246, 0.1);
}

.properties-listings .listings-container .pagination-section .pagination .page-item.active .page-link {
    background: #0b1530;
    border-color: #0b1530;
    color: #000;
    transform: translateY(-2px);
}

.properties-listings .listings-container .pagination-section .pagination .page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
}

.properties-listings .listings-container .pagination-section .pagination .page-item.disabled .page-link:hover {
    border-color: #e9ecef;
    color: #6c757d;
    background: transparent;
}

.property-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(11, 21, 48, 0.1);
    transition: all 0.4s ease;
    position: relative;
    margin-bottom: 2rem;
    height: 100%;
}

@media (max-width: 768px) {
    .property-card {
        margin-bottom: 1rem;
    }
}

.property-card .property-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.property-card .property-link:hover {
    text-decoration: none;
    color: inherit;
}

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

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

.property-card:hover .property-title {
    color: #0b1530;
}

.property-card:hover .property-title:hover {
    color: #0b1530;
}

@media (hover: none) {
    .property-card:hover {
        transform: none;
    }

    .property-card:active {
        transform: scale(0.98);
    }
}

.property-card .property-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.property-card .property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.property-card .property-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ffff06;
    color: #050915;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    z-index: 2;
}

.property-card .property-price {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    z-index: 2;
    font-size: 0.9rem;
}

.property-card .property-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.property-card .property-content .property-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #050915;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.property-card .property-content .property-location {
    color: #6c757d;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.property-card .property-content .property-location i {
    color: #0b1530;
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

.property-card .property-content .property-features {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

@media (max-width: 768px) {
    .property-card .property-content .property-features {
        display: block;
    }
}

.property-card .property-content .property-features .feature {
    display: flex;
    align-items: center;
    color: #6c757d;
    font-size: 0.85rem;
    flex: 1;
    justify-content: center;
}

@media (max-width: 768px) {
    .property-card .property-content .property-features .feature {
        display: inline-block;
        margin-right: 5px;
    }
}

.property-card .property-content .property-features .feature i {
    color: #0b1530;
    margin-right: 0.4rem;
    font-size: 0.8rem;
}

.property-card .property-content .property-features .feature span {
    white-space: nowrap;
}

.legal-file-link {
    margin-top: 5px;
    color: #e67e22;
    font-size: small;
}
