/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #000000;
    line-height: 1.6;
    background-color: #FFFFFF;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: #FFFFFF;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

.header-nav {
    display: flex;
    gap: 32px;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-link {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #1AA04F;
}

.nav-link:active {
    color: #1AA04F;
}

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

.language-switcher {
    background-color: #000000;
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.language-switcher:hover {
    background-color: #333333;
}

.lang-text {
    display: inline-block;
}

/* Hero Section Styles */
.hero {
    background-color: #FFFFFF;
    padding: 60px 0 80px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    max-width: 100%;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #000000;
}

.hero-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 32px;
    max-width: 500px;
}

.cta-button {
    background-color: #00C853;
    color: #FFFFFF;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.cta-button:hover {
    background-color: #00A043;
    transform: translateY(-2px);
}

.cta-button:active {
    transform: translateY(0);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.hero-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Benefits and Features Section */
.benefits-features {
    background-color: #F7F7F7;
    padding: 80px 0;
}

.benefits-features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.feature-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    margin-bottom: 20px;
}

.icon-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 12px;
    line-height: 1.3;
}

.feature-description {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    line-height: 1.6;
}

.benefits-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.benefits-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #00C853;
    margin-bottom: 16px;
}

.benefits-title {
    font-size: 40px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 24px;
    line-height: 1.2;
}

.benefits-description {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    line-height: 1.6;
    max-width: 480px;
}

/* Application Features Section */
.app-features {
    background-color: #FFFFFF;
    padding: 80px 0;
}

.app-features-title {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.app-features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.app-phone {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-phone-img {
    max-width: 100%;
    height: auto;
    display: block;
    width: 100%;
    max-width: 400px;
}

.app-features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.app-feature-block {
    background-color: #F7F7F7;
    border-radius: 12px;
    padding: 32px;
}

.app-feature-title {
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 12px;
    line-height: 1.3;
}

.app-feature-description {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    background-color: #FFFFFF;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #00C853;
    margin-bottom: 16px;
}

.faq-title {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.2;
}

.faq-intro {
    font-size: 18px;
    font-weight: 400;
    color: #666666;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

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

.faq-item {
    text-align: left;
}

.faq-question {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 12px;
    line-height: 1.3;
}

.faq-answer {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    line-height: 1.6;
}

.faq-decoration {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
}

.faq-dots-img {
    max-width: 400px;
    width: 100%;
    height: auto;
    opacity: 0.3;
}

/* Contact Us Section */
.contact {
    background-color: #1AA04F;
    background-image: url('images/contact-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    position: relative;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.contact-info {
    background-color: transparent;
    padding: 60px 50px;
    color: #FFFFFF;
}

.contact-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #FFFFFF;
}

.contact-title-highlight {
    color: #FFD700;
}

.contact-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #FFFFFF;
    margin-bottom: 40px;
    opacity: 0.9;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background-color: #1AA04F;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-detail-label {
    font-size: 14px;
    font-weight: 600;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-detail-value {
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail-value:hover {
    color: #FFD700;
}

.contact-form-wrapper {
    background-color: transparent;
    padding: 60px 50px;
}

.contact-form-title {
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 32px;
}

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

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #FFFFFF;
    background-color: rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFFFFF;
    background-color: rgba(255, 255, 255, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit-btn {
    background-color: #000000;
    color: #FFFFFF;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 8px;
}

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

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

/* Success Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.modal-icon {
    width: 64px;
    height: 64px;
    background-color: #1AA04F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: #FFFFFF;
    font-weight: bold;
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
}

.modal-message {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    margin-bottom: 24px;
    line-height: 1.6;
}

.modal-close-btn {
    background-color: #1AA04F;
    color: #FFFFFF;
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.modal-close-btn:hover {
    background-color: #158A42;
}

/* Footer */
.footer {
    background-color: #161A22;
    padding: 60px 0;
}

.footer-content {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.footer-branding {
    max-width: 600px;
}

.footer-logo {
    margin-bottom: 24px;
}

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

.footer-description {
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

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

    .hero-description {
        max-width: 100%;
        margin: 0 auto 32px;
    }

    .hero-image {
        order: -1;
        min-height: 400px;
    }

    .hero-img {
        max-width: 500px;
    }

    .benefits-features-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .benefits-text {
        order: -1;
        text-align: center;
        padding-top: 0;
    }

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

    .benefits-description {
        max-width: 100%;
        margin: 0 auto;
    }

    .app-features-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .app-features-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .app-phone {
        order: -1;
    }

    .faq {
        padding: 60px 0;
    }

    .faq-title {
        font-size: 36px;
    }

    .faq-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .faq-decoration {
        display: none;
    }

    .contact {
        padding: 60px 0;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding: 40px 30px;
    }

    .contact-title {
        font-size: 36px;
    }

    .contact-form-wrapper {
        padding: 40px 30px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 40px 0 60px;
    }

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

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

    .hero-image {
        min-height: 300px;
    }

    .hero-img {
        max-width: 100%;
    }

    .header {
        padding: 15px 0;
    }

    .logo-img {
        height: 32px;
    }

    .header-nav {
        display: none;
    }

    .benefits-features {
        padding: 60px 0;
    }

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

    .feature-card {
        padding: 24px;
    }

    .benefits-title {
        font-size: 28px;
    }

    .benefits-description {
        font-size: 14px;
    }

    .app-features {
        padding: 60px 0;
    }

    .app-features-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .app-features-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .app-phone {
        order: -1;
    }

    .app-feature-block {
        padding: 24px;
    }

    .app-feature-title {
        font-size: 20px;
    }

    .app-feature-description {
        font-size: 14px;
    }

    .faq {
        padding: 60px 0;
    }

    .faq-title {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .faq-intro {
        font-size: 16px;
    }

    .faq-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .faq-column {
        gap: 24px;
    }

    .faq-question {
        font-size: 18px;
    }

    .faq-answer {
        font-size: 14px;
    }

    .faq-decoration {
        display: none;
    }

    .contact {
        padding: 40px 0;
    }

    .contact-info {
        padding: 30px 20px;
    }

    .contact-title {
        font-size: 28px;
    }

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

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .contact-form-title {
        font-size: 24px;
    }

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

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

    .footer {
        padding: 40px 0;
    }

    .footer-description {
        font-size: 14px;
    }
}

