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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    overflow-x: hidden;
    background-color: #f0f1f5;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.85);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Property pages navbar - black at top */
.property-page .navbar {
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.property-page .navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
}

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

.nav-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.1em;
    font-family: 'Playfair Display', serif;
    text-decoration: none;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.nav-logo:hover {
    opacity: 0.8;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 5px;
    z-index: 101;
    position: relative;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 400;
    transition: opacity 0.3s ease;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.nav-menu li a:hover {
    opacity: 0.8;
}

.nav-menu li a:hover::after {
    width: 100%;
}

.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000000;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0) 30%,
        rgba(0, 0, 0, 0) 70%,
        rgba(0, 0, 0, 0.15) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    color: #ffffff;
}

.hero-title {
    font-size: 12rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    font-family: 'Playfair Display', serif;
    text-align: left;
    white-space: nowrap;
}

.hero-subtitle {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    font-family: 'Georgia', serif;
    font-style: italic;
    text-align: left;
    color: #ffffff;
}

.typing-text {
    display: inline-block;
}

.typing-cursor {
    display: inline-block;
    animation: blink 1s infinite;
    margin-left: 2px;
    font-weight: 300;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

/* Scroll-triggered animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Staggered animation delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

.hero-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 500px;
    margin: 0;
}

.hero-description {
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    color: rgba(255, 255, 255, 0.95);
    text-align: left;
}

.cta-button {
    display: inline-block;
    padding: 1.4rem 3.5rem;
    background-color: #ffffff;
    color: #000000;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
    font-family: 'Georgia', serif;
}

.cta-button:hover {
    background-color: transparent;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
}

@media (max-width: 1200px) {
    .hero-image {
        object-fit: cover;
        object-position: 65% center;
    }
    
    .hero-title {
        font-size: 9rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.4rem;
    }
    
    .nav-container {
        padding: 0 2rem;
    }
    
    .hero-content {
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 100vh;
    }
    
    .hero-image {
        object-fit: cover;
        object-position: 70% center;
    }
    
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        flex-direction: column;
        background-color: #000000c7;
        backdrop-filter: blur(20px);
        width: 100%;
        max-width: 400px;
        height: 100vh;
        padding: 5rem 2rem 2rem;
        gap: 0;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 99;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        opacity: 0;
        transform: translateX(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.3s; }
    
    .nav-menu li a {
        font-size: 1.2rem;
        display: block;
        padding: 1.2rem 1rem;
        color: #ffffff;
        text-decoration: none;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        font-weight: 400;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .nav-menu li a::after {
        display: none;
    }
    
    .nav-menu li a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 3px;
        height: 100%;
        background-color: #ffffff;
        transform: scaleY(0);
        transition: transform 0.3s ease;
    }
    
    .nav-menu li a:hover,
    .nav-menu li a:active {
        background-color: rgba(255, 255, 255, 0.05);
        padding-left: 1.5rem;
        color: #ffffff;
    }
    
    .nav-menu li a:hover::before,
    .nav-menu li a:active::before {
        transform: scaleY(1);
    }
    
    /* Overlay when menu is open */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.6);
        opacity: 1;
        pointer-events: auto;
        transition: opacity 0.4s ease;
        z-index: 98;
    }
    
    .hero-content {
        padding: 0 1.5rem;
        justify-content: flex-end;
        padding-bottom: 4rem;
    }
    
    .hero-title {
        font-size: 5rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
    
    .hero-bottom-content {
        max-width: 100%;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-image {
        object-fit: cover;
        object-position: 75% center;
    }
    
    .nav-logo {
        font-size: 1.4rem;
    }
    
    .nav-menu {
        max-width: 100%;
        padding: 4rem 1.5rem 2rem;
    }
    
    .nav-menu li a {
        font-size: 1.1rem;
        padding: 1rem 0.8rem;
    }
    
    .nav-menu li a:hover,
    .nav-menu li a:active {
        padding-left: 1.2rem;
    }
    
    .hero-content {
        padding: 0 1rem;
        justify-content: flex-end;
        padding-bottom: 3rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
        line-height: 1;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        padding: 0.9rem 1.8rem;
        font-size: 0.9rem;
    }
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background-color: #f0f1f5;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.about-header {
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: 4rem;
    font-weight: 700;
    color: #000000;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-name {
    font-size: 2.5rem;
    font-weight: 400;
    color: #000000;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.1em;
}

.about-content {
    margin-bottom: 2rem;
}

.about-text {
    max-width: 900px;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 1.2rem;
    font-family: 'Georgia', serif;
}

.about-intro {
    font-weight: 400;
}

.about-detail {
    font-weight: 300;
}

.about-values {
    font-weight: 300;
}

.about-cta-wrapper {
    margin: 2.5rem 0;
    display: flex;
    align-items: center;
}

.about-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: #000000;
    text-decoration: none;
    font-family: 'Georgia', serif;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.about-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #000000;
    transition: width 0.3s ease;
}

