@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap");

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

body {
    font-family: 'Nunito', sans-serif;
    color: #ffffff;
    overflow-x: hidden;
}

body.listing-page {
    background-color: #ffffff;
}

/* Header Styles */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.375rem 0;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out, padding 0.3s ease-in-out;
    width: 100%;
    background-color: transparent;
}

.header.fixed {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background-color: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header.hidden {
    transform: translateY(-100%);
}

.header.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 72px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 1.5px;
    margin-left: 0.25rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
    pointer-events: none;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

.navigation {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.nav-link:hover {
    opacity: 0.7;
}

/* Main Content */
.main-content {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.content-split {
    display: flex;
    width: 100%;
    min-height: 100vh;
    position: relative;
}

/* Left Panel */
.left-panel {
    background-color: #2c2c2c;
    width: 50%;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .left-panel {
        width: 100%;
        min-height: auto;
        height: auto;
        overflow: visible;
    }
}

.text-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 4rem;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    pointer-events: none;
    box-sizing: border-box;
}

.text-slide.active {
    opacity: 1;
    pointer-events: auto;
}

/* Mobile responsive behavior */
@media (max-width: 768px) {
    .left-panel {
        overflow: visible;
    }
    
    .text-slide {
        position: relative !important;
        height: auto !important;
        padding: 5rem 2rem !important;
        min-height: auto !important;
        display: none !important;
    }
    
    .text-slide.active {
        display: flex !important;
        opacity: 1 !important;
    }
}

@media (max-width: 480px) {
    .text-slide {
        padding: 4rem 1.5rem !important;
    }
}

@media (max-width: 360px) {
    .text-slide {
        padding: 3.5rem 1.25rem !important;
    }
}

.headline {
    font-size: 4.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -1px;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 1400px) {
    .headline {
        font-size: 4rem;
    }
}

@media (max-width: 1200px) {
    .headline {
        font-size: 3.5rem;
    }
}

@media (max-width: 1024px) {
    .headline {
        font-size: 3rem;
        line-height: 1.15;
    }
}

@media (max-width: 968px) {
    .headline {
        font-size: 2.75rem;
    }
}

@media (max-width: 768px) {
    .headline {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .headline {
        font-size: 2rem;
        line-height: 1.25;
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 360px) {
    .headline {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
}

.body-text {
    font-size: 1.125rem;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 500px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 1200px) {
    .body-text {
        font-size: 1.063rem;
        max-width: 450px;
    }
}

@media (max-width: 1024px) {
    .body-text {
        font-size: 1rem;
        max-width: 100%;
    }
}

@media (max-width: 968px) {
    .body-text {
        font-size: 0.95rem;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .body-text {
        font-size: 0.938rem;
        margin-bottom: 2.5rem;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .body-text {
        font-size: 0.875rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }
}

@media (max-width: 360px) {
    .body-text {
        font-size: 0.813rem;
        line-height: 1.45;
        margin-bottom: 1.75rem;
    }
}

.cta-button {
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #ffffff;
    width: fit-content;
    transition: opacity 0.3s;
}

.cta-button:hover {
    opacity: 0.7;
}

/* Right Panel */
.right-panel {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.image-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    z-index: 10;
    pointer-events: none;
}

.slide-counter {
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.slider-nav {
    background-color: #000000;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 65px;
    gap: 0;
    padding: 0;
    border-radius: 0;
    pointer-events: auto;
}

.nav-arrow {
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 0;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    flex: 1;
    pointer-events: auto;
}

.nav-arrow svg {
    width: 16px;
    height: 16px;
}

.nav-arrow:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-arrow:active {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 1.5rem;
    }

    .navigation {
        gap: 2rem;
    }

    .nav-link {
        font-size: 0.8rem;
    }

    .text-slide {
        padding: 7rem 3.5rem;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 1.25rem;
    }

    .navigation {
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 0.75rem;
    }

    .text-slide {
        padding: 6rem 3rem;
    }

    .cta-button {
        font-size: 0.813rem;
    }
}

@media (max-width: 968px) {
    .navigation {
        gap: 1.25rem;
    }

    .nav-link {
        font-size: 0.7rem;
    }

    .text-slide {
        padding: 5.5rem 2.5rem;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 0.375rem 0;
    }

    .header.fixed {
        padding: 0.5rem 0;
    }

    .container {
        padding: 0 1.5rem;
        position: relative;
    }

    .menu-toggle {
        display: flex;
    }

    .logo-image {
        height: 60px;
    }

    .logo-text {
        font-size: 1.32rem;
        margin-left: 0.25rem;
    }

    .menu-overlay {
        display: block;
    }

    .navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: rgba(44, 44, 44, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 0;
        transition: right 0.3s ease-in-out;
        z-index: 100;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
    }

    .navigation.active {
        right: 0;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 1.25rem 0;
        font-size: 0.875rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .content-split {
        flex-direction: column;
    }

    .left-panel,
    .right-panel {
        width: 100%;
    }

    .left-panel {
        min-height: auto;
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .right-panel {
        min-height: 60vh;
    }


    .cta-button {
        font-size: 0.813rem;
    }

    .slide {
        height: 60vh;
        min-height: 400px;
    }

    .slider-controls {
        bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0.3rem 0;
    }

    .header.fixed {
        padding: 0.4rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    .logo-image {
        height: 54px;
    }

    .logo-text {
        font-size: 1.2rem;
        letter-spacing: 1px;
        margin-left: 0.25rem;
    }

    .left-panel {
        min-height: auto;
    }


    .cta-button {
        font-size: 0.75rem;
        padding-bottom: 0.4rem;
    }

    .slide {
        min-height: 350px;
    }

    .slider-controls {
        bottom: 1.5rem;
        gap: 0.625rem;
    }

    .slide-counter {
        font-size: 0.75rem;
    }

    .slider-nav {
        width: 100px;
        height: 60px;
    }

    .nav-arrow svg {
        width: 14px;
        height: 14px;
    }

    .navigation {
        width: 100%;
        right: -100%;
    }

    .navigation.active {
        right: 0;
    }
}

@media (max-width: 360px) {

    .cta-button {
        font-size: 0.7rem;
    }
}

/* Extra small screens */
@media (max-width: 320px) {

    .cta-button {
        font-size: 0.65rem;
    }
}

/* Explore Our Spaces Section */
.explore-spaces-section {
    background-color: #ffffff;
    padding: 6rem 2rem;
    width: 100%;
    box-sizing: border-box;
}

.explore-spaces-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.explore-spaces-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    margin-left: 0;
    margin-right: 0;
    text-align: center;
    width: 100%;
}

.spaces-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}

.space-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.space-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.space-card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

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

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

.space-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.space-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.space-card-description {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.space-card-link {
    font-size: 1rem;
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-block;
    width: fit-content;
}

.space-card-link:hover {
    color: #1d4ed8;
}

/* Responsive Design for Explore Spaces Section */
@media (max-width: 968px) {
    .explore-spaces-section {
        padding: 5rem 2rem;
    }

    .explore-spaces-heading {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }

    .spaces-cards {
        gap: 1.5rem;
    }

    .space-card-image {
        height: 240px;
    }

    .space-card-content {
        padding: 1.5rem;
    }

    .space-card-title {
        font-size: 1.375rem;
    }
}

@media (max-width: 768px) {
    .explore-spaces-section {
        padding: 4rem 1.5rem;
    }

    .explore-spaces-heading {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .spaces-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
        margin: 0 auto;
    }

    .space-card-image {
        height: 260px;
    }

    .space-card-content {
        padding: 1.75rem;
    }

    .space-card-title {
        font-size: 1.5rem;
    }

    .space-card-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .explore-spaces-section {
        padding: 3.5rem 1rem;
    }

    .explore-spaces-heading {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .spaces-cards {
        gap: 1.5rem;
    }

    .space-card-image {
        height: 220px;
    }

    .space-card-content {
        padding: 1.5rem;
    }

    .space-card-title {
        font-size: 1.25rem;
    }

    .space-card-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .space-card-link {
        font-size: 0.95rem;
    }
}

@media (max-width: 360px) {
    .explore-spaces-section {
        padding: 3rem 1rem;
    }

    .explore-spaces-heading {
        font-size: 1.5rem;
    }

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

    .space-card-content {
        padding: 1.25rem;
    }
}

/* Listings Section */
.listings-section {
    background-color: #ffffff;
    min-height: 100vh;
    padding: 4rem 0;
    margin: 0;
    width: 100%;
    overflow-x: hidden;
}

.listings-container {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 3rem;
    padding-right: 3rem;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.listings-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    margin-left: 0;
    margin-right: 0;
    text-align: center;
    width: 100%;
}

/* Search Bar */
.search-bar-container {
    margin-bottom: 2rem;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-self: stretch;
}

.search-bar {
    position: relative;
    width: 100%;
    max-width: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.5rem;
}

.search-dropdown {
    border: none;
    background: transparent;
    font-size: 0.875rem;
    color: #333;
    padding: 0.5rem;
    cursor: pointer;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    padding-right: 2rem;
}

.search-icon {
    color: #999;
    pointer-events: none;
    flex-shrink: 0;
}

.search-input {
    flex: 1;
    border: none;
    padding: 0.5rem;
    font-size: 1rem;
    color: #333;
    background-color: transparent;
    outline: none;
}

.search-input::placeholder {
    color: #999;
}

.search-filter-btn {
    background-color: #333;
    border: none;
    border-radius: 6px;
    padding: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: background-color 0.3s;
    flex-shrink: 0;
}

.search-filter-btn:hover {
    background-color: #555;
}

.search-filter-btn .material-symbols-outlined {
    font-size: 20px;
}

.search-btn {
    background-color: #2563eb;
    border: none;
    border-radius: 6px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: background-color 0.3s;
    flex-shrink: 0;
}

.search-btn:hover {
    background-color: #1d4ed8;
}

.search-btn .material-symbols-outlined {
    font-size: 20px;
}

/* Filter Modal */
.filter-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    overflow-y: auto;
    padding: 2rem 1rem;
}

.filter-modal.show {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.filter-modal-content {
    background-color: #ffffff;
    border-radius: 12px;
    width: 100%;
    max-width: 900px;
    margin: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    overflow: hidden;
}

.filter-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.filter-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.filter-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.filter-modal-close:hover {
    color: #333;
}

.filter-modal-body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
}

.filter-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.filter-field {
    display: flex;
    flex-direction: column;
}

.filter-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.filter-select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.938rem;
    color: #333;
    background-color: #ffffff;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2.5rem;
    transition: border-color 0.3s;
}

.filter-select:focus {
    outline: none;
    border-color: #4a90e2;
}

/* Custom dropdowns in filter modal */
#filterModal .custom-select-wrapper {
    width: 100%;
}

#filterModal .custom-select-display {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background-color: #ffffff;
}

#filterModal .custom-select-display:hover {
    border-color: #d1d5db;
}

#filterModal .custom-select-wrapper.active .custom-select-display {
    border-color: #4a90e2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.filter-size-input {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
}

.filter-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.938rem;
    color: #333;
    background-color: #ffffff;
    outline: none;
    transition: border-color 0.3s;
}

.filter-input:focus {
    border-color: #4a90e2;
}

.filter-input::placeholder {
    color: #999;
}

.filter-size-unit {
    padding: 0.75rem 1rem;
    background-color: #f5f5f5;
    font-size: 0.875rem;
    color: #666;
    white-space: nowrap;
}

.filter-amenities-section {
    margin-top: 2rem;
}

.filter-amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .filter-amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
}

.filter-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.938rem;
    color: #333;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.filter-checkbox-label:hover {
    background-color: #f5f5f5;
}

.filter-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #4a90e2;
}

