﻿@font-face {
    font-family: colak;
    src: url(/fonts/Colak/Colak.ttf);
}

@font-face {
    font-family: peyda;
    src: url(/fonts/peyda/Peyda-Regular.ttf);
}

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

body {
    font-family: peyda;
    line-height: 1.6;
    color: #333;
}

h1 {
    font-family: colak;
    font-weight: bold;
    font-size: 5rem !important;
}

h2 {
    font-family: colak;
    font-weight: bold;
    font-size: 4rem !important;
}

h3 {
    font-family: peyda;
    font-weight: bold;
    font-size: 2rem !important;
}


.container {
    width: 100%;
    max-width: 97%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    padding: 15px 0;
    position: relative;
}

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

li a {
    color: #059669;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: color 0.3s ease;
}

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

.logo-circle {
    width: 32px;
    height: 32px;
    background-color: #059669;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

/* Desktop Navigation */
nav {
    display: block;
}

    nav ul {
        display: flex;
        gap: 25px;
        list-style: none;
    }

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

        nav a:hover {
            color: #059669;
        }

.getreportbtn {
    width: 50%;
    height: 62px;
    font-size: 1.2rem !important;
    font-family: 'peyda';
    font-weight: bold;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

    .mobile-menu-btn span {
        width: 25px;
        height: 3px;
        background-color: #333;
        margin: 3px 0;
        transition: 0.3s;
    }

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

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

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

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    border-top: 1px solid #ddd;
    z-index: 1000;
}

    .mobile-nav.active {
        display: block;
    }

    .mobile-nav ul {
        list-style: none;
        padding: 20px;
    }

    .mobile-nav li {
        margin-bottom: 15px;
    }

    .mobile-nav a {
        text-decoration: none;
        color: #333;
        font-size: 16px;
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }

.step-image img {
    width: 108%;
}

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

.btn {
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    border: none;
}

.inputlink::placeholder {
    color: #6aac7b;
    font-size: 1.2rem;
}

.btn-outline {
    background-color: white;
    color: #059669;
    border: 1px solid #059669;
    font-family: 'peyda';
    width: 110px;
    font-size: 1.1rem;
    font-weight: bold;
}

.btn-primary {
    background-color: #059669;
    color: white;
}

    .btn-primary:hover {
        background-color: white;
        color: #059669;
        border: 1px solid #059669;
    }

.btn-outline:hover {
    background-color: #059669;
    color: white;
    border: 1px solid #059669;
}

/* Hero */
.hero {
    background-color: #f0f9ff;
    padding: 50px 0;
    text-align: center;
}

    .hero h1 {
        font-size: 48px;
        color: #059669;
        margin-bottom: 10px;
    }

    .hero h2 {
        font-size: 32px;
        color: #10b981;
        margin-bottom: 20px;
    }

    .hero p {
        color: #6aac7b;
        font-size: 26px;
        margin-bottom: 30px;
        font-weight: bold;
    }

.upload-box {
    max-width: 50%;
    margin: 0 auto 2px;
    border: 2px dashed #333;
    border-radius: 5px;
    height: 80px;
}

/* Steps */
.steps {
    padding: 50px 0;
    background-color: #f5f5f5;
}

    .steps h2 {
        text-align: center;
        font-size: 28px;
        margin-bottom: 40px;
    }

.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 32px;
    height: 32px;
    background-color: #059669;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 15px;
}

.step-image {
    width: 200px;
    height: 160px;
    background-color: #ddd;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Benefits */
.benefits {
    padding: 50px 0;
    background-color: white;
}

    .benefits h2 {
        text-align: center;
        font-size: 32px;
        font-weight: bold;
        margin-bottom: 40px;
        color: #222;
    }

.benefits-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.benefit-card {
    background-color: #10746a;
    color: white;
    border-radius: 10px;
    padding: 30px;
    position: relative;
    width: 100%;
    max-width: 350px;
    min-height: 250px;
    display: flex;
    flex-direction: column;
}

.card-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background-color: #6ee48c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 16px;
}

.card-title {
    font-size: 3.2rem !important;
    font-weight: bold;
    margin-bottom: 25px;
    text-align: right;
    margin-top: 20px;
    font-family: 'colak' !important;
}

.card-description {
    font-size: 14px;
    line-height: 1.6;
    text-align: right;
}

/* Testimonial */
.testimonial {
    padding: 60px 0;
    background-color: #f0f0f0;
}

    .testimonial h2 {
        text-align: center;
        font-size: 28px;
        font-weight: bold;
        margin-bottom: 10px;
        color: #222;
    }

    .testimonial h3 {
        text-align: center;
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 40px;
        color: #222;
    }

/* Contact Form Section */


.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

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

.form-content {
    padding: 40px;
}

