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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #fff;
    color: #0a0a0a;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

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

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.5s ease;
    background-color: transparent;
}

#navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

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

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
    flex: 1;
    margin-left: 3rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    position: relative;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    color: white;
}

#navbar.scrolled .nav-link {
    color: #0a0a0a;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fe9a00;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #fe9a00 !important;
}

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

.nav-button {
    display: none;
}

@media (min-width: 768px) {
    .nav-button {
        display: block;
    }
}

.btn-primary {
    background-color: #fe9a00;
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 9999px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #e17100;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(254, 154, 0, 0.3);
}

.mobile-menu-toggle {
    display: block;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

.mobile-menu-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
    margin: 5px 0;
}

#navbar.scrolled .mobile-menu-toggle span {
    background-color: #0a0a0a;
}

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

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

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

.mobile-menu {
    display: none;
    padding: 1rem 1rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-menu.active {
    display: flex;
}

.mobile-link {
    display: block;
    padding: 0.5rem 0;
    color: #0a0a0a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-link:hover {
    color: #fe9a00;
}

.mobile-btn {
    width: 100%;
    margin-top: 0.5rem;
}

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

.hero-background {
    position: absolute;
    inset: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.4) 100%), 
                      linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 975px;
    padding: 8rem 1rem 0;
    z-index: 10;
}

@media (min-width: 640px) {
    .hero-content {
        padding: 8rem 2rem 0;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        padding: 8rem 4rem 0;
    }
}

.hero-inner {
    max-width: 768px;
}

.premium-badge {
    background-color: #fe9a00;
    border-radius: 9999px;
    padding: 0.5rem 1.25rem;
    display: inline-block;
    margin-bottom: 60px;
    color: white;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.35px;
    text-transform: uppercase;
}

.hero-title {
    margin-bottom: 24px;
}

.hero-title-line1,
.hero-title-line2 {
    font-size: clamp(48px, 8vw, 96px);
    line-height: 1.25;
    font-weight: 500;
}

.hero-title-line1 {
    color: white;
}

.hero-title-line2 {
    color: #ffb900;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 39px;
    margin-bottom: 40px;
}

@media (min-width: 640px) {
    .hero-subtitle {
        font-size: 24px;
    }
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 64px;
}

.btn-get-started {
    background-color: #fe9a00;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0px 10px 7.5px rgba(254, 154, 0, 0.3), 0px 4px 3px rgba(254, 154, 0, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-get-started:hover {
    background-color: #e17100;
    transform: translateY(-2px);
}