.filter-modal-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: center;
}

.filter-apply-btn {
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 1rem 3rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    max-width: 400px;
}

.filter-apply-btn:hover {
    background-color: #333;
}

/* Listings Layout */
.listings-layout {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    justify-content: flex-start;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    width: 100%;
}

/* Filters Sidebar */
.filters-sidebar {
    width: 250px;
    flex-shrink: 0;
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 0;
    box-sizing: border-box;
}

.filter-section {
    margin-bottom: 2rem;
}

.filter-section:last-child {
    margin-bottom: 0;
}

.filter-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.filter-button {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    width: 100%;
}

.filter-button:hover {
    background-color: #f5f5f5;
    border-color: #4a90e2;
}

.filter-button.active {
    background-color: #4a90e2;
    color: #ffffff;
    border-color: #4a90e2;
}

/* Properties Grid */
.properties-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
    order: 1;
    transition: opacity 0.3s ease-in-out;
}

.properties-grid.fade-out {
    opacity: 0;
    pointer-events: none;
}

.properties-grid.fade-in {
    opacity: 1;
    pointer-events: auto;
}

/* Pagination Container */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding: 1rem 0;
    flex-wrap: wrap;
    width: 100%;
    order: 2;
}

.pagination-btn {
    min-width: 28px;
    height: 28px;
    padding: 0.25rem 0.5rem;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    color: #374151;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Nunito', sans-serif;
}

.pagination-btn svg {
    width: 12px;
    height: 12px;
}

.pagination-btn:hover:not(.disabled):not(.active) {
    background-color: #f3f4f6;
    border-color: #2563eb;
    color: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.15);
}

.pagination-btn.active {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-color: #2563eb;
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.25);
}

.pagination-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination-ellipsis {
    padding: 0 0.25rem;
    color: #6b7280;
    font-weight: 600;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    font-family: 'Nunito', sans-serif;
}

@media (max-width: 768px) {
    .pagination-container {
        gap: 0.2rem;
        margin-top: 1.5rem;
        padding: 0.75rem 0;
    }
    
    .pagination-btn {
        min-width: 26px;
        height: 26px;
        padding: 0.2rem 0.4rem;
        font-size: 0.7rem;
    }
    
    .pagination-btn svg {
        width: 10px;
        height: 10px;
    }
}

/* Property Card */
.property-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.4s ease;
    cursor: pointer;
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

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

.property-card:nth-child(1) {
    animation-delay: 0.05s;
}

.property-card:nth-child(2) {
    animation-delay: 0.1s;
}

.property-card:nth-child(3) {
    animation-delay: 0.15s;
}

.property-card:nth-child(4) {
    animation-delay: 0.2s;
}

.property-card:nth-child(5) {
    animation-delay: 0.25s;
}

.property-card:nth-child(6) {
    animation-delay: 0.3s;
}

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

.property-image,
.property-image-slider {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.property-image img,
.property-image-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

/* Property Image Slider Styles */
.property-image-slider {
    position: relative;
}

.property-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
}

.property-slide.active {
    opacity: 1;
    z-index: 2;
}

.property-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.property-slider-prev,
.property-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    opacity: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.property-slider-prev {
    left: 0.75rem;
}

.property-slider-next {
    right: 0.75rem;
}

.property-card:hover .property-slider-prev,
.property-card:hover .property-slider-next {
    opacity: 1;
}

.property-slider-prev:hover,
.property-slider-next:hover {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.property-slider-prev .material-symbols-outlined,
.property-slider-next .material-symbols-outlined {
    font-size: 20px;
    color: #333;
}

.property-slider-dots {
    position: absolute;
    bottom: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.property-card:hover .property-slider-dots {
    opacity: 1;
}

.property-slider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.property-slider-dot.active {
    background-color: rgba(255, 255, 255, 1);
    width: 8px;
    height: 8px;
}

.property-address {
    font-size: 0.938rem;
    font-weight: 600;
    color: #333;
    padding: 1rem 1.25rem 0.75rem;
    margin: 0;
    line-height: 1.4;
}

.property-price-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background-color: #2563eb;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 5;
    white-space: nowrap;
}

.property-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1rem;
    padding: 1rem 1.25rem 1.25rem;
    background-color: #ffffff;
}

