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

*, *::before, *::after {
    box-sizing: border-box;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

section {
    max-width: 100%;
    overflow-x: hidden;
}

:root {
    --yellow: #FFD43B;
    --black: #000000;
    --gray: #353535;
    --white: #ffffff;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--gray);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Header Styles */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
}


.header-container {
    max-width: 100%;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 250px 1fr 250px;
    align-items: center;
    gap: 40px;
}

.logo a {
    display: block;
    text-decoration: none;
}

.logo img {
    height: 60px;
    transition: transform 0.3s ease;
}

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

.nav-menu {
    justify-self: center;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: width 0.3s ease;
}

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

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

.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    min-width: 180px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border-top: 2px solid var(--yellow);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    padding: 0;
}

.dropdown a {
    display: block;
    padding: 12px 25px;
    font-size: 14px;
}

.dropdown a::after {
    display: none;
}

.dropdown a:hover {
    background: rgba(255, 245, 0, 0.1);
    padding-left: 30px;
}

.phone-contact {
    justify-self: end;
}

.phone-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--yellow);
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    padding: 12px 25px;
    border: 2px solid var(--yellow);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.phone-contact a:hover {
    background: var(--yellow);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 245, 0, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

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

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

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

.desktop-only {
    display: flex;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.carousel-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    animation: zoomEffect 20s infinite;
}

.carousel-item.active {
    opacity: 1;
}

@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    width: 100%;
    padding: 0 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    animation: fadeInUp 1s ease;
}

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

.hero-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 60px;
    line-height: 1.3;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-title-line1,
.hero-title-line2 {
    display: block;
}

.hero-title::after {
    display: none;
}

/* Property Search */
.property-search {
    background: transparent;
    padding: 0;
    animation: slideUp 1s ease 0.3s both;
    align-self: flex-start;
    max-width: 1100px;
    width: 100%;
}

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

.search-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: flex-start;
}

.tab-btn {
    padding: 8px 24px;
    border: none;
    background: var(--yellow);
    color: var(--black);
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.tab-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 211, 59, 0.3);
}