.btn-watch-video {
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-watch-video:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

@media (min-width: 768px) {
    .hero-stats {
        gap: 3rem;
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    color: white;
    font-size: 36px;
    line-height: 40px;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.scroll-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
}

/* Stats Section */
.stats-section {
    background-color: #fafafa;
    padding: 6rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

.stat-card-design {
    padding: 3rem;
    border-radius: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 7.5px rgba(0, 0, 0, 0.1), 0 4px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card-design:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 15px rgba(0, 0, 0, 0.15), 0 8px 6px rgba(0, 0, 0, 0.15);
}

.stat-card-gray {
    background-color: #f5f5f5;
}

.stat-card-orange {
    background-color: #fe9a00;
}

.stat-number-design {
    font-size: 60px;
    line-height: 60px;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #171717;
}

.stat-number-white {
    color: white;
}

.stat-label-design {
    font-size: 20px;
    line-height: 28px;
    color: #525252;
}

.stat-label-white {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1024px) {
    .stat-number-design {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .stat-card-design {
        padding: 2rem;
    }
    .stat-number-design {
        font-size: 40px;
    }
}

/* Generations Section */
.generations-section {
    background-color: white;
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .generations-section {
        padding: 8rem 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 36px;
    font-weight: 500;
    color: #0a0a0a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1.5px;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 60px;
    }
}

.text-orange {
    color: #fe9a00;
}

.section-description {
    color: #525252;
    font-size: 16px;
    line-height: 29.25px;
    max-width: 48rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .section-description {
        font-size: 18px;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 5rem;
}

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

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

.feature-card-design {
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.feature-icon-design {
    width: 80px;
    height: 80px;
    background-color: #fffbeb;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card-design:hover .feature-icon-design {
    background-color: #fe9a00;
    transform: rotate(5deg) scale(1.1);
}

.feature-svg {
    width: 32px;
    height: 32px;
}

.feature-card-design:hover .feature-svg path,
.feature-card-design:hover .feature-svg circle {
    stroke: white;
}

.feature-title {
    font-size: 20px;
    font-weight: 500;
    color: #0a0a0a;
    margin-bottom: 0.5rem;
}

.feature-description {
    color: #525252;
    text-align: center;
}

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

@media (min-width: 1024px) {
    .commitment-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

.commitment-image {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    height: 400px;
}

@media (min-width: 1024px) {
    .commitment-image {
        height: 462px;
    }
}

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

.commitment-image:hover img {
    transform: scale(1.1);
}

.badge-design {
    display: inline-block;
    background-color: #fffbeb;
    color: #e17100;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.commitment-title {
    font-size: 28px;
    font-weight: 500;
    color: #0a0a0a;
    margin-bottom: 1.5rem;
    line-height: 40px;
}

@media (min-width: 1024px) {
    .commitment-title {
        font-size: 36px;
    }
}

.commitment-description {
    color: #525252;
    font-size: 16px;
    line-height: 29.25px;
    margin-bottom: 2.5rem;
}

@media (min-width: 1024px) {
    .commitment-description {
        font-size: 18px;
    }
}

.mini-stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .mini-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.mini-stat-design {
    background-color: #fffbeb;
    padding: 1.5rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.mini-stat-design:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(254, 154, 0, 0.15);
}

.mini-stat-number {
    font-size: 30px;
    color: #e17100;
    margin-bottom: 0.5rem;
}

.mini-stat-label {
    color: #404040;
}

/* Transparency Section */
.transparency-section {
    background-color: white;
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .transparency-section {
        padding: 8rem 0;
    }
}

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

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

.transparency-title {
    font-size: 32px;
    font-weight: 500;
    color: #0a0a0a;
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: -1.5px;
}

@media (min-width: 1024px) {
    .transparency-title {
        font-size: 60px;
    }
}

.transparency-description {
    color: #525252;
    font-size: 16px;
    line-height: 29.25px;
    margin-bottom: 2.5rem;
}

@media (min-width: 1024px) {
    .transparency-description {
        font-size: 18px;
    }
}

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

.checklist-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.checklist-item:hover {
    background-color: #f9fafb;
}

.check-icon {
    background-color: #fe9a00;
    border-radius: 9999px;
    padding: 0.25rem;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-icon svg {
    width: 16px;
    height: 16px;
}

.checklist-item p {
    color: #404040;
}

.transparency-image-wrapper {
    position: relative;
}

.transparency-image {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    height: 400px;
}

@media (min-width: 1024px) {
    .transparency-image {
        height: 760px;
    }
}

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

.transparency-image:hover img {
    transform: scale(1.1);
}

.overlay-image {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.trust-card {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.trust-label {
    color: #e17100;
    font-size: 14px;
    margin-bottom: 0.5rem;
}

.trust-number {
    font-size: 48px;
    font-weight: 400;
    color: #0a0a0a;
    margin-bottom: 0.5rem;
}

.trust-description {
    color: #525252;
}

/* Agents Section */
.agents-section {
    background-color: white;
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .agents-section {
        padding: 8rem 0;
    }
}

.agents-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

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

.agent-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.agent-card:hover {
    transform: translateY(-8px);
}

.agent-image {
    position: relative;
    height: 540px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.agent-card:hover .agent-image {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

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

.agent-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
}

.agent-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
}

.agent-name {
    color: white;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 0.25rem;
}

.agent-title {
    color: #d4d4d4;
    margin-bottom: 1rem;
}

.btn-contact {
    background-color: #fe9a00;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    box-shadow: 0px 10px 7.5px rgba(254, 154, 0, 0.2), 0px 4px 3px rgba(254, 154, 0, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background-color: #e17100;
    transform: translateY(-2px);
}

/* Discover CTA Section */
.discover-cta-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

@media (min-width: 768px) {
    .discover-cta-section {
        padding: 8rem 0;
    }
}

.cta-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

.cta-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .cta-content {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }
}

.cta-left {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cta-logo {
    background-color: white;
    padding: 0.75rem;
    border-radius: 9999px;
}

.cta-logo img {
    height: 64px;
    width: auto;
}

.cta-text {
    color: white;
    font-size: 18px;
    max-width: 600px;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
}

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

/* Properties Section */
.properties-section {
    background-color: white;
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .properties-section {
        padding: 8rem 0;
    }
}

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

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

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

.property-card-design {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.property-card-design:hover {
    transform: translateY(-8px);
}

.property-image {
    position: relative;
    height: 320px;
    border-radius: 1rem;
    overflow: hidden;
}

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

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

.property-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #fe9a00;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
}

.property-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
}

.property-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin-bottom: 0.5rem;
}

.property-location svg {
    width: 16px;
    height: 16px;
}

.property-title {
    color: white;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 0.25rem;
}

.property-price {
    color: #ffb900;
    font-size: 30px;
    font-weight: 400;
}

/* Footer */
.footer {
    background-color: #0a0a0a;
    color: white;
    padding: 5rem 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.footer-logo {
    background-color: white;
    padding: 0.75rem;
    border-radius: 9999px;
}

.footer-logo img {
    height: 64px;
    width: auto;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    flex: 1;
}

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

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 251, 235, 0.2);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
}

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

.social-link {
    background-color: #fe9a00;
    width: 56px;
    height: 56px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #e17100;
    transform: scale(1.1);
}

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

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

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

@media (prefers-reduced-motion: no-preference) {
    .feature-card-design,
    .property-card-design,
    .stat-card-design,
    .agent-card {
        opacity: 0;
        animation: fadeInUp 0.8s ease-out forwards;
    }
}
