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

:root {
    --primary-blue: #1e40af;
    --dark-blue: #1e3a8a;
    --light-blue: #3b82f6;
    --pink-red: #ec4899;
    --dark-pink: #db2777;
    --white: #ffffff;
    --light-gray: #f3f4f6;
    --gray: #6b7280;
    --dark-gray: #374151;
    --black: #111827;
    --green: #10b981;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

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

/* Navbar */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-brand a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.25rem;
}

.logo {
    height: 40px;
    width: auto;
}

.navbar-nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-icon-btn {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--dark-gray);
    cursor: pointer;
    padding: 0.5rem;
}

.btn-view-listing {
    background-color: var(--pink-red);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-view-listing i {
    font-size: 0.875rem;
}

.btn-view-listing:hover {
    background-color: var(--dark-pink);
}

.navbar-separator {
    color: #9ca3af;
    font-size: 1.25rem;
    margin: 0 0.5rem;
    user-select: none;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 500px;
    background-image: url('/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.hero-search {
    margin-top: 2rem;
}

.search-container {
    display: flex;
    gap: 0.5rem;
    background: var(--white);
    border-radius: 8px;
    padding: 0.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.search-city {
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 5px;
    background: var(--white);
    font-size: 1rem;
}

.search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 5px;
    font-size: 1rem;
}

.search-btn {
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Main Content Layout */
.main-content {
    margin-top: 2rem;
    margin-bottom: 4rem;
}

.properties-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 2rem;
}

/* Filters Sidebar */
.filters-sidebar {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filters-header h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.property-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.tab-btn {
    flex: 1;
    padding: 0.75rem;
    border: none;
    background: var(--white);
    border: 2px solid #e5e7eb;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.tab-btn.active {
    background-color: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

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

.filter-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.filter-input,
.filter-select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 5px;
    font-size: 1rem;
}

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

.amenities-section h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.amenities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.amenities-grid label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    cursor: pointer;
}

.btn-find-property {
    width: 100%;
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
}

/* Latest Properties Section */
.latest-properties-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.latest-properties-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

.latest-properties-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.latest-property-item {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.latest-property-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.latest-property-link {
    display: flex;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
}

.latest-property-image {
    width: 120px;
    min-width: 120px;
    height: 100px;
    overflow: hidden;
    border-radius: 8px;
}

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

.latest-property-details {
    flex: 1;
    padding: 0.5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.latest-property-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
    line-height: 1.3;
}

.latest-property-area {
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.latest-property-price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--green);
}

/* Properties Main */
.properties-main {
    padding: 0;
}

.properties-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.properties-count {
    font-weight: 500;
}

.sort-select {
    padding: 0.5rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 5px;
    background: var(--white);
}

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

.properties-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.property-card-row {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    gap: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.property-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #f3f4f6;
}

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

.property-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--dark-gray);
}

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

.property-card-area {
    color: var(--gray);
}

.property-card-price {
    font-size: 1.75rem;
    font-weight: bold;
    color: var(--green);
    margin-bottom: 1rem;
}

.property-card-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.property-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.property-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #f3f4f6;
}

.property-image[src=""],
.property-image:not([src]) {
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.property-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.5rem;
}

.badge-featured {
    background-color: var(--white);
    color: var(--dark-gray);
    padding: 0.25rem 0.75rem;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-nature {
    background-color: var(--white);
    color: var(--dark-gray);
    padding: 0.25rem 0.75rem;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 600;
}

.property-like-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--pink-red);
}

.property-content {
    padding: 1.5rem;
}

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

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

.property-area {
    color: var(--gray);
}

.property-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--green);
    margin-bottom: 1rem;
}

