:root {
    --bg-color: #0B0C0D;
    --accent-color: #DCEE27;
    --text-white: #ffffff;
    --text-grey: #a1a1a1;
    --card-bg: #161719;
    --card-radius: 24px;
    --font-main: 'Manrope', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-white);
    font-family: var(--font-main);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* --- ANIMATIONS --- */
.fade-in-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-element.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- MAIN HERO WRAPPER --- */
.main-hero-wrapper {
    background: linear-gradient(180deg, #0B0C0D 20%, #2f3136 100%);
    padding-bottom: 60px;
    margin: 20px;
    border-radius: 20px;
    overflow: hidden;
}

/* --- Header --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
}

.logo-icon {
    display: flex;
    gap: 3px;
}

.logo-icon span {
    width: 4px;
    height: 18px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.logo-icon span:nth-child(2) {
    height: 12px;
    margin-top: 6px;
}

.logo-icon span:nth-child(3) {
    height: 24px;
    margin-top: -6px;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav ul li a {
    font-size: 14px;
    font-weight: 500;
}

nav ul li a:hover {
    color: var(--accent-color);
}

.btn-primary {
    background-color: var(--accent-color);
    color: #000;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    transition: transform 0.2s;
}

.btn-primary:hover {
    transform: scale(1.05);
}


.btn-primary2 {
    background-color: var(--accent-color);
    color: #000;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    transition: transform 0.2s;
}

.btn-primary2:hover {
    transform: scale(1.05);
}

.btn-outline {
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

/* --- Hero --- */
.hero-container {
    text-align: center;
    padding: 60px 20px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.welcome-text {
    color: var(--accent-color);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

h1 {
    font-size: 72px;
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-subtext {
    color: var(--text-grey);
    font-size: 16px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
}

/* --- Bento Grid --- */
.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.col-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
}

.col-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.card {
    border-radius: var(--card-radius);
    overflow: hidden;
    position: relative;
}

.card-quote {
    width: 380px;
    height: 460px;
    background: #1A1B1E;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-transaction {
    height: 220px;
    background: #fff;
    color: #000;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card-image {
    height: auto;
    background-color: #333;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    position: relative;
}

.card-image video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.card-graph {
    height: 320px;
    width: 250px;
    background: #fff;
    color: #000;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-stats {
    height: 360px;
    width: 400px;
    background: var(--accent-color);
    color: #000;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-icon {
    font-size: 40px;
    color: transparent;
    -webkit-text-stroke: 1px var(--accent-color);
    font-family: serif;
    line-height: 1;
    margin-bottom: 10px;
}

.quote-text {
    font-size: 14px;
    line-height: 1.6;
    color: #ddd;
}

.avatars {
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar-group img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #1A1B1E;
    margin-left: -10px;
}

.wallet-balance {
    background: var(--accent-color);
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 15px;
    text-align: center;
}

.play-btn {
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.play-btn::after {
    content: '';
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid #fff;
    margin-left: 4px;
}

.graph-lines {
    height: 60px;
    width: 100%;
    background: linear-gradient(to right, transparent 0%, transparent 100%), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 30" preserveAspectRatio="none"><path d="M0,25 C20,25 30,10 50,15 C70,20 80,5 100,10" stroke="%23DCEE27" fill="none" stroke-width="2"/><path d="M0,20 C20,28 40,25 60,18 C80,10 90,25 100,22" stroke="%23ddd" fill="none" stroke-width="2"/></svg>');
    background-size: cover;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1;
}

.bar-icon {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.bar {
    width: 8px;
    background: #000;
    opacity: 0.2;
    border-radius: 10px;
    height: 20px;
}

.bar:nth-child(2) {
    height: 30px;
    opacity: 0.5;
}

/* --- Marquee --- */
.marquee-section {
    text-align: center;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.marquee-section p {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
}

.marquee-container {
    display: flex;
    width: 100%;
    position: relative;
}

.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-color), transparent);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-color), transparent);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 80px;
    white-space: nowrap;
    animation: scroll-loop 40s linear infinite;
}

.marquee-track span {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    opacity: 0.4;
    transition: opacity 0.3s;
    flex-shrink: 0;
}

.marquee-track span:hover {
    opacity: 1;
    color: var(--accent-color);
    cursor: pointer;
}

@keyframes scroll-loop {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --- Common Sections --- */
section {
    padding: 100px 20px;
}

.section-label {
    color: var(--accent-color);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.about-title {
    font-size: 55px;
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 30px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

/* --- ABOUT SECTION --- */
.about-section {
    padding: 120px 0;
}

.about-container-wide {
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.about-text {
    flex: 1.5;
}

.about-text h2 {
    font-size: 58px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 40px;
    max-width: 90%;
}

.stats-row {
    display: flex;
    gap: 80px;
    margin-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
}

.counter-val {
    font-size: 56px;
    font-weight: 700;
    color: #fff;
    display: inline-block;
    min-width: 100px;
}

.about-image-box {
    flex: 1;
    position: relative;
    height: 750px;
    border-radius: 24px;
}

.about-image-box img {
    width: 60%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    filter: brightness(0.9);
}

.asset-card {
    position: absolute;
    bottom: 30px;
    right: 35px;
    width: 230px;
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    color: #000;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    height: 220px;
}

.bubble-chart {
    height: 180px;
    position: relative;
}

.bubble {
    border-radius: 50%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
}

.b-1 {
    width: 50px;
    height: 50px;
    background: #1e1e64;
    top: 20%;
    left: 10%;
}

.b-2 {
    width: 45px;
    height: 45px;
    background: #6a7dfc;
    top: 10%;
    right: 20%;
}

.b-3 {
    width: 75px;
    height: 75px;
    background: var(--accent-color);
    color: #000;
    bottom: 20%;
    left: 35%;
}

/* --- SERVICES SECTION --- */
.services-section {
    text-align: center;
    padding: 140px 20px;
}

.services-container-wide {
    max-width: 95%;
    margin: 0 auto;
}

.services-header {
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background-color: #161719;
    border-radius: var(--card-radius);
    padding: 35px;
    text-align: left;
    height: 720px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    background-color: #1a1b1e;
}

.service-tag {
    align-self: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 12px;
    color: #ccc;
}

.service-img-box {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.service-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
    filter: brightness(0.7) grayscale(30%);
}

.service-card:hover .service-img-box img {
    transform: scale(1.05);
    filter: brightness(1) grayscale(0%);
}

.service-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.service-info h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 600;
}

.service-info p {
    color: #999;
    line-height: 1.7;
    font-size: 15px;
    margin: 0;
}

/* --- VIDEO CTA  --- */
.video-cta-section {
    position: relative;
    height: 90vh;
    margin: 0px 20px;
    border-radius: 24px;
    overflow: hidden;
    /* برش گوشه‌ها */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.video-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgb(0 0 0 / 73%) 0%, rgb(0 0 0 / 70%) 40%, rgb(0 0 0 / 47%) 100%);
    z-index: 1;
    pointer-events: none;
}

.video-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.video-content h2 {
    font-size: 37px;
    line-height: 1.5;
    font-weight: 600;
    margin: 20px 0 40px;
}

/* --- PROCESS (UPDATED) --- */
.process-section {
    padding: 140px 0;
}

.process-container-full {
    max-width: 95%;
    margin: 0 auto;
    display: flex;
    gap: 100px;
    /* فاصله زیاد بین ستون‌ها */
    align-items: center;
}

.process-left-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 50px;
    /* فاصله هدر از تصویر دقیقاً 50px */
}

.process-header-block {
    /* حذف پدینگ اضافی برای تراز دقیق */
    padding-left: 0;
}

.process-header-block h2 {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 600;
    margin-top: 10px;
}

.process-img-box {
    width: 100%;
    height: 740px;
    /* تصویر کشیده */
    border-radius: 24px;
    overflow: hidden;
}

.process-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    filter: brightness(0.9);
}

.process-right-col {
    flex: 1;
    /* تراز کردن مراحل با وسط یا پایین تصویر */
    padding-top: 180px;
}

.step-item {
    display: flex;
    gap: 30px;
    padding: 50px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.step-icon {
    width: 32px;
    height: 32px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    flex-shrink: 0;
    font-size: 14px;
}

.check-mark {
    width: 12px;
    height: 6px;
    border-left: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: rotate(-45deg);
    margin-top: -3px;
}

.step-num {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-details h3 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #fff;
}

.step-details p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-grey);
    max-width: 90%;
}

