.elementor-8079 .elementor-element.elementor-element-09f845e{--display:flex;}/* Start custom CSS for html, class: .elementor-element-8a861ea *//* =========================================
   YAS RISE
   LANDING PAGE
========================================= */

:root {

    --black: #10110f;
    --dark: #181a17;

    --cream: #f3f0e8;
    --white: #ffffff;

    --orange: #e8662e;
    --orange-dark: #c94e1d;

    --gray: #777870;
    --light-gray: #deddd5;

    --max-width: 1240px;

    --transition: 0.35s ease;
}


/* =========================================
   RESET
========================================= */

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

html {
    scroll-behavior: smooth;
}

body {

    font-family: "Vazirmatn", sans-serif;

    background: var(--cream);

    color: var(--black);

    line-height: 1.8;

    overflow-x: hidden;
}

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

button {
    font-family: inherit;
}

.container {

    width: min(
        calc(100% - 80px),
        var(--max-width)
    );

    margin: auto;
}

.section {

    padding: 130px 0;
}


/* =========================================
   NAVBAR
========================================= */

.navbar {

    position: fixed;

    top: 0;
    right: 0;

    width: 100%;

    z-index: 1000;

    color: white;

    transition: var(--transition);
}

.navbar.scrolled {

    background: rgba(16, 17, 15, 0.94);

    backdrop-filter: blur(12px);

    box-shadow:
        0 5px 30px rgba(0,0,0,0.15);
}

.nav-container {

    width: min(
        calc(100% - 80px),
        var(--max-width)
    );

    margin: auto;

    height: 90px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.logo {

    display: flex;

    align-items: center;

    gap: 12px;

    font-weight: 800;
}

.logo-mark {

    width: 38px;
    height: 38px;

    border: 2px solid white;

    display: grid;

    place-items: center;

    font-size: 11px;

    letter-spacing: 1px;
}

.logo-text {

    font-size: 15px;

    letter-spacing: 3px;
}

.nav-links {

    display: flex;

    align-items: center;

    gap: 38px;

    font-size: 14px;
}

.nav-links a {

    opacity: 0.85;

    transition: var(--transition);
}

.nav-links a:hover {

    opacity: 1;

    color: var(--orange);
}

.nav-cta {

    padding: 10px 22px;

    border: 1px solid rgba(255,255,255,0.5);

    transition: var(--transition);
}

.nav-cta:hover {

    background: white;

    color: var(--black) !important;
}


/* =========================================
   MOBILE MENU
========================================= */

.menu-toggle {

    display: none;

    border: none;

    background: none;

    cursor: pointer;
}

.menu-toggle span {

    display: block;

    width: 26px;

    height: 2px;

    background: white;

    margin: 6px;
}


/* =========================================
   HERO
========================================= */

.hero {

    min-height: 100vh;

    position: relative;

    display: flex;

    align-items: center;

    background:

        linear-gradient(
            90deg,
            rgba(0,0,0,0.75),
            rgba(0,0,0,0.2)
        ),

        url("https://images.unsplash.com/photo-1551632811-561732d1e306?auto=format&fit=crop&w=2200&q=85")
        center / cover;
}

.hero-content {

    width: min(
        calc(100% - 80px),
        var(--max-width)
    );

    margin: auto;

    color: white;

    padding-top: 60px;
}

.eyebrow,
.section-label {

    font-size: 11px;

    letter-spacing: 3px;

    font-weight: 700;

    color: var(--orange);

    margin-bottom: 24px;
}

.hero h1 {

    font-size: clamp(42px, 6vw, 86px);

    line-height: 1.05;

    font-weight: 800;

    max-width: 900px;

    letter-spacing: -2px;
}

.hero h1 span {

    color: var(--orange);
}

.hero-fa {

    max-width: 670px;

    margin-top: 35px;

    font-size: 18px;

    color: rgba(255,255,255,0.86);
}

.hero-buttons {

    display: flex;

    gap: 15px;

    margin-top: 45px;
}

.btn {

    min-height: 52px;

    padding: 12px 28px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

    font-size: 14px;

    font-weight: 600;

    transition: var(--transition);

    cursor: pointer;
}

.btn-primary {

    background: var(--orange);

    color: white;
}

.btn-primary:hover {

    background: var(--orange-dark);

    transform: translateY(-3px);
}

.btn-outline {

    border: 1px solid rgba(255,255,255,0.5);

    color: white;
}

.btn-outline:hover {

    background: white;

    color: var(--black);
}

.hero-scroll {

    position: absolute;

    bottom: 35px;

    left: 50%;

    transform: translateX(-50%);

    color: white;

    display: flex;

    align-items: center;

    gap: 15px;

    font-size: 9px;

    letter-spacing: 2px;

    opacity: 0.7;
}

.scroll-line {

    width: 50px;

    height: 1px;

    background: white;
}


/* =========================================
   INTRO
========================================= */

.intro {

    background: var(--cream);
}

.intro-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: start;
}

.intro-title h2 {

    font-size: clamp(38px, 5vw, 64px);

    line-height: 1.25;

    font-weight: 400;
}

