/* ===================================
   IRANSANS FONT
=================================== */

@font-face {

    font-family: iransans;

    src:
        url('../fonts/Iransans.woff');

}

/* ===================================
   ROOT VARIABLES
=================================== */

:root {

    --bg: #031313;
    --bg-light: #082222;

    --gold: #d4af37;
    --gold-light: #f1d46b;

    --white: #ffffff;
    --text: #c4d1d1;

    --card: rgba(255, 255, 255, .04);
    --card-border: rgba(255, 255, 255, .07);

    --shadow:
        0 25px 80px rgba(0, 0, 0, .35);

}

/* ===================================
   RESET
=================================== */

* {

    margin: 0;
    padding: 0;

    box-sizing: border-box;

}

html {

    scroll-behavior: smooth;

}

body {

    font-family: iransans;

    background: var(--bg);

    color: var(--white);

    overflow-x: hidden;

    line-height: 2;

    position: relative;

}

a {

    text-decoration: none;
    color: #ffffff;

}

ul {

    list-style: none;

}

img {

    max-width: 100%;

}

p {

    color: var(--text);

    text-align: justify;

}

/* ===================================
   SCROLLBAR
=================================== */

::-webkit-scrollbar {

    width: 10px;

}

::-webkit-scrollbar-track {

    background: #041616;

}

::-webkit-scrollbar-thumb {

    border-radius: 50px;

    background:
        linear-gradient(var(--gold),
            #0d7373);

}

/* ===================================
   CONTAINER
=================================== */

.container {

    width: 90%;

    max-width: 1280px;

    margin: auto;

}

/* ===================================
   NOISE
=================================== */

.noise {

    position: fixed;

    inset: 0;

    pointer-events: none;

    z-index: -1;

    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");

}

/* ===================================
   PARTICLES
=================================== */

#particles {

    position: fixed;

    inset: 0;

    width: 100%;
    height: 100%;

    z-index: -2;

}

/* ===================================
   LOADER
=================================== */

.loader {

    position: fixed;

    inset: 0;

    background: #010808;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 999999;

    transition: 1s;

}

.loader.hide {

    opacity: 0;

    visibility: hidden;

}

div.loader-logo img {
    width: 300px !important;
    display: block;
    margin: 0 auto;
}

@keyframes pulse {

    50% {

        transform: scale(1.08);

    }

}

/* ===================================
   PROGRESS BAR
=================================== */

