/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #FBC901;
    --secondary-gold: #FFB302;
    --light-gold: #FBC901;
    --dark-gold: #B8860B;
    --dark-green: #1B4D3E;
    --charcoal: #1B4D3E;
    --slate-grey: #AA6B39;
    --medium-grey: #AA6B39;
    --light-grey: #FAFAD2;
    --cream: #FAFAD2;
    --beige: #FAFAD2;
    --dark-brown: #B8860B;
    --text-dark: #000000;
    --text-light: #666;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    width: auto;
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 6px 15px;
    border-radius: 0px;
    transition: transform 0.6s ease, opacity 0.6s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-right: 2px;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease;
    overflow: hidden;
    border-radius: 8px;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(35%) sepia(85%) saturate(1200%) hue-rotate(25deg) brightness(90%) contrast(85%);
}

.logo:hover .logo-icon {
    transform: scale(1.05);
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-ar {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000000;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: #000000;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s;
    position: relative;
    padding-bottom: 8px;
}

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

.nav-menu a.active {
    color: #000000;
    font-weight: 600;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 2px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        width: 0;
        left: 50%;
    }
    to {
        width: 100%;
        left: 0;
    }
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 2px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-gold);
}

/* Buttons */
.btn {
    padding: 12px 28px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--dark-green);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(27, 77, 62, 0.3);
}

.btn-primary:hover {
    background: #145c49;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 77, 62, 0.5);
}

.btn-secondary {
    background: var(--dark-green);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(27, 77, 62, 0.3);
}

.btn-secondary:hover {
    background: #145c49;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 77, 62, 0.5);
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 50vh;
    background: #1B4D3E;
    display: flex;
    align-items: center;
    margin-top: 0;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 150px 0 100px;
}

.hero-text {
    max-width: 700px;
    text-align: right;
}

.hero-text h1 {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 25px;
    font-weight: 900;
    line-height: 1.3;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-text p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.98);
    margin-bottom: 20px;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.subtitle-en {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.fade-in {
    animation: fadeInUp 1s ease;
}

.fade-in-delay {
    animation: fadeInUp 1s ease 0.2s backwards;
}

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


/* Services Section */
.services {
    padding: 80px 0 80px;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 15px;
    font-weight: 800;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: #000000;
}

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

.service-card {
    background: var(--cream);
    padding: 40px;
    border-radius: 16px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(251, 201, 1, 0.25);
    border-color: var(--primary-gold);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--charcoal);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #000000;
    font-weight: 700;
}

.en-text {
    color: #000000;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 15px;
    opacity: 0.7;
}

.service-card > p {
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-link {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 12px;
}

/* Properties Section */
.properties {
    padding: 80px 0;
    background: var(--cream);
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

.property-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid rgba(27, 77, 62, 0.1);
    cursor: pointer;
}

.property-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(27, 77, 62, 0.2);
    border-color: var(--dark-green);
}

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

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.95);
}

.property-card:hover .property-image img {
    transform: scale(1.08);
    filter: brightness(1);
}

.property-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--dark-green);
    color: var(--white);
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(27, 77, 62, 0.4);
    backdrop-filter: blur(10px);
}

.property-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.property-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: var(--text-dark);
    font-weight: 800;
    text-align: center;
    letter-spacing: 0.5px;
}

.property-location {
    color: var(--text-dark);
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    text-align: center;
    font-weight: 500;
}

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

.btn-full-card {
    width: 100%;
    padding: 16px;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 12px;
    margin-top: 5px;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(27, 77, 62, 0.25);
}

.btn-full-card:hover {
    box-shadow: 0 10px 30px rgba(27, 77, 62, 0.35);
}

/* Register Interest Section */
.register-interest {
    padding: 80px 0;
    background: var(--white);
}

.interest-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.interest-text h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #000000;
    font-weight: 800;
}

.interest-text > p {
    margin-bottom: 30px;
    line-height: 1.8;
    color: #000000;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--cream);
    border-radius: 12px;
}

.contact-item i {
    font-size: 1.8rem;
    color: var(--primary-gold);
}

.contact-item span {
    direction: ltr;
    text-align: left;
}

.contact-item h4 {
    margin-bottom: 8px;
    color: #000000;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    direction: ltr;
    text-align: right;
}

/* Form Styles */
.interest-form {
    background: var(--cream);
    padding: 40px;
    border-radius: 16px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #000000;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--beige);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Cairo', sans-serif;
    transition: border-color 0.3s;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-gold);
}

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

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

/* Footer */
.footer {
    background: var(--dark-green);
    color: var(--white);
    padding: 60px 0 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--slate-grey) 0%, var(--primary-gold) 50%, var(--slate-grey) 100%);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    width: 50px;
    height: 50px;
    color: var(--light-gold);
    border-radius: 8px;
    overflow: hidden;
}

.footer-logo .logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(35%) sepia(85%) saturate(1200%) hue-rotate(25deg) brightness(90%) contrast(85%);
}