.intro-title strong {

    font-weight: 800;
}

.intro-text {

    padding-top: 10px;

    color: #5c5d57;

    font-size: 17px;
}

.intro-text p {

    margin-bottom: 25px;
}


/* =========================================
   MANIFESTO
========================================= */

.manifesto {

    min-height: 650px;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    color: white;

    background:

        linear-gradient(
            rgba(15,16,14,0.73),
            rgba(15,16,14,0.73)
        ),

        url("https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=2200&q=85")
        center / cover fixed;
}

.manifesto-inner {

    width: min(
        calc(100% - 50px),
        950px
    );
}

.manifesto-small {

    font-size: 10px;

    letter-spacing: 4px;

    color: var(--orange);
}

.manifesto h2 {

    margin-top: 30px;

    font-size: clamp(38px, 5vw, 70px);

    line-height: 1.3;
}

.manifesto em {

    color: var(--orange);

    font-style: normal;
}

.manifesto p {

    margin-top: 25px;

    color: rgba(255,255,255,0.7);
}


/* =========================================
   SERVICES
========================================= */

.services {

    background: var(--cream);
}

.section-heading {

    display: flex;

    justify-content: space-between;

    align-items: end;

    gap: 50px;

    margin-bottom: 70px;
}

.section-heading h2 {

    font-size: clamp(40px, 5vw, 64px);

    line-height: 1.2;
}

.section-heading h2 span {

    color: var(--orange);
}

.section-heading > p {

    max-width: 350px;

    color: var(--gray);
}

.services-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 2px;

    background: var(--black);
}

.service-card {

    min-height: 440px;

    padding: 45px;

    background: var(--cream);

    position: relative;

    display: flex;

    flex-direction: column;

    transition: var(--transition);
}

.service-card:hover {

    transform: translateY(-8px);

    z-index: 2;
}

.service-card.featured {

    background: var(--black);

    color: white;
}

.service-number {

    font-size: 11px;

    letter-spacing: 2px;

    color: var(--orange);
}

.service-icon {

    font-size: 42px;

    margin: 60px 0 25px;

    font-weight: 200;
}

.service-card h3 {

    font-size: 25px;

    margin-bottom: 20px;
}

.service-card p {

    color: #74756e;

    font-size: 14px;
}

.service-card.featured p {

    color: #aaa;
}

.service-link {

    margin-top: auto;

    padding-top: 30px;

    font-size: 13px;

    display: flex;

    gap: 20px;

    align-items: center;

    color: var(--orange);
}


/* =========================================
   COMMUNITY
========================================= */

.community {

    background: #ddd9ce;
}

.community-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    min-height: 680px;
}

.community-image {

    background:

        linear-gradient(
            rgba(0,0,0,0.05),
            rgba(0,0,0,0.45)
        ),

        url("https://images.unsplash.com/photo-1552674605-db6ffd4facb5?auto=format&fit=crop&w=1400&q=85")
        center / cover;

    position: relative;
}

.image-caption {

    position: absolute;

    bottom: 30px;

    left: 30px;

    right: 30px;

    display: flex;

    justify-content: space-between;

    color: white;

    font-size: 10px;

    letter-spacing: 2px;
}

.community-content {

    padding: 80px;

    display: flex;

    flex-direction: column;

    justify-content: center;
}

.community-content h2 {

    font-size: clamp(40px, 4vw, 58px);

    line-height: 1.25;

    margin-bottom: 30px;
}

.community-content strong {

    color: var(--orange);
}

.community-content > p {

    color: #65665f;

    font-size: 16px;

    max-width: 500px;
}

.community-features {

    margin: 40px 0;

    display: flex;

    flex-direction: column;

    gap: 16px;
}

.community-features div {

    display: flex;

    align-items: center;

    gap: 25px;

    border-bottom: 1px solid #c6c2b8;

    padding-bottom: 15px;
}

.community-features strong {

    font-size: 11px;
}

.community-features span {

    font-size: 14px;
}

.btn-dark {

    background: var(--black);

    color: white;

    align-self: flex-start;
}

.btn-dark:hover {

    background: var(--orange);

    transform: translateY(-3px);
}


/* =========================================
   NOT SELL
========================================= */

.not-sell {

    background: var(--black);

    color: white;
}

.not-sell h2 {

    font-size: clamp(40px, 5vw, 65px);

    line-height: 1.2;

    margin-bottom: 70px;
}

.not-sell h2 span {

    color: var(--orange);
}

.not-list {

    border-top: 1px solid #383a35;
}

.not-item {

    display: flex;

    align-items: center;

    gap: 35px;

    padding: 35px 0;

    border-bottom: 1px solid #383a35;
}

.not-icon {

    width: 42px;
    height: 42px;

    border: 1px solid var(--orange);

    color: var(--orange);

    display: grid;

    place-items: center;

    font-size: 20px;
}

.not-item p {

    font-size: 23px;

    color: #ddd;
}


/* =========================================
   JOURNEY
========================================= */

