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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Skip Link for keyboard navigation */
.skip-link:focus {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 10000;
    padding: 12px 24px;
    background-color: #2563EB;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
}

/* Header */
.header {
    width: 100%;
    background-color: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: none;
}

.header__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 35px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.header__logo {
    flex-shrink: 0;
}

.logo__title {
    font-size: 32px;
    font-weight: 700;
    color: #7B2D3C;
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 6px;
}

.logo__subtitle {
    font-size: 12px;
    font-weight: 400;
    color: #7B2D3C;
    letter-spacing: 2px;
    line-height: 1.2;
    opacity: 0.9;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

.header__nav-link {
    color: #333333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
}

.header__nav-link:hover {
    color: #8B2E3D;
}

.header__nav-link--active {
    color: #D97757;
}

.header__nav-link--button {
    padding: 10px 24px;
    background-color: #2563EB;
    color: #ffffff;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.header__nav-link--button:hover {
    background-color: #ffffff;
    color: #2E6EFF;
    border: 1px solid #2E6EFF;
    transform: scale(1.05);
}

/* Main Content */
.main {
    margin-top: 100px;
    padding: 80px 80px 60px;
}

.main__container {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.main__content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-right: 40px;
}

.main__title {
    font-size: 64px;
    font-weight: 700;
    color: #1F2937;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin: 0;
}

.main__text {
    font-size: 18px;
    font-weight: 400;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

.main__button {
    padding: 16px 40px;
    background-color: #2563EB;
    color: #ffffff;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: 5px;
}

.main__button:hover {
    background-color: #ffffff;
    color: #2E6EFF;
    border: 1px solid #2E6EFF;
    transform: scale(1.05);
}

.main__image {
    width: 100%;
    height: 650px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out, box-shadow 0.3s ease;
    will-change: transform;
}

.main__image:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.main__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive */
@media (max-width: 1024px) {
    .main__container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .main__image {
        height: 500px;
    }
    
    .header__container {
        padding: 30px 50px;
    }
    
    .main {
        padding: 60px 50px 50px;
    }
    
    .main__title {
        font-size: 52px;
    }
}

@media (max-width: 768px) {
    .header__nav {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .header__nav-link {
        font-size: 14px;
    }
    
    .header__nav-link--button {
        padding: 8px 20px;
        font-size: 14px;
    }
    
    .main__title {
        font-size: 42px;
    }
    
    .main__text {
        font-size: 16px;
    }
    
    .header__container {
        padding: 25px 30px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .main {
        padding: 140px 30px 40px;
    }
    
    .logo__title {
        font-size: 28px;
    }
    
    .logo__subtitle {
        font-size: 11px;
    }
}

/* Partners Section */
.partners {
    width: 100%;
    padding: 80px 80px;
    background-color: #ffffff;
}

.partners__container {
    max-width: 1440px;
    margin: 0 auto;
}

.partners__title {
    font-size: 48px;
    font-weight: 700;
    color: #1F2937;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}

.partners__logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.partners__logo {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 180px;
    justify-content: center;
}

.partners__logo-divider {
    width: 1px;
    height: 40px;
    background-color: #D1D5DB;
    flex-shrink: 0;
}

.partners__logo-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 8px;
}

.partners__logo-icon--biotech {
    background: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%);
    position: relative;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    transform: rotate(45deg);
}

.partners__logo-icon--biotech::before {
    content: '';
    position: absolute;
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    background: linear-gradient(135deg, #3B82F6 0%, #60A5FA 100%);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    transform: rotate(-45deg);
}

.partners__logo-icon--express {
    background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
    clip-path: polygon(0% 30%, 60% 30%, 100% 50%, 60% 70%, 0% 70%);
}

.partners__logo-icon--smilehome {
    background: #EF4444;
    position: relative;
    overflow: visible;
    border-radius: 8px;
}

.partners__logo-icon--smilehome::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 50%;
    top: 0;
    left: 0;
    background: #EF4444;
    clip-path: polygon(0% 100%, 50% 0%, 100% 100%);
    border-radius: 8px 8px 0 0;
}

.partners__logo-icon--smilehome::after {
    content: '😊';
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    z-index: 1;
    line-height: 1;
}

.partners__logo-icon--connect {
    background: #14B8A6;
    border-radius: 50%;
    position: relative;
}

.partners__logo-icon--connect::before,
.partners__logo-icon--connect::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    background: #14B8A6;
    border-radius: 50%;
}

.partners__logo-icon--connect::before {
    top: 5px;
    left: 5px;
    box-shadow: 25px 15px 0 #14B8A6, 15px 30px 0 #14B8A6, 35px 30px 0 #14B8A6;
}

.partners__logo-icon--connect::after {
    bottom: 5px;
    right: 5px;
    box-shadow: -25px -15px 0 #14B8A6, -15px -30px 0 #14B8A6, -35px -30px 0 #14B8A6;
}

.partners__logo-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.partners__logo-name {
    font-size: 18px;
    font-weight: 700;
    color: #1F2937;
    line-height: 1.2;
}

.partners__logo-subtitle {
    font-size: 12px;
    font-weight: 400;
    color: #6B7280;
    line-height: 1.2;
}

.partners__logo:first-child .partners__logo-name {
    color: #1E40AF;
}

.partners__logo:nth-child(2) .partners__logo-name {
    color: #1E40AF;
    font-style: italic;
}

.partners__logo:nth-child(3) .partners__logo-name {
    color: #EF4444;
}

@media (max-width: 1024px) {
    .partners {
        padding: 60px 50px;
    }
    
    .partners__title {
        font-size: 40px;
        margin-bottom: 50px;
    }
    
    .partners__logos {
        gap: 30px;
    }
    
    .partners__logo {
        min-width: 150px;
    }
}

@media (max-width: 768px) {
    .partners {
        padding: 50px 30px;
    }
    
    .partners__title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .partners__logos {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .partners__logo {
        width: auto;
        justify-content: center;
        min-width: auto;
        flex-direction: column;
        text-align: center;
    }
    
    .partners__logo-divider {
        display: none;
    }
    
    .partners__logo-icon {
        margin: 0 auto 15px;
    }
    
    .partners__logo-text {
        text-align: center;
        align-items: center;
    }
}

/* Properties Section */
.properties {
    width: 100%;
    padding: 80px 80px;
    background-color: #F5F5F5;
}

.properties__container {
    max-width: 1146px;
    margin: 0 auto;
}

.properties__title {
    font-size: 44px;
    font-weight: 600;
    color: #030A1B;
    margin-bottom: 70px;
    line-height: 1.2;
}

.properties__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.property-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.property-card__image {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

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

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

.property-card__content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.property-card__title {
    font-size: 22px;
    font-weight: 600;
    color: #030A1B;
    margin-bottom: 10px;
    line-height: 1.3;
}

.property-card__location {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    color: #6B7280;
    font-size: 14px;
}

.property-card__location-icon {
    width: 16px;
    height: 16px;
    color: #6B7280;
    flex-shrink: 0;
}

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

.property-card__feature {
    display: flex;
    align-items: center;
    gap: 3px;
}

.property-card__feature-icon {
    width: 20px;
    height: 20px;
    color: #6B7280;
    flex-shrink: 0;
}

.property-card__feature span {
    font-size: 14px;
    color: #6B7280;
}

.property-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    gap: 15px;
}

.property-card__price {
    font-size: 20px;
    font-weight: 700;
    color: #DC2626;
}

.property-card__button {
    padding: 10px 20px;
    background-color: #2563EB;
    color: #FFFFFF;
    border: 1px solid transparent;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.property-card__button:hover {
    background-color: #ffffff;
    color: #2E6EFF;
    border: 1px solid #2E6EFF;
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .properties {
        padding: 60px 50px;
    }
    
    .properties__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .properties__title {
        font-size: 36px;
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .properties {
        padding: 50px 30px;
    }
    
    .properties__grid {
        grid-template-columns: 1fr;
    }
    
    .properties__title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .property-card__footer {
        flex-direction: column;
        align-items: stretch;
    }
    
    .property-card__button {
        width: 100%;
    }
}

/* Featured Property Section */
.featured-property {
    width: 100%;
    padding: 80px 80px;
    background-color: #ffffff;
}

.featured-property__container {
    max-width: 1440px;
    margin: 0 auto;
}

.featured-property__title {
    font-size: 48px;
    font-weight: 700;
    color: #1F2937;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.featured-property__subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #6B7280;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.6;
}

.featured-property__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.featured-property__left,
.featured-property__right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: none;
    width: 250px;
    align-items: stretch;
}

.featured-property__image {
    flex: none;
    display: flex;
    justify-content: center;
    width: 400px;
    overflow: hidden;
    border-radius: 16px;
}

.featured-property__image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.featured-property__card {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    width: 100%;
}

.featured-property__icon {
    font-size: 40px;
    color: #FF9500;
    margin-bottom: 15px;
}

.featured-property__card-title {
    font-size: 20px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 8px;
    line-height: 1.3;
}

.featured-property__card-text {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .featured-property {
        padding: 60px 50px;
    }

    .featured-property__content {
        flex-direction: column;
        gap: 40px;
    }

    .featured-property__left,
    .featured-property__right {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
        width: auto;
    }

    .featured-property__image {
        max-width: none;
        order: -1;
        width: 100%;
    }

    .featured-property__image img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .featured-property {
        padding: 50px 30px;
    }

    .featured-property__title {
        font-size: 36px;
    }

    .featured-property__subtitle {
        font-size: 16px;
    }

    .featured-property__left,
    .featured-property__right {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .featured-property__card {
        max-width: none;
        width: 100%;
    }

    .featured-property__image img {
        height: 300px;
    }
}

/* Reviews Section */
.reviews {
    width: 100%;
    padding: 100px 80px 140px;
    background-color: #ffffff;
}

.reviews__container {
    max-width: 1146px;
    margin: 0 auto;
}

.reviews__eyebrow {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #F97316;
    margin-bottom: 10px;
    text-align: center;
}

.reviews__title {
    font-size: 48px;
    font-weight: 700;
    color: #030A1B;
    margin-bottom: 50px;
    line-height: 1.2;
    text-align: center;
}

.reviews__slider {
    position: relative;
    width: 100%;
}

.reviews .swiper-wrapper {
    align-items: stretch;
}

.reviews .swiper-slide {
    height: auto;
}

.review-card {
    height: 100%;
    background-color: #FFFFFF;
    border-radius: 32px;
    border: 1px solid #F4E7DD;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
    padding: 38px 42px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-card__header {
    display: flex;
    align-items: center;
    gap: 18px;
}

.review-card__avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.review-card__person {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.review-card__name {
    font-size: 20px;
    font-weight: 600;
    color: #030A1B;
    line-height: 1.2;
}

.review-card__role {
    font-size: 14px;
    color: #6B7280;
}

.review-card__quote {
    font-size: 64px;
    font-weight: 500;
    color: rgba(59, 130, 246, 0.2);
    line-height: 1;
    margin-left: auto;
}

.review-card__text {
    font-size: 16px;
    color: #4B5563;
    line-height: 1.7;
}

.reviews__pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.reviews__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background-color: #E5E7EB;
    opacity: 1;
    margin: 0 6px !important;
    transition: all 0.3s ease;
}

.reviews__pagination .swiper-pagination-bullet-active {
    width: 30px;
    background-color: #2563EB;
}

@media (max-width: 1024px) {
    .reviews {
        padding: 80px 50px 100px;
    }

    .reviews__title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .reviews {
        padding: 70px 30px 90px;
    }

    .reviews__title {
        font-size: 34px;
    }

    .review-card {
        padding: 30px;
    }

    .review-card__header {
        flex-wrap: wrap;
    }

    .review-card__quote {
        font-size: 48px;
    }
}

/* CTA Subscribe Section */
.cta-subscribe {
    width: 100%;
    padding: 40px 80px 120px;
    background-color: #ffffff;
}

.cta-subscribe__container {
    max-width: 1146px;
    margin: 0 auto;
}

.cta-subscribe__inner {
    background-color: #3F2AAF;
    border-radius: 36px;
    padding: 80px 70px 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #FFFFFF;
    box-shadow: 0 30px 80px rgba(41, 34, 100, 0.35);
}

.cta-subscribe__inner::before,
.cta-subscribe__inner::after {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    z-index: 0;
}

.cta-subscribe__inner::before {
    bottom: -160px;
    left: -60px;
}

.cta-subscribe__inner::after {
    top: -180px;
    right: -40px;
    width: 260px;
    height: 260px;
    background: rgba(255, 255, 255, 0.05);
}

.cta-subscribe__title {
    font-size: 44px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #FFFFFF;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.cta-subscribe__subtitle {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 auto 70px;
    max-width: 700px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.cta-subscribe__form {
    position: relative;
    max-width: 640px;
    margin: 0 auto;
    z-index: 1;
}

.cta-subscribe__input-wrapper {
    position: relative;
}

.cta-subscribe__input {
    width: 100%;
    height: 70px;
    border-radius: 12px;
    border: none;
    padding: 0 200px 0 30px;
    font-size: 16px;
    font-weight: 400;
    color: #030A1B;
    background-color: #FFFFFF;
    box-shadow: 0 25px 55px rgba(12, 14, 35, 0.2);
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.cta-subscribe__input::placeholder {
    color: rgba(3, 10, 27, 0.5);
}

.cta-subscribe__input:focus {
    outline: 2px solid rgba(62, 205, 255, 0.4);
    outline-offset: 3px;
    transform: translateY(-1px);
}

.cta-subscribe__input--error {
    box-shadow: 0 0 0 2px #FCA5A5, 0 25px 55px rgba(12, 14, 35, 0.2);
}

.cta-subscribe__button {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    padding: 16px 40px;
    border-radius: 8px;
    border: 2px solid transparent;
    background: linear-gradient(120deg, #53A2FF 0%, #2563EB 100%);
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4);
}

.cta-subscribe__button:hover {
    background: #ffffff;
    color: #2E6EFF;
    border: 1px solid #2E6EFF;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 18px 35px rgba(37, 99, 235, 0.5);
}

.cta-subscribe__button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    box-shadow: none;
}

.cta-subscribe__error {
    min-height: 20px;
    margin-top: 18px;
    font-size: 14px;
    color: #FDD2D8;
}

@media (max-width: 1024px) {
    .cta-subscribe {
        padding: 40px 50px 100px;
    }

    .cta-subscribe__inner {
        padding: 70px 50px 80px;
    }
}

@media (max-width: 768px) {
    .cta-subscribe {
        padding: 30px 30px 80px;
    }

    .cta-subscribe__title {
        font-size: 34px;
    }

    .cta-subscribe__subtitle {
        margin-bottom: 50px;
    }

    .cta-subscribe__input {
        padding: 0 30px 0 20px;
        height: 64px;
    }

    .cta-subscribe__button {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 18px;
        box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4);
    }

    .cta-subscribe__input-wrapper {
        display: flex;
        flex-direction: column;
    }
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal__content {
    position: relative;
    background-color: #ffffff;
    border-radius: 24px;
    padding: 50px 60px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    animation: modalSlideIn 0.3s ease-out;
}

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

.modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    font-size: 32px;
    color: #6B7280;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    line-height: 1;
}

.modal__close:hover {
    color: #1F2937;
}

.modal__title {
    font-size: 32px;
    font-weight: 600;
    color: #1F2937;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
}

.modal__form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.modal__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.modal__label {
    font-size: 16px;
    font-weight: 500;
    color: #4B5563;
}

.modal__input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-size: 16px;
    color: #1F2937;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.modal__input::placeholder {
    color: #9CA3AF;
}

.modal__input:focus {
    outline: none;
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.modal__input.error {
    border-color: #EF4444;
}

.modal__error {
    font-size: 14px;
    color: #EF4444;
    min-height: 20px;
    margin-top: 4px;
}

.modal__options {
    display: flex;
    gap: 12px;
}

.modal__option {
    flex: 1;
    padding: 12px 20px;
    background-color: #ffffff;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    color: #6B7280;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal__option:hover {
    background-color: #ffffff;
    border: 1px solid #2E6EFF;
    color: #2E6EFF;
    transform: scale(1.05);
}

.modal__option--active {
    background-color: #2563EB;
    border-color: #2563EB;
    color: #ffffff;
}

.modal__option--active:hover {
    background-color: #ffffff;
    border: 1px solid #2E6EFF;
    color: #2E6EFF;
    transform: scale(1.05);
}

.modal__field--checkbox {
    margin-top: 8px;
}

.modal__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.modal__checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #2563EB;
    flex-shrink: 0;
}

.modal__checkbox-text {
    font-size: 15px;
    color: #4B5563;
    line-height: 1.5;
}

.modal__link {
    color: #2563EB;
    text-decoration: none;
    transition: color 0.2s ease;
}

.modal__link:hover {
    color: #1D4ED8;
    text-decoration: underline;
}

.modal__submit {
    width: 100%;
    padding: 16px 32px;
    background-color: #2563EB;
    color: #ffffff;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 16px;
}

.modal__submit:hover {
    background-color: #ffffff;
    color: #2E6EFF;
    border: 1px solid #2E6EFF;
    transform: scale(1.05);
}

.modal__submit:active {
    transform: translateY(0);
}

.modal__submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 768px) {
    .modal__content {
        padding: 40px 30px;
        border-radius: 20px;
    }

    .modal__title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .modal__options {
        flex-direction: column;
    }

    .modal__option {
        width: 100%;
    }
}

/* Checkbox error state */
.modal__checkbox.error .modal__checkbox-text {
    color: #EF4444;
}

.modal__checkbox.error input[type="checkbox"] {
    outline: 2px solid #EF4444;
    outline-offset: 2px;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .main__image,
    .featured-property__image img {
        transform: none !important;
    }
    
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
    }
}