.property-detail-item {
    font-size: 0.813rem;
    color: #666;
    font-weight: 500;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Position items: Bathroom and Area on left, Bedroom and Garage on right */
.property-detail-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
    justify-content: flex-start;
}

.property-detail-item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
    justify-content: flex-end;
    text-align: right;
}

.property-detail-item:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
    justify-content: flex-start;
}

.property-detail-item:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
    justify-content: flex-end;
    text-align: right;
}

.property-detail-item .material-symbols-outlined {
    font-size: 18px;
    color: #666;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Design for Listings */
@media (max-width: 1024px) {
    .listings-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .filters-sidebar {
        width: 220px;
    }

    .property-image {
        height: 220px;
    }
    
    .property-address {
        font-size: 0.875rem;
        padding: 0.875rem 1rem 0.625rem;
    }
    
    .property-details {
        padding: 0.875rem 1rem;
        gap: 0.625rem;
    }
    
    .property-detail-item {
        font-size: 0.75rem;
    }
    
    .property-detail-item .material-symbols-outlined {
        font-size: 16px;
        width: 16px;
        height: 16px;
    }
    
    .property-price-badge {
        font-size: 0.813rem;
        padding: 0.375rem 0.75rem;
        bottom: 0.75rem;
        left: 0.75rem;
    }
}

@media (max-width: 768px) {
    .listings-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .listings-layout {
        flex-direction: column;
        gap: 1.5rem;
    }

    .filters-sidebar {
        width: 100%;
    }

    .properties-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .property-image {
        height: 240px;
    }
    
    .property-address {
        font-size: 0.813rem;
        padding: 0.75rem 0.875rem 0.5rem;
    }
    
    .property-details {
        padding: 0.75rem 0.875rem;
        gap: 0.5rem;
    }
    
    .property-detail-item {
        font-size: 0.75rem;
    }
    
    .property-detail-item .material-symbols-outlined {
        font-size: 16px;
        width: 16px;
        height: 16px;
    }
    
    .property-price-badge {
        font-size: 0.813rem;
        padding: 0.375rem 0.75rem;
        bottom: 0.75rem;
        left: 0.75rem;
    }

    .search-bar-container {
        width: 100%;
    }
    
    .search-bar {
        max-width: 100%;
    }
    
    .filter-modal {
        padding: 1rem 0.5rem;
    }
    
    .filter-modal-content {
        max-width: 100%;
        max-height: 95vh;
    }
    
    .filter-modal-header {
        padding: 1rem 1.5rem;
    }
    
    .filter-modal-body {
        padding: 1.5rem;
    }
    
    .filter-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .filter-amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

/* About Section - Inspired by NicePage Template */
.about-section {
    width: 100%;
    padding: 1.5rem 0 6rem 0;
    background-color: #ffffff;
    position: relative;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    width: 100%;
    box-sizing: border-box;
}

.about-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    width: 100%;
}

.about-content-panel {
    flex: 1;
    max-width: 50%;
    display: flex;
    align-items: center;
}

.about-content {
    width: 100%;
}

.about-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    margin-left: 0;
    margin-right: 0;
    text-align: center;
    width: 100%;
}

.about-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.8;
    margin: 0;
    text-align: justify;
}

.about-read-more {
    font-size: 1rem;
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-block;
    width: fit-content;
}

.about-read-more:hover {
    color: #1d4ed8;
}

.about-image-panel {
    flex: 1;
    max-width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-wrapper {
    width: 100%;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 12px;
}

/* Responsive Design for About Section */
@media (max-width: 1200px) {
    .about-container {
        padding: 0 2.5rem;
    }

    .about-wrapper {
        gap: 3rem;
    }

    .about-heading {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }

    .about-text {
        font-size: 1.063rem;
    }
}

@media (max-width: 1024px) {
    .about-section {
        padding: 1.25rem 0 5rem 0;
    }

    .about-container {
        padding: 0 2rem;
    }

    .about-wrapper {
        gap: 2.5rem;
    }

    .about-heading {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .about-text {
        font-size: 1rem;
        line-height: 1.7;
    }

    .about-text-wrapper {
        gap: 0.75rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 1rem 0 4rem 0;
    }

    .about-container {
        padding: 0 1.5rem;
    }

    .about-wrapper {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }

    .about-content-panel,
    .about-image-panel {
        max-width: 100%;
        width: 100%;
    }

    .about-content {
        max-width: 100%;
    }

    .about-heading {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .about-text {
        font-size: 0.938rem;
    }

    .about-text-wrapper {
        gap: 0.75rem;
    }

    .about-read-more {
        font-size: 0.95rem;
    }

    .about-image-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 1.75rem 0;
    }

    .about-container {
        padding: 0 1rem;
    }

    .about-wrapper {
        gap: 2.5rem;
    }

    .about-heading {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .about-text {
        font-size: 0.875rem;
        line-height: 1.6;
    }

    .about-text-wrapper {
        gap: 0.75rem;
    }

    .about-read-more {
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .about-section {
        padding: 1.5rem 0;
    }

    .about-heading {
        font-size: 1.5rem;
    }

    .about-text {
        font-size: 0.813rem;
    }
}

/* Footer */
.footer {
    position: relative;
    width: 100%;
    min-height: 500px;
    overflow: hidden;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1519681393784-d120267933ba?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(8px);
    transform: scale(1.1);
    z-index: 0;
}

.footer-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.footer-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 3rem 2rem;
    width: 100%;
    box-sizing: border-box;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo-column {
    max-width: 280px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(30deg);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d4af37;
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-brand-tagline {
    font-size: 0.875rem;
    color: #ffffff;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.footer-heading {
    font-size: 0.875rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 1.5rem 0;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.938rem;
    font-weight: 400;
    transition: opacity 0.3s ease;
    width: fit-content;
}

.footer-link:hover {
    opacity: 0.7;
}

.footer-description {
    font-size: 0.938rem;
    color: #ffffff;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    opacity: 0.9;
}

.footer-subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-email-input {
    width: 100%;
    padding: 0.875rem 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: #ffffff;
    font-size: 0.938rem;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.footer-email-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer-email-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background-color: rgba(255, 255, 255, 0.15);
}

.footer-subscribe-btn {
    padding: 0.875rem 2rem;
    background-color: #2c4a6e;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    width: fit-content;
}

.footer-subscribe-btn:hover {
    background-color: #3a5a7e;
    border-color: rgba(255, 255, 255, 0.4);
}

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

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.footer-social-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0 1.5rem 0;
}

.footer-copyright {
    text-align: center;
    padding-top: 1rem;
}

.footer-copyright-text {
    font-size: 0.813rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-copyright-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright-link:hover {
    color: #ffffff;
}

.footer-scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 45px;
    height: 45px;
    background-color: #000000;
    border: none;
    border-radius: 4px;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: background-color 0.3s ease, transform 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.footer-scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.footer-scroll-top:hover {
    background-color: #333333;
    transform: translateY(-3px);
}

.footer-scroll-top svg {
    transform: rotate(180deg);
}

/* Responsive Design for Footer */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 3rem 1.5rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-logo-column {
        max-width: 100%;
    }

    .footer-subscribe-form {
        max-width: 100%;
    }

    .footer-subscribe-btn {
        width: 100%;
    }

    .footer-scroll-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 2.5rem 1rem 1rem;
    }

    .footer-brand-name {
        font-size: 1.25rem;
    }

    .footer-heading {
        font-size: 0.813rem;
    }

    .footer-link,
    .footer-description {
        font-size: 0.875rem;
    }

    .footer-copyright-text {
        font-size: 0.75rem;
    }
}

/* Report Problem Page Styles */
body.report-problem-page .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

body.report-problem-page {
    padding-top: 0;
}

.report-hero {
    background-color: #ffffff;
    padding: 8rem 0 4rem;
    text-align: center;
    margin-top: 0;
}

.report-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

.report-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.report-hero-subtitle {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.report-help-section {
    background-color: #f9f9f9;
    padding: 4rem 0;
    text-align: center;
}

.report-help-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
    text-align: center;
}

.report-help-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
}

.report-hero-subtitle {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 0;
    text-align: center;
}

.report-help-description {
    font-size: 0.938rem;
    color: #666;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.report-categories-section {
    background-color: #ffffff;
    padding: 6rem 0 6rem;
}

.report-categories-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.report-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.report-category-card {
    background-color: #000000;
    border-radius: 8px;
    padding: 3rem 2rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    text-align: center;
}

.report-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.report-category-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.report-category-icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.report-category-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    text-align: center;
    letter-spacing: 0.3px;
}

.report-critical-section {
    background-color: #2c2c2c;
    padding: 4rem 0;
    text-align: center;
}

.report-critical-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

.report-critical-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.report-critical-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.report-critical-btn:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.report-contact-section {
    background-color: #ffffff;
    padding: 4rem 0;
}

.report-contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

.report-contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
}