.form-image {
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-subtitle {
    color: #6b7280;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

    .form-input:focus,
    .form-textarea:focus,
    .form-select:focus {
        outline: none;
        border-color: #2563eb;
    }

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

.form-checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.form-checkbox {
    margin-right: 8px;
    width: 18px;
    height: 18px;
}

.form-checkbox-label {
    font-size: 14px;
    color: #4b5563;
}

.form-submit {
    width: 100%;
    padding: 12px 24px;
    background-color: #2563eb;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .form-submit:hover {
        background-color: #1d4ed8;
    }

.form-note {
    margin-top: 16px;
    font-size: 14px;
    color: #6b7280;
    text-align: center;
}

.form-error {
    color: #dc2626;
    font-size: 14px;
    margin-top: 4px;
    display: none;
}

.form-success {
    background-color: #ecfdf5;
    color: #065f46;
    padding: 16px;
    border-radius: 4px;
    margin-bottom: 20px;
    display: none;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
    background-color: white;
    padding: 100px;
}

.testimonial-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto;
    font-size: 24px;
}

/* FAQ */
.faq {
    padding: 50px 0;
}

    .faq h2 {
        text-align: center;
        font-size: 28px;
        margin-bottom: 40px;
    }

.faq-container {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    cursor: pointer;
    font-weight: bold;
    text-align: right;
}

.faq-toggle {
    width: 24px;
    height: 24px;
    background-color: #059669;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 10px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 15px;
    text-align: right;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 15px;
}

/* Footer */
footer {
    background-color: #222;
    color: white;
    padding: 30px 0;
}

.hero input {
    color: #6aac7b;
    font-size: 88%;
    margin-bottom: 30px;
    font-weight: bold;
    width: 100%;
    height: 100%;
    text-align: center;
    background: transparent;
    border: 0;
    font-family: 'peyda';
    outline: none;
}

/* Footer - طراحی جدید */
footer {
    background-color: #1a1a1a;
    color: #f5f5f5;
    padding: 60px 0 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

    .footer-column h3 {
        color: white;
        font-size: 18px;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
    }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 50px;
            height: 2px;
            background-color: #059669;
        }

.footer-links {
    list-style: none;
}

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: #ccc;
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 14px;
    }

        .footer-links a:hover {
            color: #059669;
        }

.footer-contact-info {
    margin-bottom: 15px;
}

    .footer-contact-info p {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
        color: #ccc;
        font-size: 14px;
    }

    .footer-contact-info i {
        color: #059669;
        font-size: 16px;
        width: 20px;
        text-align: center;
    }

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-bottom {
    text-align: center;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    /* Header Mobile */
    nav {
        display: none;
    }

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

    .auth-buttons {
        display: none;
        gap: 5px;
    }

    .btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    /* Hero Mobile */
    .hero {
        padding: 30px 0;
    }

        .hero h1 {
            font-size: 28px;
            margin-bottom: 8px;
        }

        .hero h2 {
            font-size: 20px;
            margin-bottom: 15px;
        }

        .hero p {
            color: #6aac7b;
            font-size: 1.5rem;
            margin-bottom: 30px;
            font-weight: bold;
        }

    .upload-box {
        max-width: 90%;
        margin: 0 auto 2px;
        border: 2px dashed #333;
        border-radius: 5px;
        height: 80px;
    }
    /* Steps Mobile */
    .steps {
        padding: 30px 0;
    }

        .steps h2 {
            font-size: 22px;
            margin-bottom: 25px;
        }

    .steps-container {
        flex-direction: column;
        gap: 20px;
    }

    .step-image {
        width: 150px;
        height: 120px;
    }

    .getreportbtn {
        width: 90%;
        height: 62px;
        font-size: 1.1rem;
        font-family: 'peyda';
        font-weight: bold;
    }

    .step h3 {
        font-size: 16px;
    }

    .step p {
        font-size: 14px;
        text-align: center;
        padding: 0 10px;
    }
    /* Benefits Mobile */
    .benefits {
        padding: 30px 0;
    }

        .benefits h2 {
            font-size: 24px;
            margin-bottom: 25px;
        }

    .benefits-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .benefit-card {
        max-width: 100%;
        min-height: 200px;
        padding: 20px;
    }

    .card-title {
        font-size: 20px;
        margin-bottom: 40px;
    }

    .card-description {
        font-size: 13px;
    }
    /* Testimonial Mobile */
    .testimonial {
        padding: 30px 0;
    }

        .testimonial h2 {
            font-size: 20px;
            margin-bottom: 8px;
        }

        .testimonial h3 {
            font-size: 16px;
            margin-bottom: 20px;
        }

    .testimonial-text {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 25px;
        padding: 0 15px;
    }

    .testimonial-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    /* FAQ Mobile */
    .faq {
        padding: 30px 0;
    }

        .faq h2 {
            font-size: 22px;
            margin-bottom: 25px;
        }

    .faq-question {
        padding: 12px 0;
        font-size: 14px;
    }

    .faq-toggle {
        width: 20px;
        height: 20px;
        font-size: 16px;
    }

    .faq-answer {
        padding: 0 10px;
    }

        .faq-answer p {
            font-size: 13px;
            line-height: 1.5;
        }
    /* Footer Mobile */
    footer {
        padding: 40px 0 20px;
    }

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

    .footer-column {
        width: 100%;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-input {
        border-radius: 4px;
        width: 100%;
    }

    .newsletter-button {
        border-radius: 4px;
        width: 100%;
        padding: 10px;
    }

    .footer-social {
        justify-content: center;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 24px;
    }

    .hero h2 {
        font-size: 18px;
    }

    .benefits h2,
    .testimonial h2,
    .faq h2,
    .steps h2 {
        font-size: 20px;
    }

    .card-title {
        font-size: 18px;
    }

    .testimonial h3 {
        font-size: 14px;
    }

    .footer-bottom {
        font-size: 12px;
    }
}
