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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #FFFFFF;
    color: #0A0A0A;
    line-height: 1.4;
}

/* Animation Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

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

@keyframes scaleUp {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Header */
.header {
    position: relative;
    width: 100%;
    height: 100px;
    background: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 120px;
    animation: fadeIn 1s ease-in-out;
}

.header-content {
    width: 100%;
    max-width: 1680px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    animation: slideInLeft 1s ease-in-out;
}

.logo-icon {
    width: 30px;
    height: 30px;
    background: #0225FF;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 16px;
}

.logo-text {
    font-family: 'Plus Jakarta Sans';
    font-weight: 700;
    font-size: 24px;
    color: #0A0A0A;
}

.app-download-buttons {
    display: flex;
    gap: 10px;
    animation: slideInLeft 1s ease-in-out;
}

.app-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    gap: 8px;
    background: #0A0A0A;
    border: 0.5px solid #0A0A0A;
    border-radius: 4px;
    text-decoration: none;
    color: #FFFFFF;
    font-family: 'Manrope';
    font-size: 10px;
    font-weight: 500;
    transition: transform 0.2s ease;
}

.app-button:hover {
    transform: translateY(-1px);
    color: #FFFFFF;
}

.app-button-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.app-button-subtitle {
    font-size: 10px;
    font-weight: 500;
    line-height: 13px;
}

.app-button-title {
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
}

.app-button i {
    font-size: 20px;
}

.app-button img {
    width: 20px;
    height: 20px;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    background: #FFFFFF;
    padding: 70px 120px 0;
    display: flex;
    justify-content: center;
}

.hero-container {
    width: 100%;
    max-width: 1680px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
}

.hero-content {
    width: 890px;
}

.hero-title {
    font-family: 'Plus Jakarta Sans';
    font-weight: 800;
    font-size: 64px;
    line-height: 70px;
    color: #0A0A0A;
    margin-bottom: 0;
    animation: slideUp 1s ease-in-out;
}

.hero-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 637px;
}

.hero-description {
    font-family: 'Plus Jakarta Sans';
    font-weight: 500;
    font-size: 28px;
    line-height: 35px;
    color: #222222;
    animation: slideInRight 1s ease-in-out 0.3s;
    animation-fill-mode: both;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    animation: slideInRight 1s ease-in-out 0.3s;
    animation-fill-mode: both;
}