.progress-bar {

    position: fixed;

    top: 0;
    right: 0;

    height: 4px;

    width: 0%;

    background:
        linear-gradient(to left,
            var(--gold),
            #0d7373);

    z-index: 999999;

}

/* ===================================
   CURSOR GLOW
=================================== */

.cursor-glow {

    position: fixed;

    width: 320px;
    height: 320px;

    border-radius: 50%;

    pointer-events: none;

    z-index: 0;

    transform: translate(-50%, -50%);

    background:
        radial-gradient(rgba(212, 175, 55, .15),
            transparent);

}

/* ===================================
   HEADER
=================================== */

.header {

    position: fixed;

    top: 18px;

    left: 0;

    width: 100%;

    z-index: 999;

    transition: .4s;

}

.header.scrolled {

    top: 10px;

}

.navbar {

    height: 78px;

    border-radius: 26px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 28px;

    background:
        rgba(5, 20, 20, .72);

    border:
        1px solid var(--card-border);

    backdrop-filter: blur(20px);

    box-shadow: var(--shadow);

}

/* ===================================
   LOGO
=================================== */

.logo {

    font-size: 24px;

    font-weight: 900;

    color: var(--gold);

}

/* ===================================
   NAVIGATION
=================================== */

.nav-links {

    display: flex;
    align-items: center;

    gap: 30px;

}

.nav-links a {

    color: var(--white);

    position: relative;

    transition: .3s;

}

.nav-links a::after {

    content: '';

    position: absolute;

    right: 0;
    bottom: -8px;

    width: 0%;
    height: 2px;

    background: var(--gold);

    transition: .3s;

}

.nav-links a:hover {

    color: var(--gold);

}

.nav-links a:hover::after {

    width: 100%;

}

/* ===================================
   MOBILE MENU BUTTON
=================================== */

.menu-btn {

    width: 52px;
    height: 52px;

    border-radius: 16px;

    display: none;

    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 6px;

    cursor: pointer;

    background:
        rgba(255, 255, 255, .04);

    border:
        1px solid rgba(255, 255, 255, .08);

}

.menu-btn span {

    width: 24px;
    height: 2px;

    background: white;

    border-radius: 50px;

}

/* ===================================
   MOBILE MENU
=================================== */

.mobile-menu {

    position: fixed;

    height: 100% !important;

    width: 85%;

    z-index: 99999;

    padding: 30px;

    border-radius: 30px 0 0 30px;

    overflow-y: auto;

    transform: translateX(120%);

    transition: .5s ease;

    background:
        linear-gradient(135deg,
            #041616,
            #0c4a4a);

    border:
        1px solid rgba(255, 255, 255, .08);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, .45);

}

.mobile-menu.active {

    transform: translateX(0);

}

.mobile-menu-top {

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 70px;

}

.mobile-logo {

    font-size: 24px;

    font-weight: 900;

    color: var(--gold);

}

.close-menu {

    width: 54px;
    height: 54px;

    border-radius: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    font-size: 22px;

    background:
        rgba(255, 255, 255, .06);

}

.mobile-menu ul {

    display: flex;

    flex-direction: column;

    gap: 26px;

}

.mobile-menu a {

    color: white;

    font-size: 34px;

    font-weight: 900;

}

/* ===================================
   HERO
=================================== */

.hero {

    min-height: 100vh;

    padding-top: 140px;

    display: flex;
    align-items: center;

    overflow: hidden;

    position: relative;

}

.hero-light {

    position: absolute;

    width: 700px;
    height: 700px;

    top: -250px;
    right: -250px;

    opacity: .08;

    background:
        radial-gradient(var(--gold),
            transparent);

}

.hero-wrapper {

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 70px;

}

.hero-content,
.hero-visual {

    flex: 1;

}

.hero-visual,
.budget-visual {

    min-width: 0;

}

.hero-badge {

    display: inline-flex;

    padding: 12px 18px;

    border-radius: 50px;

    margin-bottom: 28px;

    color: var(--gold);

    background:
        rgba(212, 175, 55, .08);

    border:
        1px solid rgba(212, 175, 55, .25);

}

.hero-content h1 {

    font-size: 74px;

    line-height: 1.35;

    font-weight: 900;

    margin-bottom: 25px;

}

.hero-content p {

    font-size: 18px;

    margin-bottom: 35px;

}

/* ===================================
   BUTTONS
=================================== */

.hero-buttons {

    display: flex;

    gap: 15px;

    flex-wrap: wrap;

}

.center-buttons {

    justify-content: center;

}

.btn {

    height: 58px;

    padding: 0 30px;

    border-radius: 18px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    transition: .35s;

}

.primary-btn {

    background:
        linear-gradient(135deg,
            var(--gold),
            var(--gold-light));

    color: #041616;

    font-weight: 900;

}

.secondary-btn {

    color: var(--gold);

    border:
        1px solid rgba(212, 175, 55, .3);

    background:
        rgba(255, 255, 255, .03);

}

.btn:hover {

    transform: translateY(-5px);

}

/* ===================================
   HERO FEATURES
=================================== */

.hero-features {

    display: flex;

    flex-wrap: wrap;

    gap: 15px;

    margin-top: 40px;

}

.feature-chip {

    padding: 10px 18px;

    border-radius: 50px;

    background:
        rgba(255, 255, 255, .04);

    border:
        1px solid rgba(255, 255, 255, .05);

}

/* ===================================
   Bento Icons
=================================== */

.bento-card {

    position: relative;

    overflow: hidden;

    padding-top: 90px;

}

/* Card 1 */

.bento-card:nth-child(1)::before {

    content: '✦';

}

/* Card 2 */

.bento-card:nth-child(2)::before {

    content: '🛡';

}

/* Card 3 */

.bento-card:nth-child(3)::before {

    content: '🚀';

}

/* Card 4 */

.bento-card:nth-child(4)::before {

    content: '⚡';

}

/* Card 5 */

.bento-card:nth-child(5)::before {

    content: '🎯';

}

/* Card 6 */

.bento-card:nth-child(6)::before {

    content: '🧠';

}

.bento-card::before {

    position: absolute;

    top: 28px;
    right: 28px;

    width: 64px;
    height: 64px;

    border-radius: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;

    background:
        linear-gradient(135deg,
            rgba(212, 175, 55, .18),
            rgba(255, 255, 255, .03));

    border:
        1px solid rgba(212, 175, 55, .18);

    backdrop-filter: blur(12px);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .25);

}

/* ===================================
   HERO CARD
=================================== */

.hero-card {

    padding: 24px;

    border-radius: 34px;

    background:
        rgba(255, 255, 255, .05);

    border:
        1px solid rgba(255, 255, 255, .08);

    backdrop-filter: blur(18px);

    box-shadow: var(--shadow);

}