.property-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.btn-contact-seller {
    flex: 1;
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 0.75rem;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn-contact-seller:hover {
    background-color: var(--primary-blue);
}

.btn-whatsapp {
    background-color: var(--green);
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.25rem;
}

.no-properties {
    text-align: center;
    padding: 3rem;
    color: var(--gray);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
    padding: 2rem 0;
}

.pagination-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 5px;
    background: var(--white);
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.pagination-link:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.pagination-link.pagination-active {
    background-color: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
    cursor: default;
}

.pagination-link.pagination-prev,
.pagination-link.pagination-next {
    min-width: 40px;
}

.pagination-ellipsis {
    padding: 0.5rem;
    color: var(--gray);
    user-select: none;
}

/* Trusted Section */
.trusted-section {
    background: var(--light-gray);
    padding: 3rem 0;
    margin-top: 4rem;
}

.trusted-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--dark-gray);
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trusted-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 150px;
    height: 80px;
}

.trusted-logo-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.3s, opacity 0.3s;
}

.trusted-logo-image:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.trusted-logo {
    color: var(--gray);
    font-weight: 500;
    font-size: 1.1rem;
}

/* Experience Real Estate CTA Section */
.experience-cta-section {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    margin: 4rem auto;
    max-width: 95%;
    width: 100%;
    height: 316px;
    box-sizing: border-box;
}

.experience-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    width: 100%;
    padding: 0 3rem;
    height: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

.experience-cta-text {
    flex: 1;
    color: var(--white);
}

.experience-cta-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.experience-cta-subtitle {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--white);
}

.experience-cta-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.experience-cta-form {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.email-input {
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    min-width: 300px;
    background: var(--white);
    color: var(--dark-gray);
}

.email-input::placeholder {
    color: var(--gray);
}

.btn-subscribe {
    background-color: var(--pink-red);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s;
}

.btn-subscribe:hover {
    background-color: var(--dark-pink);
}

/* App Download Section */
.app-download-section {
    background: #FFFFFF;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: -56px;
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
}

.app-download-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: 1296px;
    max-width: calc(100% - 24px);
    height: 146px;
    margin-left: 12px;
    padding: 0 20px;
    box-sizing: border-box;
    overflow: hidden;
}

.app-download-image {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
}

.mobile-app-image {
    width: 180px;
    height: auto;
    max-height: 146px;
    object-fit: contain;
}

.app-download-text {
    flex: 1;
    min-width: 0;
}

.app-download-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
    line-height: 1.3;
}

.app-download-description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--gray);
    margin-bottom: 1rem;
}

.app-store-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.app-store-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #1f2937;
    color: var(--white);
    flex-shrink: 0;
}

.app-store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.app-store-btn i {
    font-size: 1.5rem;
}

.app-store-btn div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.app-store-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    opacity: 0.8;
}

.app-store-name {
    font-size: 0.875rem;
    font-weight: 600;
}

.app-store-btn.google-play {
    background-color: #1f2937;
}

.app-store-btn.app-store {
    background-color: #1f2937;
}

.app-store-btn.unavailable {
    background-color: #9ca3af;
    cursor: not-allowed;
    opacity: 0.7;
    pointer-events: none;
}

.app-store-btn.unavailable:hover {
    transform: none;
    box-shadow: none;
}

/* Footer */
.footer {
    background-color: rgba(82, 179, 249, 0.06);
    color: var(--dark-gray);
    padding: 4rem 0 0;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.8fr 1.2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 1.1rem;
}

.footer-section p {
    margin-bottom: 1rem;
    color: var(--gray);
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.brand-text-footer {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-blue);
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--primary-blue);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    color: var(--primary-blue);
    font-size: 1.5rem;
    text-decoration: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--light-gray);
    transition: background-color 0.3s, transform 0.3s;
}

.social-links a:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.instagram-section h4 {
    margin-bottom: 1rem;
}

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

.instagram-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s;
}

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

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

.footer-bottom {
    border-top: 1px solid rgba(229, 231, 235, 0.5);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--gray);
    font-size: 0.875rem;
}

.footer-bottom p {
    margin: 0;
    color: var(--gray);
}

