/* Global Styles */
:root {
    --primary-color: #FF8C00;
    --secondary-color: #FFB347;
    --background-color: #121212;
    --card-bg-color: #2C2C2C;
    --text-color: #333333;
    --text-muted: rgba(224, 224, 224, 0.7);
    --border-color: rgba(224, 224, 224, 0.1);
    --icon-color: #FF8C00;
    --transition: all 0.3s ease;
    --header-height: 80px;
    --dark-color: #333333;
    --light-color: #F5F5F5;
    --border-radius: 8px;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    padding-top: var(--header-height);
    overflow-x: hidden;
    color: var(--text-color);
}

/* Navigation */
.navbar {
    height: var(--header-height);
    padding: 0;
    transition: var(--transition);
    background: #ffffff !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar-scrolled {
    height: calc(var(--header-height) - 20px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    padding: 0;
    margin-right: 2rem;
}

.navbar-brand img {
    height: 40px;
    transition: var(--transition);
}

.navbar-scrolled .navbar-brand img {
    height: 35px;
}

.navbar .container {
    height: 100%;
    display: flex;
    align-items: center;
}

.navbar-collapse {
    height: 100%;
}

.navbar-nav {
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-item {
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    padding: 0 1.5rem !important;
    height: 100%;
    display: flex;
    align-items: center;
    transition: var(--transition);
    position: relative;
    color: #000000 !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

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

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Mobile Navigation */
@media (max-width: 991.98px) {
    /* Prevent scrolling when menu is open */
    body.menu-open {
        overflow: hidden;
    }
    
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: -280px; /* Start off-screen to the left */
        width: 280px;
        height: 100vh;
        z-index: 1000;
        background: #ffffff;
        padding: 1rem;
        padding-top: 60px; /* Add space for the close button */
        margin-top: 0;
        transition: left 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        border-right: 1px solid rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }
    
    /* Close button for sidebar */
    .sidebar-close-btn {
        position: absolute;
        top: 15px;
        right: 15px;
        width: 36px;
        height: 36px;
        background-color: #f8f9fa;
        border: 1px solid #e0e0e0;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 1.2rem;
        color: #555;
        z-index: 1002;
        transition: all 0.2s ease;
    }
    
    .sidebar-close-btn:hover {
        background-color: #e9ecef;
        color: #000;
    }
    
    /* Position the navbar toggler when sidebar is open */
    .navbar-toggler {
        transition: all 0.3s ease;
    }
    
    .menu-open .navbar-toggler {
        position: fixed;
        top: 15px;
        left: 230px; /* Position near the right edge of sidebar */
        z-index: 1001; /* Above the sidebar */
        background-color: #ffffff;
        border-radius: 50%;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        padding: 8px;
        border: 1px solid #e0e0e0;
    }
    
    /* Change hamburger to X when menu is open */
    .menu-open .navbar-toggler .navbar-toggler-icon {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M6 6L24 24M6 24L24 6'/%3E%3C/svg%3E") !important;
    }

    .navbar-collapse.show {
        left: 0; /* Slide in from the left */
    }

    /* Dark overlay when menu is open */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .nav-overlay.show {
        opacity: 1;
        visibility: visible;
    }

    .nav-item {
        height: auto;
    }

    .nav-link {
        padding: 0.5rem 1rem !important;
        height: auto;
        color: #000000 !important;
    }

    .nav-link::after {
        display: none;
    }

    /* Close button for mobile menu */
    .navbar-toggler.collapsed {
        z-index: 1050;
    }
}

/* Hero Banner */
.hero-banner {
    position: relative;
    min-height: calc(100vh - var(--header-height));
    margin-top: calc(-1 * var(--header-height));
    display: flex;
    align-items: center;
}

.hero-swiper {
    height: 100%;
    width: 100%;
}

.hero-slide {
    height: 100%;
    min-height: calc(100vh - var(--header-height));
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
}

.hero-content {
    position: relative;
    color: white;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    z-index: 1;
}

.hero-content h1 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.swiper-pagination {
    bottom: 2rem !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.7;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
    transform: scale(1.2);
}

/* Search Section */
.search-section {
    margin-top: -100px;
    position: relative;
    z-index: 10;
}

.search-box {
    background: var(--card-bg-color);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    padding: 2rem;
    transition: all 0.3s ease;
}

.search-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-color);
}

