/* =========================
   هماهنگ سازی نسخه جدید
========================= */

.brand {
    display: flex;
    align-items: center;
    gap: 13px;
    flex-shrink: 0;
}

.brand-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background: linear-gradient(
        135deg,
        #dcfce7,
        #bbf7d0
    );

    font-size: 29px;
}

.brand h1 {
    color: #14532d;
    font-size: 22px;
    font-weight: 800;
}

.brand p {
    color: #718078;
    font-size: 13px;
}


.header-phone {
    color: #166534;
    text-decoration: none;

    font-size: 18px;
    font-weight: 900;

    white-space: nowrap;
    background: #f3f7ed;
    border-radius: 10px;
}


/* خدمات */

#services {
    background: #ffffff;
}


/* فرم */

.form-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 22px;

    margin-bottom: 23px;
}


/* درباره ما */

.about-card {
    max-width: 900px;

    margin: auto;

    padding: 35px;

    border-radius: 20px;

    background: #f7faf7;

    border: 1px solid #e4ece6;

    display: flex;

    align-items: flex-start;

    gap: 25px;
}

.about-icon {
    width: 65px;
    height: 65px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: #ecfdf3;

    font-size: 32px;
}

.section-label {
    display: inline-block;

    color: #15803d;

    font-weight: 800;

    margin-bottom: 7px;
}

.about-card h2 {
    color: #14532d;

    font-size: 30px;

    margin-bottom: 15px;
}

.about-card p {
    color: #4c5951;

    font-size: 18px;

    line-height: 2.2;

    margin-bottom: 14px;
}


/* ارتباط با ما */

.contact-grid {
    max-width: 850px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 22px;
}

.contact-card {
    display: flex;

    align-items: center;

    gap: 17px;

    padding: 25px;

    background: white;

    border: 1px solid #e2ebe4;

    border-radius: 18px;

    box-shadow:
        0 10px 30px rgba(20,83,45,0.06);
}

.contact-icon {
    width: 55px;
    height: 55px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ecfdf3;

    border-radius: 15px;

    font-size: 27px;
}

.contact-card h3 {
    color: #14532d;

    font-size: 19px;

    margin-bottom: 3px;
}

.contact-card p {
    color: #58645c;

    font-size: 17px;
}

.contact-card a {
    color: #166534;

    direction: ltr;

    display: inline-block;

    text-decoration: none;

    font-size: 23px;

    font-weight: 900;
}


/* فوتر */

footer {
    background: #082f1d;

    color: white;

    text-align: center;

    padding: 35px 0;

    font-size: 16px;
}

footer p {
    margin: 5px 0;
    color: #cbd5cf;
}


/* موبایل */

@media (max-width: 800px) {

    .header-content {
        flex-wrap: wrap;
    }

    nav {
        order: 3;

        width: 100%;

        justify-content: center;

        flex-wrap: wrap;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-card {
        flex-direction: column;
    }

}


@media (max-width: 480px) {

    .brand h1 {
        font-size: 18px;
    }

    .header-phone {
        font-size: 16px;
    }

    nav a {
        font-size: 14px;
        padding: 7px 9px;
    }

}* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Tahoma, "Segoe UI", Arial, sans-serif;
    direction: rtl;
    background: #f6f9f5;
    color: #1f2933;
    line-height: 1.9;
    font-size: 17px;
}

/* =========================
   General
========================= */

.container {
    width: min(1180px, 92%);
    margin: auto;
}

section {
    padding: 90px 0;
}

.section-title {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px;
}

.section-title h2 {
    font-size: 34px;
    color: #14532d;
    margin-bottom: 14px;
    font-weight: 800;
}

.section-title p {
    color: #647067;
    font-size: 18px;
}


/* =========================
   Header
========================= */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);

    border-bottom: 1px solid #e7eee8;

    box-shadow: 0 5px 25px rgba(20, 83, 45, 0.07);
}

.header-content {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 13px;
}

.logo::before {
    content: "🌾";

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background: linear-gradient(
        135deg,
        #dcfce7,
        #bbf7d0
    );

    font-size: 29px;

    box-shadow:
        0 7px 18px rgba(22, 101, 52, 0.12);
}

.logo h1 {
    color: #14532d;
    font-size: 22px;
    font-weight: 800;
}

.logo span {
    display: block;

    color: #718078;
    font-size: 13px;
}

nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

nav a {
    color: #374151;
    text-decoration: none;

    font-size: 16px;
    font-weight: bold;

    padding: 10px 16px;
    border-radius: 10px;

    transition: 0.25s;
}

nav a:hover {
    color: #166534;
    background: #ecfdf3;
}


/* =========================
   Hero
========================= */