.footer-logo h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.footer-logo p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--light-gold);
}

.contact-details p {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 10px;
    direction: ltr;
    text-align: right;
}

.contact-details i {
    color: var(--light-gold);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--light-gold) 100%);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 5px 0;
    font-size: 0.9rem;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--dark-gold) 100%);
    padding: 180px 0 80px;
    text-align: center;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/BackgroundTower (1).jpg') center/cover no-repeat;
    opacity: 0.15;
}

.page-hero h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    text-shadow: 0 3px 20px rgba(44, 62, 80, 0.5);
    font-weight: 900;
}

.page-hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* Content Section */
.content-section {
    padding: 80px 0;
    background: var(--white);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #000000;
}

.content-text > p {
    color: #000000;
    line-height: 1.8;
    margin-bottom: 35px;
    font-size: 1.05rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: start;
}

.feature-item i {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-top: 5px;
}

.feature-item h4 {
    margin-bottom: 5px;
    color: #000000;
}

.feature-item p {
    color: #000000;
    font-size: 0.95rem;
    opacity: 0.7;
}

.content-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

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

/* Contact Page */
.contact-page {
    padding: 80px 0;
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.contact-info-cards h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #000000;
}

.contact-info-cards > p {
    color: #000000;
    margin-bottom: 30px;
}

.info-card {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.info-card:hover {
    transform: translateX(-5px);
    border-left-color: var(--primary-gold);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.15);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--light-grey) 0%, var(--cream) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.5rem;
    color: var(--primary-gold);
}

.info-content h4 {
    margin-bottom: 5px;
    color: #000000;
}

.info-content p {
    color: #000000;
    font-size: 0.9rem;
    opacity: 0.7;
}

.contact-link {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 1.1rem;
    direction: ltr;
    display: inline-block;
}

.contact-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.contact-form-container h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #000000;
}

.contact-form-container > p {
    color: #000000;
    margin-bottom: 30px;
}

/* Custom Notification */
.custom-notification {
    position: fixed;
    top: 100px;
    right: 30px;
    background: white;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(27, 77, 62, 0.3);
    z-index: 10000;
    min-width: 350px;
    max-width: 500px;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
    border-right: 4px solid var(--primary-gold);
}

.custom-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.notification-content i.fa-info-circle {
    font-size: 1.5rem;
    color: var(--primary-gold);
    flex-shrink: 0;
}

.notification-content span {
    flex: 1;
    color: #000000;
    font-size: 0.95rem;
    line-height: 1.5;
}

.notification-close {
    background: none;
    border: none;
    color: #000000;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
    flex-shrink: 0;
    opacity: 0.6;
}

.notification-close:hover {
    opacity: 1;
}