.form-floating {
    height: 100%;
}
.text-center{
    color:black !important;
}
.form-floating > .form-select {
    height: 100%;
    padding-top: 1.625rem;
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: black;
}

.form-floating > .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 0, 0.25);
}

.form-floating > label {
    padding: 1rem 0.75rem;
    color: black;
}
.form-floating > .form-control {
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    color: var(--text-color);
}

.form-floating > .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 0, 0.25);
}

.search-box .btn-primary {
    background: var(--primary-color);
    border: none;
    color: var(--background-color);
    padding: 1rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.search-box .btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

/* Section Headers */
.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
    font-weight: 700;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Property Cards */
.property-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    background: white;
    position: relative;
}

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

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

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

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

.property-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.property-card:hover .property-overlay {
    opacity: 1;
}

.property-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 1;
}

/* Add property type badge styles */
.property-type-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
}

.property-card:hover .property-type-badge {
    background: rgba(0, 0, 0, 0.9);
}

/* Update property price to have white text on dark background */
.property-price {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8) !important; /* Dark background */
    color: white !important; /* White text */
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 600;
    z-index: 2;
}

/* Override hover effect to keep white text */
.property-card:hover .property-price {
    background: rgba(0, 0, 0, 0.9) !important; /* Slightly darker on hover */
    color: white !important;
}

.property-content {
    padding: 1.5rem;
}