.report-contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.report-contact-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.report-contact-text {
    font-size: 1.125rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.report-contact-link {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.report-contact-link:hover {
    color: #1d4ed8;
}

/* Report Modal Styles */
.report-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    overflow-y: auto;
    padding: 2rem 1rem;
    box-sizing: border-box;
}

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

.report-modal-content {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    max-width: 750px;
    min-width: 500px;
    width: 90%;
    max-height: 90vh;
    min-height: 400px;
    position: relative;
    margin: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    resize: both;
    overflow: auto;
    display: flex;
    flex-direction: column;
}

.report-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.report-modal-close:hover {
    color: #333;
}

.report-modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
}

.report-modal-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    flex: 1;
    overflow-y: auto;
    min-height: 0;
}

.report-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.report-form-group-full {
    grid-column: 1 / -1;
}

.report-form-label {
    font-size: 0.938rem;
    font-weight: 600;
    color: #333;
}

.report-form-input,
.report-form-textarea,
.report-form-select {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    color: #1f2937;
    font-family: inherit;
    box-sizing: border-box;
    transition: all 0.3s ease;
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.report-form-input:hover,
.report-form-textarea:hover,
.report-form-select:hover {
    border-color: #d1d5db;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.report-form-input:focus,
.report-form-textarea:focus,
.report-form-select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1), 0 2px 6px rgba(0, 0, 0, 0.1);
}

.report-form-textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.6;
}

.report-form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    appearance: none;
}

/* Modern File Upload Styling */
.report-form-file-wrapper {
    position: relative;
    margin-top: 0.5rem;
}

.report-form-file {
    position: absolute;
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
}

.report-form-file-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1.5rem;
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 150px;
}

.report-form-file-label:hover {
    border-color: #2563eb;
    background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.report-form-file-label.dragover {
    border-color: #2563eb;
    background: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 100%);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.report-form-file-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    color: #2563eb;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.report-form-file-label:hover .report-form-file-icon {
    opacity: 1;
    transform: scale(1.1);
}

.report-form-file-label.has-files {
    border-color: #10b981;
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
}

.report-form-file-label.has-files .report-form-file-icon {
    color: #10b981;
    opacity: 1;
}

.report-form-file-text {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.report-form-file-hint {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.report-form-file-selected {
    margin-top: 1rem;
    padding: 1rem;
    background-color: #f3f4f6;
    border-radius: 8px;
    font-size: 0.875rem;
    color: #374151;
}

.report-form-file-selected strong {
    color: #2563eb;
    font-weight: 600;
}

.report-form-submit {
    grid-column: 1 / -1;
    padding: 1.125rem 3rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    margin-top: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35), 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
}

.report-form-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
}

.report-form-submit:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.45), 0 4px 8px rgba(0, 0, 0, 0.15);
}

.report-form-submit:hover::before {
    left: 100%;
}

.report-form-submit:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

.report-form-submit:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2), 0 4px 14px rgba(37, 99, 235, 0.35);
}

.report-form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Responsive Design for Report Problem Page */
@media (max-width: 1024px) {
    .report-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .report-contact-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    body.report-problem-page .header {
        padding: 0.375rem 0;
    }

    .report-hero {
        padding: 5rem 0 3rem;
    }

    .report-hero-title {
        font-size: 2.25rem;
    }

    .report-hero-subtitle {
        font-size: 0.938rem;
    }

    .report-help-section {
        padding: 3rem 0;
    }

    .report-help-title {
        font-size: 2rem;
    }

    .report-help-description {
        font-size: 0.875rem;
    }

    .report-categories-section {
        padding: 4rem 0 4rem;
    }

    .report-categories-container {
        padding: 0 1.5rem;
    }

    .report-categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .report-category-card {
        min-height: 180px;
        padding: 2.5rem 1.5rem;
    }

    .report-category-icon img {
        width: 56px;
        height: 56px;
    }

    .report-category-title {
        font-size: 1rem;
    }

    .report-critical-section {
        padding: 3rem 0;
    }

    .report-critical-title {
        font-size: 1.25rem;
    }

    .report-critical-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .report-contact-section {
        padding: 3rem 0;
    }

    .report-contact-container {
        padding: 0 1.5rem;
    }

    .report-modal-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
        min-width: 300px;
        width: 95%;
    }

    .report-modal-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .report-modal-form {
        grid-template-columns: 1fr;
    }
    
    .report-form-submit {
        padding: 1rem 2rem;
        font-size: 0.938rem;
        letter-spacing: 1px;
        margin-top: 1.25rem;
    }
}

@media (max-width: 480px) {
    body.report-problem-page .header {
        padding: 0.3rem 0;
    }

    .report-hero-container,
    .report-help-container,
    .report-critical-container,
    .report-contact-container {
        padding: 0 1rem;
    }

    .report-hero {
        padding: 4.5rem 0 2.5rem;
    }

    .report-hero-title {
        font-size: 1.75rem;
    }

    .report-hero-subtitle {
        font-size: 0.875rem;
    }

    .report-help-title {
        font-size: 1.75rem;
    }

    .report-help-description {
        font-size: 0.813rem;
    }

    .report-category-title {
        font-size: 1.25rem;
    }

    .report-modal-content {
        padding: 1.5rem 1rem;
        min-width: 280px;
        width: 98%;
    }
    
    .report-modal-form {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }
    
    .report-form-submit {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
        letter-spacing: 0.5px;
        margin-top: 1rem;
        min-height: 48px;
        border-radius: 10px;
    }
}

/* Add Property Page Styles */
body.add-property-page {
    background-color: #f5f5f5;
    color: #333;
}

body.add-property-page .header {
    position: fixed;
    top: 0;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
}

.add-property-main {
    padding-top: 100px;
    min-height: 100vh;
    padding-bottom: 4rem;
}

.add-property-container {
    max-width: 1400px;
    min-width: 600px;
    width: 95%;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    resize: both;
    overflow: visible;
    box-sizing: border-box;
    position: relative;
}

.add-property-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    text-align: center;
}

.add-property-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-section {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #2563eb;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    overflow: visible;
}

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

.form-label {
    font-size: 0.938rem;
    font-weight: 600;
    color: #374151;
}

.form-hint {
    font-size: 0.813rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.938rem;
    color: #1f2937;
    font-family: inherit;
    box-sizing: border-box;
    transition: all 0.3s ease;
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    min-height: 44px; /* Better touch target for mobile */
}

