/* GLOBAL */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #111111;
    background: #ffffff;
}

.aah-home {
    background: #ffffff;
}

.aah-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* BUTTONS */
.aah-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 36px;
    border-radius: 22px;
    border: 1px solid transparent;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.aah-btn-light {
    background: #ffffff;
    border-color: #ffffff;
    color: #111111;
}

.aah-btn-light:hover {
    background: #f3f3f3;
}

.aah-btn-dark {
    background: #111111;
    border-color: #111111;
    color: #ffffff;
}

.aah-btn-dark:hover {
    background: #000000;
}

/* HERO */
.aah-hero {
        background-image: url('images/wideback.jpg'); background-size: cover; background-position: center;
    color: #ffffff;
    padding: 150px 0 160px;
}

.aah-hero-inner {
    max-width: 480px;
}

.aah-hero h1 {
    font-size: 26px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    line-height: 1.6;
    margin-bottom: 32px;

}

/* CIRCLES */
.aah-circles {
    padding: 70px 0 40px;
}

.aah-circles-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: nowrap;
}

.aah-circle-item {
    text-align: center;
    flex: 1 1 0;
}

.aah-circle-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
     /* جای عکس */
    margin: 0 auto 18px;
}

/* اینها را بعداً با background-image ست کن */
.aah-circle-1 {  background-image: url('images/2.png'); background-size: cover; background-position: center;}
.aah-circle-2 { background-image: url('images/3.png'); background-size: cover; background-position: center;}
.aah-circle-3 { background-image: url('images/4.png'); background-size: cover; background-position: center; }
.aah-circle-4 { background-image: url('images/5.png'); background-size: cover; background-position: center; }

.aah-circle-title {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    line-height: 1.7;
}

/* INFO BLOCKS */
.aah-info {
    padding: 40px 0 70px;
}

.aah-info-row {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: center;
    margin-bottom: 70px;
}

.aah-info-row--reverse {
    flex-direction: row-reverse;
}

.aah-info-text {
    flex: 1 1 50%;
}

.aah-info-text h2 {
    font-size: 16px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.aah-info-text p {
    font-size: 13px;
    line-height: 1.8;
}

.aah-info-image {
    flex: 1 1 50%;
    background: #111111; /* جای عکس مستطیل */
    min-height: 220px;
}

/* همین‌جا هم می‌توانی background-image ست کنی */
.aah-info-image-1 { background-image: url('images/6.JPEG'); background-size: cover; background-position: center;  }
.aah-info-image-2 {  background-image: url('images/7.JPEG'); background-size: cover; background-position: center;  }

/* DISTRIBUTOR CTA */
.aah-distributor {
    padding: 90px 0 100px;
    text-align: center;
}

.aah-distributor h2 {
    font-size: 16px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 30px;
}

/* CONTACT */
.aah-contact {
    background: #3b3b3b;
    color: #ffffff;
    padding: 80px 0 90px;
}

.aah-contact h2 {
    text-align: center;
    font-size: 16px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.aah-contact-form {
    max-width: 640px;
    margin: 0 auto;
}

.aah-form-field {
    margin-bottom: 14px;
}

.aah-form-field label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.aah-form-field input,
.aah-form-field textarea {
    width: 100%;
    border-radius: 0;
    border: none;
    padding: 10px 12px;
    font-size: 13px;
    background: #ffffff;
    color: #111111;
    box-sizing: border-box;
}

.aah-form-field textarea {
    min-height: 150px;
    resize: vertical;
}

.aah-btn-contact {
    margin-top: 12px;
}

/* messages */
.aah-success,
.aah-error {
    text-align: center;
    font-size: 14px;
    margin-bottom: 20px;
}

.aah-success { color: #bbf7d0; }
.aah-error { color: #fecaca; }

/* RESPONSIVE */
@media (max-width: 992px) {
    .aah-info-row,
    .aah-info-row--reverse {
        flex-direction: column;
    }

    .aah-info-image {
        width: 100%;
    }

    .aah-circles-grid {
        flex-wrap: wrap;
        justify-content: center;
    }

    .aah-circle-item {
        flex: 0 0 50%;
        margin-bottom: 24px;
    }
}

@media (max-width: 640px) {
    .aah-hero {
        padding: 100px 0 120px;
    }

    .aah-hero h1 {
        font-size: 22px;
    }

    .aah-circle-image {
        width: 130px;
        height: 130px;
    }
}