.property-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.property-location {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.property-location i {
    color: var(--icon-color);
}

.property-features {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.property-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.property-feature i {
    color: var(--icon-color);
    font-size: 1.1rem;
}

.property-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.property-actions .btn {
    flex: 1;
    padding: 0.75rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.property-actions .btn-primary {
    background: var(--primary-color);
    border: none;
}

.property-actions .btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.property-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Property Grid Layout */
.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

/* Property Filter Section */
.property-filter {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.filter-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

.filter-group {
    margin-bottom: 1.5rem;
}

.filter-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-option {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: var(--light-gray);
    color: var(--secondary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-option:hover,
.filter-option.active {
    background: var(--primary-color);
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .property-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .property-image {
        height: 200px;
    }
}

@media (max-width: 767.98px) {
    .property-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 1rem;
    }

    .property-content {
        padding: 1rem;
    }

    .property-features {
        gap: 1rem;
    }

    .property-actions {
        flex-direction: column;
    }
}

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

    .property-image {
        height: 250px;
    }

    .property-title {
        font-size: 1.1rem;
    }

    .property-features {
        flex-wrap: wrap;
    }
}

/* Feature Cards */
.feature-card {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
}

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

.feature-card i {
    transition: var(--transition);
}

.feature-card:hover i {
    transform: scale(1.1);
}

/* Mission & Vision Section */
.mission-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.mission-card i {
    transition: transform 0.3s ease;
}

.mission-card:hover i {
    transform: scale(1.1);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color), #FF8C00);
    position: relative;
    overflow: hidden;
    color: white;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern.png');
    opacity: 0.1;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    transition: transform 0.3s ease, background 0.3s ease;
    color: white;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    color: white;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    color: white;
}

/* Footer Styles */
footer {
    background: var(--card-bg-color);
    color: var(--text-color);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern.png');
    opacity: 0.05;
}

footer h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

footer p {
    color: var(--text-muted);
    line-height: 1.8;
}

footer .list-unstyled li {
    margin-bottom: 0.75rem;
}

footer .list-unstyled a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-right: 1rem;
}

footer .list-unstyled a::before {
    content: '←';
    position: absolute;
    right: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

footer .list-unstyled a:hover {
    color: #fff;
    padding-right: 1.5rem;
}

footer .list-unstyled a:hover::before {
    opacity: 1;
}

footer .social-links {
    display: flex;
    gap: 1rem;
}

footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

footer .social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 0;
}

footer .social-links a:hover::before {
    transform: translateY(0);
}

footer .social-links a i {
    position: relative;
    z-index: 1;
}

footer .social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

footer .contact-info i {
    color: var(--primary-color);
    margin-left: 0.5rem;
}

footer .footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Footer */
@media (max-width: 991.98px) {
    footer {
        padding: 3rem 0 1.5rem;
    }

    footer .col-md-4 {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767.98px) {
    footer {
        padding: 2rem 0 1rem;
    }

    footer h5 {
        margin-bottom: 1rem;
    }

    footer .social-links {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    footer {
        text-align: center;
    }

    footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    footer .list-unstyled a {
        padding-right: 0;
    }

    footer .list-unstyled a::before {
        display: none;
    }

    footer .social-links {
        justify-content: center;
    }
}

.form-control, .form-select {
    border: 1px solid var(--border-color);
    color: black;
    border-radius: 10px;
    padding: 0.75rem;
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 165, 0, 0.25);
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    color: white;
}

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

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

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

/* Custom Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    :root {
        --header-height: 70px;
    }

    .navbar-collapse {
        background: white;
        padding: 1rem;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        margin-top: 1rem;
    }

    .nav-item {
        height: auto;
    }

    .nav-link {
        padding: 0.5rem 1rem !important;
        height: auto;
    }

    .nav-link::after {
        display: none;
    }

    .hero-content {
        padding: 1.5rem;
    }

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

    .search-section {
        margin-top: -50px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    :root {
        --header-height: 60px;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        margin: 0.5rem 0;
    }

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

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

    .search-section {
        margin-top: -30px;
    }

    .search-box {
        margin: 0 1rem;
    }

    .property-image {
        height: 200px;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .mission-card {
        margin-bottom: 1.5rem;
    }

    .stat-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 575.98px) {
    .navbar-brand img {
        height: 30px;
    }

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

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

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        margin: 0.5rem 0;
    }

    .search-box {
        padding: 1.5rem;
    }

    .form-floating {
        margin-bottom: 1rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero-banner,
    .search-section,
    .social-links,
    .btn {
        display: none !important;
    }

    body {
        padding-top: 0;
    }

    .container {
        width: 100%;
        max-width: none;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/banner1.webp');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0 60px;
    margin-bottom: 80px;

}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.about-image img {
    transition: transform 0.3s ease;
}

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

.about-content {
    padding: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-item i {
    font-size: 1.2rem;
    margin-left: 10px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.team-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.team-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    overflow: hidden;
    border-radius: 50%;
    border: 5px solid var(--primary-color);
}

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

.team-content {
    padding: 20px 0;
}

.social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    background: var(--light-gray);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    color: white !important;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .page-header {
        padding: 100px 0 40px;
        margin-top: 66px;
    }

    .about-content {
        padding: 20px 0;
    }

    .team-image {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 80px 0 30px;
        margin-top: 56px;
    }

    .value-card,
    .team-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 575.98px) {
    .page-header {
        padding: 60px 0 20px;
        margin-top: 56px;
    }

    .team-image {
        width: 100px;
        height: 100px;
    }
}

/* City Cards */
.city-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
}

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

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

.city-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.city-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.property-count {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.city-content {
    padding: 1.5rem;
}

.city-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.city-description {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Responsive Adjustments for Cities Page */
@media (max-width: 991.98px) {
    .page-header {
        padding: 5rem 0 2rem;
    }
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 4rem 0 2rem;
    }

    .city-image {
        height: 200px;
    }

    .city-name {
        font-size: 1.25rem;
    }
}

@media (max-width: 575.98px) {
    .page-header {
        padding: 3rem 0 1.5rem;
    }

    .city-image {
        height: 180px;
    }
}

/* Contact Page Styles */
.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

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

.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form .form-floating {
    margin-bottom: 1rem;
}

.contact-form .form-control,
.contact-form .form-select {
    border-radius: 10px;
    border: 1px solid #dee2e6;
    padding: 1rem;
    height: auto;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.15);
}

.contact-form .btn-primary {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.map-section {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.map-container {
    position: relative;
    height: 100%;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.working-hours-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.working-hours-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments for Contact Page */
@media (max-width: 991.98px) {
    .contact-form-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 767.98px) {
    .contact-card {
        margin-bottom: 1.5rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .map-section {
        height: 350px;
    }
}

@media (max-width: 575.98px) {
    .contact-form-wrapper {
        padding: 1rem;
    }

    .map-section {
        height: 300px;
    }

    .working-hours-card {
        margin-bottom: 1rem;
    }
}

/* Property Details Page */
.property-details {
    padding-top: 100px;
}

.property-swiper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.property-swiper .swiper-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.property-swiper .swiper-button-next,
.property-swiper .swiper-button-prev {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.property-swiper .swiper-button-next:after,
.property-swiper .swiper-button-prev:after {
    font-size: 18px;
}

.property-swiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
}

.property-info {
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.property-price {
    color: var(--primary-color);
    font-weight: 700;
}

.property-location {
    color: var(--text-color);
    font-size: 1.1rem;
}

.property-features {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 1.5rem 0;
}

.property-features i {
    font-size: 1.2rem;
    color: var(--icon-color);
}

.property-description {
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-top: 2rem;
}

.property-description h2 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.property-description p {
    color: var(--text-color);
    line-height: 1.8;
}

.property-features-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.property-features-list .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.property-features-list .feature-item i {
    color: var(--icon-color);
}

.property-map {
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-top: 2rem;
}

.property-map h2 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.similar-properties {
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.similar-properties h2 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.similar-property-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.similar-property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.similar-property-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.similar-property-card .card-body {
    padding: 1rem;
}

.similar-property-card .card-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.similar-property-card .card-text {
    color: var(--text-color);
    font-size: 0.9rem;
}

/* Contact and Schedule Modals */
.modal-content {
    border-radius: 10px;
    border: none;
}

.modal-header {
    border-bottom: 1px solid #eee;
    padding: 1.5rem;
}

.modal-body {
    padding: 1.5rem;
}

.modal-title {
    color: var(--text-color);
    font-weight: 600;
}

.form-label {
    color: var(--text-color);
    font-weight: 500;
}

.form-control {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 0.75rem 1rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .property-swiper .swiper-slide img {
        height: 400px;
    }
}

@media (max-width: 767.98px) {
    .property-swiper .swiper-slide img {
        height: 300px;
    }

    .property-features-list {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

@media (max-width: 575.98px) {
    .property-swiper .swiper-slide img {
        height: 250px;
    }

    .property-info,
    .property-description,
    .property-map,
    .similar-properties {
        padding: 1.5rem;
    }
}

/* Status Badges */
.status-badge.available {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.status-badge.unavailable {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.status-badge.featured {
    background: rgba(255, 165, 0, 0.2);
    color: var(--primary-color);
    border: 1px solid rgba(255, 165, 0, 0.3);
}

.status-badge.not-featured {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    border: 1px solid var(--border-color);
}

/* Tables */
.table {
    color: var(--text-color);
}

.table thead th {
    background: var(--card-bg-color);
    border-bottom: 1px solid var(--border-color);
}

.table tbody td {
    border-bottom: 1px solid var(--border-color);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

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

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

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

/* Responsive Search Section */
@media (max-width: 767.98px) {
    .search-section {
        margin-top: -30px;
    }

    .search-box {
        margin: 0 1rem;
        padding: 1.5rem;
    }

    .form-floating {
        margin-bottom: 1rem;
    }
}

/* Icon Colors */
i, .fas, .far, .fab, .bi {
    color: var(--icon-color);
}

.property-feature i {
    color: var(--icon-color);
    font-size: 1.1rem;
}

.feature-card i {
    color: var(--icon-color);
}

.contact-info i {
    color: var(--icon-color);
}

footer .contact-info i {
    color: var(--icon-color);
}

.social-links a i {
    color: var(--icon-color);
}

.stats-icon i {
    color: var(--icon-color);
}

.nav-link i {
    color: var(--icon-color);
}

.btn i {
    color: var(--background-color);
}

.btn-outline-primary i {
    color: var(--icon-color);
}

.btn-outline-primary:hover i {
    color: var(--background-color);
}

/* Hide notification styles that might be injected as text */
body > *:first-child:not(nav):not(header):not(div):not(section):not(main):not(footer):not(script):not(style) {
    display: none !important;
}

/* Add styles for floating WhatsApp button */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    color: white;
}

.floating-whatsapp i {
    font-size: 30px;
    color: white;
} 