.notification-close i {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .property-layout {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        gap: 40px;
    }
    .navbar {
        top: 10px;
        padding: 8px 15px;
        margin: 0 15px;
        border-radius: 0px;
        max-width: calc(100% - 30px);
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s;
        border-radius: 20px 0 0 20px;
    }

    .nav-menu.active {
        right: 0;
    }

    .mobile-toggle {
        display: block;
    }


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

    .interest-content,
    .content-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .properties-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        margin: 0 10px;
        padding: 4px 8px;
        max-width: calc(100% - 20px);
    }

    .logo-icon {
        width: 50px;
        height: 50px;
    }

    .custom-notification {
        right: 15px;
        left: 15px;
        min-width: auto;
        max-width: none;
        top: 80px;
    }

    .notification-content span {
        font-size: 0.85rem;
    }

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

    .section-header h2 {
        font-size: 2rem;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .hero-content {
        padding: 100px 0 60px;
    }

    .logo-ar {
        font-size: 1rem;
    }

    .nav-actions .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .property-layout {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        gap: 30px;
    }

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

    .contact-info {
        flex-direction: column;
        gap: 15px;
    }

    /* Property Details Mobile Enhancements */
    .property-details {
        padding: 20px 0;
    }

    .property-layout {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        gap: 25px;
    }

    /* Gallery Section - Top */
    .property-gallery {
        order: 1 !important;
        position: static !important;
        margin-bottom: 0;
        width: 100%;
    }

    .main-image {
        margin-bottom: 15px;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .main-image img {
        width: 100%;
        height: 280px;
        object-fit: cover;
    }

    .image-thumbnails {
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    .thumbnail {
        width: 60px;
        height: 45px;
        border-radius: 8px;
        cursor: pointer;
        opacity: 0.7;
        transition: opacity 0.3s ease;
    }

    .thumbnail.active,
    .thumbnail:hover {
        opacity: 1;
    }

    /* Property Info Section - Organized Blocks */
    .property-info {
        order: 2 !important;
        display: flex;
        flex-direction: column;
        gap: 25px;
        width: 100%;
    }

    /* Header Block */
    .property-header {
        background: var(--white);
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        text-align: center;
        margin-bottom: 0;
    }

    .property-header h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
        color: var(--text-dark);
    }

    .property-price {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--primary-gold);
        margin-bottom: 8px;
    }

    .property-status {
        display: inline-block;
        background: var(--primary-gold);
        color: var(--white);
        padding: 6px 15px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
    }

    /* Location Block */
    .property-location {
        background: var(--cream);
        padding: 15px 20px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 1rem;
        color: var(--text-dark);
        margin-bottom: 0;
    }

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

    /* Features Block */
    .property-features {
        background: var(--white);
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        margin-bottom: 0;
    }

    .property-features h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
        color: var(--text-dark);
        text-align: center;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--primary-gold);
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .feature-item {
        background: var(--cream);
        padding: 12px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.9rem;
        color: var(--text-dark);
    }

    .feature-item i {
        color: var(--primary-gold);
        font-size: 1rem;
        width: 16px;
    }

    /* Description Block */
    .property-description {
        background: var(--white);
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        margin-bottom: 0;
    }

    .property-description h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
        color: var(--text-dark);
        text-align: center;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--primary-gold);
    }

    .property-description p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 12px;
        color: var(--text-dark);
        text-align: right;
    }

    /* Amenities Block */
    .property-amenities {
        background: var(--white);
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        margin-bottom: 0;
    }

    .property-amenities h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
        color: var(--text-dark);
        text-align: center;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--primary-gold);
    }

    .property-amenities ul {
        list-style: none;
        padding: 0;
    }

    .property-amenities ul li {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 0;
        font-size: 0.9rem;
        color: var(--text-dark);
        border-bottom: 1px solid var(--cream);
    }

    .property-amenities ul li:last-child {
        border-bottom: none;
    }

    .property-amenities i {
        color: var(--primary-gold);
        font-size: 1rem;
        width: 16px;
    }

    /* Contact Block */
    .property-contact {
        background: linear-gradient(135deg, var(--dark-green) 0%, var(--dark-gold) 100%);
        color: var(--white);
        padding: 25px;
        border-radius: 12px;
        text-align: center;
        margin-top: 0;
    }

    .property-contact h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
        color: var(--white);
    }

    .property-contact p {
        font-size: 0.9rem;
        margin-bottom: 20px;
        color: rgba(255, 255, 255, 0.9);
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin: 20px 0;
    }

    .contact-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        font-size: 0.9rem;
        color: var(--white);
        padding: 8px 0;
    }

    .contact-item i {
        color: var(--primary-gold);
        font-size: 1rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
        background: var(--dark-green);
        color: var(--white);
        border: none;
        border-radius: 25px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .btn:hover {
        background: #145c49;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(27, 77, 62, 0.5);
    }
}

/* Additional Mobile Optimizations for Small Phones */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .property-details {
        padding: 15px 0;
    }

    .property-layout {
        gap: 20px;
    }

    .main-image img {
        height: 220px;
    }

    .thumbnail {
        width: 50px;
        height: 38px;
    }

    .property-header {
        padding: 15px;
    }

    .property-header h2 {
        font-size: 1.6rem;
    }

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

    .property-location {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .property-features,
    .property-description,
    .property-amenities {
        padding: 15px;
    }

    .property-features h3,
    .property-description h3,
    .property-amenities h3 {
        font-size: 1.2rem;
    }

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

    .feature-item {
        padding: 10px;
        font-size: 0.85rem;
    }

    .property-description p {
        font-size: 0.9rem;
    }

    .property-amenities ul li {
        font-size: 0.85rem;
        padding: 8px 0;
    }

    .property-contact {
        padding: 20px;
    }

    .property-contact h3 {
        font-size: 1.2rem;
    }

    .property-contact p {
        font-size: 0.85rem;
    }

    .contact-item {
        font-size: 0.85rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }

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

/* Property Details Page */
.property-details {
    padding: 80px 0;
}

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

.property-gallery {
    position: sticky;
    top: 100px;
}

.main-image {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-thumbnails {
    display: flex;
    gap: 10px;
}

.thumbnail {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.thumbnail.active,
.thumbnail:hover {
    opacity: 1;
}

.property-info {
    padding: 20px 0;
}

.property-header {
    margin-bottom: 30px;
}

.property-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.property-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.property-status {
    display: inline-block;
    background: var(--primary-gold);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

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

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

.property-features {
    margin-bottom: 40px;
}

.property-features h3,
.property-description h3,
.property-amenities h3,
.property-contact h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-gold);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: var(--cream);
    border-radius: 8px;
}

.feature-item i {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.property-description {
    margin-bottom: 40px;
}

.property-description p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.property-amenities {
    margin-bottom: 40px;
}

.property-amenities ul {
    list-style: none;
    padding: 0;
}

.property-amenities li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: var(--text-dark);
}

.property-amenities i {
    color: var(--primary-gold);
}

.property-contact {
    background: var(--cream);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.contact-info {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
}

.contact-item i {
    color: var(--primary-gold);
}