.primary-button {
    display: flex;
    align-items: center;
    padding: 16px;
    gap: 16px;
    background: #0225FF;
    backdrop-filter: blur(12px);
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.primary-button:hover {
    transform: translateY(-2px);
}

.primary-button-text {
    font-family: 'Plus Jakarta Sans';
    font-weight: 600;
    font-size: 18px;
    line-height: 23px;
    color: #FFFFFF;
}

.button-icon {
    width: 24px;
    height: 24px;
    background: #FFFFFF;
    border-radius: 20px;
}

.secondary-button {
    display: flex;
    align-items: center;
    padding: 16px;
    gap: 16px;
    background: transparent;
    border: 2px solid #0225FF;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.secondary-button:hover {
    background: #0225FF;
    transform: translateY(-2px);
}

.secondary-button-text {
    font-family: 'Plus Jakarta Sans';
    font-weight: 600;
    font-size: 18px;
    line-height: 23px;
    color: #0225FF;
    transition: color 0.2s ease;
}

.secondary-button:hover .secondary-button-text {
    color: #FFFFFF;
}

/* Hero Image */
.hero-image-section {
    width: 100%;
    padding: 50px 120px;
    display: flex;
    justify-content: center;
}

.hero-image {
    width: 100%;
    max-width: 1680px;
    height: 600px;
    background: url("/assets/images/banner.png") center/cover no-repeat;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    animation: scaleUp 1s ease-in-out;
}



/* Features Section */
.features-section {
    width: 100%;
    padding: 80px 120px;
    background: #FFFFFF;
    display: flex;
    justify-content: center;
}

.features-container {
    width: 100%;
    max-width: 1680px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
    animation: bounce 0.8s ease-in-out;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #EFF6FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 32px;
    color: #0225FF;
}

.feature-title {
    font-family: 'Plus Jakarta Sans';
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    color: #000000;
    margin-bottom: 16px;
}

.feature-description {
    font-family: 'Plus Jakarta Sans';
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #222222;
}

/* Combined App and Landlord Section */
.app-landlord-section {
    width: 100%;
    background: #0A0A0A;
    padding: 70px 120px 0;
    display: flex;
    justify-content: center;
    border-radius: 20px;
    margin: 0 auto;
    max-width: 1680px;
    position: relative;
    overflow: hidden;
}

.app-landlord-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.app-content {
    display: flex;
    align-items: flex-start;
    gap: 120px; /* Increased gap for spacing between text and image */
    padding: 40px 0; /* Added padding for better vertical spacing */
}

.tenant-content, .landlord-content {
    flex: 1;
    color: #FFFFFF;
    animation: slideInLeft 1s ease-in-out;
}

.tenant-image, .landlord-image {
    flex: 1;
    animation: slideInRight 1s ease-in-out 0.3s;
    animation-fill-mode: both;
}

.tenant-image img, .landlord-image img {
    max-width: 100%;
    height: auto;
    border-radius: 40px;
    margin: 20px; /* Added margin to create space around images */
}

.tenant-image img:hover, .landlord-image img:hover {
    animation: bounce 0.8s ease-in-out;
}

.rentlary-badge, .landlord-badge {
    display: inline-block;
    background: #0225FF;
    color: #FFFFFF;
    font-family: 'Plus Jakarta Sans';
    font-weight: 600;
    font-size: 12px;
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.landlord-badge {
    background: #22C55E;
}

.app-title {
    font-family: 'Plus Jakarta Sans';
    font-weight: 800;
    font-size: 48px;
    line-height: 56px;
    color: #FFFFFF;
    margin-bottom: 40px;
}

.feature-item {
    margin-bottom: 30px;
    padding-left: 24px;
    border-left: 3px solid #0225FF;
}

.landlord-content .feature-item {
    border-left: 3px solid #22C55E;
}

.feature-title {
    font-family: 'Plus Jakarta Sans';
    font-weight: 700;
    font-size: 20px;
    line-height: 25px;
    color: #000000;
    margin-bottom: 8px;
}

.feature-description {
    font-family: 'Plus Jakarta Sans';
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #B5B5B5;
}

.feature-divider {
    border-left: 2px dotted #666;
    height: 30px;
    margin: 20px 0;
}

/* FAQ Section */
.faq-section {
    width: 100%;
    background: #FFFFFF;
    padding: 100px 120px;
    display: flex;
    justify-content: center;
}

.faq-container {
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
}

.faq-title {
    font-family: 'Plus Jakarta Sans';
    font-weight: 800;
    font-size: 36px;
    line-height: 40px;
    text-align: center;
    margin-bottom: 16px;
    color: #0A0A0A;
    animation: slideUp 1s ease-in-out;
}

.faq-subtitle {
    font-family: 'Plus Jakarta Sans';
    font-weight: 500;
    font-size: 20px;
    line-height: 25px;
    text-align: center;
    color: #222222;
    margin-bottom: 40px;
    animation: slideUp 1s ease-in-out;
}

.toggle-buttons {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
}

.toggle-btn {
    padding: 12px 30px;
    border: none;
    font-family: 'Plus Jakarta Sans';
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #e9ecef;
    color: #666;
}

.toggle-btn:first-child {
    border-radius: 25px 0 0 25px;
}

.toggle-btn:last-child {
    border-radius: 0 25px 25px 0;
}

.toggle-btn.active {
    background-color: #0225FF;
    color: white;
}

.toggle-btn:hover:not(.active) {
    background-color: #dee2e6;
    transform: scale(1.1);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

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

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-family: 'Plus Jakarta Sans';
    font-size: 1.1rem;
    font-weight: 500;
    color: #0A0A0A;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.faq-icon.plus {
    background-color: #0225FF;
    color: white;
}

.faq-icon.close {
    background-color: #0A0A0A;
    color: white;
}

.faq-answer {
    padding: 0 20px 20px;
    font-family: 'Plus Jakarta Sans';
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: #222222;
    display: none;
}

.faq-item.expanded .faq-answer {
    display: block;
}

.faq-item.expanded .faq-question {
    background-color: #f8f9fa;
}

/* Contact Section */
.contact-section {
    width: 90%;
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 100%);
    padding: 100px 120px;
    display: flex;
    justify-content: center;
    border-radius: 20px;
    margin: 0 auto;
    max-width: 1680px;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("/assets/images/contact.png") center/cover no-repeat;
    z-index: 1;
}


.contact-container {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.contact-title {
    font-family: 'Plus Jakarta Sans';
    font-weight: 800;
    font-size: 36px;
    line-height: 40px;
    color: #FFFFFF;
    margin-bottom: 16px;
    animation: slideUp 1s ease-in-out;
}

.contact-subtitle {
    font-family: 'Plus Jakarta Sans';
    font-weight: 500;
    font-size: 20px;
    line-height: 25px;
    color: #FFFFFF;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: slideUp 1s ease-in-out;
}

.contact-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.contact-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(255,255,255,0.2);
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.contact-card.visible {
    opacity: 1;
    transform: translateY(0);
    animation: bounce 0.8s ease-in-out;
}

.contact-card h4 {
    font-family: 'Plus Jakarta Sans';
    font-weight: 700;
    font-size: 18px;
    line-height: 23px;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.contact-card p {
    font-family: 'Plus Jakarta Sans';
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #B5B5B5;
    opacity: 0.9;
}

/* Footer */
.footer {
    width: 100%;
    background: #FFFFFF;
    padding: 100px 120px 50px;
    display: flex;
    justify-content: center;
}

.footer-container {
    width: 100%;
    max-width: 1680px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 723px;
    animation: slideUp 1s ease-in-out;
}

.footer-title {
    font-family: 'Plus Jakarta Sans';
    font-weight: 800;
    font-size: 32px;
    line-height: 40px;
    color: #0A0A0A;
}

.footer-description {
    font-family: 'Plus Jakarta Sans';
    font-weight: 500;
    font-size: 20px;
    line-height: 25px;
    color: #222222;
}

.footer-app-buttons {
    display: flex;
    gap: 10px;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 32px;
    animation: slideUp 1s ease-in-out;
}

.footer-more-title {
    font-family: 'Plus Jakarta Sans';
    font-weight: 700;
    font-size: 28px;
    line-height: 35px;
    color: #000000;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 24px;
}

.footer-link {
    font-family: 'Plus Jakarta Sans';
    font-weight: 500;
    font-size: 18px;
    line-height: 23px;
    color: #000000;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #0225FF;
}

.social-links {
    display: flex;
    gap: 18px;
}

.social-link {
    width: 32px;
    height: 32px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: #0225FF;
    transform: translateY(-2px);
}

.footer-bottom {
    width: 100%;
    padding: 32px 120px 0;
    border-top: 0.4px solid #D3D3D3;
    display: flex;
    justify-content: center;
    animation: fadeIn 1s ease-in-out;
}

.footer-bottom-content {
    width: 100%;
    max-width: 1680px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-copyright {
    font-family: 'Plus Jakarta Sans';
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: #0A0A0A;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .header,
    .hero-section,
    .hero-image-section,
    .features-section,
    .app-landlord-section,
    .faq-section,
    .contact-section,
    .footer,
    .footer-bottom {
        padding-left: 60px;
        padding-right: 60px;
    }

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

    .hero-description {
        font-size: 24px;
        line-height: 30px;
    }

    .app-landlord-section,
    .contact-section {
        border-radius: 16px;
    }

    .app-content {
        flex-direction: column;
        gap: 60px;
    }

    .tenant-image, .landlord-image {
        margin: 0 auto; /* Center images in column layout */
    }
}

@media (max-width: 768px) {
    .header,
    .hero-section,
    .hero-image-section,
    .features-section,
    .app-landlord-section,
    .faq-section,
    .contact-section,
    .footer,
    .footer-bottom {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-container {
        flex-direction: column;
        gap: 40px;
    }

    .hero-content {
        width: 100%;
    }

    .hero-right {
        width: 100%;
    }

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

    .hero-description {
        font-size: 20px;
        line-height: 26px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .features-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .app-landlord-container {
        gap: 40px;
    }

    .app-content {
        flex-direction: column;
        gap: 40px;
    }

    .app-title {
        font-size: 32px;
        line-height: 38px;
    }

    .tenant-image img, .landlord-image img {
        max-width: 100%;
        margin: 10px auto; /* Adjusted margin for smaller screens */
    }

    .contact-cards {
        flex-direction: column;
        gap: 20px;
    }

    .contact-card {
        min-width: 100%;
    }

    .footer-container {
        flex-direction: column;
        gap: 40px;
    }

    .footer-right {
        align-items: flex-start;
    }

    .footer-links {
        align-items: flex-start;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .app-landlord-section,
    .contact-section {
        border-radius: 12px;
    }
}