.hero-card-top {

    display: flex;

    gap: 8px;

    margin-bottom: 24px;

}

.hero-card-top span {

    width: 12px;
    height: 12px;

    border-radius: 50%;

    background: #ffffff30;

}

.hero-chart {

    height: 220px;

    border-radius: 28px;

    margin-bottom: 20px;

    background:
        linear-gradient(135deg,
            #0c6a6a,
            #0b3d3d);

}

.hero-mini-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;

}

.mini-box {

    height: 130px;

    border-radius: 24px;

    background:
        rgba(255, 255, 255, .05);

}

/* ===================================
   FLOATING SHAPES
=================================== */

.floating-shape {

    position: absolute;

    animation:
        float 5s infinite ease-in-out;

    backdrop-filter: blur(20px);

}

.floating-shape.one {

    width: 140px;
    height: 140px;

    top: -20px;
    left: 20px;

    border-radius: 30px;

    background:
        linear-gradient(135deg,
            rgba(212, 175, 55, .25),
            rgba(255, 255, 255, .03));

}

.floating-shape.two {

    width: 120px;
    height: 120px;

    bottom: -20px;
    right: 20px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, .05);

}

@keyframes float {

    50% {

        transform: translateY(-20px);

    }

}

/* ===================================
   MARQUEE
=================================== */

.marquee-section {

    position: relative;

    overflow: hidden;

    padding: 38px 0;

    background:
        linear-gradient(135deg,
            rgba(212, 175, 55, .08),
            rgba(255, 255, 255, .02));

    border-top:
        1px solid rgba(255, 255, 255, .06);

    border-bottom:
        1px solid rgba(255, 255, 255, .06);

}

.marquee-track {

    display: flex;

    gap: 70px;

    width: max-content;

    animation:
        marquee 25s linear infinite;

}

.marquee-track span {

    font-size: 30px;

    font-weight: 900;

    color: var(--gold);

}

@keyframes marquee {

    from {

        transform: translateX(0);

    }

    to {

        transform: translateX(-50%);

    }

}

/* ===================================
   SECTIONS
=================================== */

.section {

    padding: 140px 0;

}

.section-header {

    text-align: center;

    margin-bottom: 80px;

}

.section-header span {

    color: var(--gold);

}

.section-header h2 {

    font-size: 58px;

    margin-top: 15px;

    line-height: 1.4;

    font-weight: 900;

}

/* ===================================
   BUDGET SECTION
=================================== */

.budget-section {

    padding: 140px 0;

}

.budget-box {

    position: relative;

    overflow: hidden;

    padding: 80px;

    border-radius: 42px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 60px;

    background:
        linear-gradient(135deg,
            #0a3a3a,
            #041616);

    border:
        1px solid rgba(255, 255, 255, .06);

}

.budget-glow {

    position: absolute;

    width: 500px;
    height: 500px;

    top: -250px;
    left: -250px;

    background:
        radial-gradient(rgba(212, 175, 55, .15),
            transparent);

}

.budget-content {

    flex: 1;

    position: relative;

    z-index: 2;

}

.budget-mini {

    display: inline-flex;

    padding: 10px 18px;

    border-radius: 50px;

    margin-bottom: 24px;

    color: var(--gold);

    background:
        rgba(212, 175, 55, .08);

    border:
        1px solid rgba(212, 175, 55, .2);

}

.budget-content h2 {

    font-size: 76px;

    line-height: 1.3;

    margin-bottom: 24px;

    font-weight: 900;

}

.budget-content p {

    font-size: 18px;

    margin-bottom: 35px;

}

.budget-features {

    display: flex;

    flex-wrap: wrap;

    gap: 15px;

    margin-bottom: 35px;

}

.budget-chip {

    padding: 12px 18px;

    border-radius: 50px;

    color: var(--white);

    background:
        rgba(255, 255, 255, .05);

    border:
        1px solid rgba(255, 255, 255, .06);

}

.budget-visual {

    flex: 1;

    position: relative;

    min-height: 420px;

}

.budget-card {

    position: absolute;

    border-radius: 32px;

    backdrop-filter: blur(20px);

    background:
        rgba(255, 255, 255, .05);

    border:
        1px solid rgba(255, 255, 255, .08);

    box-shadow: var(--shadow);

}

.main-card {

    width: 320px;
    height: 320px;

    top: 40px;
    right: 40px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

}

.main-card span {

    color: var(--gold);

    margin-bottom: 12px;

}

.main-card strong {

    font-size: 42px;

    line-height: 1.5;

    font-weight: 900;

}

.small-card {

    width: 180px;
    height: 110px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 900;

}

.small-card.one {

    bottom: 40px;
    left: 40px;

}

.small-card.two {

    top: 0;
    left: 80px;

}

/* ===================================
   SLOGAN
=================================== */

.slogan-section {

    padding: 90px 0;

}

.slogan-box {

    padding: 90px;

    border-radius: 42px;

    text-align: center;

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(135deg,
            #0d4f4f,
            #062222);

}

.slogan-box::before {

    content: '';

    position: absolute;

    width: 420px;
    height: 420px;

    top: -150px;
    left: -150px;

    background:
        radial-gradient(rgba(212, 175, 55, .18),
            transparent);

}

.slogan-mini {

    color: var(--gold);

}

.slogan-box h2 {

    font-size: 82px;

    line-height: 1.3;

    margin: 20px 0;

    font-weight: 900;

}

.slogan-box p {

    max-width: 850px;

    margin: auto;

    margin-bottom: 35px;

}

/* ===================================
   BENTO GRID
=================================== */

.bento-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    grid-auto-rows: 220px;

    gap: 24px;

}

.bento-card {

    border-radius: 34px;

    padding: 35px;

    display: flex;
    align-items: flex-end;

    font-size: 28px;
    font-weight: 900;

    transition: .4s;

    background: var(--card);

    border:
        1px solid rgba(255, 255, 255, .05);

}

.bento-card:hover {

    transform: translateY(-8px);

}

.bento-card.large {

    grid-column: span 2;

}

/* ===================================
   SERVICES
=================================== */

.services-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(280px, 1fr));

    gap: 24px;

}