.about-cta:hover::after {
    width: 100%;
}

.about-cta-text {
    transition: transform 0.3s ease;
}

.about-cta:hover .about-cta-text {
    transform: translateX(-5px);
}

.about-arrow {
    width: 24px;
    height: 24px;
    stroke: #000000;
    transition: transform 0.3s ease;
}

.about-cta:hover .about-arrow {
    transform: translateX(5px);
}

/* Stats Section - Newspaper Style */
.stats-section {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    width: 100%;
    padding: 2rem 0;
    position: relative;
}

.stat-item {
    flex: 1;
    text-align: left;
    padding: 1.5rem 1rem;
    color: #000000;
    border-right: 1px solid rgba(0, 0, 0, 0.059);
    transition: background-color 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    position: relative;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-item:nth-child(4) {
    animation-delay: 0.4s;
}

.stat-item:hover {
    background-color: #f0f1f5;
}

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

.stat-number {
    font-size: 4.5rem;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    line-height: 1.1;
    margin-bottom: 0.3rem;
    color: #000000;
    transition: all 0.3s ease;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 400;
    font-family: 'Georgia', serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #000000;
    line-height: 1.3;
    border-top: 1px solid rgba(0, 0, 0, 0.3);
    padding-top: 0.5rem;
    margin-top: 0.3rem;
}

/* Responsive Styles for About Section */
@media (max-width: 1200px) {
    .about-section {
        padding: 3rem 0;
    }
    
    .about-container {
        padding: 0 2rem;
    }
    
    .about-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 3.5rem;
    }
    
    .about-name {
        font-size: 2rem;
    }
    
    .about-text p {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .about-cta-wrapper {
        margin: 2rem 0;
    }
    
    .about-cta {
        font-size: 1rem;
    }
    
    .stats-section {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 1.5rem 0;
    }
    
    .stat-item {
        flex: 1 1 calc(50% - 0.5rem);
        padding: 1.2rem 0.8rem;
        border-right: 1px solid rgba(0, 0, 0, 0.059);
    }
    
    .stat-item:nth-child(2n) {
        border-right: none;
    }
    
    .stat-item:last-child {
        border-right: none;
    }
    
    .stat-number {
        font-size: 3.5rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
        padding-top: 0.4rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 2.5rem 0;
    }
    
    .about-container {
        padding: 0 1.5rem;
    }
    
    .about-header {
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 0.3rem;
    }
    
    .about-name {
        font-size: 1.8rem;
    }
    
    .about-text p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .about-content {
        margin-bottom: 1.5rem;
    }
    
    .about-cta-wrapper {
        margin: 1.5rem 0;
    }
    
    .about-cta {
        font-size: 0.95rem;
    }
    
    .about-arrow {
        width: 20px;
        height: 20px;
    }
    
    .stats-section {
        flex-wrap: wrap;
        gap: 0.8rem;
        margin-top: 1.5rem;
        padding: 1.5rem 0;
    }
    
    .stat-item {
        flex: 1 1 calc(50% - 0.4rem);
        padding: 1rem 0.8rem;
        border-right: 1px solid rgba(0, 0, 0, 0.059);
    }
    
    .stat-item:nth-child(2n) {
        border-right: none;
    }
    
    .stat-item:last-child {
        border-right: none;
    }
    
    .stat-number {
        font-size: 2.8rem;
        margin-bottom: 0.2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
        padding-top: 0.4rem;
        margin-top: 0.2rem;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 2rem 0;
    }
    
    .about-container {
        padding: 0 1rem;
    }
    
    .about-header {
        margin-bottom: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 0.3rem;
    }
    
    .about-name {
        font-size: 1.5rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 0.9rem;
    }
    
    .about-content {
        margin-bottom: 1.2rem;
    }
    
    .about-cta-wrapper {
        margin: 1.2rem 0;
    }
    
    .about-cta {
        font-size: 0.9rem;
        gap: 0.8rem;
    }
    
    .about-arrow {
        width: 18px;
        height: 18px;
    }
    
    .stats-section {
        flex-wrap: wrap;
        gap: 0.8rem;
        margin-top: 1.2rem;
        padding: 1.2rem 0;
    }
    
    .stat-item {
        flex: 1 1 calc(50% - 0.4rem);
        padding: 1rem 0.8rem;
        border-right: 1px solid rgba(0, 0, 0, 0.059);
        border-bottom: none;
    }
    
    .stat-item:nth-child(2n) {
        border-right: none;
    }
    
    .stat-item:last-child {
        border-right: none;
    }
    
    .stat-number {
        font-size: 2.2rem;
        margin-bottom: 0.2rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
        padding-top: 0.3rem;
        margin-top: 0.2rem;
    }
}

/* Properties Section */
.properties-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.properties-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.properties-header {
    margin-bottom: 2.5rem;
}

.properties-carousel-wrapper {
    position: relative;
}

.carousel-controls {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-direction: row;
}

.carousel-btn {
    display: none;
    background-color: #000000;
    color: #ffffff;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-direction: row;
    position: static;
    transform: none;
    z-index: 1;
}

.carousel-btn:hover {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #000000;
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
}

.carousel-indicators {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    flex-direction: row;
}

.carousel-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-indicator.active {
    background-color: #000000;
    width: 24px;
    border-radius: 4px;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    transition: transform 0.5s ease;
}

.property-item {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
}

.property-item.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.property-item:hover {
    border-color: rgba(0, 0, 0, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px) scale(1.02);
}

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

.property-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

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

.property-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0, 0.3);
    font-family: 'Georgia', serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.property-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.property-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
    font-family: 'Playfair Display', serif;
    margin: 0;
    letter-spacing: 0.02em;
}

