/* =========================================================
   ARIYANA CONTACT PAGE
========================================================= */

.aryana-contact-page {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 35px 20px 65px;
    direction: rtl;
    font-family: "Ramin";
    box-sizing: border-box;
}


/* =========================================================
   HERO
========================================================= */

.aryana-contact-hero {
    position: relative;
    width: 100%;
    height: 255px;
    overflow: hidden;
    border-radius: 28px;
    isolation: isolate;
}

.aryana-contact-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 43%;
    display: block;
}

.aryana-contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.30);
    z-index: 1;
}

.aryana-contact-hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    padding-top: 55px;
    box-sizing: border-box;
}

.aryana-contact-hero-content h1 {
    margin: 0;
    color: #ffffff;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.5;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.30);
}


/* =========================================================
   MAIN CONTACT BOX
========================================================= */

.aryana-contact-box {
    width: 100%;
    margin-top: 40px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    background: #ffffff;

    border: 2px solid rgba(255, 148, 0, 0.25);
    border-radius: 28px;

    overflow: hidden;

    box-sizing: border-box;
}


/* =========================================================
   COLUMNS
========================================================= */

.aryana-contact-info,
.aryana-contact-map-section {
    padding: 38px 25px;
    box-sizing: border-box;
}

.aryana-contact-map-section {
    display: flex;
    flex-direction: column;
}


/* =========================================================
   TITLES
========================================================= */

.aryana-contact-info h2 {
    margin: 0 0 28px;

    color: #555555;

    font-size: 22px;
    font-weight: 700;

    position: relative;
    padding-right: 14px;
}


/* =========================================================
   CONTACT ITEMS
========================================================= */

.aryana-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;

    margin-bottom: 22px;
}

.aryana-contact-icon {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    font-size: 32px;
    margin-right: 5px;
    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg,
            #ff9400,
            #ff0048);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    transform: translateY(-6px);
}

.aryana-contact-text {
    flex: 1;
    min-width: 0;
}

.aryana-contact-label {
    display: block;

    margin-bottom: 5px;

    color: #555555;

    font-size: 18px;
    font-weight: 600;
}

.aryana-contact-text p {
    margin: 0;

    color: #444444;

    font-size: 16px;
    line-height: 2;

    overflow-wrap: anywhere;
}


/* =========================================================
   SOCIAL MEDIA
========================================================= */

.aryana-social-section {
    margin-top: 30px;
}

.aryana-social-section h3 {
    margin: 0 0 16px;

    color: #555555;

    font-size: 22px;
    font-weight: 700;
}

.aryana-social-links {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 20px;
    margin-right: 22px;
}

.aryana-social-link {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;

    transition:
        transform 0.25s ease,
}

.aryana-social-link:hover {
    transform: translateY(-3px);
}

.aryana-social-link img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
}


/* =========================================================
   GOOGLE MAP
========================================================= */

.aryana-map-wrapper {
    width: 100%;
    height: 340px;

    overflow: hidden;

    border-radius: 18px;

    background: #f3f3f3;

    border: 1px solid rgba(255, 148, 0, 0.20);

    box-sizing: border-box;
}

.aryana-map-wrapper iframe {
    width: 100%;
    height: 100%;

    display: block;

    border: 0;
}


/* =========================================================
   MAP DESCRIPTION
========================================================= */

.aryana-map-description {
    margin: 15px 0 18px;

    color: #555555;

    font-size: 16px;
    line-height: 1.8;

    text-align: center;
}


/* =========================================================
   MAP BUTTONS
========================================================= */

.aryana-map-buttons {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
}

.aryana-map-button {
    width: 100%;
    min-height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 10px 16px;

    box-sizing: border-box;

    border-radius: 12px;

    border: 1px solid rgba(255, 148, 0, 0.40);

    background: #ffffff;

    color: #555555;

    font-size: 15px;
    font-weight: 600;

    text-decoration: none;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.aryana-map-button i {
    color: #ff9400;
    font-size: 16px;
}

.aryana-map-button:hover {
    color: #ffffff;

    background: #ff9400;

    border-color: #ff9400;

    transform: translateY(-2px);
}

.aryana-map-button:hover i {
    color: #ffffff;
}


/* =========================================================
   WAZE BUTTON
========================================================= */

.arya-waze-button {
    color: #ffffff;

    background: linear-gradient(135deg,
            #ff9400,
            #ff0048);

    border-color: transparent;
}

.arya-waze-button i {
    color: #ffffff;
}

.arya-waze-button:hover {
    background: linear-gradient(135deg,
            #ff8400,
            #e90042);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .aryana-contact-page {
        padding-left: 16px;
        padding-right: 16px;
    }

    .aryana-contact-box {
        grid-template-columns: 1fr;
    }

    .aryana-contact-info,
    .aryana-contact-map-section {
        padding: 32px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .aryana-contact-page {
        padding-top: 20px;
        padding-bottom: 45px;
    }

    .aryana-contact-hero {
        height: 120px;
        border-radius: 20px;
    }

    .aryana-contact-hero-content {
        padding-top: 35px;
    }

    .aryana-contact-hero-content h1 {
        font-size: 28px;
    }

    .aryana-contact-box {
        margin-top: 25px;
        border-radius: 20px;
    }

    .aryana-contact-info,
    .aryana-contact-map-section {
        padding: 25px 20px;
    }

    .aryana-contact-info h2,
    .aryana-contact-map-section h2 {
        font-size: 19px;
        margin-bottom: 22px;
    }

    .aryana-contact-item {
        gap: 12px;
        margin-bottom: 18px;
    }

    .aryana-contact-icon {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .aryana-contact-text p {
        font-size: 13px;
        line-height: 1.9;
    }

    .aryana-map-wrapper {
        height: 220px;
        border-radius: 15px;
    }

    .aryana-map-description {
        font-size: 13px;
    }

    .aryana-map-button {
        min-height: 44px;
        font-size: 12px;
    }

}