.hero {
    position: relative;
    overflow: hidden;

    min-height: 570px;

    display: flex;
    align-items: center;

    color: white;

    background:
        radial-gradient(
            circle at 85% 25%,
            rgba(134, 239, 172, 0.25),
            transparent 30%
        ),
        radial-gradient(
            circle at 15% 80%,
            rgba(187, 247, 208, 0.15),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #064e3b,
            #166534 55%,
            #15803d
        );
}

.hero::before {
    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;

    left: -180px;
    bottom: -220px;
}

.hero::after {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;

    right: -100px;
    top: -100px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 780px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;

    padding: 8px 18px;

    border-radius: 50px;

    background: rgba(255,255,255,0.12);

    border: 1px solid rgba(255,255,255,0.16);

    backdrop-filter: blur(10px);

    font-size: 16px;

    margin-bottom: 22px;
}

.hero h2 {
    font-size: clamp(36px, 5vw, 58px);

    line-height: 1.45;

    margin-bottom: 22px;

    font-weight: 900;

    letter-spacing: -1px;
}

.hero p {
    max-width: 700px;

    font-size: 19px;

    line-height: 2.1;

    color: rgba(255,255,255,0.88);

    margin-bottom: 32px;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 15px 30px;

    border-radius: 13px;

    background: white;

    color: #166534;

    text-decoration: none;

    font-size: 18px;
    font-weight: 800;

    box-shadow:
        0 12px 30px rgba(0,0,0,0.18);

    transition: 0.25s;
}

.hero-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 18px 35px rgba(0,0,0,0.25);
}


/* =========================
   Services
========================= */

.services {
    background: #ffffff;
}

.service-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}

.service-card {
    position: relative;

    background: #ffffff;

    border: 1px solid #e7eee9;

    border-radius: 20px;

    padding: 34px 28px;

    text-align: center;

    box-shadow:
        0 10px 35px rgba(20,83,45,0.06);

    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-7px);

    border-color: #bbf7d0;

    box-shadow:
        0 18px 45px rgba(20,83,45,0.12);
}

.service-icon {
    width: 72px;
    height: 72px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 20px;

    background: #ecfdf3;

    font-size: 35px;
}

.service-card h3 {
    color: #14532d;

    font-size: 21px;

    margin-bottom: 10px;
}

.service-card p {
    color: #647067;

    font-size: 16px;
}


/* =========================
   Booking
========================= */

.booking-section {
    background:
        linear-gradient(
            180deg,
            #f0fdf4,
            #f7faf7
        );
}

.booking-card {
    max-width: 920px;

    margin: auto;

    padding: 42px;

    background: rgba(255,255,255,0.96);

    border: 1px solid #e0ebe2;

    border-radius: 25px;

    box-shadow:
        0 20px 60px rgba(20,83,45,0.10);
}

.form-row {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 22px;

    margin-bottom: 23px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #26352b;

    font-size: 18px;

    font-weight: 800;

    margin-bottom: 9px;
}

.form-group input,
.form-group select {
    width: 100%;

    min-height: 56px;

    padding: 12px 16px;

    border-radius: 12px;

    border: 1.5px solid #d7e2d9;

    background: #fbfdfb;

    color: #202a24;

    font-family: Tahoma, Arial, sans-serif;

    font-size: 17px;

    transition: 0.2s;
}

.form-group input::placeholder {
    color: #9aa59d;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;

    background: white;

    border-color: #22c55e;

    box-shadow:
        0 0 0 4px rgba(34,197,94,0.10);
}

.form-group small {
    color: #7b867f;

    margin-top: 6px;

    font-size: 13px;
}

.submit-button {
    width: 100%;

    min-height: 58px;

    border: none;

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            #15803d,
            #166534
        );

    color: white;

    font-family: Tahoma, Arial, sans-serif;

    font-size: 20px;

    font-weight: 800;

    cursor: pointer;

    box-shadow:
        0 10px 25px rgba(21,128,61,0.22);

    transition: 0.25s;
}

.submit-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 15px 30px rgba(21,128,61,0.30);
}


/* =========================
   About
========================= */

.about-section {
    background: white;
}

.about-content {
    max-width: 900px;

    margin: auto;

    padding: 35px;

    border-radius: 20px;

    background: #f7faf7;

    border: 1px solid #e4ece6;
}