.footer-bottom p a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-bottom p a:hover {
    color: var(--dark-blue);
    text-decoration: underline;
}

.back-to-top {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.back-to-top::after {
    content: "^";
    font-size: 1.25rem;
    line-height: 1;
    display: inline-block;
}

.back-to-top:hover {
    color: var(--primary-blue);
}

/* Breadcrumb */
.breadcrumb-section {
    background: var(--light-gray);
    padding: 1rem 0;
}

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

.breadcrumb a {
    color: var(--gray);
    text-decoration: none;
}

.breadcrumb span {
    color: var(--gray);
}

/* Property Detail Page */
.property-header-section {
    background: var(--light-gray);
    padding: 2rem 0;
}

.property-header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.property-features {
    display: flex;
    gap: 2rem;
    margin: 1rem 0;
    color: var(--gray);
}

.property-location-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--gray);
}

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

.btn-like,
.btn-share,
.btn-print {
    background: var(--white);
    border: 1px solid #e5e7eb;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
}

.property-price-header {
    text-align: right;
}

.price-tag {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-blue);
}

.price-label {
    color: var(--gray);
    font-size: 0.9rem;
}

.property-images-section {
    margin: 2rem 0;
}

.property-main-image {
    margin-bottom: 1rem;
}

.property-main-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.property-thumbnails {
    display: flex;
    gap: 1rem;
}

.thumbnail {
    width: 150px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
}

.thumbnail:hover {
    border-color: var(--primary-blue);
}

.property-details-container {
    margin: 3rem 0;
}

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

.map-section {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.map-section h2 {
    margin-bottom: 1rem;
}

.map-container {
    margin-bottom: 1rem;
}

.property-address {
    margin-top: 1rem;
}

.property-address p {
    margin-bottom: 0.5rem;
}

.amenities-detail-section {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

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

.amenity-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--light-gray);
    border-radius: 5px;
}

.documents-section {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.document-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 5px;
    margin-bottom: 0.5rem;
    text-decoration: none;
    color: var(--dark-gray);
    transition: background-color 0.3s;
}

.document-item:hover {
    background-color: var(--light-gray);
}

.contact-seller-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-card h3 {
    margin-bottom: 1.5rem;
}

.seller-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.seller-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gray);
}

.seller-details h4 {
    margin-bottom: 0.25rem;
}

.seller-details p {
    color: var(--gray);
    font-size: 0.9rem;
}