.property-location {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.6);
    font-family: 'Georgia', serif;
    font-style: italic;
    margin: 0;
}

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

.property-detail {
    font-size: 0.9rem;
    color: #000000;
    font-family: 'Georgia', serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 400;
}

.property-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    font-family: 'Playfair Display', serif;
    margin-top: 0.5rem;
    letter-spacing: 0.02em;
}

.property-cta {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: 'Georgia', serif;
    margin-top: 1rem;
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #000000;
}

.property-cta:hover {
    background-color: transparent;
    color: #000000;
}

/* Responsive Styles for Properties Section */
@media (max-width: 1200px) {
    .properties-section {
        padding: 3rem 0;
    }
    
    .properties-container {
        padding: 0 2rem;
    }
    
    .properties-header {
        margin-bottom: 2rem;
    }
    
    .properties-grid {
        gap: 1.5rem;
    }
    
    .property-image {
        height: 250px;
    }
    
    .property-content {
        padding: 1.2rem;
    }
    
    .property-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .properties-section {
        padding: 2.5rem 0;
    }
    
    .properties-container {
        padding: 0 1.5rem;
    }
    
    .properties-header {
        margin-bottom: 1.5rem;
    }
    
    .properties-carousel-wrapper {
        overflow: hidden;
        padding: 0 3rem;
        position: relative;
    }
    
    .carousel-controls {
        display: flex;
    }
    
    .carousel-btn {
        display: flex;
    }
    
    .carousel-indicators {
        display: flex;
    }
    
    .properties-grid {
        display: flex;
        grid-template-columns: none;
        gap: 0;
        transform: translateX(0);
        scroll-snap-type: x mandatory;
        will-change: transform;
    }
    
    .property-item {
        width: 100%;
        min-width: 100%;
        flex-shrink: 0;
        margin-right: 1.5rem;
        scroll-snap-align: start;
    }
    
    .property-item:last-child {
        margin-right: 0;
    }
    
    .property-image {
        height: 220px;
    }
    
    .property-content {
        padding: 1rem;
        gap: 0.6rem;
    }
    
    .property-title {
        font-size: 1.4rem;
    }
    
    .property-location {
        font-size: 0.95rem;
    }
    
    .property-details {
        gap: 1rem;
    }
    
    .property-detail {
        font-size: 0.85rem;
    }
    
    .property-price {
        font-size: 1.3rem;
    }
    
    .property-cta {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
        margin-top: 0.8rem;
    }
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 4rem 0;
    background-color: #f0f1f5;
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/newspaperbg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(4px);
    z-index: 0;
}