.about-content p {
    color: #4c5951;

    font-size: 18px;

    line-height: 2.25;

    margin-bottom: 18px;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.about-content strong {
    color: #14532d;
}


/* =========================
   Contact
========================= */

.contact-section {
    background:
        linear-gradient(
            180deg,
            #f1f8f3,
            #f8faf8
        );
}

.contact-box {
    max-width: 850px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 22px;
}

.contact-item {
    display: flex;

    align-items: center;

    gap: 17px;

    padding: 25px;

    background: white;

    border: 1px solid #e2ebe4;

    border-radius: 18px;

    box-shadow:
        0 10px 30px rgba(20,83,45,0.06);
}

.contact-item > span {
    width: 55px;
    height: 55px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ecfdf3;

    border-radius: 15px;

    font-size: 27px;
}

.contact-item strong {
    display: block;

    color: #14532d;

    font-size: 19px;

    margin-bottom: 3px;
}

.contact-item p {
    color: #58645c;

    font-size: 17px;
}

.contact-item a {
    color: #166534;

    direction: ltr;

    display: inline-block;

    text-decoration: none;

    font-size: 23px;

    font-weight: 900;

    letter-spacing: 0.5px;
}


/* =========================
   Footer
========================= */

.footer {
    background: #082f1d;

    color: white;

    text-align: center;

    padding: 45px 0;
}

.footer h3 {
    font-size: 23px;

    margin-bottom: 10px;
}

.footer p {
    color: #cbd5cf;

    font-size: 16px;
}

.copyright {
    margin-top: 20px;

    color: #91a199 !important;

    font-size: 14px !important;
}


/* =========================
   Mobile
========================= */

@media (max-width: 800px) {

    section {
        padding: 65px 0;
    }

    .header-content {
        flex-direction: column;

        padding: 12px 0;
    }

    nav {
        width: 100%;

        justify-content: center;

        flex-wrap: wrap;
    }

    nav a {
        font-size: 15px;

        padding: 8px 11px;
    }

    .hero {
        min-height: auto;

        padding: 75px 0;
    }

    .hero h2 {
        font-size: 35px;
    }

    .hero p {
        font-size: 17px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-card {
        padding: 25px 18px;

        border-radius: 20px;
    }

    .contact-box {
        grid-template-columns: 1fr;
    }

    .section-heading h2 {
        font-size: 29px;
    }

    .about-content {
        padding: 25px 20px;
    }
}


/* =========================
   Small Phones
========================= */

@media (max-width: 480px) {

    body {
        font-size: 16px;
    }

    .logo h1 {
        font-size: 19px;
    }

    .logo span {
        font-size: 12px;
    }

    .hero h2 {
        font-size: 31px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-button {
        width: 100%;
    }

    .form-group input,
    .form-group select {
        font-size: 16px;
    }

    .contact-item a {
        font-size: 20px;
    }
}
/* =========================
   Persian Calendar
========================= */

.date-picker {
    position: relative;
}

.date-input {
    width: 100%;

    min-height: 56px;

    padding: 12px 16px;

    border: 1.5px solid #d7e2d9;

    border-radius: 12px;

    background: #fbfdfb;

    color: #26332a;

    font-family: Tahoma, Arial, sans-serif;

    font-size: 17px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    cursor: pointer;

    transition: 0.2s;
}

.date-input:hover {
    border-color: #22c55e;
    background: white;
}

.calendar-symbol {
    font-size: 22px;
}

.persian-calendar {
    display: none;

    position: absolute;

    top: calc(100% + 10px);

    right: 0;

    width: 330px;

    padding: 18px;

    background: white;

    border: 1px solid #e1ebe3;

    border-radius: 18px;

    box-shadow:
        0 20px 50px rgba(0,0,0,0.15);

    z-index: 9999;
}

.persian-calendar.show {
    display: block;
}

.calendar-header {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 18px;

    color: #14532d;

    font-weight: bold;

    font-size: 18px;
}

.calendar-header button {
    width: 38px;
    height: 38px;

    border: none;

    border-radius: 10px;

    background: #ecfdf3;

    color: #166534;

    font-size: 26px;

    cursor: pointer;

    transition: 0.2s;
}

.calendar-header button:hover {
    background: #bbf7d0;
}

.weekdays,
.calendar-days {
    display: grid;

    grid-template-columns:
        repeat(7, 1fr);

    gap: 5px;

    text-align: center;
}

.weekdays {
    margin-bottom: 8px;

    color: #6b766e;

    font-size: 13px;

    font-weight: bold;
}

.calendar-day {
    height: 38px;

    border: none;

    border-radius: 9px;

    background: transparent;

    font-family: Tahoma, Arial, sans-serif;

    font-size: 15px;

    color: #374151;

    cursor: pointer;

    transition: 0.18s;
}

.calendar-day:hover {
    background: #dcfce7;

    color: #166534;

    font-weight: bold;
}

@media (max-width: 480px) {

    .persian-calendar {
        width: 100%;

        min-width: 280px;

        right: 0;
    }

}