.service-card {

    padding: 40px;

    border-radius: 34px;

    transition: .4s;

    background: var(--card);

    border:
        1px solid rgba(255, 255, 255, .05);

}

.service-card:hover {

    transform: translateY(-10px);

}

.service-number {

    font-size: 58px;

    font-weight: 900;

    margin-bottom: 20px;

    color: #d4af37;

}

.service-card h3 {

    font-size: 28px;

    margin-bottom: 15px;

    font-weight: 900;

}

/* ===================================
   PRICING
=================================== */

.pricing-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(300px, 1fr));

    gap: 24px;

}

.price-card {

    position: relative;

    padding: 45px;

    border-radius: 34px;

    transition: .4s;

    background: var(--card);

    border:
        1px solid rgba(255, 255, 255, .05);

}

.price-card:hover {

    transform: translateY(-10px);

}

.price-card.featured {

    transform: scale(1.03);

    border-color:
        rgba(212, 175, 55, .4);

}

.price-badge {

    position: absolute;

    top: 20px;
    left: 20px;

    padding: 8px 14px;

    border-radius: 50px;

    background: var(--gold);

    color: #041616;

    font-size: 14px;
    font-weight: 900;

}

.price-card h3 {

    font-size: 30px;

    font-weight: 900;

}

.price {

    font-size: 50px;

    margin: 25px 0;

    font-weight: 900;

    color: var(--gold);

}

.price-card li {

    margin-bottom: 12px;

}

.full-btn {

    width: 100%;

    margin-top: 25px;

}

/* ===================================
   FAQ
=================================== */

.faq-wrapper {

    max-width: 950px;

    margin: auto;

}

.faq-item {

    overflow: hidden;

    margin-bottom: 20px;

    border-radius: 28px;

    transition: .35s;

    background: var(--card);

    border:
        1px solid rgba(255, 255, 255, .05);

}

.faq-item:hover {

    border-color:
        rgba(212, 175, 55, .2);

}

.faq-question {

    padding: 28px;

    cursor: pointer;

    font-size: 20px;
    font-weight: 900;

    display: flex;
    align-items: center;
    justify-content: space-between;

}

.faq-icon {

    font-size: 26px;

    color: var(--gold);

    transition: .3s;

    flex-shrink: 0;

}

.faq-item.active .faq-icon {

    transform: rotate(45deg);

}

.faq-answer {

    height: 0;

    overflow: hidden;

    padding: 0 28px;

    transition:
        height .4s ease,
        padding .4s ease;

}

.faq-answer p {

    padding-bottom: 28px;

}

/* ===================================
   CTA
=================================== */

.cta-section {

    padding: 140px 0;

}