.form-input:hover,
.form-textarea:hover,
.form-select:hover {
    border-color: #d1d5db;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1), 0 2px 6px rgba(0, 0, 0, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.6;
}

/* Hide native select but keep it for form submission */
.custom-select {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

/* Modern Custom Dropdown Styles */
.custom-select-wrapper {
    position: relative;
    width: 100%;
}

.custom-select-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background-color: #ffffff;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    min-height: 44px;
    box-sizing: border-box;
}

.custom-select-display:hover {
    border-color: #d1d5db;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.custom-select-wrapper.active .custom-select-display {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1), 0 2px 6px rgba(0, 0, 0, 0.1);
}

.custom-select-text {
    font-size: 0.938rem;
    color: #1f2937;
    font-weight: 400;
    flex: 1;
    text-align: left;
}

.custom-select-text.placeholder {
    color: #9ca3af;
}

.custom-select-arrow {
    width: 18px;
    height: 18px;
    color: #6b7280;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    margin-left: 0.75rem;
}

.custom-select-wrapper.active .custom-select-arrow {
    transform: rotate(180deg);
    color: #2563eb;
}

.custom-select-options {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background-color: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15), 0 4px 10px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    pointer-events: none;
}

.custom-select-wrapper.active .custom-select-options {
    max-height: 300px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    overflow-y: auto;
}

.custom-select-option {
    padding: 0.875rem 1rem;
    font-size: 0.938rem;
    color: #1f2937;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
}

.custom-select-option:last-child {
    border-bottom: none;
}

.custom-select-option:hover {
    background-color: #f9fafb;
    color: #2563eb;
    padding-left: 1.25rem;
}

.custom-select-option.selected {
    background-color: #eff6ff;
    color: #2563eb;
    font-weight: 600;
}

.custom-select-option.selected::after {
    content: '✓';
    margin-left: auto;
    color: #2563eb;
    font-weight: 700;
}

/* Scrollbar styling for dropdown */
.custom-select-options::-webkit-scrollbar {
    width: 6px;
}

.custom-select-options::-webkit-scrollbar-track {
    background: #f3f4f6;
    border-radius: 10px;
}

.custom-select-options::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 10px;
}

.custom-select-options::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

/* Keep form-select for backward compatibility */
.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23374151' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 16px;
    padding-right: 2.75rem;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: all 0.3s ease;
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* File Upload Styles for Add Property */
.file-upload-wrapper {
    position: relative;
    margin-top: 0.5rem;
}

.file-upload-input {
    position: absolute;
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 150px;
}

.file-upload-label:hover {
    border-color: #2563eb;
    background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.file-upload-label.dragover {
    border-color: #2563eb;
    background: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 100%);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.file-upload-label.has-files {
    border-color: #10b981;
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
}

.file-upload-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 0.75rem;
    color: #2563eb;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.file-upload-label:hover .file-upload-icon {
    opacity: 1;
    transform: scale(1.1);
}

.file-upload-label.has-files .file-upload-icon {
    color: #10b981;
    opacity: 1;
}

.file-upload-text {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.file-upload-hint {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.file-upload-selected {
    margin-top: 1rem;
    padding: 1rem;
    background-color: #f3f4f6;
    border-radius: 8px;
    font-size: 0.875rem;
    color: #374151;
}

.file-upload-selected strong {
    color: #2563eb;
    font-weight: 600;
}

.file-upload-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.image-preview-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.image-preview-item:hover {
    border-color: #2563eb;
    transform: scale(1.05);
}

.image-preview-item.featured {
    border-color: #10b981;
    border-width: 3px;
}

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

.image-preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-preview-item:hover .image-preview-overlay {
    opacity: 1;
}

.image-preview-remove {
    background-color: #ef4444;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.image-preview-remove:hover {
    background-color: #dc2626;
    transform: scale(1.05);
}

.image-preview-badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background-color: #10b981;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: none;
}

.image-preview-item.featured .image-preview-badge {
    display: block;
}

.featured-image-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.featured-option {
    padding: 0.5rem 1rem;
    background-color: #f3f4f6;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    transition: all 0.3s ease;
}

.featured-option:hover {
    border-color: #2563eb;
    background-color: #eff6ff;
}

.featured-option.selected {
    border-color: #10b981;
    background-color: #ecfdf5;
    color: #10b981;
}

/* Amenities Grid */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 0.5rem;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.amenity-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #2563eb;
    flex-shrink: 0;
}

.amenity-item label {
    font-size: 0.938rem;
    color: #374151;
    cursor: pointer;
    user-select: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.amenity-item:hover label {
    color: #2563eb;
}

.amenity-item input[type="checkbox"]:checked + label {
    color: #2563eb;
    font-weight: 600;
}

.form-submit-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e5e7eb;
}

.form-submit-btn {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
}

.form-submit-btn::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;
}

.form-submit-btn:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.form-submit-btn:hover::before {
    left: 100%;
}