.tab-btn.active {
    background: var(--white);
    color: var(--black);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.search-fields {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 0.8fr auto;
    gap: 15px;
    align-items: end;
}

.search-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.search-field label {
    font-weight: 600;
    color: var(--white);
    font-size: 13px;
    letter-spacing: 0.3px;
    margin-bottom: 5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.search-field select,
.search-field input {
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    background: var(--white);
    color: #555;
    transition: all 0.3s ease;
    outline: none;
    height: 48px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.search-field select:focus,
.search-field input:focus {
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px rgba(255, 245, 0, 0.1);
}

.search-field select:hover,
.search-field input:hover {
    border-color: var(--yellow);
}

.price-field .price-inputs {
    display: flex;
    gap: 10px;
    align-items: center;
}

.currency-select {
    width: 100px;
}

.price-inputs input {
    flex: 1;
}

.separator {
    color: var(--gray);
    font-weight: 700;
}

.search-btn {
    padding: 0;
    width: 48px;
    height: 48px;
    background: var(--yellow);
    border: none;
    border-radius: 6px;
    color: var(--black);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.search-btn:hover {
    background: var(--black);
    color: var(--yellow);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.search-btn:active {
    transform: translateY(0);
}

/* About Section */
.about-section {
    padding: 0;
    background: #F5F5F5;
    position: relative;
}

.about-card {
    background: #1E2424;
    overflow: hidden;
    width: 100%;
}

.about-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.about-image {
    position: relative;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

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

.about-text-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-description {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 35px;
}

.btn-about {
    display: inline-block;
    padding: 16px 40px;
    background: var(--yellow);
    color: var(--black);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
}

.btn-about:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-box {
    padding: 40px 30px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

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

.stat-box:hover {
    background: rgba(255, 211, 59, 0.1);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--yellow);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Button Primary - General */
.btn-primary {
    display: inline-block;
    padding: 18px 45px;
    background: var(--yellow);
    color: var(--black);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(255, 245, 0, 0.3);
}

.btn-primary:hover {
    background: var(--black);
    color: var(--yellow);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive */
/* Tablets and small desktops (1024px - 1200px) */
@media (max-width: 1200px) {
    .header-container {
        padding: 0 40px;
        gap: 40px;
    }

    .nav-menu ul {
        gap: 30px;
    }

    .hero-content {
        padding: 0 40px;
    }

    .hero-title {
        font-size: 48px;
    }

    .search-fields {
        grid-template-columns: 1fr 1fr;
    }
    
    .search-btn {
        grid-column: span 1;
        width: 48px;
    }

    .featured-container .section-title {
        padding: 0 40px;
    }
    
    .property-types-container {
        padding: 0 30px;
    }
    
    .properties-grid {
        gap: 0;
    }
    
    .featured-property-card {
        min-height: 350px;
    }
    
    .property-title {
        font-size: 28px;
    }

    .appraisal-wrapper {
        padding: 0 40px;
    }
    
    .contact-info {
        padding: 60px 40px;
    }

    .investment-grid {
        gap: 40px;
    }
}

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
    .header-container {
        grid-template-columns: auto 1fr auto;
        gap: 30px;
        padding: 0 30px;
    }

    .nav-menu ul {
        gap: 25px;
        font-size: 14px;
    }

    .phone-contact a {
        font-size: 14px;
        padding: 10px 20px;
    }

    .hero-title {
        font-size: 42px;
    }

    .property-search {
        max-width: 900px;
    }

    .search-fields {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

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

    .about-text-content {
        padding: 50px;
    }

    .about-stats {
        grid-template-columns: repeat(4, 1fr);
    }

    .investment-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .investment-image-side {
        order: 1;
    }

    .investment-content-side {
        order: 2;
    }

    .contact-info {
        padding: 50px 30px;
    }
    
    .contact-details {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .contact-map {
        height: 400px;
    }

    .type-card {
        flex: 0 0 calc(33.333% - 20px);
    }
    
    .properties-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-property-card {
        min-height: 400px;
    }
}

/* Mobile landscape and small tablets (600px - 768px) */
@media (max-width: 768px) {
    .header {
        position: fixed !important;
        background: #ffffff !important;
        backdrop-filter: none !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
        width: 100% !important;
    }

    .mobile-menu-toggle {
        display: flex !important;
    }

    .mobile-menu-toggle span {
        background: var(--black) !important;
    }

    .header-container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 15px !important;
        padding: 15px 20px !important;
        grid-template-columns: unset !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    .logo {
        flex-shrink: 0;
    }

    .logo img {
        height: 40px;
    }

    .desktop-only {
        display: none !important;
    }

    .phone-contact {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: flex !important;
        order: 2;
        margin-left: auto;
    }

    .logo {
        order: 1;
        flex-shrink: 0;
    }

    .nav-menu {
        position: fixed !important;
        top: 70px !important;
        left: 0 !important;
        right: 0 !important;
        background: #ffffff !important;
        backdrop-filter: none !important;
        padding: 30px 20px !important;
        transform: translateX(-100%) !important;
        transition: transform 0.3s ease !important;
        max-height: calc(100vh - 70px) !important;
        overflow-y: auto !important;
        z-index: 999 !important;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1) !important;
        visibility: hidden !important;
        display: block !important;
    }

    .nav-menu.active {
        transform: translateX(0) !important;
        visibility: visible !important;
    }

    .nav-menu a {
        color: var(--black) !important;
    }
    
    .nav-menu > ul {
        display: flex !important;
        flex-direction: column !important;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 0;
    }

    .nav-menu > ul > li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu > ul > li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 15px 10px;
        font-size: 18px;
    }

    .nav-menu a::after {
        display: none;
    }

    .has-dropdown {
        position: relative;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        background: #f5f5f5;
        padding: 0;
        border-top: none;
        box-shadow: none;
        margin-top: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown a {
        color: var(--black);
    }

    .has-dropdown.active .dropdown {
        max-height: 200px;
    }

    .dropdown li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .dropdown li:last-child {
        border-bottom: none;
    }

    .dropdown a {
        padding: 12px 20px;
        font-size: 16px;
    }

    .dropdown a:hover {
        padding-left: 25px;
    }

    body.menu-open {
        overflow: hidden;
    }

    .hero-section {
        min-height: 100vh;
        height: auto;
        padding-top: 100px;
    }
    
    .hero-content {
        padding: 30px 20px;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 40px;
    }
    
    .hero-title-line1,
    .hero-title-line2 {
        word-wrap: break-word;
        hyphens: auto;
    }

    .property-search {
        max-width: 100%;
        width: 100%;
    }

    .search-tabs {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .tab-btn {
        font-size: 11px;
        padding: 8px 20px;
        flex: 1;
        min-width: 120px;
    }

    .search-fields {
        grid-template-columns: 1fr;
        gap: 12px;
        width: 100%;
    }
    
    .search-field {
        width: 100%;
    }

    .search-field select,
    .search-field input {
        width: 100%;
        max-width: 100%;
    }
    
    .search-btn {
        width: 100%;
        height: 50px;
    }

    .price-field .price-inputs {
        flex-wrap: wrap;
        width: 100%;
        gap: 8px;
    }

    .currency-select {
        width: 100%;
        max-width: 100%;
    }

    .price-inputs input {
        flex: 1;
        min-width: 0;
    }

    .separator {
        display: none;
    }

    .section-title {
        font-size: 32px;
    }

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

    .featured-container .section-title {
        padding: 0 20px;
    }
    
    .property-types-container {
        padding: 0 20px;
        width: 100%;
        max-width: 100%;
    }

    .properties-grid {
        width: 100%;
        max-width: 100%;
    }

    .types-carousel {
        padding: 0 40px;
    }

    .carousel-nav {
        width: 35px;
        height: 35px;
    }

    .type-card {
        flex: 0 0 calc(80% - 20px);
        min-width: 280px;
    }
    
    .property-title {
        font-size: 22px;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .property-subtitle {
        font-size: 15px;
        word-wrap: break-word;
    }
    
    .property-amenities svg {
        width: 20px;
        height: 20px;
    }

    .about-text-content {
        padding: 40px 25px;
    }

    .about-title {
        font-size: 32px;
    }

    .about-description {
        font-size: 16px;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-box {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 30px 20px;
    }
    
    .stat-box:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .stat-box:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .stat-number {
        font-size: 40px;
    }

    .appraisal-image-container {
        height: 500px;
    }
    
    .appraisal-content {
        left: 50% !important;
        right: auto !important;
        transform: translate(-50%, -50%) !important;
        max-width: calc(100% - 40px) !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 20px !important;
        width: calc(100% - 40px) !important;
    }
    
    .appraisal-title {
        font-size: 28px;
        text-align: center;
    }
    
    .appraisal-description {
        font-size: 16px;
        text-align: center;
    }

    .btn-appraisal {
        padding: 16px 35px;
        font-size: 16px;
        margin: 0 auto;
    }

    .investment-section {
        padding: 60px 0;
    }

    .investment-section {
        padding: 60px 20px !important;
    }

    .investment-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        padding: 0 !important;
        background: #ffffff !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }

    .investment-image-side {
        height: 300px !important;
        order: 2 !important;
        margin: 0 !important;
        width: 100% !important;
        border-radius: 0 !important;
    }

    .investment-image-side img {
        object-fit: cover !important;
        width: 100% !important;
        height: 100% !important;
    }
    
    .investment-content-side {
        padding: 0 !important;
        text-align: center !important;
        order: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        background: #ffffff !important;
        width: 100% !important;
    }
    
    .investment-title {
        font-size: 28px !important;
        text-align: center !important;
        margin-bottom: 0 !important;
        order: 1 !important;
        padding: 40px 20px 20px 20px !important;
        width: 100% !important;
    }
    
    .investment-description {
        font-size: 16px !important;
        text-align: center !important;
        margin-bottom: 0 !important;
        order: 3 !important;
        padding: 20px 20px !important;
        width: 100% !important;
    }

    .investment-features {
        gap: 15px !important;
        align-items: center !important;
        order: 4 !important;
        width: 100% !important;
        margin-bottom: 0 !important;
        padding: 0 20px 20px 20px !important;
    }

    .investment-feature-item {
        padding: 12px 15px !important;
        font-size: 15px !important;
        justify-content: center !important;
        width: 100% !important;
    }

    .btn-investment-new {
        margin: 0 auto 30px auto !important;
        order: 5 !important;
        width: calc(100% - 40px) !important;
        max-width: 300px !important;
    }
    
    .investment-building-icon {
        display: none !important;
    }

    .contact-section {
        padding: 60px 0 0 0;
    }

    .contact-container {
        display: flex;
        flex-direction: column;
    }

    .contact-info {
        padding: 40px 25px;
    }
    
    .contact-details {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 20px !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .contact-item {
        flex-direction: column !important;
        text-align: center !important;
        align-items: center !important;
        padding: 20px 10px !important;
        width: 100% !important;
    }

    .contact-map {
        height: 350px;
        min-height: 350px;
        width: 100%;
    }
}

/* Mobile portrait (320px - 600px) */
@media (max-width: 600px) {
    .header {
        position: fixed !important;
        background: #ffffff !important;
        backdrop-filter: none !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
        width: 100% !important;
    }

    .mobile-menu-toggle {
        display: flex !important;
    }

    .mobile-menu-toggle span {
        background: var(--black) !important;
    }

    .header-container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 12px 15px !important;
        grid-template-columns: unset !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    .logo {
        flex-shrink: 0;
    }

    .logo img {
        height: 35px;
    }

    .desktop-only {
        display: none !important;
    }

    .phone-contact {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: flex !important;
        order: 2;
        margin-left: auto;
    }

    .logo {
        order: 1;
        flex-shrink: 0;
    }

    .nav-menu {
        position: fixed !important;
        top: 60px !important;
        left: 0 !important;
        right: 0 !important;
        background: #ffffff !important;
        backdrop-filter: none !important;
        padding: 30px 15px !important;
        transform: translateX(-100%) !important;
        transition: transform 0.3s ease !important;
        max-height: calc(100vh - 60px) !important;
        overflow-y: auto !important;
        z-index: 999 !important;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1) !important;
        visibility: hidden !important;
        display: block !important;
    }

    .nav-menu.active {
        transform: translateX(0) !important;
        visibility: visible !important;
    }

    .nav-menu a {
        color: var(--black) !important;
    }
    
    .nav-menu > ul {
        display: flex !important;
        flex-direction: column !important;
    }

    .dropdown {
        background: #f5f5f5 !important;
    }

    .dropdown a {
        color: var(--black) !important;
    }

    body.menu-open {
        overflow: hidden;
    }

    .hero-section {
        min-height: 100vh;
        padding-top: 90px;
    }

    .hero-content {
        padding: 30px 15px;
        align-items: center;
        text-align: center;
        max-width: 100%;
    }

    .hero-title {
        font-size: 24px;
        text-align: center;
        line-height: 1.3;
        margin-bottom: 30px;
    }
    
    .hero-title-line1,
    .hero-title-line2 {
        word-wrap: break-word;
        hyphens: auto;
    }

    .property-search {
        align-self: stretch;
        width: 100%;
    }

    .search-tabs {
        gap: 8px;
        flex-wrap: wrap;
    }

    .tab-btn {
        font-size: 10px;
        padding: 8px 16px;
        flex: 1;
        min-width: 110px;
    }

    .search-field {
        width: 100%;
    }

    .search-field label {
        font-size: 12px;
    }

    .search-field select,
    .search-field input {
        padding: 12px 14px;
        font-size: 14px;
        width: 100%;
        max-width: 100%;
    }

    .price-field .price-inputs {
        flex-wrap: wrap;
        width: 100%;
        gap: 8px;
    }

    .price-inputs input {
        flex: 1;
        min-width: 0;
    }

    .separator {
        display: none;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .featured-properties-section,
    .property-types-section {
        padding: 60px 0;
    }

    .featured-container .section-title {
        padding: 0 20px;
    }
    
    .property-types-container {
        padding: 0 15px;
    }

    .types-carousel {
        padding: 0 35px;
    }

    .carousel-nav {
        width: 30px;
        height: 30px;
    }

    .carousel-nav svg {
        width: 18px;
        height: 18px;
    }

    .type-card {
        flex: 0 0 calc(100% - 20px);
        min-width: 250px;
    }
    
    .property-title {
        font-size: 19px;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .property-location {
        font-size: 10px;
    }
    
    .property-description {
        font-size: 14px;
        word-wrap: break-word;
    }

    .about-text-content {
        padding: 30px 20px;
    }
    
    .featured-property-card {
        min-height: 350px;
    }
    
    .property-content {
        padding: 25px;
    }
    
    .property-title {
        font-size: 22px;
    }
    
    .property-subtitle {
        font-size: 15px;
    }
    
    .price-amount {
        font-size: 18px;
    }

    .about-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .about-description {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .btn-about {
        padding: 14px 30px;
        font-size: 14px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .stat-box {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 25px 20px;
    }

    .stat-box:nth-child(odd) {
        border-right: none;
    }

    .stat-box:last-child {
        border-bottom: none;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 13px;
    }

    .appraisal-section {
        padding: 60px 0 80px;
    }

    .appraisal-wrapper {
        padding: 0 15px;
    }

    .appraisal-section {
        padding: 60px 0 80px;
    }

    .appraisal-image-container {
        height: 450px;
        border-radius: 15px;
    }

    .appraisal-content {
        left: 50% !important;
        right: auto !important;
        transform: translate(-50%, -50%) !important;
        max-width: calc(100% - 30px) !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 15px !important;
        width: calc(100% - 30px) !important;
    }

    .appraisal-title {
        font-size: 24px;
        margin-bottom: 15px;
        text-align: center;
    }

    .appraisal-description {
        font-size: 15px;
        margin-bottom: 25px;
        text-align: center;
    }

    .btn-appraisal {
        padding: 14px 30px;
        font-size: 15px;
        margin: 0 auto;
    }

    .property-types-section {
        padding: 60px 0;
    }

    .investment-section {
        padding: 60px 0;
    }

    .investment-grid {
        padding: 0 15px;
        gap: 40px;
    }

    .investment-section {
        padding: 60px 15px !important;
    }

    .investment-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        padding: 0 !important;
        background: #ffffff !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }

    .investment-image-side {
        height: 250px !important;
        border-radius: 0 !important;
        order: 2 !important;
        margin: 0 !important;
        width: 100% !important;
    }

    .investment-image-side img {
        object-fit: cover !important;
        width: 100% !important;
        height: 100% !important;
    }

    .investment-content-side {
        padding: 0 !important;
        text-align: center !important;
        order: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        background: #ffffff !important;
        width: 100% !important;
    }

    .investment-title {
        font-size: 26px !important;
        margin-bottom: 0 !important;
        text-align: center !important;
        order: 1 !important;
        padding: 30px 15px 15px 15px !important;
        width: 100% !important;
    }

    .investment-description {
        font-size: 15px !important;
        margin-bottom: 0 !important;
        text-align: center !important;
        order: 3 !important;
        padding: 15px 15px !important;
        width: 100% !important;
    }

    .investment-features {
        align-items: center !important;
        order: 4 !important;
        width: 100% !important;
        margin-bottom: 0 !important;
        padding: 0 15px 15px 15px !important;
    }

    .investment-feature-item {
        padding: 10px 12px !important;
        font-size: 14px !important;
        justify-content: center !important;
        width: 100% !important;
    }

    .feature-icon-small {
        width: 40px;
        height: 40px;
    }

    .btn-investment-new {
        padding: 14px 30px !important;
        font-size: 15px !important;
        margin: 0 auto 30px auto !important;
        order: 5 !important;
        width: calc(100% - 30px) !important;
        max-width: 300px !important;
    }

    .contact-details {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 15px !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .contact-item {
        padding: 15px 10px !important;
        flex-direction: column !important;
        text-align: center !important;
        align-items: center !important;
        width: 100% !important;
    }

    .contact-section {
        padding: 60px 0 0 0;
    }

    .contact-container {
        display: flex;
        flex-direction: column;
    }

    .contact-info {
        padding: 40px 20px;
    }
    
    .contact-header {
        text-align: center;
        margin-bottom: 30px;
    }

    .contact-details {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        max-width: 100%;
    }

    .contact-header .section-title {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .contact-item {
        padding: 15px 10px;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .contact-icon {
        width: 55px;
        height: 55px;
    }

    .contact-icon svg {
        width: 26px;
        height: 26px;
    }

    .contact-text {
        text-align: center;
    }

    .contact-text h3 {
        font-size: 16px;
    }

    .contact-text p {
        font-size: 14px;
    }

    .contact-map {
        height: 300px;
        min-height: 300px;
        width: 100%;
    }

    .footer {
        padding: 25px 0;
    }

    .footer-content p {
        font-size: 12px;
        padding: 0 15px;
    }
}

/* Featured Properties Section */
.featured-properties-section {
    padding: 80px 0;
    background: var(--white);
}

.featured-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.featured-container .section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 38px;
    padding: 0 60px;
}

.properties-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 100%;
}

.featured-property-card {
    position: relative;
    height: 50vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.featured-property-card:hover {
    transform: scale(1.02);
    z-index: 10;
}

.featured-property-card a {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
}

.property-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    transition: background 0.3s ease;
    z-index: 1;
}

.featured-property-card:hover .property-overlay {
    background: rgba(0, 0, 0, 0.45);
}

.property-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.property-location {
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.property-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
    line-height: 1.2;
}

.property-subtitle {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.property-description {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.property-amenities {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.property-amenities svg {
    width: 22px;
    height: 22px;
    opacity: 0.9;
}

.property-price-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.property-price-tag svg {
    color: var(--yellow);
}

.price-amount {
    font-size: 20px;
    font-weight: 700;
    color: var(--yellow);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.carousel-nav:hover {
    background: rgba(255, 255, 255, 1);
    color: #000;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.carousel-nav.prev {
    left: 0;
}

.carousel-nav.next {
    right: 0;
}

/* Appraisal Section (Tasaciones) - New Design */
.appraisal-section {
    padding: 80px 0 120px;
    background: linear-gradient(to bottom, transparent 50%, #1a1d2e 50%);
    position: relative;
    overflow: hidden;
}

.appraisal-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.appraisal-card {
    position: relative;
    border-radius: 20px 20px 0 0;
    overflow: visible;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    transition: transform 0.5s ease;
}

.appraisal-card:hover {
    transform: translateY(-10px);
}

.appraisal-image-container {
    position: relative;
    height: 600px;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.appraisal-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

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

.appraisal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,0.7) 0%,
        rgba(0,0,0,0.4) 50%,
        rgba(0,0,0,0.2) 100%
    );
    z-index: 1;
}

.appraisal-content {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    max-width: 550px;
    z-index: 2;
    animation: fadeInLeft 1s ease;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

.appraisal-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.5);
}

.appraisal-description {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 35px;
    text-shadow: 1px 1px 10px rgba(0,0,0,0.5);
}

.btn-appraisal {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: var(--yellow);
    color: var(--black);
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 50px;
    transition: all 0.4s ease;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(255, 245, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-appraisal::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--white);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-appraisal:hover::before {
    left: 0;
}

.btn-appraisal:hover {
    color: var(--black);
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(255, 245, 0, 0.6);
}

.btn-appraisal svg {
    transition: transform 0.3s ease;
}

.btn-appraisal:hover svg {
    transform: translateX(5px);
}

/* Investment CTA Section - Redesigned */
.investment-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.investment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
    align-items: center;
    padding: 0 40px;
}

.investment-image-side {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.investment-image-side img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.investment-section:hover .investment-image-side img {
    transform: scale(1.05);
}

.investment-overlay-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 211, 59, 0.1) 0%,
        rgba(0,0,0,0.3) 100%
    );
}

.investment-content-side {
    padding: 40px 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.investment-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 211, 59, 0.1);
    border: 2px solid var(--yellow);
    border-radius: 25px;
    color: var(--yellow);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
    margin-bottom: 25px;
}

.investment-badge svg {
    fill: var(--yellow);
}

.investment-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
    line-height: 1.2;
}

.investment-description {
    font-size: 18px;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 35px;
}

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

.investment-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--gray);
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 15px 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.investment-feature-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.feature-icon-small {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 211, 59, 0.15);
    border-radius: 10px;
    color: var(--yellow);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-icon-small svg {
    color: var(--yellow);
}

.investment-feature-item:hover .feature-icon-small {
    background: var(--yellow);
    color: var(--black);
    transform: rotate(5deg);
}

.investment-feature-item:hover .feature-icon-small svg {
    color: var(--black);
}

.btn-investment-new {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: var(--yellow);
    color: var(--black);
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(255, 211, 59, 0.4);
    width: fit-content;
}

.btn-investment-new:hover {
    background: var(--black);
    color: var(--yellow);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.btn-investment-new svg {
    transition: transform 0.3s ease;
}

.btn-investment-new:hover svg {
    transform: translateX(5px);
}

.investment-building-icon {
    display: none;
}

/* Property Types Section */
.property-types-section {
    padding: 80px 0;
    background: var(--white);
}

.property-types-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

/* Contact Section */
.contact-section {
    padding: 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.contact-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-info {
    background: var(--white);
    padding: 80px 60px;
    width: 100%;
}

.contact-header {
    margin-bottom: 40px;
    text-align: center;
}

.contact-header .section-title {
    margin-bottom: 0;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 245, 0, 0.05);
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 245, 0, 0.15);
    border-radius: 12px;
    color: var(--yellow);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: var(--yellow);
    color: var(--black);
    transform: rotate(5deg);
}

.contact-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.contact-text p {
    font-size: 16px;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.6;
}

.contact-text a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--yellow);
}

.contact-map {
    overflow: hidden;
    width: 100%;
    height: 500px;
    min-height: 500px;
}

/* Section Separator */
.section-separator {
    background: #1a1d2e;
    padding: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.section-separator::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 245, 0, 0.1), 
        transparent
    );
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.separator-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(
        to right,
        transparent,
        var(--yellow),
        transparent
    );
    max-width: 400px;
}

.separator-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 245, 0, 0.1);
    border: 2px solid var(--yellow);
    border-radius: 50%;
    color: var(--yellow);
    position: relative;
    z-index: 1;
    animation: rotate-icon 4s linear infinite;
}

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

.separator-icon::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--yellow);
    border-right-color: var(--yellow);
    animation: spin-border 2s linear infinite;
    opacity: 0.3;
}

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

/* Scroll Reveal Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile animations - más suaves */
@media (max-width: 768px) {
    .scroll-reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }
    
    .scroll-reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Animación para cards de propiedades */
    .featured-property-card,
    .property-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .featured-property-card:active,
    .property-card:active {
        transform: scale(0.98);
    }
}

/* Different animation variants for variety */
.featured-properties-section.scroll-reveal {
    transform: translateY(30px) scale(0.95);
}

.featured-properties-section.scroll-reveal.revealed {
    transform: translateY(0) scale(1);
}

.about-section.scroll-reveal {
    transform: translateY(50px);
}

.about-section.scroll-reveal.revealed {
    transform: translateY(0);
}

.appraisal-section.scroll-reveal {
    transform: translateY(40px);
}

.appraisal-section.scroll-reveal.revealed {
    transform: translateY(0);
}

.investment-section.scroll-reveal {
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.investment-section.scroll-reveal.revealed {
    transform: translateX(0);
}

.property-types-section.scroll-reveal {
    transform: translateY(50px);
}

.property-types-section.scroll-reveal.revealed {
    transform: translateY(0);
}

.contact-section.scroll-reveal {
    transform: translateY(60px);
}

.contact-section.scroll-reveal.revealed {
    transform: translateY(0);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 30px 0;
    text-align: center;
    border-top: 2px solid var(--yellow);
}

.footer-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.5px;
    margin: 0;
}

.footer-content a {
    color: var(--yellow);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
}

.footer-content a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: width 0.3s ease;
}

.footer-content a:hover::after {
    width: 100%;
}

.footer-content a:hover {
    color: var(--white);
    text-shadow: 0 0 10px rgba(255, 245, 0, 0.5);
}

/* Button Effects - Global */
button, .btn-primary, .btn-appraisal, .btn-investment-new, .search-btn, .tab-btn {
    position: relative;
    overflow: hidden;
}

button::before, 
.btn-primary::before, 
.btn-appraisal::before, 
.btn-investment-new::before,
.search-btn::before,
.tab-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

button:active::before,
.btn-primary:active::before,
.btn-appraisal:active::before,
.btn-investment-new:active::before,
.search-btn:active::before,
.tab-btn:active::before {
    width: 300px;
    height: 300px;
}

/* Section Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(80px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.featured-properties-section {
    animation: slideInUp 0.8s ease-out;
}

.about-section {
    animation: slideInUp 0.8s ease-out;
}

.appraisal-section {
    animation: zoomIn 0.8s ease-out;
}

.property-types-section {
    animation: slideInUp 0.8s ease-out;
}

.investment-section {
    animation: slideInUp 0.8s ease-out;
}

.contact-section {
    animation: slideInUp 0.8s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: var(--yellow);
    color: var(--black);
}