.btn-call {
    display: block;
    width: 100%;
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 1rem;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.btn-whatsapp-full {
    display: block;
    width: 100%;
    background-color: var(--green);
    color: var(--white);
    padding: 1rem;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    font-weight: 500;
}

.related-properties-section {
    margin: 4rem 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.btn-see-all {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
}

/* About Page */
.about-hero {
    position: relative;
    height: 300px;
    background-image: url('/images/about-hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.about-hero-title {
    position: relative;
    z-index: 1;
    color: var(--white);
    font-size: 3rem;
    font-weight: bold;
}

.about-jaaydaad-section,
.mission-vision-section {
    padding: 4rem 0;
}

.about-content-layout,
.mission-content-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.main-about-image {
    position: relative;
}

.main-about-image img {
    width: 100%;
    border-radius: 8px;
}

.happy-customers-card {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.happy-customers-card h4 {
    margin-bottom: 1rem;
}

.customer-avatars {
    display: flex;
    gap: -10px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-gray);
    border: 2px solid var(--white);
    margin-left: -10px;
}

.more-badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-left: -10px;
}

.section-label {
    color: var(--pink-red);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

.about-text h2,
.mission-text h2 {
    font-size: 2.5rem;
    margin: 1rem 0;
    color: var(--dark-gray);
}

.about-text p,
.mission-content p {
    margin-bottom: 1.5rem;
    color: var(--gray);
    line-height: 1.8;
}

.stats-row {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--gray);
    margin: 0;
}

.btn-see-properties {
    display: inline-block;
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
}

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

.mission-point h4 {
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.mission-image img {
    width: 100%;
    border-radius: 8px;
}

.sell-property-cta {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    padding: 4rem 0;
    color: var(--white);
}

.cta-content-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.cta-label {
    color: var(--white);
    opacity: 0.9;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
}

.cta-text h2 {
    font-size: 2.5rem;
    margin: 1rem 0;
    color: var(--white);
}

.cta-text p {
    margin-bottom: 2rem;
    line-height: 1.8;
    opacity: 0.9;
}

.btn-list-property {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-blue);
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
}

.cta-image {
    position: relative;
}

.cta-image img {
    width: 100%;
    border-radius: 8px;
}

.cta-badge {
    position: absolute;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    color: var(--white);
}

.badge-1 {
    top: 20px;
    right: 20px;
    background-color: var(--pink-red);
}

.badge-2 {
    bottom: 20px;
    left: 20px;
    background-color: var(--green);
}

.why-choose-section {
    padding: 4rem 0;
    text-align: center;
}

.why-choose-section h2 {
    font-size: 2.5rem;
    margin: 1rem 0 3rem;
    color: var(--dark-gray);
}

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

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin: 0 auto 1rem;
}

.feature-icon.blue {
    background-color: var(--primary-blue);
}

.feature-icon.red {
    background-color: #ef4444;
}

.feature-icon.green {
    background-color: var(--green);
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.feature-card p {
    color: var(--gray);
    line-height: 1.6;
}

.error-container {
    text-align: center;
    padding: 4rem 2rem;
}

.error-container h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.btn-home {
    display: inline-block;
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .properties-layout {
        grid-template-columns: 300px 1fr;
    }

    .property-details-layout {
        grid-template-columns: 1fr;
    }

    .contact-seller-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .navbar-content {
        flex-wrap: wrap;
    }

    .navbar-nav {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }

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

    .search-container {
        flex-direction: column;
    }

    .properties-layout {
        grid-template-columns: 1fr;
    }

    .filters-sidebar {
        position: static;
    }

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

    .property-card-row {
        flex-direction: column;
    }

    .property-card-image-wrapper {
        width: 100%;
        min-width: 100%;
        height: 250px;
    }

    .about-content-layout,
    .mission-content-layout,
    .cta-content-layout {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .property-header-content {
        flex-direction: column;
    }

    .property-price-header {
        text-align: left;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .experience-cta-section {
        max-width: 100%;
        width: calc(100% - 2rem);
        height: auto;
        padding: 2rem 1rem;
        margin: 2rem 1rem;
        border-radius: 15px;
    }

    .experience-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 0 1.5rem;
        height: auto;
    }

    .experience-cta-form {
        width: 100%;
        flex-direction: column;
    }

    .email-input {
        min-width: 100%;
    }

    .app-download-section {
        margin-top: -30px;
        margin-left: 0;
        margin-right: 0;
    }

    .app-download-content {
        width: 100%;
        max-width: 100%;
        height: auto;
        margin-left: 12px;
        padding: 1.5rem 1rem;
        flex-direction: column;
        text-align: center;
    }

    .mobile-app-image {
        width: 120px;
        max-height: 146px;
    }

    .app-download-title {
        font-size: 1.25rem;
    }

    .app-download-description {
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }

    .app-store-btn {
        padding: 0.4rem 0.75rem;
        gap: 0.4rem;
    }

    .app-store-btn i {
        font-size: 1.25rem;
    }

    .trusted-logo-item {
        max-width: 120px;
        height: 60px;
    }

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

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .about-hero-title {
        font-size: 2rem;
    }

    .about-text h2,
    .mission-text h2,
    .cta-text h2 {
        font-size: 1.75rem;
    }

    .mobile-app-image {
        max-height: 250px;
    }

    .trusted-logo-item {
        max-width: 100px;
        height: 50px;
    }

    .trusted-logos {
        gap: 1.5rem;
    }
}