.form-submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.form-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Responsive Design for Add Property Page */
@media (max-width: 768px) {
    body.add-property-page .header {
        padding: 0.375rem 0;
    }

    .add-property-main {
        padding-top: 80px;
    }

    .add-property-container {
        padding: 1.5rem 1.5rem;
        margin: 1rem;
        border-radius: 8px;
        min-width: 400px;
        width: 98%;
    }

    .add-property-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .form-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        width: 100%;
        box-sizing: border-box;
    }

    .form-group {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .form-section-title {
        font-size: 1.25rem;
    }

    .form-select {
        padding-right: 2.5rem;
        font-size: 0.938rem;
        background-size: 14px 14px;
    }

    .custom-select-display {
        padding: 0.625rem 0.875rem;
        font-size: 0.938rem;
    }

    .custom-select-options {
        max-height: 250px;
    }

    .custom-select-option {
        padding: 0.75rem 0.875rem;
        font-size: 0.875rem;
    }

    .file-upload-label {
        padding: 2rem 1.5rem;
        min-height: 150px;
    }

    .file-upload-preview {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 0.75rem;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .form-submit-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .add-property-container {
        padding: 1rem;
        margin: 0.5rem;
        min-width: 300px;
        width: 99%;
    }

    .add-property-title {
        font-size: 1.75rem;
    }

    .form-select {
        padding-right: 2.25rem;
        font-size: 0.875rem;
        background-size: 12px 12px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .custom-select-display {
        padding: 0.625rem 0.75rem;
        font-size: 0.875rem;
        min-height: 40px;
    }

    .custom-select-arrow {
        width: 16px;
        height: 16px;
    }

    .custom-select-options {
        max-height: 200px;
    }

    .custom-select-option {
        padding: 0.625rem 0.75rem;
        font-size: 0.813rem;
    }

    .form-input,
    .form-textarea {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .form-grid {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        box-sizing: border-box;
    }

    .form-group {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .file-upload-preview {
        grid-template-columns: repeat(2, 1fr);
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

/* Toast Notification Styles */
.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3), 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    opacity: 0;
    transform: translateX(400px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
    max-width: 400px;
    min-width: 300px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.toast-notification.show {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

/* Error Toast Styling */
.toast-notification.toast-error {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3), 0 4px 10px rgba(0, 0, 0, 0.2);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.toast-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: #ffffff;
    animation: checkmark 0.6s ease-in-out;
}

@keyframes checkmark {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.toast-message {
    font-size: 0.938rem;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.3px;
}

/* Responsive Toast Notification */
@media (max-width: 768px) {
    .toast-notification {
        top: 15px;
        right: 15px;
        left: 15px;
        max-width: none;
        min-width: auto;
        transform: translateY(-100px);
    }
    
    .toast-notification.show {
        transform: translateY(0);
    }
    
    .toast-message {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .toast-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        padding: 0.875rem 1.25rem;
    }
    
    .toast-icon {
        width: 20px;
        height: 20px;
    }
    
    .toast-message {
        font-size: 0.813rem;
    }
}

/* ============================================
   PROPERTY DETAIL PAGE STYLES - MODERN REDESIGN
   ============================================ */

/* Body Override for Property Detail */
.property-detail-body {
    background-color: #f8f9fa;
    color: #333;
}

.property-detail-header {
    background-color: rgba(0, 0, 0, 0.95) !important;
    position: fixed !important;
    top: 0 !important;
}

.property-detail-main {
    background-color: #f8f9fa;
    color: #333;
    min-height: 100vh;
    padding-top: 0;
}

/* Loading and Error States */
.property-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    text-align: center;
    padding: 3rem;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid #e9ecef;
    border-top: 5px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1.5rem;
}

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

.property-error {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: 3rem;
}

.error-content {
    text-align: center;
    max-width: 500px;
}

.error-icon {
    font-size: 4rem;
    color: #667eea;
    margin-bottom: 1.5rem;
}

.property-error h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.property-error p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

/* Hero Section */
.property-hero {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    max-height: 700px;
    overflow: hidden;
}

.property-hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 4rem 3rem;
    color: #ffffff;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.hero-badge {
    display: inline-block;
    padding: 0.625rem 1.5rem;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.hero-badge.type {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-badge.status-available {
    background-color: rgba(16, 185, 129, 0.9);
    color: #ffffff;
}

.hero-badge.status-reserved {
    background-color: rgba(245, 158, 11, 0.9);
    color: #ffffff;
}

.hero-badge.status-sold {
    background-color: rgba(239, 68, 68, 0.9);
    color: #ffffff;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.hero-btn.primary {
    background-color: #ffffff;
    color: #667eea;
}

.hero-btn.primary:hover {
    background-color: #f3f4f6;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.hero-btn.secondary {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-btn.secondary:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.hero-gallery-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.95);
    color: #333;
    border: none;
    border-radius: 12px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-gallery-btn:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Horizontal Gallery Section */
.horizontal-gallery-section {
    background-color: #ffffff;
    padding: 2rem 0;
    overflow: hidden;
}

.horizontal-gallery {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 1rem 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.horizontal-gallery::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.horizontal-gallery-item {
    flex-shrink: 0;
    width: 300px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.horizontal-gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

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

.horizontal-gallery-item:hover img {
    transform: scale(1.1);
}

/* Property Content Wrapper */
.property-content-wrapper {
    padding: 3rem 0;
}

.property-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
    align-items: start;
}

.property-main-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.property-section {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.section-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.25rem;
    padding-bottom: 0.875rem;
    border-bottom: 2px solid #e9ecef;
}

.property-overview {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1rem;
}

.property-overview-subtitle {
    font-size: 1rem;
    color: #6b7280;
    font-style: italic;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background-color: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    font-size: 2rem;
    color: #667eea;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.feature-label {
    font-size: 0.875rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: #333;
}


/* Location Section */
.location-info {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: nowrap;
}

.location-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    flex: 1;
    min-width: 0;
}

.location-detail-item .material-symbols-outlined {
    font-size: 1.5rem;
    color: #667eea;
    flex-shrink: 0;
}

.location-detail-item div {
    flex: 1;
    color: #4b5563;
    line-height: 1.6;
}

.location-detail-item strong {
    color: #333;
    display: block;
    margin-bottom: 0.25rem;
}

.property-map-container {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.property-map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

.no-map {
    text-align: center;
    padding: 3rem;
    color: #6b7280;
    background-color: #f8f9fa;
    border-radius: 12px;
}

/* Sidebar */
.property-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.sidebar-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.price-card {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
    position: relative;
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.price-display {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.price-display::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
}

.price-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-bottom: 0.75rem;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.price-period {
    font-size: 0.9375rem;
    opacity: 0.85;
    font-weight: 400;
}

.sidebar-cta-btn,
.sidebar-secondary-btn {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.sidebar-cta-btn:last-child,
.sidebar-secondary-btn:last-child {
    margin-bottom: 0;
}

.sidebar-cta-btn {
    background-color: #ffffff;
    color: #2563eb;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sidebar-cta-btn:hover {
    background-color: #eff6ff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
    color: #1d4ed8;
}

.sidebar-secondary-btn {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.sidebar-secondary-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-title::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 2px;
}

.details-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.detail-row:hover {
    background-color: #eff6ff;
    border-left-color: #2563eb;
    transform: translateX(4px);
}

.detail-row .material-symbols-outlined {
    font-size: 1.5rem;
    color: #2563eb;
}

.detail-label {
    flex: 1;
    color: #6b7280;
    font-size: 0.9375rem;
}

.detail-value {
    font-weight: 600;
    color: #333;
}


.no-amenities {
    color: #6b7280;
    font-style: italic;
    text-align: center;
    padding: 1rem;
}

/* Tour Form Section */
.tour-form-section {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    padding: 5rem 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.tour-form-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.form-section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.form-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-section-subtitle {
    font-size: 1.125rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.tour-request-form {
    max-width: 900px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-label {
    color: #333;
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    padding: 1rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background-color: #ffffff;
    color: #333;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #9ca3af;
}

.form-input:hover,
.form-textarea:hover {
    border-color: #d1d5db;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #2563eb;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1), 0 2px 6px rgba(0, 0, 0, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit-btn {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.form-submit-btn:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
}

.form-message-info {
    background-color: #dbeafe;
    color: #1e40af;
    border: 1px solid #93c5fd;
}

.form-message-success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #86efac;
}

.form-message-error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* Related Properties */
.related-properties-section {
    background-color: #ffffff;
    padding: 0;
    overflow: hidden;
}

.related-properties-section .container {
    padding-top: 3rem;
    padding-bottom: 2rem;
}

.section-header {
    text-align: left;
    margin-bottom: 1.5rem;
    padding: 0;
    width: 100%;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
    font-family: 'Nunito', sans-serif;
}

.section-subtitle {
    font-size: 0.9375rem;
    color: #6b7280;
    font-family: 'Nunito', sans-serif;
}

.related-properties-grid {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0;
    padding-bottom: 1rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    width: 100%;
}

.related-properties-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.related-property-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
    width: 300px;
    display: flex;
    flex-direction: column;
}

.related-property-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.related-property-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #e5e7eb;
}

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

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

.related-property-badge {
    position: absolute;
    top: 0.875rem;
    left: 0.875rem;
    padding: 0.375rem 0.875rem;
    background-color: rgba(16, 185, 129, 0.95);
    color: #ffffff;
    border-radius: 20px;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Nunito', sans-serif;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.related-property-badge.status-reserved {
    background-color: rgba(245, 158, 11, 0.95);
}

.related-property-badge.status-sold {
    background-color: rgba(239, 68, 68, 0.95);
}

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

.related-property-title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    font-family: 'Nunito', sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-property-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.75rem;
    font-family: 'Nunito', sans-serif;
}

.related-property-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.75rem;
    color: #6b7280;
    font-family: 'Nunito', sans-serif;
}

.related-property-features span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.related-property-features .material-symbols-outlined {
    font-size: 1.125rem;
    color: #9ca3af;
}

.related-property-features span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.related-property-features .material-symbols-outlined {
    font-size: 1.125rem;
    color: #667eea;
}

.no-related {
    text-align: center;
    color: #6b7280;
    padding: 3rem;
    grid-column: 1 / -1;
}

/* Gallery Lightbox */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-nav:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-counter {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    color: #ffffff;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .property-layout {
        grid-template-columns: 1fr;
    }
    
    .property-sidebar {
        position: static;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .related-property-card {
        width: 280px;
    }
    
    .related-properties-section {
        padding: 2.5rem 0;
    }
}

@media (max-width: 1024px) {
    .property-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .property-sidebar {
        position: static;
        order: -1;
    }
    
    .container {
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .property-hero {
        height: 60vh;
        min-height: 400px;
        max-height: 600px;
    }
    
    .hero-content {
        padding: 2rem 1.5rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-badges {
        margin-bottom: 1rem;
        gap: 0.75rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-btn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }
    
    .hero-gallery-btn {
        top: 1rem;
        right: 1rem;
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .horizontal-gallery-section {
        padding: 1.5rem 0;
    }
    
    .horizontal-gallery {
        padding: 0.75rem 0;
    }
    
    .horizontal-gallery-item {
        width: 280px;
        height: 200px;
    }
    
    .property-content-wrapper {
        padding: 2rem 0;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .property-layout {
        gap: 1.5rem;
    }
    
    .property-main-column {
        gap: 2rem;
    }
    
    .property-section {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .section-heading {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
        padding-bottom: 0.75rem;
    }
    
    .property-overview {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .property-overview-subtitle {
        font-size: 0.9375rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1.25rem;
    }
    
    .feature-icon {
        font-size: 1.75rem;
    }
    
    .location-info {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .location-detail-item {
        padding: 0.875rem;
    }
    
    .location-detail-item .material-symbols-outlined {
        font-size: 1.25rem;
    }
    
    .property-map-container iframe {
        height: 300px;
    }
    
    .property-sidebar {
        gap: 1.25rem;
    }
    
    .sidebar-card {
        padding: 1.5rem;
    }
    
    .price-display {
        margin-bottom: 1.25rem;
        padding-bottom: 1.25rem;
    }
    
    .price-value {
        font-size: 2.5rem;
    }
    
    .price-label {
        font-size: 0.8125rem;
    }
    
    .price-period {
        font-size: 0.875rem;
    }
    
    .sidebar-cta-btn,
    .sidebar-secondary-btn {
        padding: 0.875rem 1rem;
        font-size: 0.9375rem;
    }
    
    .card-title {
        font-size: 1.125rem;
        margin-bottom: 1.25rem;
    }
    
    .detail-row {
        padding: 0.875rem;
    }
    
    .detail-row .material-symbols-outlined {
        font-size: 1.25rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .tour-request-form {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }
    
    .form-section-header {
        margin-bottom: 2rem;
    }
    
    .form-section-title {
        font-size: 1.75rem;
    }
    
    .form-section-subtitle {
        font-size: 0.9375rem;
        padding: 0 0.5rem;
    }
    
    .tour-form-section {
        padding: 3rem 0;
    }
    
    .form-input,
    .form-textarea {
        padding: 0.875rem 1rem;
        font-size: 0.9375rem;
    }
    
    .form-submit-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .related-properties-section {
        padding: 2rem 0;
    }
    
    .section-header {
        margin-bottom: 1.25rem;
        padding: 0 1.25rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.875rem;
    }
    
    .related-property-card {
        width: 280px;
    }
    
    .related-property-image {
        height: 180px;
    }
    
    .related-property-content {
        padding: 0.875rem;
    }
    
    .related-property-title {
        font-size: 0.9375rem;
    }
    
    .related-property-price {
        font-size: 1rem;
    }
    
    .related-property-features {
        gap: 0.875rem;
        font-size: 0.6875rem;
    }
    
    .lightbox-prev {
        left: 1rem;
        width: 40px;
        height: 40px;
    }
    
    .lightbox-next {
        right: 1rem;
        width: 40px;
        height: 40px;
    }
    
    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }
    
    .lightbox-counter {
        bottom: 1rem;
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .amenities-grid-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.875rem;
    }
    
    .amenity-card-main {
        padding: 0.875rem 1rem;
    }
    
    .amenity-icon {
        font-size: 1.25rem;
    }
    
    .amenity-name {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .property-hero {
        height: 50vh;
        min-height: 350px;
        max-height: 500px;
    }
    
    .hero-content {
        padding: 1.5rem 1rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-badges {
        margin-bottom: 0.875rem;
        gap: 0.5rem;
    }
    
    .hero-badge {
        font-size: 0.6875rem;
        padding: 0.375rem 0.875rem;
    }
    
    .hero-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .hero-gallery-btn {
        top: 0.75rem;
        right: 0.75rem;
        padding: 0.625rem 1rem;
        font-size: 0.8125rem;
    }
    
    .horizontal-gallery-item {
        width: 240px;
        height: 170px;
    }
    
    .property-content-wrapper {
        padding: 1.5rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .property-main-column {
        gap: 1.5rem;
    }
    
    .property-section {
        padding: 1.25rem;
        border-radius: 10px;
    }
    
    .section-heading {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .property-overview {
        font-size: 0.9375rem;
    }
    
    .property-overview-subtitle {
        font-size: 0.875rem;
    }
    
    .feature-card {
        padding: 1rem;
    }
    
    .feature-icon {
        font-size: 1.5rem;
    }
    
    .feature-label {
        font-size: 0.8125rem;
    }
    
    .feature-value {
        font-size: 1rem;
    }
    
    .location-detail-item {
        padding: 0.75rem;
    }
    
    .property-map-container iframe {
        height: 250px;
    }
    
    .sidebar-card {
        padding: 1.25rem;
    }
    
    .price-value {
        font-size: 2rem;
    }
    
    .sidebar-cta-btn,
    .sidebar-secondary-btn {
        padding: 0.75rem 0.875rem;
        font-size: 0.875rem;
    }
    
    .card-title {
        font-size: 1rem;
    }
    
    .detail-row {
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    .detail-label {
        font-size: 0.875rem;
    }
    
    .detail-value {
        font-size: 0.9375rem;
    }
    
    .tour-request-form {
        padding: 1.5rem 1rem;
    }
    
    .form-section-title {
        font-size: 1.5rem;
    }
    
    .form-section-subtitle {
        font-size: 0.875rem;
    }
    
    .form-input,
    .form-textarea {
        padding: 0.75rem;
        font-size: 0.875rem;
    }
    
    .form-submit-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.9375rem;
    }
    
    .related-properties-section {
        padding: 1.5rem 0;
    }
    
    .section-header {
        margin-bottom: 1rem;
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 1.25rem;
    }
    
    .section-subtitle {
        font-size: 0.8125rem;
    }
    
    .related-property-card {
        width: 260px;
    }
    
    .related-property-image {
        height: 160px;
    }
    
    .related-property-content {
        padding: 0.75rem;
    }
    
    .related-property-title {
        font-size: 0.875rem;
    }
    
    .related-property-price {
        font-size: 0.9375rem;
    }
    
    .related-property-features {
        gap: 0.75rem;
        font-size: 0.6875rem;
    }
    
    .amenities-grid-main {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .amenity-card-main {
        padding: 0.75rem 0.875rem;
    }
    
    .amenity-icon {
        font-size: 1.125rem;
    }
    
    .amenity-name {
        font-size: 0.8125rem;
    }
}

/* Loading and Error States */
.property-loading,
.property-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
    padding: 3rem;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #7fb3d3;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

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

.property-error h2 {
    color: #333;
    margin-bottom: 1rem;
}

.property-error p {
    color: #666;
    margin-bottom: 2rem;
}

/* Property Header */
.property-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 4rem 0 3rem;
    margin-bottom: 0;
}

.property-header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.property-header-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.property-type-badge-header {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.property-status-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.property-status-badge.status-available {
    background-color: #10b981;
    color: #ffffff;
}

.property-status-badge.status-reserved {
    background-color: #f59e0b;
    color: #ffffff;
}

.property-status-badge.status-sold {
    background-color: #ef4444;
    color: #ffffff;
}

.property-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.property-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.property-header-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.property-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background-color: #ffffff;
    color: #667eea;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.property-action-btn:hover {
    background-color: #f3f4f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.property-action-btn .material-symbols-outlined {
    font-size: 1.25rem;
}

/* Property Gallery */
.property-gallery-section {
    background-color: #ffffff;
    padding: 0;
}

.property-main-gallery {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
    background-color: #f3f4f6;
}

.main-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.gallery-nav-btn:hover {
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.gallery-prev {
    left: 2rem;
}

.gallery-next {
    right: 2rem;
}

.gallery-nav-btn .material-symbols-outlined {
    font-size: 1.5rem;
    color: #333;
}

.property-gallery-thumbnails {
    display: flex;
    gap: 1rem;
    padding: 1.5rem 2rem;
    overflow-x: auto;
    background-color: #f9fafb;
    scrollbar-width: thin;
}

.gallery-thumbnail {
    flex-shrink: 0;
    width: 120px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.gallery-thumbnail:hover {
    border-color: #7fb3d3;
    transform: scale(1.05);
}

.gallery-thumbnail.active {
    border-color: #667eea;
}

.gallery-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Property Details */
.property-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1rem;
    font-weight: 500;
}


.property-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

@media (min-width: 768px) {
    .property-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .property-details-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
    background-color: #f9fafb;
    border-radius: 8px;
}

.detail-label {
    font-size: 0.875rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.detail-value {
    font-size: 1.125rem;
    color: #333;
    font-weight: 500;
}


/* Main Amenities Grid */
.amenities-grid-main {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.amenity-card-main {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.amenity-card-main:hover {
    background-color: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.amenity-icon {
    font-size: 1.5rem;
    color: #667eea;
    flex-shrink: 0;
}

.amenity-name {
    font-size: 0.9375rem;
    color: #333;
    font-weight: 500;
}

/* Location */
.location-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 2rem;
}

.location-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.location-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.location-label {
    font-size: 0.875rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.location-value {
    font-size: 1.125rem;
    color: #333;
    font-weight: 500;
}

.property-map {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.property-map iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Full Gallery */
.property-full-gallery-section {
    background-color: #f9fafb;
    padding: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
    text-align: center;
}

.full-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Tour Form */
.property-tour-section {
    background-color: #f9fafb;
    padding: 5rem 0;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tour-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.tour-form .form-group {
    margin-bottom: 1.5rem;
}

.tour-form .form-input,
.tour-form .form-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.tour-form .form-input:focus,
.tour-form .form-textarea:focus {
    outline: none;
    border-color: #667eea;
}

.tour-form .form-textarea {
    resize: vertical;
    min-height: 120px;
}

.tour-submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background-color: #667eea;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tour-submit-btn:hover {
    background-color: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
}

.form-message-info {
    background-color: #dbeafe;
    color: #1e40af;
}

.form-message-success {
    background-color: #d1fae5;
    color: #065f46;
}

.form-message-error {
    background-color: #fee2e2;
    color: #991b1b;
}

/* Related Properties */
.related-properties-section {
    background-color: #f9fafb;
    padding: 4rem 0;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.property-status-badge-small {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 5;
}

.property-type-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.375rem 0.875rem;
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 5;
}

.property-details-mini {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

.property-details-mini span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* About Us Page Styles */
.about-us-body {
    background-color: #ffffff;
}

.about-us-main {
    padding-top: 0;
    background-color: #ffffff;
}

/* About Hero Section */
.about-hero {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    padding: 7rem 0 5rem;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.about-hero-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    font-family: 'Nunito', sans-serif;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.about-hero-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

/* About Section Styles */
.about-section {
    padding: 4.5rem 0;
    background-color: #ffffff;
}

.about-section-2 {
    background-color: #f8f9fa;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content-grid-reverse {
    direction: rtl;
}

.about-content-grid-reverse > * {
    direction: ltr;
}

.about-image-wrapper {
    width: 100%;
    height: 480px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-image-wrapper:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.about-image-wrapper:hover::after {
    opacity: 1;
}

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

.about-image-wrapper:hover .about-section-image {
    transform: scale(1.06);
}

.about-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
    font-family: 'Nunito', sans-serif;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.about-section-text {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #475569;
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
}

/* Why Choose Us Section */
.why-choose-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 5rem 0;
    position: relative;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.why-choose-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-choose-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 3.5rem;
    font-family: 'Nunito', sans-serif;
    letter-spacing: -0.5px;
    width: 100%;
    max-width: 1200px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-card {
    background-color: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #1d4ed8);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.why-choose-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 28px rgba(37, 99, 235, 0.12);
    border-color: #cbd5e1;
}

.why-choose-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.why-choose-card:hover .why-choose-icon {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.why-choose-icon .material-symbols-outlined {
    font-size: 2.25rem;
    color: #ffffff;
}

.why-choose-card-title {
    font-size: 1.1875rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
    font-family: 'Nunito', sans-serif;
    letter-spacing: -0.2px;
}

.why-choose-card-text {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #64748b;
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
}

/* Responsive Design for About Us Page */
@media (max-width: 1024px) {
    .about-hero {
        padding: 6rem 0 4.5rem;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.0625rem;
    }
    
    .about-content-grid {
        gap: 3rem;
    }
    
    .about-image-wrapper {
        height: 420px;
    }
    
    .about-section-title {
        font-size: 1.75rem;
    }
    
    .why-choose-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 5rem 0 3.5rem;
    }
    
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-hero-subtitle {
        font-size: 1rem;
    }
    
    .about-section {
        padding: 3.5rem 0;
    }
    
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .about-content-grid-reverse {
        direction: ltr;
    }
    
    .about-image-wrapper {
        height: 320px;
        order: -1;
    }
    
    .about-section-title {
        font-size: 1.625rem;
    }
    
    .about-section-text {
        font-size: 1rem;
    }
    
    .why-choose-section {
        padding: 3.5rem 0;
    }
    
    .why-choose-title {
        font-size: 1.875rem;
        margin-bottom: 2.5rem;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-choose-card {
        padding: 2rem 1.75rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 4.5rem 0 3rem;
    }
    
    .about-hero-title {
        font-size: 1.875rem;
    }
    
    .about-hero-subtitle {
        font-size: 0.9375rem;
    }
    
    .about-section {
        padding: 2.5rem 0;
    }
    
    .about-image-wrapper {
        height: 260px;
    }
    
    .about-section-title {
        font-size: 1.5rem;
    }
    
    .about-section-text {
        font-size: 0.9375rem;
        line-height: 1.7;
    }
    
    .why-choose-section {
        padding: 2.5rem 0;
    }
    
    .why-choose-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .why-choose-card {
        padding: 1.75rem 1.5rem;
    }
    
    .why-choose-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 1.25rem;
    }
    
    .why-choose-icon .material-symbols-outlined {
        font-size: 2rem;
    }
    
    .why-choose-card-title {
        font-size: 1.125rem;
    }
    
    .why-choose-card-text {
        font-size: 0.875rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .property-title {
        font-size: 2rem;
    }
    
    .property-subtitle {
        font-size: 1rem;
    }
    
    .property-main-gallery {
        height: 50vh;
        min-height: 350px;
        max-height: 500px;
    }
    
    .property-header {
        padding: 3rem 0 2rem;
    }
    
    .property-header-content {
        padding: 0 1.5rem;
    }
    
    
    .gallery-prev,
    .gallery-next {
        width: 40px;
        height: 40px;
    }
    
    .gallery-prev {
        left: 1rem;
    }
    
    .gallery-next {
        right: 1rem;
    }
    
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    
    .property-details-grid {
        grid-template-columns: 1fr;
    }
    
    .amenities-grid-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .amenity-card-main {
        padding: 0.875rem 1rem;
    }
    
    .amenity-icon {
        font-size: 1.25rem;
    }
    
    .amenity-name {
        font-size: 0.875rem;
    }
    
    .location-details {
        grid-template-columns: 1fr;
    }
    
    .location-info {
        flex-wrap: wrap;
    }
    
    .location-detail-item {
        min-width: calc(50% - 0.5rem);
        flex: 0 0 calc(50% - 0.5rem);
    }
    
    .full-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .properties-grid {
        grid-template-columns: 1fr;
    }
}