.journey {

    background: var(--cream);
}

.journey-line {

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    border-top: 1px solid #aaa99f;

    margin-top: 80px;
}

.journey-step {

    padding: 35px 25px 0;

    position: relative;
}

.journey-step::before {

    content: "";

    position: absolute;

    top: -5px;

    right: 25px;

    width: 9px;

    height: 9px;

    background: var(--orange);

    border-radius: 50%;
}

.journey-step span {

    font-size: 10px;

    color: var(--orange);

    letter-spacing: 2px;
}

.journey-step h3 {

    margin: 25px 0 10px;

    font-size: 22px;

    direction: ltr;

    text-align: right;
}

.journey-step p {

    color: var(--gray);

    font-size: 13px;
}


/* =========================================
   FINAL CTA
========================================= */

.final-cta {

    min-height: 700px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    color: white;

    background:

        url("https://images.unsplash.com/photo-1533130061792-64b345e4a833?auto=format&fit=crop&w=2200&q=85")
        center / cover;
}

.cta-overlay {

    position: absolute;

    inset: 0;

    background: rgba(0,0,0,0.6);
}

.cta-content {

    position: relative;

    z-index: 2;
}

.cta-content h2 {

    font-size: clamp(70px, 12vw, 150px);

    line-height: 0.9;

    text-transform: uppercase;

    font-weight: 900;

    letter-spacing: -5px;
}

.cta-content h2 span {

    color: var(--orange);
}

.cta-content p {

    margin: 35px 0;

    color: rgba(255,255,255,0.8);
}

.cta-buttons {

    display: flex;

    justify-content: center;

    gap: 15px;
}

.btn-outline-light {

    border: 1px solid rgba(255,255,255,0.5);

    color: white;
}

.btn-outline-light:hover {

    background: white;

    color: var(--black);
}


/* =========================================
   FOOTER
========================================= */

.footer {

    background: var(--black);

    color: white;

    padding: 80px 0 30px;
}

.footer-grid {

    display: grid;

    grid-template-columns: 2fr 1fr 1fr;

    gap: 80px;
}

.footer-brand p {

    margin-top: 25px;

    color: #777;

    font-size: 13px;
}

.footer-links {

    display: flex;

    flex-direction: column;

    gap: 10px;
}

.footer-links h4 {

    color: var(--orange);

    font-size: 10px;

    letter-spacing: 3px;

    margin-bottom: 15px;
}

.footer-links a {

    color: #999;

    font-size: 13px;

    transition: var(--transition);
}

.footer-links a:hover {

    color: white;
}

.footer-bottom {

    margin-top: 70px;

    padding-top: 25px;

    border-top: 1px solid #292b27;

    display: flex;

    justify-content: space-between;

    color: #666;

    font-size: 10px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .container,
    .nav-container,
    .hero-content {

        width: min(
            calc(100% - 40px),
            var(--max-width)
        );
    }

    .nav-links {

        position: fixed;

        top: 90px;

        right: 0;

        width: 100%;

        background: var(--black);

        padding: 35px;

        flex-direction: column;

        gap: 25px;

        transform: translateY(-120%);

        transition: var(--transition);
    }

    .nav-links.active {

        transform: translateY(0);
    }

    .menu-toggle {

        display: block;
    }

    .intro-grid,
    .community-grid {

        grid-template-columns: 1fr;

    }

    .services-grid {

        grid-template-columns: 1fr;
    }

    .community-image {

        min-height: 500px;
    }

    .community-content {

        padding: 60px 30px;
    }

    .journey-line {

        grid-template-columns: 1fr;

        border-top: none;

        border-right: 1px solid #aaa99f;

        margin-right: 10px;

    }

    .journey-step {

        padding: 20px 30px 30px;
    }

    .journey-step::before {

        right: -5px;

        top: 25px;
    }

    .footer-grid {

        grid-template-columns: 1fr 1fr;
    }
}


@media (max-width: 600px) {

    .section {

        padding: 90px 0;
    }

    .hero {

        background-position: 65% center;
    }

    .hero h1 {

        font-size: 44px;
    }

    .hero-fa {

        font-size: 15px;
    }

    .hero-buttons {

        flex-direction: column;

        align-items: stretch;
    }

    .btn {

        width: 100%;
    }

    .section-heading {

        flex-direction: column;

        align-items: flex-start;
    }

    .service-card {

        min-height: 400px;

        padding: 35px;
    }

    .not-item {

        gap: 20px;
    }

    .not-item p {

        font-size: 17px;
    }

    .cta-content h2 {

        font-size: 80px;

        letter-spacing: -3px;
    }

    .cta-buttons {

        flex-direction: column;

        width: 260px;

        margin: auto;
    }

    .footer-grid {

        grid-template-columns: 1fr;

        gap: 45px;
    }

    .footer-bottom {

        flex-direction: column;

        gap: 10px;
    }
}


/* =========================================
   REVEAL ANIMATION
========================================= */

.reveal {

    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.visible {

    opacity: 1;

    transform: translateY(0);
}/* End custom CSS */