@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");

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

:root {
    --white: #fff;
    --text-color: #333;
    --gray-color: #777;
    --red: #dc4047;
    --purple: #957fe8;
    --orange: #fc9b00;
    --green: #38c172;
    --aqua: #4dc0b5;
    --pink: #f66d9b;
    --blue: #7acdf0;

    --spacing-sm: 5px;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;

    --mobile-width: 550px;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

body {
    font-family: "Nunito Sans", sans-serif;
    background-color: var(--white);
    color: var(--text-color);
    line-height: 1.6;
    min-height: calc(100vh - 20px);
    padding: 10px;
}

a {
    text-decoration: none;
    color: inherit;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin: 0;
}

.btn {
    font-weight: 700;
}

input:disabled,
textarea:disabled,
select:disabled {
    cursor: not-allowed;
}

input:focus,
textarea:focus,
select:focus,
button:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--blue);
}

.wrapper {
    height: 100%;
    min-height: calc(100vh - 20px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.badge {
    font-size: 14px;
    font-weight: 700;
}

.hidden {
    display: none !important;
}

.border-radiıus-sm {
    border-radius: var(--radius-sm);
}

.container {
    width: 100%;
    max-width: var(--mobile-width);
    margin: 0 auto;
    animation: slideIn 0.5s ease-out;
}

.checkbox-container,
.radio-container {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.checkmark,
.radio-mark {
    width: 4px;
    height: 40px;
    border: 2px solid #ddd;
    border-radius: 4px;
    position: relative;
}

input[type="checkbox"]:checked + .checkmark,
input[type="radio"]:checked + .radio-mark {
    background: var(--blue);
    border-color: var(--blue);
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    grid-auto-flow: dense;
    margin: 10px 0 0 0;
}

.grid-item {
    border-radius: 10px;
    overflow: hidden;
}

.grid-item h2 {
    line-height: 1.35;
}

.xx-large {
    height: 225px;
}

.x-large {
    height: 190px;
}

.large {
    height: 160px;
}

.medium {
    height: 130px;
}

.medium-tall {
    height: 214px;
}

.small {
    height: 100px;
}

.small-tall {
    height: 215px;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--white);
    height: 100%;
    width: 100%;
    transition: transform 0.2s ease;
    gap: 10px;
}

.card:active {
    transform: scale(0.98);
}

.icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.icon img {
    width: 100%;
    height: 100%;
}

.card h2 {
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    color: var(--white);
    margin: 0;
}

.blue {
    background-color: var(--blue);
}

.purple {
    background-color: var(--purple);
}

.pink {
    background-color: var(--pink);
}

.aqua {
    background-color: var(--aqua);
}

.orange {
    background-color: var(--orange);
}

.green {
    background-color: var(--green);
}

.red {
    background-color: #dc4047;
}

.card {
    position: relative;
    overflow: hidden;
    border: none;
}

.ripple {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 101%;
    background-color: white;
    z-index: 100;
    text-align: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.header h1 {
    font-size: 24px;
    color: var(--text-color);
    margin: 10px 0 0 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.buttons {
    display: flex;
    gap: var(--spacing-md);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.form-group select {
    width: 100%;
    padding: var(--spacing-md);
}

.dashboard-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dashboard-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 15px;
    text-decoration: none;
    color: white;
    gap: 10px;
    transition: transform 0.2s ease;
    min-height: 120px;
    position: relative;
    overflow: hidden;
}

.dashboard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.dashboard-card:active {
    transform: scale(0.98);
}

.dashboard-card h2 {
    font-size: 16px;
    margin: 0;
    text-align: center;
    line-height: 1.3;
}


.card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    padding: 12px;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.full-width {
    width: 100%;
    min-height: 140px;
}

.fifty-width {
    width: calc(50% - 7.5px);
}

.half-width {
    width: calc(66.666% - 7.5px);
}

.quarter-width {
    width: calc(33.333% - 7.5px);
}

.payment-grid {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.cards-grid,
.bottom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
}

.half-width-container {
    display: flex;
    gap: 10px;
    width: 100%;
}

@media (max-width: 340px) {
    .dashboard-card h2 {
        font-size: 14px;
    }

    .card-icon {
        width: 40px;
        height: 40px;
        padding: 10px;
    }
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }

    .app-content {
        flex-direction: column;
        text-align: center;
    }

    .app-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header-content {
        position: relative;
    }

    .nav, .buttons {
        display: none;
    }

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

    .hero h1 {
        font-size: 2.3rem;
    }

    .property-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }

    .policy-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .tabs {
        flex-direction: column;
    }

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

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

    .cta h2 {
        font-size: 1.7rem;
    }

    .app-text h2 {
        font-size: 1.7rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .policy-links {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
}

.back-link {
    position: absolute;
    left: 0;
    top: -5px;
}

.back-link img {
    width: 60px;
    height: 60px;
}

.logo-text {
    font-size: 32px;
    font-weight: 700;
    color: var(--blue);
    letter-spacing: -0.5px;
}

.logo-text a {
    text-decoration: none;
    color: var(--blue);
    font-weight: 800;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

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

.form-group label {
    font-size: 14px;
    color: var(--text-color);
    font-weight: 700;
}

.country-code {
    padding: 16px;
    background: #f5f5f5;
    color: var(--text-color);
    font-size: 14px;
    border-right: 1px solid #ddd;
}

.text-input {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 13px;
    overflow: hidden;
    padding: 1px;
}

.text-input input,
.text-input textarea {
    flex: 1;
    padding: 16px;
    border: none;
    font-size: 14px;
    color: var(--text-color);
    width: 100%;
    border-radius: 13px;
}

.phone-input {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 13px;
    overflow: hidden;
    padding: 1px;
}

.phone-input input {
    flex: 1;
    padding: 16px;
    border: none;
    font-size: 14px;
    color: var(--text-color);
    width: 100%;
    border-radius: 0 13px 13px 0;
}

.password-input {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 13px;
    overflow: hidden;
    padding: 1px;
}

.password-input input {
    flex: 1;
    padding: 16px;
    border: none;
    font-size: 14px;
    color: var(--text-color);
    width: 100%;
    border-radius: 13px 0 0 13px;
}

.toggle-password {
    background: none;
    border: none;
    padding: 14px;
    cursor: pointer;
    border-radius: 0 11px 10px 0;
    margin-right: 1px;
}

.toggle-password img {
    width: 20px;
    height: 20px;
    opacity: 0.5;
}

.primary-button {
    background: var(--blue);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.primary-button:active {
    transform: scale(0.98);
}

.primary-button:disabled {
    background: #ddd;
    cursor: not-allowed;
}

.primary-links {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-top: 10px;
}

.primary-links a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 700;
}

.resend-code {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.timer {
    font-size: 14px;
    color: #666;
}

.resend-button {
    background: none;
    border: none;
    color: var(--blue);
    font-size: 14px;
    cursor: pointer;
    padding: 0;
    margin-top: 10px;
}

.resend-button:disabled {
    color: #999;
    cursor: not-allowed;
}

.hide {
    display: none;
}

.modal-footer {
    position: sticky;
    background: white;
    bottom: 0;
    margin-left: 1px;
}

.list-group-item {
    padding-left: 0;
    padding-right: 0;
}

.blog-card {
    display: flex;
    flex-direction: row;
    border-radius: 15px;
    transition: transform 0.2s ease;
    height: 100%;
}

.blog-card:hover {
    transform: scale(1.02);
}

.blog-card h2 {
    font-size: 16px;
    margin: 0;
}

.blog-card img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.notification-container {
    max-height: 160px;
    grid-column: span 2;
    overflow: hidden;
    margin-top: 10px;
    border-radius: 15px;
}

.notification-card {
    display: flex;
    flex-direction: row;
    border-radius: 15px;
    transition: transform 0.2s ease;
    justify-content: center;
    align-items: center;
}

.notification-card:hover {
    transform: scale(1.02);
}

.notification-card img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    padding: 15px;
    background: var(--orange);
}

.notification-card h2 {
    font-size: 14px;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notification-card p {
    font-size: 12px;
    color: dimgray;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}

.property-container {
    max-height: 190px;
    grid-column: span 2;
    overflow: hidden;
    margin-top: 10px;
    border-radius: 15px;
}

.property-card {
    display: flex;
    flex-direction: row;
    height: 100%;
    border-radius: 15px;
    justify-content: center;
    align-items: center;
    background: #eeeeee;
    transition: transform 0.2s ease;
}

.property-card img {
    width: 80px;
    height: 80px;
    padding: 1rem;
}

.property-card h2 {
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
    margin: 10px 0;
}

.property-card h4 {
    font-size: 14px;
    margin: 5px 0;
    color: var(--gray-color);
}

.payment-container {
    max-height: 220px;
    grid-column: span 2;
    overflow: hidden;
    margin-top: 10px;
    border-radius: 15px;
}

.payment-card {
    display: flex;
    flex-direction: row;
    height: 100%;
    border-radius: 15px;
    justify-content: center;
    align-items: center;
    background: #eeeeee;
    transition: transform 0.2s ease;
}

.payment-card img {
    width: 100%;
    height: 100%;
    padding: 15px;
}

.payment-card h2 {
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
    margin: 10px 0;
}

.payment-card h4 {
    font-size: 14px;
    margin: 5px 0;
    color: var(--gray-color);
}

.iban-container {
    max-height: 220px;
    grid-column: span 2;
    overflow: hidden;
    margin-top: 10px;
    border-radius: 15px;
}

.iban-card {
    display: flex;
    flex-direction: row;
    height: 100%;
    border-radius: 15px;
    justify-content: center;
    align-items: center;
    background: #eeeeee;
    transition: transform 0.2s ease;
}

.iban-card img {
    width: 100%;
    height: 100%;
    padding: 15px;
}

.iban-card h2, .iban-card h3 {
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
    margin: 10px 0;
}

.iban-card h3 {
    font-size: 14px;
}

.iban-card h4 {
    font-size: 13px;
    margin: 5px 0;
    color: var(--gray-color);
}

.property-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.property-detail-key {
    width: 60%;
    text-align: left;
}

.property-detail-value {
    width: 150%;
    text-align: right;
    text-wrap: wrap;
    line-height: 1.2;
}

.filepond--root {
    min-height: 180px !important;
}

.filepond--drop-label {
    height: 180px !important;
    font-size: 22px !important;
    color: var(--text-color) !important;
    padding: 50px 0 !important;
}

.filepond--label-action {
    color: var(--blue) !important;
}

.w-80px {
    width: 80px !important;
}

.h-80px {
    height: 80px !important;
}

.w-100px {
    width: 100px !important;
}

.h-100px {
    height: 100px !important;
}

.w-110px {
    width: 110px !important;
}

.h-110px {
    height: 110px !important;
}