/* --- TESTIMONIALS --- */
.testimonials-section {
    text-align: center;
    padding: 140px 20px;
}

.testimonials-header {
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.testi-card {
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testi-right-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testi-card.dark {
    background: #0B0C0D;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    justify-content: space-between;
}

.testi-card.small {
    height: 350px;
    justify-content: space-between;
}

.testi-card.white {
    background: #fff;
    color: #000;
}

.testi-card.yellow {
    background: var(--accent-color);
    color: #000;
}

.testi-user {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-info h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.user-info span {
    font-size: 13px;
    opacity: 0.7;
}

.user-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testi-text {
    font-size: 15px;
    line-height: 1.8;
    color: inherit;
    opacity: 0.9;
}

.testi-video-box {
    margin-top: auto;
    background: #1A1B1E;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.player-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    justify-content: space-between;
    color: #fff;
    font-size: 12px;
    z-index: 2;
}

.player-thumbnail {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.player-suggestions {
    background: rgba(0, 0, 0, 0.9);
    padding: 10px;
    display: flex;
    gap: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.suggestion-thumb {
    width: 80px;
    height: 50px;
    background: #333;
    border-radius: 4px;
    overflow: hidden;
}

.suggestion-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.suggestion-text {
    font-size: 10px;
    color: #ccc;
    margin-top: 5px;
}

.testi-brand {
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

/* --- Team --- */
.team-section {
    background-color: #F2F2F2;
    color: #000;
}

.team-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.team-header h2 {
    font-size: 48px;
    font-weight: 600;
    color: #000;
    line-height: 1.1;
}

.btn-dark {
    background: #000;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    background: #1A1B1E;
    border-radius: 24px;
    padding: 35px;
    color: #fff;
    /* height: 380px; */
    display: flex;
    flex-direction: column;
}

.team-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.social-icon {
    width: 30px;
    height: 30px;
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-color);
    font-size: 12px;
    margin-bottom: 10px;
}

.team-img-box {
    width: 160px;
    height: 160px;
    border-radius: 20px;
    overflow: hidden;
}

.team-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

/* --- Blog --- */
.blog-section {
    text-align: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: #161719;
    border-radius: 24px;
    overflow: hidden;
    text-align: left;
}

.blog-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* --- FAQ --- */
.faq-wrapper {
    display: flex;
    gap: 60px;
    /* max-width: 1200px; */
    margin: 0 auto;
}

.faq-img-box {
    flex: 1;
    position: relative;
    height: 760px;
    border-radius: 24px;
    overflow: hidden;
}

.faq-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #1A1B1E;
    padding: 25px;
    border-radius: 16px;
    color: #fff;
}

.contact-row {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 10px;
}

.faq-list {
    flex: 1;
}

.faq-item {
    background: #161719;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: 0.3s;
}

.faq-header {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.faq-question {
    font-size: 16px;
    font-weight: 500;
    color: #ddd;
}

.faq-icon {
    color: var(--accent-color);
    font-size: 20px;
    transition: 0.3s;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-body p {
    padding: 0 25px 25px;
    color: #aaa;
    font-size: 14px;
    margin: 0;
}

.faq-item.active {
    background: #202124;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* --- Appointment --- */
.appointment-section {
    max-width: 1300px;
    margin: 80px auto;
    border-radius: 24px;
    background: url('./img/imgi_1_photo-1556761175-5973dc0f32e7.webp') center/cover;
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.appt-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.appt-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.appt-content h2 {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 600;
    margin: 20px 0;
}

.appt-content p {
    color: #ccc;
    font-size: 18px;
    margin-bottom: 40px;
}

.btn-large {
    background-color: var(--accent-color);
    color: #000;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
}

/* --- Footer --- */
.site-footer {
    background-color: var(--bg-color);
    padding: 80px 20px 30px;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 0.8fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #fff;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-grey);
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

.newsletter-box {
    margin-top: 20px;
}

.input-group {
    display: flex;
    background: #1A1B1E;
    border-radius: 30px;
    padding: 5px;
    border: 1px solid #333;
    margin: 15px 40px 0px 0px !important;
}

.input-group input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    padding: 10px 15px;
    width: 100%;
    font-family: inherit;
}

.input-group button {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #fff;
    padding-right: 10px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid #222;
    padding-top: 30px;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.footer-bottom a {
    font-size: 12px;
    color: #666;
}

.footer-watermark {
    position: absolute;
    bottom: -20px;
    right: 0;
    font-size: 200px;
    font-weight: 800;
    color: #fff;
    opacity: 0.03;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

@media (max-width: 900px) {
    .main-hero-wrapper {
        margin: 10px;
        border-radius: 15px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .card-image {
        height: 300px;
    }

    .card-quote,
    .card-transaction,
    .card-graph,
    .card-stats {
        height: auto;
        min-height: 250px;
    }

    .container,
    .about-container-wide,
    .services-container-wide,
    .process-container-full,
    .faq-wrapper {
        flex-direction: column;
    }

    .about-image-box,
    .process-img-box,
    .faq-img-box {
        width: 100%;
        height: 400px;
    }

    .team-grid,
    .blog-grid,
    .services-grid,
    .footer-grid,
    .testi-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 48px;
    }

    .about-text h2 {
        font-size: 42px;
    }

    .video-content h2 {
        font-size: 42px;
    }

    .process-right-col {
        padding-top: 0;
    }
}

/* استایل برای باز شدن نرم محتوای مخفی */
#more-info-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.8s ease-in-out, opacity 0.8s ease-in-out, margin 0.5s ease;
    margin-bottom: 0;
    /* در حالت بسته فاصله نداشته باشد */
}

#more-info-content.open {
    opacity: 1;
    margin-bottom: 30px;
    /* وقتی باز شد فاصله بگیرد */
}

/* --- MODAL / POPUP STYLES --- */
.modal {
    display: none;
    /* پیش‌فرض مخفی */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    /* پس‌زمینه تاریک */
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: #1A1B1E;
    width: 90%;
    /* max-width: 1000px; */
    max-height: 90vh;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s ease forwards;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
}

.close-modal:hover {
    color: var(--accent-color);
}

/* لای‌اوت دو ستونه */
.modal-left {
    flex: 1;
    background-color: #111;
}

.modal-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.modal-right {
    flex: 1.5;
    padding: 40px;
    overflow-y: auto;
    /* اسکرول برای متن‌های طولانی */
}

/* تایپوگرافی پاپ‌آپ */
.modal-name {
    font-size: 32px;
    color: #fff;
    margin-bottom: 5px;
}

.modal-role {
    color: var(--accent-color);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: block;
}

.modal-desc-title {
    color: #fff;
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.modal-text {
    font-size: 14px;
    line-height: 1.7;
    color: #ccc;
}

.modal-list {
    list-style: disc;
    padding-left: 20px;
    color: #ccc;
    font-size: 14px;
}

.modal-list li {
    margin-bottom: 8px;
}

/* نوار پیشرفت (Skill Bars) */
.skill-box {
    margin-bottom: 15px;
}

.skill-label {
    display: flex;
    justify-content: space-between;
    color: #fff;
    font-size: 13px;
    margin-bottom: 5px;
}

.progress-bar-bg {
    width: 100%;
    height: 6px;
    background-color: #333;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background-color: var(--accent-color);
    width: 0;
    /* با انیمیشن پر می‌شود */
    border-radius: 10px;
    transition: width 1s ease-out;
}

/* حالت موبایل */
@media (max-width: 768px) {
    .modal-content {
        flex-direction: column;
        height: auto;
        max-height: 95vh;
    }

    .modal-left {
        height: 200px;
    }

    .modal-right {
        padding: 20px;
    }
}

/* =========================================
   RESPONSIVE STYLES (Updated with Process Section)
   ========================================= */

/* --- 1. SMALL LAPTOP / TABLET LANDSCAPE (769px - 1276px) --- */
@media (min-width: 769px) and (max-width: 1276px) {

    /* تنظیم کانتینرها */
    .container,
    .main-hero-wrapper,
    .about-container-wide,
    .services-container-wide,
    .process-container-full {
        max-width: 95%;
        padding: 0 20px;
    }

    /* هدر */
    header {
        padding: 20px 30px;
    }

    /* تیترها */
    h1 {
        font-size: 56px;
    }

    .about-title {
        font-size: 42px;
    }

    /* بنتو گرید */
    .bento-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .card-image {
        grid-column: span 2;
        height: 400px;
        order: 3;
    }

    .col-left {
        order: 1;
    }

    .col-right {
        order: 2;
    }

    /* بخش About */
    .about-image-box {
        height: 500px;
    }

    .asset-card {
        right: 10px;
        bottom: 10px;
        transform: scale(0.9);
    }

    .stats-row {
        gap: 40px;
    }

    .counter-val {
        font-size: 42px;
    }

    /* Services */
    .services-grid {
        gap: 20px;
    }

    .service-card {
        height: auto;
        min-height: 680px;
        padding: 30px;
    }

    .service-img-box {
        height: 350px;
    }

    /* Video CTA */
    .video-cta-section {
        height: 70vh;
        margin: 0 10px;
    }

    .video-content h2 {
        font-size: 48px;
    }

    /* --- NEW: PROCESS SECTION (Laptop) --- */
    .process-container-full {
        gap: 50px;
        /* کاهش فاصله بین ستون‌ها */
    }

    .process-img-box {
        height: 600px;
        /* کاهش ارتفاع تصویر */
    }

    .process-right-col {
        padding-top: 100px;
        /* کاهش فاصله بالا */
    }
}

/* --- 2. TABLET PORTRAIT (481px - 768px) --- */
@media (min-width: 481px) and (max-width: 768px) {

    /* مخفی کردن منو */
    nav ul {
        display: none;
    }

    header {
        padding: 20px;
    }

    /* هیرو */
    h1 {
        font-size: 48px;
    }

    .hero-container {
        padding: 40px 20px;
    }

    /* بنتو گرید */
    .bento-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }

    .col-left,
    .col-right {
        width: 100%;
        align-items: stretch;
    }

    .card {
        width: 100% !important;
    }

    .card-image {
        height: 350px;
    }

    /* بخش About */
    .about-container-wide {
        flex-direction: column;
        gap: 40px;
    }

    .about-text {
        width: 100%;
        text-align: center;
    }

    .about-image-box {
        width: 100%;
        height: 450px;
    }

    .stats-row {
        justify-content: center;
        gap: 30px;
    }

    .blog-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    /* Services */
    .services-section {
        padding: 80px 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-card {
        height: auto;
        min-height: auto;
    }

    .service-img-box {
        height: 400px;
    }

    /* Video CTA */
    .video-cta-section {
        height: 500px;
        margin: 0 10px;
    }

    .video-content h2 {
        font-size: 42px;
        margin: 10px 0 30px;
    }

    /* --- NEW: PROCESS SECTION (Tablet) --- */
    .process-container-full {
        flex-direction: column;
        /* ستون‌ها زیر هم */
        gap: 40px;
    }

    .process-left-col,
    .process-right-col {
        width: 100%;
        flex: auto;
    }

    .process-right-col {
        padding-top: 0;
        /* حذف فاصله بالای ستون راست */
    }

    .process-img-box {
        height: 450px;
        /* ارتفاع مناسب تبلت */
    }

    .process-header-block h2 {
        font-size: 42px;
        text-align: center;
    }

    .section-label {
        text-align: center;
    }
}

/* --- 3. MOBILE (0px - 480px) --- */
@media (max-width: 480px) {

    /* هدر */
    header {
        padding: 15px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .logo {
        margin-bottom: 5px;
    }

    nav ul {
        display: none;
    }

    .btn-primary {
        padding: 10px 20px;
        font-size: 12px;
    }

    .btn-primary2 {
        padding: 10px 20px;
        font-size: 12px;
        width: 100% !important;
    }

    /* هیرو */
    .main-hero-wrapper {
        margin: 10px;
        border-radius: 15px;
    }

    h1 {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .hero-container h1 {
        font-size: 30px !important;
    }

    .hero-container p {
        font-size: 13px !important;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .hero-buttons a {
        width: 50% !important;
        text-align: center;
        padding: 12px 20px;
    }

    /* بنتو گرید */
    .bento-grid {
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 0 10px;
    }

    .col-left,
    .col-right {
        width: 100%;
        align-items: stretch;
    }

    .card {
        width: 100% !important;
    }

    .card-quote {
        height: auto;
        min-height: 280px;
        padding: 20px;
    }

    .quote-text {
        font-size: 13px;
    }

    .card-image {
        height: 220px;
    }

    .card-transaction,
    .card-graph,
    .card-stats {
        height: auto;
        min-height: 200px;
    }

    /* بخش About */
    .about-section {
        padding: 60px 0;
    }

    .about-container-wide {
        flex-direction: column;
        gap: 30px;
    }

    .about-title h2 {
        font-size: 36px !important;
        text-align: center;
    }

    .about-text p {
        font-size: 15px;
        text-align: justify;
    }

    .stats-row {
        flex-direction: column;
        gap: 25px;
        margin-top: 30px;
    }

    .counter-val {
        font-size: 40px;
        display: inline;
    }

    .about-image-box {
        width: 100%;
        height: 350px;
        margin-top: 20px;
    }

    .about-image-box img {
        width: 100%;
    }

    .asset-card {
        width: 150px;
        height: 160px;
        padding: 15px;
        right: 30%;
        transform: translateX(50%);
        bottom: 20px;
    }

    .bubble-chart {
        height: 130px;
    }

    .b-1 {
        width: 40px;
        height: 40px;
    }

    .b-2 {
        width: 35px;
        height: 35px;
    }

    .b-3 {
        width: 50px;
        height: 50px;
    }

    /* Services */
    .services-section {
        padding: 60px 15px;
    }

    .services-header {
        margin-bottom: 40px;
    }

    .services-header h2 {
        font-size: 36px !important;
        line-height: 1.2;
    }

    services-header p {
        font-size: 12px !important;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        height: auto;
        padding: 25px;
    }

    .service-img-box {
        height: 250px;
        margin-bottom: 15px;
    }

    .service-info h3 {
        font-size: 22px;
    }

    .service-info p {
        font-size: 14px;
    }

    /* Video CTA */
    .video-cta-section {
        height: 400px;
        margin: 0 10px;
        border-radius: 15px;
    }

    .section-label {
        font-size: 12px !important;
    }

    .video-content {
        padding: 0px;
    }

    .video-content h2 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .video-content p {
        font-size: 11px;
        padding-top: 0px;
        padding-bottom: 20px;
    }

    /* --- NEW: PROCESS SECTION (Mobile) --- */
    .process-section {
        padding: 60px 15px;
        /* کاهش پدینگ کلی */
    }

    .process-container-full {
        flex-direction: column;
        /* زیر هم */
        gap: 30px;
        width: 100%;
    }

    .process-left-col,
    .process-right-col {
        width: 100%;
        padding: 0;
        /* حذف پدینگ اضافه */
    }

    .process-header-block h2 {
        font-size: 28px;
        /* تیتر کوچک */
        text-align: center;
    }

    .process-header-block .section-label {
        text-align: center;
        display: block;
    }

    .process-img-box {
        height: 300px;
        /* ارتفاع عکس در موبایل */
        margin-top: 20px;
    }

    .process-right-col {
        padding-top: 0;
        /* حذف فاصله بالا */
    }

    .step-item {
        flex-direction: column;
        /* آیکون بالا، متن پایین */
        gap: 15px;
        padding: 30px 0;
        text-align: start;
        align-items: flex-start;
    }

    .step-details h3 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .step-details p {
        font-size: 14px;
        max-width: 100%;
    }

    /* عمومی */
    .testimonials-section {
        padding: 60px 15px;
    }

    .team-header {
        flex-direction: column;
        align-items: center;
        gap: 35px;
    }

    .team-header h2 {
        font-size: 32px;
    }

    .modal-left img {
        width: 50%;
        height: auto;
    }

    .about-title {
        font-size: 27px;
    }

    .appt-content h2 {
        font-size: 34px;
    }

    .appt-content p {
        font-size: 16px;
    }

    .input-group {
        margin: 25px 70px 0px 0px;
    }

    .btn-large {
        padding: 15px 25px;
    }

}