.cta-box {

    padding: 90px;

    border-radius: 42px;

    text-align: center;

    background:
        linear-gradient(135deg,
            #0c4f4f,
            #062222);

}

.cta-box span {

    color: var(--gold);

}

.cta-box h2 {

    font-size: 64px;

    line-height: 1.4;

    margin: 20px 0;

    font-weight: 900;

}

/* ===================================
   FOOTER
=================================== */

.footer {

    padding-top: 120px;
    padding-bottom: 40px;

    border-top:
        1px solid rgba(255, 255, 255, .05);

}

.footer-grid {

    display: grid;

    grid-template-columns:
        2fr 1fr 1fr;

    gap: 50px;

    margin-bottom: 60px;

}

.footer-logo {

    font-size: 34px;

    font-weight: 900;

    margin-bottom: 15px;

    color: var(--gold);

}

.footer h3 {

    margin-bottom: 20px;

    font-size: 22px;

    font-weight: 900;

}

.footer ul {

    display: flex;
    flex-direction: column;

    gap: 12px;

}

.footer-bottom {

    text-align: center;

    padding-top: 30px;

    color: var(--text);

    border-top:
        1px solid rgba(255, 255, 255, .05);

}

/* ===================================
   REVEAL
=================================== */

.reveal {

    opacity: 0;

    transform: translateY(70px);

    transition: 1s;

}

.reveal.revealed {

    opacity: 1;

    transform: translateY(0);

}

/* ======================================================================
   css
====================================================================== */

@media(max-width:1100px) {

    /* =========================
       Navigation
    ========================= */

    .nav-links {

        display: none;

    }

    .menu-btn {

        display: flex;

    }

    .navbar {

        flex-direction: row-reverse;

    }

    /* =========================
       Hero
    ========================= */

    .hero {

        padding-top: 120px;

    }

    .hero-wrapper {

        flex-direction: column;

        gap: 40px;

    }

    .hero-content,
    .hero-visual {

        width: 100%;

    }

    .hero-content h1 {

        font-size: 24px;

        line-height: 1.9;

    }

    .hero-content p {

        font-size: 16px;

    }

    /* =========================
       Hero Card
    ========================= */

    .hero-card {

        width: 100%;

        padding: 18px;

        margin-bottom: 25px;

    }

    .hero-chart {

        height: 160px;

    }

    .hero-mini-grid {

        grid-template-columns: 1fr;

        gap: 14px;

    }

    .mini-box {

        height: 85px;

    }

    /* =========================
       Typography
    ========================= */

    .section-header h2,
    .slogan-box h2,
    .budget-content h2,
    .cta-box h2 {

        font-size: 24px;

        line-height: 1.9;

    }

    .service-card h3,
    .price-card h3 {

        font-size: 24px;

    }

    /* =========================
       Sections
    ========================= */

    .section {

        padding: 90px 0;

    }

    .section-header {

        margin-bottom: 50px;

    }

    /* =========================
       Slogan
    ========================= */

    .slogan-box {

        padding: 50px 30px;

    }

    /* =========================
       Bento
    ========================= */

    .bento-grid {

        grid-template-columns: 1fr;

    }

    /* =========================
       Budget
    ========================= */

    .budget-box {

        flex-direction: column;

        padding: 50px 30px;

    }

    .budget-content h2 {

        font-size: 24px;

    }

    .budget-visual {

        width: 100%;

        min-height: auto;

        display: flex;

        flex-direction: column;

        gap: 18px;

    }

    .budget-card {

        position: relative;

        width: 100% !important;

        height: auto !important;

        top: auto !important;
        right: auto !important;
        left: auto !important;
        bottom: auto !important;

        transform: none !important;

    }

    .main-card {

        padding: 40px 20px;

    }

    .main-card strong {

        font-size: 24px;

    }

    .small-card {

        min-height: 80px;

        font-size: 15px;

    }

    /* =========================
       CTA
    ========================= */

    .cta-box {

        padding: 50px 30px;

    }

    /* =========================
       Footer
    ========================= */

    .footer-grid {

        grid-template-columns: 1fr;

    }

    /* =========================
       Mobile Menu
    ========================= */

    .mobile-menu {

        position: fixed;

        height: 100%;

        width: 85%;

        padding: 30px;

        border-radius: 30px 0 0 30px;

        overflow-y: auto;

        transform: translateX(120%);

        transition: .5s ease;

    }

    .mobile-menu.active {

        transform: translateX(0);

    }

    .mobile-menu ul li {

        border-bottom:
            1px solid rgba(255, 255, 255, .06);

        padding-bottom: 16px;

    }

    /* ===========================================================================
    My Codes
=========================================================================== */
    .mobile-menu a {
        font-size: 24px !important;
    }

    .mobile-menu.active ul li a {

        font-size: 18px !important;

    }

}

@media(max-width:600px) {

    .bento-grid {
        display: block;
    }

    .bento-card {
        margin: 25px 0;
        padding: 35px 100px;
        font-size: 24px;
    }

    .faq-question {
        font-size: 18px;
    }
}