.why-choose-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.376);
    z-index: 1;
}

.why-choose-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    position: relative;
    z-index: 2;
}

.why-choose-header {
    margin-bottom: 3rem;
    text-align: center;
}

.why-choose-section .section-title {
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.why-choose-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Georgia', serif;
    font-style: italic;
    margin-top: 0.5rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.why-choose-item {
    background-color: #ffffff;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px);
}

.why-choose-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.why-choose-item:hover {
    border-color: rgba(0, 0, 0, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.why-choose-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.1);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.why-choose-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    font-family: 'Playfair Display', serif;
    margin: 0 0 1rem 0;
    letter-spacing: 0.02em;
}

.why-choose-text {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.7);
    font-family: 'Georgia', serif;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Styles for Why Choose Us Section */
@media (max-width: 1200px) {
    .why-choose-section {
        padding: 3rem 0;
    }
    
    .why-choose-container {
        padding: 0 3rem;
    }
    
    .why-choose-grid {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 2.5rem 0;
    }
    
    .why-choose-container {
        padding: 0 1.5rem;
    }
    
    .why-choose-header {
        margin-bottom: 2rem;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .why-choose-item {
        padding: 1.5rem;
    }
    
    .why-choose-number {
        font-size: 2.5rem;
    }
    
    .why-choose-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .why-choose-section {
        padding: 2rem 0;
    }
    
    .why-choose-container {
        padding: 0 1rem;
    }
    
    .why-choose-header {
        margin-bottom: 1.5rem;
    }
    
    .why-choose-subtitle {
        font-size: 1rem;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-choose-item {
        padding: 1.5rem;
    }
    
    .why-choose-number {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .why-choose-title {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .why-choose-text {
        font-size: 0.95rem;
    }
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.contact-header {
    margin-bottom: 3rem;
    text-align: center;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: rgba(0, 0, 0, 0.6);
    font-family: 'Georgia', serif;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-item-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #000000;
    font-family: 'Georgia', serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.8rem;
}

.contact-link {
    font-size: 1.1rem;
    color: #000000;
    text-decoration: none;
    font-family: 'Georgia', serif;
    transition: color 0.3s ease;
    display: inline-block;
}

.contact-link:hover {
    color: rgba(0, 0, 0, 0.6);
}

.contact-text {
    font-size: 1.1rem;
    color: #000000;
    font-family: 'Georgia', serif;
    margin: 0;
}

.social-media {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-top: 0.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    color: #000000;
    transform: translateY(-2px);
}

.social-link svg,
.social-link img {
    width: 24px;
    height: 24px;
    display: block;
}

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

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

.form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #000000;
    font-family: 'Georgia', serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-input,
.form-textarea,
.form-select,
select.form-input {
    padding: 0.9rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background-color: #ffffff;
    color: #000000;
    font-size: 1rem;
    font-family: 'Georgia', serif;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

select.form-input,
.form-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: #000000;
    background-color: #f0f1f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-group {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.form-group.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.form-submit {
    padding: 1rem 2.5rem;
    background-color: #000000;
    color: #ffffff;
    border: 1px solid #000000;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: 'Georgia', serif;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 0.5rem;
}

.form-submit:hover {
    background-color: transparent;
    color: #000000;
}

.form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

/* Form Messages */
.form-message {
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
    border-radius: 0;
    font-size: 1rem;
    line-height: 1.6;
    animation: slideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Georgia', serif;
    position: relative;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message-success {
    background-color: #ffffff;
    color: #000000;
    border-color: #000000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-message-success::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #000000;
    color: #ffffff;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    flex-shrink: 0;
    font-family: system-ui, sans-serif;
}

.form-message-success .message-content {
    flex: 1;
}

.form-message-success .message-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.02em;
}

.form-message-success .message-text {
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.7);
    font-style: italic;
}

.form-message-error {
    background-color: #ffffff;
    color: #000000;
    border-color: #e53e3e;
    box-shadow: 0 4px 12px rgba(229, 62, 62, 0.15);
}

.form-message-error::before {
    content: '✕';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #e53e3e;
    color: #ffffff;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    flex-shrink: 0;
    font-family: system-ui, sans-serif;
}

/* Responsive Styles for Contact Section */
@media (max-width: 1200px) {
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-container {
        padding: 0 3rem;
    }
    
    .contact-content {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 2rem 0;
    }
    
    .contact-container {
        padding: 0 1.5rem;
    }
    
    .contact-header {
        margin-bottom: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-info {
        gap: 1.5rem;
    }
    
    .contact-item {
        padding-bottom: 1rem;
    }
    
    .contact-form {
        gap: 1.2rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 1.5rem 0;
    }
    
    .contact-container {
        padding: 0 1rem;
    }
    
    .contact-header {
        margin-bottom: 1rem;
    }
    
    .contact-subtitle {
        font-size: 0.9rem;
        margin-top: 0.3rem;
    }
    
    .contact-content {
        gap: 1.5rem;
        display: flex;
        flex-direction: column;
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        width: 100%;
        max-width: 100%;
    }
    
    .contact-info {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        align-items: center;
    }
    
    .contact-item {
        padding-bottom: 0;
        border-bottom: none;
        flex: 0 0 auto;
    }
    
    .contact-item:nth-child(4) {
        flex-basis: 100%;
        text-align: center;
        margin-top: 0.5rem;
    }
    
    .contact-item-title {
        display: none;
    }
    
    .contact-link,
    .contact-text {
        font-size: 0.85rem;
        margin: 0;
    }
    
    .contact-item:nth-child(4) .contact-text {
        font-size: 0.8rem;
    }
    
    .contact-item .social-media {
        justify-content: center;
        margin-top: 0.5rem;
        gap: 1rem;
    }
    
    .contact-form {
        gap: 1rem;
        order: 3;
        width: 100%;
        max-width: 100%;
    }
    
    .form-group {
        gap: 0.4rem;
    }
    
    .form-label {
        font-size: 0.85rem;
    }
    
    .form-input,
    .form-textarea,
    .form-select {
        padding: 0.7rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .form-textarea {
        min-height: 120px;
    }
    
    .form-submit {
        width: 100%;
        align-self: stretch;
        padding: 0.8rem 2rem;
        font-size: 0.85rem;
        margin-top: 0.3rem;
    }
}

/* Footer */
.footer {
    background-color: #000000;
    color: #ffffff;
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 2.5rem;
}

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

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    margin: 0;
    letter-spacing: 0.02em;
}

.footer-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Georgia', serif;
    font-style: italic;
    margin: 0;
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.footer-cta-text {
    font-size: 0.95rem;
    font-family: 'Georgia', serif;
    letter-spacing: 0.05em;
    transition: transform 0.3s ease;
    position: relative;
}

.footer-cta-text::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.footer-cta:hover .footer-cta-text::after {
    width: 115%;
}

.footer-cta:hover {
    color: #ffffff;
}

.footer-cta-text {
    font-size: 0.95rem;
    font-family: 'Georgia', serif;
    letter-spacing: 0.05em;
    transition: transform 0.3s ease;
}

.footer-cta:hover .footer-cta-text {
    transform: translateX(5px);
}

.footer-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.footer-cta:hover .footer-arrow {
    transform: translateX(5px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

.footer-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    font-family: 'Georgia', serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-link {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-family: 'Georgia', serif;
    transition: color 0.3s ease;
}

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

.footer-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Georgia', serif;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 0.5rem;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-link:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-social-link svg,
.footer-social-link img {
    width: 20px;
    height: 20px;
    display: block;
}

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

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Georgia', serif;
    margin: 0;
    letter-spacing: 0.05em;
}

/* Responsive Styles for Footer */
@media (max-width: 1200px) {
    .footer {
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer-container {
        padding: 0 3rem;
    }
    
    .footer-content {
        gap: 3rem;
    }
    
    .footer-links {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 0 1rem;
    }
    
    .footer-container {
        padding: 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-logo {
        font-size: 1.8rem;
    }
    
    .footer-brand {
        gap: 0.4rem;
    }
    
    .footer-cta {
        margin-top: 0.8rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 1.5rem 0 0.8rem;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-content {
        gap: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-brand {
        gap: 0.3rem;
    }
    
    .footer-logo {
        font-size: 1.5rem;
    }
    
    .footer-tagline {
        font-size: 0.9rem;
    }
    
    .footer-cta {
        margin-top: 0.6rem;
    }
    
    .footer-cta-text {
        font-size: 0.85rem;
    }
    
    .footer-arrow {
        width: 18px;
        height: 18px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .footer-column:first-child {
        display: none;
    }
    
    .footer-column {
        gap: 0.6rem;
    }
    
    .footer-title {
        font-size: 0.8rem;
    }
    
    .footer-list {
        gap: 0.6rem;
    }
    
    .footer-link,
    .footer-text {
        font-size: 0.85rem;
    }
    
    .footer-social {
        gap: 0.8rem;
        margin-top: 0.3rem;
    }
    
    .footer-social-link svg,
    .footer-social-link img {
        width: 18px;
        height: 18px;
    }
    
    .footer-bottom {
        padding-top: 1.2rem;
    }
    
    .footer-copyright {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .properties-section {
        padding: 2rem 0;
    }
    
    .properties-container {
        padding: 0 1rem;
    }
    
    .properties-header {
        margin-bottom: 1.2rem;
    }
    
    .properties-carousel-wrapper {
        padding: 0 2.5rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .properties-grid {
        gap: 0;
    }
    
    .property-item {
        margin-right: 1.2rem;
    }
    
    .property-image {
        height: 200px;
    }
    
    .property-content {
        padding: 0.9rem;
        gap: 0.5rem;
    }
    
    .property-title {
        font-size: 1.2rem;
    }
    
    .property-location {
        font-size: 0.9rem;
    }
    
    .property-details {
        gap: 0.8rem;
        padding-top: 0.4rem;
    }
    
    .property-detail {
        font-size: 0.8rem;
    }
    
    .property-price {
        font-size: 1.1rem;
    }
    
    .property-cta {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
        margin-top: 0.6rem;
    }
}

/* Property Detail Pages */
.property-hero {
    position: relative;
    width: 100vw;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000000;
    margin-top: 70px;
}

.property-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.property-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.2) 30%,
        rgba(0, 0, 0, 0.3) 70%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.property-hero-overlay::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        transparent 100%
    );
    pointer-events: none;
}

.property-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    color: #ffffff;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    transition: opacity 0.3s ease, transform 0.3s ease;
    font-family: 'Georgia', serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.back-link:hover {
    opacity: 1;
    transform: translateX(-5px);
}

.property-hero-title {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8), 0 4px 10px rgba(0, 0, 0, 0.6);
    font-family: 'Playfair Display', serif;
}

.property-hero-location {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8), 0 1px 5px rgba(0, 0, 0, 0.6);
    font-family: 'Georgia', serif;
    font-style: italic;
    color: #ffffff;
}

.property-hero-price {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8), 0 4px 10px rgba(0, 0, 0, 0.6);
    font-family: 'Playfair Display', serif;
    color: #ffffff;
}

.property-detail-section {
    padding: 5rem 0;
    background-color: #f0f1f5;
}

.property-detail-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

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

.property-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.property-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 1.5rem;
    font-family: 'Georgia', serif;
}

.property-features {
    margin-top: 2rem;
}

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

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.feature-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item li {
    font-size: 1rem;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    font-family: 'Georgia', serif;
}

.feature-item li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #000000;
    font-weight: bold;
}

.property-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: sticky;
    top: 100px;
}

.property-info-card,
.property-contact-card {
    background-color: #ffffff;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.info-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.info-label {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.7);
    font-family: 'Georgia', serif;
}

.info-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    font-family: 'Georgia', serif;
}

.contact-card-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 1.5rem;
    font-family: 'Georgia', serif;
}

.property-contact-btn {
    display: inline-block;
    width: 100%;
    padding: 1.2rem 2rem;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #000000;
    font-family: 'Georgia', serif;
    margin-bottom: 1.5rem;
}

.property-contact-btn:hover {
    background-color: transparent;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-quick-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quick-contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #000000;
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.3s ease;
    font-family: 'Georgia', serif;
}

.quick-contact-link:hover {
    opacity: 0.7;
}

.quick-contact-link svg {
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .property-detail-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 3rem;
    }
    
    .property-detail-sidebar {
        position: static;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .property-section-title {
        font-size: 2.2rem;
    }
    
    .property-description {
        font-size: 1.05rem;
    }
    
    .feature-item h3 {
        font-size: 1.2rem;
    }
    
    .info-card-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .property-hero {
        height: 50vh;
        min-height: 400px;
        margin-top: 70px;
    }
    
    .property-hero-content {
        padding: 0 1.5rem;
    }
    
    .property-hero-title {
        font-size: 3rem;
    }
    
    .property-hero-location {
        font-size: 1.3rem;
    }
    
    .property-hero-price {
        font-size: 2rem;
    }
    
    .property-detail-section {
        padding: 3rem 0;
    }
    
    .property-detail-container {
        padding: 0 1.5rem;
        gap: 2rem;
    }
    
    .property-detail-main {
        gap: 2rem;
    }
    
    .property-section-title {
        font-size: 2rem;
        margin-bottom: 1.2rem;
    }
    
    .property-description {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.2rem;
    }
    
    .property-features {
        margin-top: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1.2rem;
    }
    
    .feature-item h3 {
        font-size: 1.15rem;
        margin-bottom: 0.8rem;
    }
    
    .feature-item li {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 0.7rem;
    }
    
    .property-detail-sidebar {
        gap: 1.5rem;
    }
    
    .property-info-card,
    .property-contact-card {
        padding: 1.5rem;
    }
    
    .info-card-title {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }
    
    .info-item {
        padding: 0.8rem 0;
    }
    
    .info-label {
        font-size: 0.95rem;
    }
    
    .info-value {
        font-size: 1rem;
    }
    
    .contact-card-text {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }
    
    .property-contact-btn {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .quick-contact-link {
        font-size: 0.9rem;
    }
    
    .back-link {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
    
    /* Contact section on property pages */
    .property-page .contact-section {
        padding: 3rem 0;
    }
    
    .property-page .contact-container {
        padding: 0 1.5rem;
    }
    
    .property-page .contact-header {
        margin-bottom: 2rem;
    }
    
    .property-page .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .property-hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .property-hero-content {
        padding: 0 1rem;
    }
    
    .property-hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .property-hero-location {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .property-hero-price {
        font-size: 1.5rem;
    }
    
    .property-detail-section {
        padding: 2rem 0;
    }
    
    .property-detail-container {
        padding: 0 1rem;
        gap: 1.5rem;
    }
    
    .property-detail-main {
        gap: 1.5rem;
    }
    
    .property-section-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .property-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .property-features {
        margin-top: 1rem;
    }
    
    .features-grid {
        gap: 1.2rem;
        margin-top: 1rem;
    }
    
    .feature-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.7rem;
    }
    
    .feature-item li {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 0.6rem;
        padding-left: 1.2rem;
    }
    
    .property-detail-sidebar {
        gap: 1.2rem;
    }
    
    .property-info-card,
    .property-contact-card {
        padding: 1.2rem;
    }
    
    .info-card-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .info-item {
        padding: 0.7rem 0;
        flex-wrap: wrap;
    }
    
    .info-label {
        font-size: 0.9rem;
        width: 100%;
        margin-bottom: 0.3rem;
    }
    
    .info-value {
        font-size: 0.95rem;
        width: 100%;
    }
    
    .contact-card-text {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .property-contact-btn {
        padding: 0.9rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .quick-contact-link {
        font-size: 0.85rem;
        gap: 0.5rem;
    }
    
    .quick-contact-link svg {
        width: 16px;
        height: 16px;
    }
    
    .back-link {
        font-size: 0.8rem;
        margin-bottom: 1.2rem;
    }
    
    /* Contact section on property pages */
    .property-page .contact-section {
        padding: 2rem 0;
    }
    
    .property-page .contact-container {
        padding: 0 1rem;
    }
    
    .property-page .contact-header {
        margin-bottom: 1.5rem;
    }
    
    .property-page .contact-content {
        gap: 1.5rem;
    }
    
    .property-page .contact-item {
        padding: 0.8rem 0;
    }
    
    .property-page .contact-item-title {
        font-size: 0.95rem;
    }
    
    .property-page .contact-link {
        font-size: 0.9rem;
    }
    
    .property-page .form-group {
        margin-bottom: 1rem;
    }
    
    .property-page .form-label {
        font-size: 0.85rem;
    }
    
    .property-page .form-input,
    .property-page .form-textarea,
    .property-page .form-select {
        padding: 0.7rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .property-page .form-textarea {
        min-height: 120px;
    }
    
    .property-page .form-submit {
        padding: 0.9rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* Recommended Properties Section */
.recommended-properties-section {
    padding: 6rem 0;
    background-color: #f0f1f5;
}

.recommended-properties-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.recommended-properties-header {
    text-align: center;
    margin-bottom: 3rem;
}

.recommended-subtitle {
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.6);
    margin-top: 0.5rem;
    font-style: italic;
}

.recommended-properties-carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.recommended-properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    transition: transform 0.5s ease;
}

.recommended-property-card {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.recommended-property-card:hover {
    border-color: rgba(0, 0, 0, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
}

.recommended-property-image {
    width: 100%;
    height: 250px;
    background-color: #f0f1f5;
    overflow: hidden;
    position: relative;
}

.recommended-property-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

.recommended-property-card:hover .recommended-property-img {
    transform: scale(1.05);
}

.recommended-property-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex-grow: 1;
}

.recommended-property-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    font-family: 'Playfair Display', serif;
    margin: 0;
    letter-spacing: 0.02em;
}

.recommended-property-location {
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.6);
    font-style: italic;
    margin: 0;
}

.recommended-property-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 0.5rem 0;
}

.recommended-property-detail {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.7);
    padding: 0.3rem 0.6rem;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 2px;
}

.recommended-property-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #000000;
    font-family: 'Playfair Display', serif;
    margin-top: auto;
}

.recommended-property-cta {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    margin-top: 1rem;
    text-align: center;
    border: 1px solid #000000;
}

.recommended-property-cta:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Recommended properties carousel controls */
.recommended-carousel-controls {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-direction: row;
}

.recommended-carousel-btn {
    display: none;
    background-color: #000000;
    color: #ffffff;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-direction: row;
    position: static;
    transform: none;
    z-index: 1;
}

.recommended-carousel-btn:hover {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #000000;
}

.recommended-carousel-btn svg {
    width: 20px;
    height: 20px;
}

.recommended-carousel-indicators {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    flex-direction: row;
}

.recommended-carousel-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.recommended-carousel-indicator.active {
    background-color: #000000;
    width: 24px;
    border-radius: 4px;
}

/* Responsive styles for recommended properties */
@media (max-width: 1024px) {
    .recommended-properties-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .recommended-properties-section {
        padding: 4rem 0;
    }
    
    .recommended-properties-container {
        padding: 0 2rem;
    }
    
    .recommended-properties-header {
        margin-bottom: 2rem;
    }
    
    .recommended-properties-carousel-wrapper {
        overflow: hidden;
    }
    
    .recommended-properties-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .recommended-carousel-controls {
        display: flex;
    }
    
    .recommended-carousel-btn {
        display: flex;
    }
    
    .recommended-carousel-indicators {
        display: flex;
    }
    
    .recommended-property-image {
        height: 220px;
    }
    
    .recommended-property-content {
        padding: 1.2rem;
    }
    
    .recommended-property-title {
        font-size: 1.3rem;
    }
}

