/* ---------------------------------------------
   1. تنظیمات سراسری و ریست
--------------------------------------------- */
html,
body {
    overflow-x: hidden !important;
    width: 100%;
    position: relative;
}

/* ---------------------------------------------
   2. هدر ثابت و نوار اسکرول
--------------------------------------------- */
.header-section {
    position: fixed;
    left: 0;
    width: 100%;
    z-index: 10000;
    box-shadow: rgba(0, 0, 0, 0.103) 0px 10px 20px,
        rgba(0, 0, 0, 0.075) 0px 6px 6px;
    top: 0;
    background: #fff;
}

.scroll-progress {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 5%;
    height: 4px;
    background: linear-gradient(135deg, #f1d576, #fcd249, #eec02b);
    transition: width 0.2s ease-out;
}

/* ---------------------------------------------
   3. آف‌کَنواس (منوی موبایل)
--------------------------------------------- */

/* پنل اصلی */
.offcanvas-pane {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    z-index: 1050;
    transition: right 0.4s ease-in-out;
    overflow-x: hidden;
    overflow-y: auto;
}

/* پنل‌های مختلف */
.pane-1 {
    width: 100%;
    background: rgba(0, 86, 92, 0.95);
    backdrop-filter: blur(2px);
}

.pane-2 {
    width: 85%;
    max-width: 350px;
    margin-right: auto;
    background: #eec02b;
    height: 100%;
    overflow-y: auto;
}

.offcanvas-pane.pane-3 {
    background: #ffffff;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.05);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
        opacity 0.5s ease-out;
}

.offcanvas-pane.pane-3:not(.show) {
    transform: scaleX(0.97) translateX(15px);
    opacity: 0;
}

/* آیتم‌های منو */
.nav-link {
    position: relative;
    font-size: 1.1rem;
    font-weight: 500;
    color: #2c3e4e;
    padding: 1rem 0.5rem !important;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(0, 86, 92, 0.08);
}

/* آیکون‌ها */
.nav-link::before {
    font-family: 'Icofont';
    font-size: 1.2rem;
    color: #eec02b;
    transition: transform 0.2s;
    display: inline-block;
    width: 28px;
}

.nav-link:nth-child(1)::before {
    content: '\efb0';
}

/* راهنمایی */
.nav-link:nth-child(2)::before {
    content: '\ef00';
}

/* قوانین */
.nav-link:nth-child(3)::before {
    content: '\eef4';
}

/* مجوزها */
.nav-link:nth-child(4)::before {
    content: '\efca';
}

/* مجلات */
.nav-link:nth-child(5)::before {
    content: '\efa4';
}

/* ارتباط */
.nav-link:nth-child(6)::before {
    content: '\efba';
}

/* دریافت طلا */
.nav-link:nth-child(7)::before {
    content: '\eeed';
}

/* آموزش */

/* افکت‌های هاور */
.nav-link:hover {
    padding-right: 15px !important;
    color: #00565C;
    background: linear-gradient(90deg, rgba(238, 192, 43, 0.1), transparent);
}

.nav-link:hover::before {
    transform: translateX(-5px) scale(1.1);
    color: #b88c1a;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #eec02b, #00565C);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 70%;
}

/* هدر */
.offcanvas-header {
    background: linear-gradient(135deg, #ffffff, #fef9e6);
    border-bottom: 2px solid rgba(238, 192, 43, 0.3);
    position: relative;
}

.offcanvas-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #eec02b, #00565C);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}


.offcanvas-pane.show {
    right: 0;
}

.offcanvas-pane.pane-3:not(.show) .nav-link {
    animation: none;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.2s;
}

@media (min-width: 768px) {
    .pane-2 {
        width: 70%;
        max-width: 400px;
    }
}

.btn-close-custom {
    width: 40px;
    height: 40px;
    background: linear-gradient(145deg, #00565C, #003d42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    font-size: 1.2rem;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(0, 86, 92, 0.3);
}

.btn-close-custom i {
    transition: transform 0.2s;
}

.btn-close-custom:hover {
    background: #eec02b;
    color: #00565C;
    transform: rotate(90deg);
    box-shadow: 0 0 15px rgba(238, 192, 43, 0.6);
}

.btn-close-custom:hover i {
    transform: rotate(180deg);
}

/* ---------------------------------------------
   4. بخش اطلاعات پلتفرم
--------------------------------------------- */
.home-header {
    padding: 5rem 0 4rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f4f9 100%);
    position: relative;
    overflow: hidden;
    direction: rtl;
}

.home-header::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 130%;
    height: 150%;
    background: radial-gradient(circle, rgba(238, 192, 43, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.home-header__inner {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.home-header__content {
    flex: 1;
}

.home-header__title {
    font-size: 3rem;
    font-weight: 800;
    color: #00565C;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.home-header__title-number {
    background: linear-gradient(120deg, #eec02b, #b88c1a);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.home-header__slogan {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e2a32;
    margin-bottom: 0.8rem;
}

.home-header__accent {
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, #eec02b, #00565C);
    border-radius: 3px;
    margin-bottom: 1.2rem;
}

.home-header__desc {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.home-header__security {
    font-size: 0.95rem;
    color: #00565C;
    font-weight: 500;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.home-header__security i {
    font-size: 1.2rem;
    color: #eec02b;
}

.home-header__trust {
    background: rgba(238, 192, 43, 0.007);
    border-radius: 40px;
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
    color: #00565C;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(238, 192, 43, 0.3);
    backdrop-filter: blur(4px);
}

.home-header__trust i {
    font-size: 0.9rem;
    color: #eec02b;
}

.btn--primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #00565C;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 60px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.btn--primary:hover {
    background: #eec02b;
    color: #00565C;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.home-header__image {
    flex: 1;
    text-align: center;
}

.image-static img {
    max-width: 100%;
    filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.1));
}

@media (max-width: 992px) {
    .home-header__inner {
        flex-direction: column-reverse;
        text-align: center;
    }

    .home-header__title {
        font-size: 2.5rem;
    }

    .home-header__slogan {
        font-size: 1.2rem;
    }

    .home-header__accent {
        margin: 0 auto 1rem auto;
    }

    .home-header__security {
        justify-content: center;
    }

    .home-header__trust {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 576px) {
    .home-header {
        padding: 2rem 0;
    }

    .home-header__title {
        font-size: 2rem;
    }

    .btn--primary {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

.banner-card {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.banner-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
}

.banner-slider {
    padding: 4rem 0;
}

.banner-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #cbd5e1;
    opacity: 1;
    transition: all 0.2s;
}

.banner-swiper .swiper-pagination-bullet-active {
    width: 20px;
    background: #ecbf25;
    border-radius: 10px;
}

@media (max-width: 560px) {
    .banner-card {
        border-radius: 20px;
    }

    .banner-slider {
        padding: 2.5rem 0;
    }
}

/* ---------------------------------------------
   5. trade-section
--------------------------------------------- */
.trade-section {
    padding: 5rem 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.trade-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    align-items: stretch;
}

.trade-info {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.trade-icon {
    font-size: 4rem;
    color: #eec02b;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(238, 192, 43, 0.3);
}

.trade-title {
    font-size: 2rem;
    font-weight: 800;
    color: #00565C;
    margin-bottom: 0.5rem;
}

.gold-text {
    background: linear-gradient(120deg, #eec02b, #c9a320);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.title-underline {
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, #eec02b, #00565C);
    margin: 0.8rem auto 1.2rem;
    border-radius: 3px;
}

.trade-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1rem 0 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(0, 86, 92, 0.04);
    padding: 0.6rem 0.8rem;
    border-radius: 40px;
    transition: 0.2s;
}

.feature-item:hover {
    background: rgba(238, 192, 43, 0.1);
    transform: translateX(-3px);
}

.feature-item i {
    background-color: #00565c;
    border-radius: 50%;
    padding: 15px;
    font-size: 1.4rem;
    color: #eec02b;
}

.feature-item strong {
    font-size: 0.8rem;
    color: #00565C;
    display: block;
}

.feature-item small {
    font-size: 0.65rem;
    color: #5b6e7c;
}

.trust-quote {
    background: #eec02b0a;
    border-radius: 60px;
    padding: 0.6rem 1rem;
    border: 1px solid rgba(238, 192, 43, 0.3);
    font-size: 0.75rem;
    color: #00565C;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-top: auto;
    width: fit-content;
    align-self: center;
}

.trust-quote i {
    font-size: 1rem;
    color: #eec02b;
}

.trade-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-radius: 25px;
    padding: 2rem;
    box-shadow: 0 30px 45px -15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(238, 192, 43, 0.3);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.trade-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 35px 50px -18px rgba(0, 86, 92, 0.2);
}

.trade-tabs {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, rgba(238, 192, 43, 0.08), rgba(0, 86, 92, 0.05));
    padding: 0.4rem;
    border-radius: 80px;
}

.tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.7rem 0.5rem;
    border-radius: 60px;
    font-weight: 700;
    font-size: 0.9rem;
    color: #00565C;
    cursor: pointer;
    transition: 0.2s;
}

.tab-btn.active {
    background: #00565C;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 86, 92, 0.25);
}

.trade-price {
    background: linear-gradient(135deg, rgba(238, 192, 43, 0.08), rgba(0, 86, 92, 0.05));
    border-radius: 32px;
    padding: 1rem 1.2rem;
    margin-bottom: 1.8rem;
}

.price-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #00565C;
    margin-bottom: 0.5rem;
}

.price-label i {
    margin-right: auto;
    cursor: help;
    font-size: 1.2rem;
    color: #eec02b;
}

.price-value {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 1.4rem;
    font-weight: 800;
    color: #1e2a32;
}

.price-value small {
    font-size: 0.7rem;
    font-weight: normal;
}

.price-change {
    font-size: 0.8rem;
    padding: 0.2rem 0.6rem;
    border-radius: 40px;
    background: rgba(0, 86, 92, 0.08);
    color: #00565C;
}

.price-change i {
    font-size: 0.7rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #00565C;
    margin-bottom: 0.4rem;
}

.trade-input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 32px;
    font-family: inherit;
    font-size: 0.9rem;
    transition: 0.2s;
    background: white;
}

.trade-input:focus {
    outline: none;
    border-color: #eec02b;
    box-shadow: 0 0 0 3px rgba(238, 192, 43, 0.2);
}

.trade-input[readonly] {
    background: #f1f5f9;
    cursor: default;
}

.trade-action-btn {
    width: 100%;
    background: linear-gradient(135deg, #00565C, #003d42);
    color: white;
    border: none;
    padding: 0.9rem;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.trade-action-btn:hover {
    background: #eec02b;
    color: #003d42;
    transform: translateY(-3px);
    box-shadow: 0 12px 20px -8px rgba(0, 86, 92, 0.4);
}

.trade-footer {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
}

.more-link {
    color: #00565C;
    text-decoration: none;
    font-weight: 500;
}

.more-link:hover {
    color: #eec02b;
}

@media (max-width: 1024px) {
    .trade-grid {
        gap: 1.8rem;
    }

    .trade-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .trade-grid {
        grid-template-columns: 1fr;
    }

    .trade-info,
    .trade-box {
        padding: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .price-value {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .trade-section {
        padding: 2.5rem 0;
    }

    .trade-title {
        font-size: 1.5rem;
    }

    .trade-desc {
        font-size: 0.85rem;
    }
}

/* ---------------------------------------------
   6. اسلایدر مجوزها (license-swiper)
--------------------------------------------- */
.swiper-container-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.swiper.license-swiper {
    width: 100%;
    height: 100%;
    position: relative;
}

.license-swiper .swiper-wrapper {
    align-items: center;
    height: 100%;
}

.license-swiper .swiper-slide {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.4;
    transform: scale(0.85);
    height: 100%;
}

.license-swiper .swiper-slide-prev {
    opacity: 0.85;
    transform: scale(0.95);
    transform-origin: right center;
}

.license-swiper .swiper-slide-next {
    opacity: 0.85;
    transform: scale(0.95);
    transform-origin: left center;
}

.license-swiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1.15) translateY(-15px);
    z-index: 10;
}

.license-swiper .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-prev):not(.swiper-slide-next) {
    opacity: 0.3;
    transform: scale(0.8);
}

.container .swiper.license-swiper {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
    padding: 60px 15px;
    position: relative;
}

.container .license-swiper .swiper-wrapper {
    overflow: visible;
}

.container .license-swiper .swiper-slide {
    transition: all 0.5s ease;
    opacity: 0.4;
    transform: scale(0.85);
}

.container .license-swiper .swiper-slide-prev {
    opacity: 0.85;
    transform: scale(0.95);
}

.container .license-swiper .swiper-slide-next {
    opacity: 0.85;
    transform: scale(0.95);
}

.container .license-swiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1.12) translateY(-12px);
    z-index: 10;
}

.container .license-swiper .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-prev):not(.swiper-slide-next) {
    opacity: 0.3;
    transform: scale(0.8);
}

@media (min-width: 768px) and (max-width: 1023px) {
    .license-swiper .swiper-slide-active {
        transform: scale(1.1) translateY(-10px) !important;
    }

    .license-swiper .swiper-slide-prev,
    .license-swiper .swiper-slide-next {
        transform: scale(0.92) !important;
    }

    .license-swiper .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-prev):not(.swiper-slide-next) {
        transform: scale(0.82) !important;
    }
}

@media (max-width: 767px) {

    .container .swiper.license-swiper,
    .swiper.license-swiper {
        padding: 25px 0 !important;
    }

    .license-swiper .swiper-slide {
        opacity: 0.6 !important;
        transform: scale(0.9) !important;
    }

    .license-swiper .swiper-slide-active {
        transform: scale(1.03) translateY(-4px) !important;
        opacity: 1 !important;
    }

    .license-swiper .swiper-slide-prev,
    .license-swiper .swiper-slide-next {
        opacity: 0.85 !important;
        transform: scale(0.95) !important;
    }

    .license-swiper .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-prev):not(.swiper-slide-next) {
        opacity: 0.6 !important;
        transform: scale(0.9) !important;
    }
}

/* ---------------------------------------------
   7. بخش طلای فیزیکی (gold-physically)
--------------------------------------------- */
.gold-physically {
    background-attachment: fixed;
    background-image: url(../img/gold-physically.png);
    background-size: cover;
    background-repeat: no-repeat;

}

.physical-hero,
.physical-steps,
.physical-tips,
.physical-fee,
.physical-transparency {
    direction: rtl;
}

.gold-grad {
    background: linear-gradient(120deg, #eec02b, #c9a320);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.gold-line-center {
    width: 250px;
    height: 3px;
    background: linear-gradient(90deg, #eec02b, #00565C, #eec02b);
    margin: 0.8rem auto;
    border-radius: 3px;
}

.gold-line-small {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #eec02b, transparent);
    border-radius: 2px;
}

.physical-hero {
    padding: 4rem 0 2rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(238, 192, 43, 0.15);
    color: #b88c1a;
    padding: 0.3rem 1rem;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #00565C;
    margin-bottom: 0.5rem;
}

.hero-line {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #eec02b, #00565C);
    margin: 1rem 0;
}

.hero-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #2c3e4e;
    margin-bottom: 1.5rem;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.hf-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #00565C;
}

.hf-item i {
    font-size: 1.2rem;
    color: #eec02b;
}

.hero-image-wrapper {
    position: relative;
    display: inline-block;
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(238, 192, 43, 0.2), transparent);
    filter: blur(30px);
    z-index: 0;
}

.hero-img {
    position: relative;
    z-index: 2;
    max-width: 100%;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
}

.physical-steps {
    padding: 4rem 0;
}

.section-header {
    margin-bottom: 3rem;
}

.section-badge {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: #b88c1a;
    background: rgba(238, 192, 43, 0.1);
    display: inline-block;
    padding: 0.2rem 1rem;
    border-radius: 40px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #00565C;
    margin: 0.8rem 0;
}

.section-subtitle {
    font-size: 0.9rem;
    color: #5b6e7c;
}

.step-card {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 86, 92, 0.08);
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    min-height: 300px;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: #eec02b;
    box-shadow: 0 25px 40px -12px rgba(0, 86, 92, 0.2);
}

.step-number {
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 2rem;
    font-weight: 800;
    color: rgba(0, 86, 92, 0.08);
}

.step-icon img {
    width: 90px;
    margin-bottom: 1rem;
    transition: transform 0.3s;
}

.step-card:hover .step-icon img {
    transform: scale(1.05);
}

.step-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #00565C;
    margin: 1rem 0 0.8rem;
}

.step-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #4a5568;
}

.step-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(238, 192, 43, 0.08), transparent);
    opacity: 0;
    transition: opacity 0.5s;
}

.step-card:hover .step-shine {
    opacity: 1;
}

.physical-tips-advanced {
    padding: 4rem 0;
    direction: rtl;
}

.main-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #00565C;
    margin-bottom: 0.5rem;
}

.magic-line {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #eec02b, #00565C, #eec02b);
    margin: 0.8rem auto;
    border-radius: 3px;
}

.subtitle {
    font-size: 0.9rem;
    color: #5b6e7c;
    max-width: 700px;
    margin: 0 auto;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.8rem;
    margin: 2rem 0;
}

.tip-card {
    background: white;
    border-radius: 28px;
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid rgba(0, 86, 92, 0.08);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.tip-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: #eec02b;
    box-shadow: 0 20px 35px -12px rgba(0, 86, 92, 0.2);
}

.tip-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 86, 92, 0.05), rgba(238, 192, 43, 0.05));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    color: #00565C;
    transition: 0.2s;
}

.tip-card:hover .tip-icon {
    background: #00565C;
    color: #eec02b;
}

.tip-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #00565C;
    margin-bottom: 0.5rem;
}

.tip-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #4a5568;
}

.premium-card {
    border-radius: 25px;
    padding: 1.8rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s;
}

.premium-card:hover {
    transform: translateY(-5px);
}

.gold-bg {
    background: linear-gradient(135deg, #fff8e7, #fff2d6);
    border: 1px solid rgba(238, 192, 43, 0.4);
}

.dark-bg {
    background: linear-gradient(135deg, #00565C, #003d42);
    color: white;
}

.premium-icon {
    font-size: 3rem;
    color: #eec02b;
    flex-shrink: 0;
}

.premium-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.dark-bg .premium-content h3 {
    color: white;
}

.premium-content p {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.dark-bg .premium-content p {
    color: rgba(255, 255, 255, 0.85);
}

.premium-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    color: #eec02b;
}

.dark-bg .premium-link {
    color: #eec02b;
}

.premium-link:hover {
    color: #00565C;
}

.dark-bg .premium-link:hover {
    color: white;
}

@media (max-width: 768px) {
    .main-title {
        font-size: 1.8rem;
    }

    .tips-grid {
        gap: 1rem;
    }

    .premium-card {
        flex-direction: column;
        text-align: center;
    }
}

.physical-fee {
    padding: 2rem 0;
}

.fee-card-glass {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-radius: 25px;
    padding: 2rem;
    border: 1px solid rgba(238, 192, 43, 0.3);
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.05);
}

.fee-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00565C;
}

.fee-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #2c3e4e;
}

.gold-text {
    color: #eec02b;
    font-weight: 700;
}

.fee-stats {
    background: rgba(0, 86, 92, 0.05);
    border-radius: 25px;
    padding: 1rem;
}

.fee-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px dashed rgba(0, 86, 92, 0.1);
}

.fee-row:last-child {
    border-bottom: none;
}

.fee-row span:first-child {
    font-weight: 600;
    color: #00565C;
}

.fee-row span:last-child {
    color: #eec02b;
    font-weight: 700;
}

.physical-transparency {
    padding: 3rem 0 5rem;
}

.transparency-card {
    background: linear-gradient(135deg, #fef9e6, #fff6e0);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid rgba(238, 192, 43, 0.4);
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
}

.trans-icon {
    font-size: 3rem;
    color: #eec02b;
    margin-bottom: 1rem;
}

.trans-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #00565C;
}

.trans-text {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #2c3e4e;
}

.trans-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #00565C;
    padding: 0.7rem 2rem;
    border-radius: 60px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}

.trans-btn:hover {
    background: #eec02b;
    color: #003d42;
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .fee-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .physical-hero {
        padding: 2rem 0;
    }

    .hero-features {
        justify-content: center;
    }

    .step-card {
        padding: 1.5rem;
    }

    .transparency-card {
        padding: 2rem 1rem;
    }

    .trans-title {
        font-size: 1.3rem;
    }
}

/* ---------------------------------------------
   8. سوالات متداول (FAQ)
--------------------------------------------- */
.faq-tab-btn {
    background: #f0f3f8;
    border: none;
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #2c3e4e;
    transition: all 0.2s;
    cursor: pointer;
}

.faq-tab-btn.active {
    background: #00565C;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 86, 92, 0.2);
}

.faq-item-modern {
    background: white;
    border-radius: 20px;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 86, 92, 0.08);
    transition: 0.2s;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    cursor: pointer;
    gap: 12px;
}

.question-text {
    flex: 1;
    font-weight: 600;
    color: #00565C;
}

.faq-icon-q {
    color: #eec02b;
    font-size: 1.4rem;
}

.faq-toggle-icon {
    transition: transform 0.3s;
    font-size: 1.2rem;
    color: #00565C;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    transition: max-height 0.3s ease, padding 0.3s;
    color: #4a5568;
    font-size: 0.85rem;
    line-height: 1.6;
}

.faq-item-modern.open .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1rem 1.5rem;
}

.faq-item-modern.open .faq-toggle-icon {
    transform: rotate(-90deg);
}

@media (max-width: 768px) {
    .faq-question {
        padding: 0.8rem 1rem;
    }
}

/* ---------------------------------------------
   9. دانلود اپلیکیشن (download-app)
--------------------------------------------- */
.download-app {
    background-image: url(../img/bg-download-app.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

/* ---------------------------------------------
   10. جعبه توضیحات با دکمه بیشتر (box-text-height)
--------------------------------------------- */
.box-text-height {
    max-height: 200px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.4s ease-in-out;
}

.box-text-height.expanded {
    max-height: 1000px;
}

.box-text-height:not(.expanded)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, transparent, #f6f7fb);
    pointer-events: none;
}

.toggle-btn {
    cursor: pointer;
    user-select: none;
    transition: all 0.3s;
}

.toggle-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* ---------------------------------------------
   11. بخش جستجوی مدرن (search-modern-section)
--------------------------------------------- */
.search-modern-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    direction: rtl;
}

.search-glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(238, 192, 43, 0.25);
    transition: all 0.3s ease;
}

.search-glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 50px -15px rgba(0, 86, 92, 0.15);
    border-color: rgba(238, 192, 43, 0.5);
}

.search-title {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(120deg, #00565C, #eec02b);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 0.75rem;
}

.search-subtitle {
    font-size: 1rem;
    color: #5b6e7c;
    margin-bottom: 2rem;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 80px;
    padding: 4px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 86, 92, 0.1);
}

.search-input-wrapper:focus-within {
    border-color: #eec02b;
    box-shadow: 0 0 0 4px rgba(238, 192, 43, 0.2);
}

.search-icon {
    position: absolute;
    right: 20px;
    font-size: 1.2rem;
    color: #00565C;
    pointer-events: none;
}

.search-input {
    flex: 1;
    border: none;
    padding: 1rem 3rem 1rem 1rem;
    font-size: 1rem;
    background: transparent;
    color: #1e2a32;
    font-family: inherit;
}

.search-input:focus {
    outline: none;
}

.search-input::placeholder {
    color: #a0aec0;
    font-size: 0.85rem;
}

.search-button {
    background: linear-gradient(135deg, #00565C, #003d42);
    border: none;
    border-radius: 60px;
    padding: 0.7rem 1.8rem;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.search-button i {
    transition: transform 0.2s ease;
}

.search-button:hover {
    background: #eec02b;
    color: #00565C;
    transform: scale(0.98);
}

.search-button:hover i {
    transform: translateX(-5px);
}

.search-tags {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.8rem;
}

.search-tags span {
    color: #5b6e7c;
    font-weight: 500;
}

.tag-link {
    color: #00565C;
    text-decoration: none;
    background: rgba(0, 86, 92, 0.08);
    padding: 5px 14px;
    border-radius: 40px;
    transition: all 0.2s ease;
}

.tag-link:hover {
    background: #eec02b;
    color: #00565C;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .search-modern-section {
        padding: 1.5rem 0;
    }

    .search-glass-card {
        padding: 1.5rem;
        border-radius: 32px;
    }

    .search-title {
        font-size: 1.5rem;
    }

    .search-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
    }

    .search-input-wrapper {
        flex-direction: column;
        border-radius: 28px;
        background: transparent;
        box-shadow: none;
        padding: 0;
        gap: 12px;
    }

    .search-icon {
        display: none;
    }

    .search-input {
        background: white;
        border-radius: 60px;
        padding: 0.9rem 1.2rem;
        width: 100%;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .search-button {
        width: 100%;
        justify-content: center;
        padding: 0.8rem;
    }

    .search-tags {
        gap: 8px;
    }

    .tag-link {
        padding: 3px 12px;
        font-size: 0.7rem;
    }
}

/* ---------------------------------------------
   12. اجزای مشترک بخش بلاگ (مقالات)
--------------------------------------------- */
.gold-line-small {
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, #eec02b, transparent);
    border-radius: 3px;
}

.more-link {
    color: #eec02b;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
}

.more-link:hover {
    color: #00565C;
}

.blog-card-hover {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    background: white;
}

.blog-card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px rgba(0, 86, 92, 0.15);
}

.blog-meta-footer {
    font-size: 0.7rem;
}

.blog-meta-footer .gold-color {
    color: #eec02b;
    text-decoration: none;
}

.blog-meta-footer .gold-color:hover {
    color: #00565C;
}

.blog-box {
    background-size: cover;
    background-position: center;
    min-height: 180px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.blog-box-info {
    padding: 20px 15px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.line-blog {
    height: 3px;
    width: 60px;
    background: linear-gradient(135deg, #F8C625, #eec02b);
    border-radius: 2px;
    transition: width 0.5s ease;
    margin-top: 10px;
    display: block;
}

.blog-box:hover .line-blog {
    width: 40%;
}

/* اسلایدر اخبار (news-swiper) */
.news-swiper .swiper-slide {
    height: auto;
}

@media (max-width: 768px) {
    .blog-card-hover .blog-box {
        min-height: 200px;
    }

    .swiper-buttons {
        display: none;
    }

    .news-swiper {
        padding-bottom: 2rem;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    .blog-card-hover .blog-box {
        min-height: 160px;
    }
}

/* ---------------------------------------------
   13. بخش کارمزدها (fee)
--------------------------------------------- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fee-card {
    transition: all 0.3s ease;
    cursor: default;
}

.fee-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.15);
}

.fee-icon {
    transition: transform 0.3s ease;
}

.fee-card:hover .fee-icon {
    transform: scale(1.08);
}

.custom-table thead th {
    background: #00565C;
    color: white;
    font-weight: 600;
    padding: 12px 8px;
    border-bottom: none;
}

.custom-table tbody td {
    padding: 12px 8px;
    vertical-align: middle;
    border-bottom: 1px solid rgba(0, 86, 92, 0.1);
}

.custom-table tbody tr:hover {
    background-color: rgba(238, 192, 43, 0.05);
}

.info-sidebar-item {
    transition: all 0.2s;
}

.info-sidebar-item.active {
    background-color: rgba(0, 86, 92, 0.1);
    border-right: 3px solid #eec02b;
    padding-right: 12px;
}

@media (max-width: 768px) {
    .fee-card .t-verybig {
        font-size: 1.6rem;
    }
}

/* ---------------------------------------------
   14. فوتر (footer-ultimate)
--------------------------------------------- */
.footer-ultimate {
    position: relative;
}

.stats-row .stat-item {
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #00565C;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.8rem;
    color: #6c757d;
}

.border-gold-light {
    border-color: rgba(238, 192, 43, 0.25) !important;
}

.footer-widget .widget-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #00565C;
    margin-bottom: 1.4rem;
    position: relative;
    display: inline-block;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #eec02b, transparent);
}

.footer-menu {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 0.6rem;
}

.footer-menu li a {
    color: #4a5568;
    font-size: 0.85rem;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
}

.footer-menu li a i {
    margin-left: 6px;
    font-size: 0.7rem;
    transition: transform 0.2s;
}

.footer-menu li a:hover {
    color: #eec02b;
    transform: translateX(-5px);
}

.footer-menu li a:hover i {
    transform: translateX(-3px);
}

.download-btn {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 14px;
    padding: 8px 16px;
    display: inline-flex;
    align-items: center;
    justify-self: center;
    gap: 35px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #2c3e4e;
}

.download-btn i {
    font-size: 2rem;
    color: #00565C;
}

.download-btn:hover {
    background: #00565C;
    border-color: #00565C;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 86, 92, 0.2);
}

.download-btn:hover i,
.download-btn:hover strong,
.download-btn:hover small {
    color: white;
}

.download-btn small {
    font-size: 0.7rem;
    display: block;
}

.download-btn strong {
    font-size: 0.85rem;
}

.newsletter-box {
    background: rgba(238, 192, 43, 0.05);
    border-radius: 20px;
    padding: 1rem;
    margin-top: 0.5rem;
}

.news-input {
    border: 1px solid rgba(0, 86, 92, 0.2);
    border-left: none;
    border-radius: 0 12px 12px 0 !important;
    background: white;
}

.btn-subscribe {
    background: linear-gradient(135deg, #00565C, #008080);
    border: none;
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 12px 0 0 12px !important;
    font-weight: 500;
    transition: 0.2s;

}

.btn-subscribe:hover {
    background: #eec02b;
    color: #00565C;
}

.social-icons-group {
    display: flex;
    gap: 12px;
}

.social-circle {
    width: 42px;
    height: 42px;
    background: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #00565C;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 86, 92, 0.15);
}

.social-circle:hover {
    background: #00565C;
    color: white;
    transform: translateY(-4px);
    border-color: transparent;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-item i {
    font-size: 1.8rem;
}

.contact-item a {
    color: #2c3e4e;
    text-decoration: none;
}

.contact-item a:hover {
    color: #eec02b;
}

.license-badge {
    background: white;
    padding: 6px 12px;
    border-radius: 12px;
    transition: 0.2s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.license-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.copyright-footer {
    font-size: 0.75rem;
    color: #6c757d;
}

.legal-links a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.7rem;
}

.legal-links a:hover {
    color: #eec02b;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 45px;
    height: 45px;
    background: #00565C;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #eec02b;
    color: #00565C;
    transform: translateY(-4px);
}

@media (max-width: 768px) {
    .stats-row .stat-number {
        font-size: 1.2rem;
    }

    .footer-widget {
        text-align: center;
    }

    .widget-title::after {
        right: 50%;
        transform: translateX(50%);
    }

    .footer-menu li a {
        justify-content: center;
    }

    .contact-item {
        justify-content: center;
    }

    .licenses-wrapper {
        justify-content: center !important;
        margin-top: 1rem;
    }

    .download-boxes {
        justify-content: center;
    }

    .social-icons-group {
        justify-content: center;
    }
}

/* ---------------------------------------------
   15. خطوط متحرک عنوان (line-title)
--------------------------------------------- */
.icon-title-box {
    background: rgba(0, 86, 92, 0.1);
    border-radius: 12px;
    padding: 6px;
    display: inline-flex;
}

.line-title {
    inline-size: 100px;
    display: inline-block;
    animation: stretchLine 2s infinite alternate;
    animation-timing-function: cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

@keyframes stretchLine {
    0% {
        inline-size: 50px;
    }

    100% {
        inline-size: 100px;
    }
}

/* ---------------------------------------------
   16. بخش اعتماد کاربران (Trust-us)
--------------------------------------------- */
.Trust-us {
    background-image: url(../img/bg-download-app.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.count-title {
    font-size: 30px;
    font-weight: normal;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
}

/* ---------------------------------------------
   17. نظرات کاربران (testimonial)
--------------------------------------------- */
.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    margin: 10px;
}

.testimonial-card:hover {
    transform: scale(1.07);
}

.quote-icon {
    font-size: 2rem;
    color: rgba(238, 192, 43, 0.5);
    margin-bottom: 1rem;
    display: inline-block;
}

.testimonial-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #2c3e4e;
    margin-bottom: 1.2rem;
}

.user-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.user-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #00565C, #008080);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.user-name {
    font-weight: 700;
    color: #00565C;
    font-size: 0.9rem;
}

.user-stars {
    color: #eec02b;
    font-size: 0.7rem;
    direction: ltr;
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 1.2rem;
    }

    .testimonial-text {
        font-size: 0.8rem;
    }
}

/* ---------------------------------------------
   18. کامپوننت لاگین و OTP
--------------------------------------------- */
.login {
    min-height: 100vh;
}

.left-part-login {
    background-image: url(../img/login.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.right-part-login {
    width: 100%;
    max-width: 800px;
}

.back-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
}

.back-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .15);
}

.back-btn a:hover {
    box-shadow: 0 .25rem .5rem rgba(0, 0, 0, .25);
}

#box-verifyOtp {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.otp-field {
    display: flex;
    justify-content: space-around;
    width: 100%;
}

.form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.form__input__otp {
    width: 40px;
    height: 40px;
    margin: 10px;
    text-align: center;
    font-size: 13px;
    letter-spacing: 0.15px;
    border: none;
    outline: none;
    background-color: #ecf0f3;
    transition: 0.25s ease;
    border-radius: 8px;
    box-shadow: inset 2px 2px 4px #d1d9e6, inset -2px -2px 4px #f9f9f9;
}

.form__input__otp:focus {
    box-shadow: inset 4px 4px 4px #d1d9e6, inset -4px -4px 4px #f9f9f9;
    border: solid .3px #d1d9e6;
}

.form__button {
    width: 150px;
    height: 40px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.15px;
    background-color: #4B70E2;
    color: #f9f9f9;
    border: none;
    outline: none;
}

.box-input-register {
    position: relative;
}

.title-input-register {
    position: absolute;
    display: inline-block;
    bottom: 17px;
    right: 10px;
}

/* ---------------------------------------------
   19. کارت‌های راهنما (help-card-modern)
--------------------------------------------- */
.help-card-modern {
    display: block;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    overflow: hidden;
    border: 1px solid rgba(0, 86, 92, 0.08);
}

.help-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px -12px rgba(0, 86, 92, 0.15);
    border-color: rgba(238, 192, 43, 0.3);
}

.help-card-inner {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    gap: 1rem;
    position: relative;
    min-height: 150px !important;
}

.help-icon-area {
    flex-shrink: 0;
    width: 100px !important;
    text-align: center;
}

.help-icon-area img {
    transition: transform 0.3s;
}

.help-card-modern:hover .help-icon-area img {
    transform: scale(1.05);
}

.help-text-area {
    flex: 1;
}

.help-arrow {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
    color: #eec02b;
    font-size: 1.4rem;
}

.help-card-modern:hover .help-arrow {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .help-card-inner {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }

    .help-arrow {
        display: none;
    }
}

/* ---------------------------------------------
   20. ویژگی‌های اپلیکیشن (app-features)
--------------------------------------------- */
.app-features {
    background-image: url(../img/bg-install.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.text-app-features {
    min-height: 150px;
}

.download-app-luxury {
    background: linear-gradient(135deg, #00565C 0%, #003D42 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.download-app-luxury::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 120%;
    height: 150%;
    background: radial-gradient(circle, rgba(238, 192, 43, 0.12) 0%, rgba(0, 86, 92, 0) 70%);
    pointer-events: none;
}

.download-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.download-title span {
    background: linear-gradient(120deg, #eec02b, #ffdd77);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.download-desc {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.gold-text {
    color: #eec02b;
}

.download-buttons-group {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.store-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 60px;
    border: 1px solid rgba(238, 192, 43, 0.3);
    transition: all 0.3s;
}

.store-buttons:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.store-icon img {
    width: 45px;
}

.store-links {
    display: flex;
    gap: 0.8rem;
}

.store-links a img {
    width: 100px;
    transition: 0.2s;
}

.store-links a:hover img {
    transform: scale(1.02);
}

.download-mockup {
    position: relative;
    text-align: center;
}

.mockup-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(238, 192, 43, 0.3), transparent);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
}

.download-mockup img {
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.3));
}

.features-luxury {
    padding: 4rem 0;
}

.badge-gold-light {
    display: inline-block;
    background: rgba(238, 192, 43, 0.15);
    color: #b88c1a;
    padding: 0.3rem 1rem;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.features-title {
    font-size: 2rem;
    font-weight: 800;
    color: #00565C;
    margin-bottom: 0.8rem;
}

.features-title span {
    background: linear-gradient(120deg, #eec02b, #c9a320);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.gold-line {
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, #eec02b, transparent);
    border-radius: 4px;
    margin-top: 20px;
}

.feature-card {
    background: white;
    border-radius: 32px;
    padding: 1.8rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 86, 92, 0.08);
    min-height: 300px
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 40px -12px rgba(0, 86, 92, 0.2);
    border-color: rgba(238, 192, 43, 0.3);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(0, 86, 92, 0.08), rgba(238, 192, 43, 0.08));
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    transition: 0.3s;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #00565C, #008080);
}

.feature-icon img {
    transition: 0.3s;
}

/* .feature-card:hover .feature-icon img {
    filter: brightness(0) invert(1);
    transform: scale(1.05);
} */
.feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #00565C;
    margin-bottom: 0.8rem;
}

.feature-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #4a5568;
}

.feature-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(238, 192, 43, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.feature-card:hover .feature-shine {
    opacity: 1;
}

@media (max-width: 992px) {
    .download-title {
        font-size: 2rem;
    }

    .download-buttons-group {
        justify-content: center;
    }

    .download-mockup {
        margin-top: 2rem;
    }

    .features-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .download-app-luxury {
        padding: 2rem 0;
    }

    .download-title br {
        display: none;
    }

    .store-buttons {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .store-links {
        justify-content: center;
    }

    .feature-card {
        padding: 1.2rem;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
    }

    .feature-icon img {
        width: 40px;
    }
}

/* ---------------------------------------------
   21. بخش مجوزها (info-Permissions)
--------------------------------------------- */
.permissions-header {
    padding: 4rem 0 2rem;
    background: linear-gradient(135deg, #f8fafc, #f0f4f9);
}

.header-title {
    font-size: 3rem;
    font-weight: 800;
    color: #00565C;
}

.gold-text {
    background: linear-gradient(120deg, #eec02b, #b88c1a);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.header-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #2c3e4e;
    margin: 1.5rem 0;
}

.header-stats {
    display: flex;
    gap: 2rem;
}

.header-stats div span {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: #00565C;
}

.hero-main-img {
    max-width: 100%;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
}

.permissions-gallery {
    padding: 3rem 0;
}

.gallery-header {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-title {
    font-size: 2rem;
    font-weight: 700;
    color: #00565C;
}

.gold-line-center {
    width: 250px;
    height: 3px;
    background: linear-gradient(90deg, #eec02b, #00565C, #eec02b);
    margin: 0.8rem auto;
    border-radius: 3px;
}

.gallery-sub {
    font-size: 0.9rem;
    color: #5b6e7c;
    max-width: 700px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
}

.license-item {
    transition: transform 0.3s ease;
}

.license-item:hover {
    transform: translateY(-8px);
}

.license-card-glass {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 32px;
    padding: 2rem 1rem;
    text-align: center;
    border: 1px solid rgba(238, 192, 43, 0.25);
    transition: all 0.3s;
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.05);
}

.license-card-glass:hover {
    border-color: #eec02b;
    box-shadow: 0 25px 40px -12px rgba(0, 86, 92, 0.2);
}

.license-img-big {
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.license-img-big img {
    max-width: 130px;
    max-height: 130px;
    object-fit: contain;
}

.license-caption {
    font-size: 1rem;
    font-weight: 700;
    color: #00565C;
    margin: 1rem 0 0.5rem;
}

.license-inquiry {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 86, 92, 0.05);
    padding: 0.4rem 1rem;
    border-radius: 60px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #00565C;
    text-decoration: none;
    transition: 0.2s;
}

.license-inquiry:hover {
    background: #eec02b;
    color: #003d42;
}

.secure-gold-final {
    padding: 2rem 0 4rem;
}

.secure-card-final {
    background: linear-gradient(135deg, #fef9e6, #fff6e0);
    border-radius: 48px;
    padding: 2rem;
    border: 1px solid rgba(238, 192, 43, 0.4);
}

.secure-title-final {
    font-size: 1.8rem;
    font-weight: 800;
    color: #00565C;
}

.secure-title-final .gold {
    color: #eec02b;
}

.secure-text-final {
    font-size: 0.9rem;
    line-height: 1.7;
}

.secure-icon-final {
    font-size: 5rem;
    color: #eec02b;
}

@media (max-width: 768px) {
    .header-title {
        font-size: 2rem;
    }

    .gallery-title {
        font-size: 1.6rem;
    }

    .license-img-big {
        width: 120px;
        height: 120px;
    }

    .license-img-big img {
        max-width: 95px;
    }

    .secure-title-final {
        font-size: 1.4rem;
    }
}

/* ---------------------------------------------
   22. کارت‌های شیشه‌ای (glass-card)
--------------------------------------------- */
.blog-box-img {
    background-image: url(../img/blog.png);
    height: 500px;
    background-size: cover;
    background-repeat: no-repeat;
}

.glass-card {
    backdrop-filter: blur(5px) saturate(83%);
    -webkit-backdrop-filter: blur(5px) saturate(83%);
    background-color: #0000006c;
    border-radius: 12px;
    border: 1px solid #0000006c;
}

.glass-card-1 {
    backdrop-filter: blur(8px) saturate(83%);
    -webkit-backdrop-filter: blur(5px) saturate(83%);
    background-color: #ffffff93;
    border-radius: 12px;
    border: 1px solid #ffffff8e;
}

.glass-card-2 {
    backdrop-filter: blur(5px) saturate(83%);
    -webkit-backdrop-filter: blur(5px) saturate(83%);
    background-color: #00565ca2;
    border-radius: 12px;
    border: 1px solid #00565c46;
}

/* ---------------------------------------------
   23. تماس با ما | آمار | نقشه – طراحی لوکس
--------------------------------------------- */
.contact-luxury-section {
    padding: 4rem 0;
}

.glass-card-heavy {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-radius: 25px;
    padding: 2rem 2rem 2.5rem;
    box-shadow: 0 25px 45px -10px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(238, 192, 43, 0.25);
    height: 100%;
}

.contact-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #00565C;
    margin-bottom: 0.5rem;
}

.contact-subtitle {
    color: #6c7a8a;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.input-group-lux {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    right: 1rem;
    font-size: 1.1rem;
    color: #eec02b;
    z-index: 2;
}

.form-control-lux {
    width: 100%;
    padding: 0.9rem 2.8rem 0.9rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 28px;
    background: white;
    font-family: inherit;
    transition: all 0.2s;
}

.form-control-lux:focus {
    outline: none;
    border-color: #eec02b;
    box-shadow: 0 0 0 3px rgba(238, 192, 43, 0.2);
}

textarea.form-control-lux {
    border-radius: 28px;
    resize: vertical;
}

.captcha-box {
    background: linear-gradient(135deg, rgba(238, 192, 43, 0.08), rgba(0, 86, 92, 0.05));
    border-radius: 28px;
    padding: 0.9rem;
    text-align: center;
    font-family: monospace;
    font-size: 1.2rem;
    letter-spacing: 8px;
    font-weight: bold;
    color: #00565C;
}

.btn-submit-lux {
    background: linear-gradient(135deg, #00565C, #003d42);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.9rem;
    border-radius: 40px;
    width: 100%;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-submit-lux:hover {
    background: #eec02b;
    color: #00565C;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-info-stack {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.info-card {
    background: white;
    border-radius: 18px;
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 12px 25px -8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.info-card:hover {
    background: linear-gradient(135deg, rgba(238, 192, 43, 0.055), rgba(0, 86, 92, 0.041));
    transform: translateY(-5px);
    border-color: #eec02b;
    box-shadow: 0 20px 30px -12px rgba(0, 86, 92, 0.2);
}

.info-icon {
    width: 55px;
    height: 55px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

.bg-primary-grad {
    background: linear-gradient(135deg, #00565C, #008080);
}

.info-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #00565C;
    margin-bottom: 0.1rem;
}

.info-content p {
    font-size: 0.7rem;
    color: #8a99aa;
    margin-bottom: 0.2rem;
}

.info-content strong,
.info-content span {
    font-size: 0.85rem;
    color: #1e2a32;
}

.social-links-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon-lux {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #00565C;
    font-size: 1.3rem;
    transition: 0.2s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.social-icon-lux:hover {
    background: #00565C;
    color: white;
    transform: translateY(-4px);
}

.map-luxury-section {
    padding: 2rem 0 5rem;
}

.map-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 35px -8px rgba(0, 0, 0, 0.15);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(0, 86, 92, 0.1), transparent);
    pointer-events: none;
    z-index: 1;
}

.map-center-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.btn-gold-circle {
    width: 60px;
    height: 60px;
    background: #eec02b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #00565C;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 0 0 rgba(238, 192, 43, 0.5);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(238, 192, 43, 0.6);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(238, 192, 43, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(238, 192, 43, 0);
    }
}

.btn-gold-circle:hover {
    transform: scale(1.1);
    background: #00565C;
    color: #eec02b;
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 1.4rem;
    }

    .stats-title {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stats-grid {
        gap: 1rem;
    }

    .map-wrapper iframe {
        height: 280px;
    }

    .btn-gold-circle {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }
}

/* ---------------------------------------------
   24. gold-investment-swiper
--------------------------------------------- */
.investment-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border-radius: 15px;
    padding: 1.8rem 1rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid rgba(0, 86, 92, 0.1);
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

.investment-card:hover {
    transform: translateY(-10px);
    border-color: rgba(238, 192, 43, 0.4);
    background: white;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, rgba(0, 86, 92, 0.05), rgba(238, 192, 43, 0.05));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    transition: 0.3s;
}

.investment-card:hover .card-icon {
    background: linear-gradient(135deg, #00565C, #008080);
}

.card-icon img {
    width: 45px;
    transition: 0.3s;
}

.investment-card:hover .card-icon img {
    filter: brightness(0) invert(1);
    transform: scale(1.05);
}

.card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #00565C;
    margin-bottom: 0.3rem;
}

.card-desc {
    font-size: 0.7rem;
    color: #6c7a8a;
    margin: 0;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(238, 192, 43, 0.08), transparent);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.investment-card:hover .card-glow {
    opacity: 1;
}

@media (max-width: 768px) {
    .investment-card {
        padding: 1rem;
    }

    .card-icon {
        width: 65px;
        height: 65px;
    }

    .card-icon img {
        width: 35px;
    }

    .card-title {
        font-size: 0.85rem;
    }
}


/* ---------------------------------------------
   25. blog page
--------------------------------------------- */

.page-article-hero {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(10, 42, 46, 0.85) 0%, rgba(0, 86, 92, 0.9) 100%);
    overflow: hidden;
}

.page-article-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/img/blog.png') no-repeat center center;
    background-size: cover;
    opacity: 0.55;
    mix-blend-mode: normal;
}

.page-article-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-article-hero-badge {
    display: inline-block;
    background: rgba(238, 192, 43, 0.2);
    backdrop-filter: blur(4px);
    padding: 0.4rem 1rem;
    border-radius: 60px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #eec02b;
    margin-bottom: 1.5rem;
}

.page-article-hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-article-hero-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.page-article-hero-meta i {
    margin-left: 0.3rem;
    color: #eec02b;
}

.page-article-wrapper {
    padding: 4rem 0;
}

.page-article-main {
    font-family: inherit;
}

.page-article-intro {
    font-size: 1.2rem;
    font-weight: 500;
    color: #00565C;
    border-right: 4px solid #eec02b;
    padding-right: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.page-article-main h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00565C;
    margin-top: 2rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.page-article-main h2:after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #eec02b, transparent);
}

.page-article-main p {
    font-size: 1rem;
    line-height: 1.8;
    color: #2c3e4e;
    margin-bottom: 1.2rem;
}

.page-article-quote {
    background: linear-gradient(135deg, #fef9e6, #fff6e0);
    padding: 2rem;
    border-radius: 32px;
    margin: 2rem 0;
    border-right: 6px solid #eec02b;
    text-align: center;
}

.page-article-quote i {
    font-size: 2.5rem;
    color: #eec02b;
    opacity: 0.6;
    margin-bottom: 1rem;
    display: inline-block;
}

.page-article-quote p {
    font-size: 1.2rem;
    font-weight: 600;
    color: #00565C;
    margin-bottom: 0.5rem;
}

.page-article-quote span {
    font-size: 0.85rem;
    color: #7f8c8d;
}

.page-article-info-card {
    background: rgba(0, 86, 92, 0.05);
    backdrop-filter: blur(4px);
    border-radius: 28px;
    padding: 1.2rem;
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    border: 1px solid rgba(238, 192, 43, 0.2);
}

.page-article-info-icon {
    font-size: 1.8rem;
    color: #eec02b;
}

.page-article-info-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #2c3e4e;
}

.page-article-share {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eef2f6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.page-article-share span {
    font-weight: 700;
    color: #00565C;
}

.page-article-share-icons {
    display: flex;
    gap: 0.8rem;
}

.page-article-share-icons a {
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00565C;
    transition: all 0.2s;
}

.page-article-share-icons a:hover {
    background: #eec02b;
    color: white;
    transform: translateY(-3px);
}

.page-article-sidebar {
    position: sticky;
    top: 100px;
}

.page-article-sidebar-card {
    background: #f8fafc;
    border-radius: 32px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 86, 92, 0.08);
    transition: 0.2s;
}

.page-article-sidebar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px -12px rgba(0, 0, 0, 0.1);
}

.page-article-author-card {
    text-align: center;
}

.page-article-author-avatar {
    width: 80px;
    height: 80px;
    background-image: url(../img/FlagMockupcopy.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    font-weight: bold;
    color: white;
    border: 2px solid #eec02b;
}

.page-article-author-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #00565C;
    margin-bottom: 0.5rem;
}

.page-article-author-card p {
    font-size: 0.85rem;
    color: #4a5568;
}

.page-article-author-stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.page-article-author-stats div {
    font-size: 0.75rem;
    color: #7f8c8d;
}

.page-article-author-stats div span {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #00565C;
}

.page-article-sidebar-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #00565C;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #eec02b;
    display: inline-block;
}

.page-article-related-list {
    list-style: none;
    padding: 0;
}

.page-article-related-list li {
    margin-bottom: 0.8rem;
}

.page-article-related-list li a {
    color: #00565C;
    text-decoration: none;
    transition: 0.2s;
    display: block;
    padding: 0.3rem 0;
}

.page-article-related-list li a:hover {
    color: #eec02b;
    padding-right: 0.5rem;
}

.page-article-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.page-article-tags-list a {
    background: white;
    padding: 0.3rem 1rem;
    border-radius: 40px;
    font-size: 0.7rem;
    color: #00565C;
    text-decoration: none;
    border: 1px solid #e2e8f0;
    transition: 0.2s;
}

.page-article-tags-list a:hover {
    background: #eec02b;
    color: white;
    border-color: #eec02b;
}

.page-article-comments {
    padding: 5rem 0 4rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f4f9 100%);
    position: relative;
    overflow: hidden;
    direction: rtl;
}

.page-article-comments::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 130%;
    height: 150%;
    background: radial-gradient(circle, rgba(238, 192, 43, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.page-article-comments-box {
    z-index: 1;
    position: relative;
}

.page-article-comments-header {
    margin-bottom: 2rem;
}

.page-article-comments-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00565C;
}

.page-article-comments-header i {
    color: #eec02b;
    margin-left: 0.5rem;
}

.page-article-comment-card {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eef2f6;
}

.page-article-comment-avatar {
    width: 48px;
    height: 48px;
    background: #00565C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.page-article-comment-content {
    flex: 1;
}

.page-article-comment-author {
    font-weight: 700;
    color: #00565C;
    margin-bottom: 0.2rem;
}

.page-article-comment-date {
    font-size: 0.7rem;
    color: #8a99aa;
    margin-bottom: 0.5rem;
}

.page-article-comment-content p {
    font-size: 0.9rem;
    color: #2c3e4e;
    margin-bottom: 0.5rem;
}

.page-article-reply-btn {
    font-size: 0.7rem;
    color: #eec02b;
    text-decoration: none;
    font-weight: 500;
}

.page-article-comment-form {
    margin-top: 2rem;
}

.page-article-comment-form h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #00565C;
    margin-bottom: 1rem;
}

.page-article-comment-form textarea {
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 28px;
    padding: 1rem;
    font-family: inherit;
    resize: vertical;
}

.page-article-comment-form textarea:focus {
    outline: none;
    border-color: #eec02b;
    box-shadow: 0 0 0 3px rgba(238, 192, 43, 0.2);
}

.page-article-submit-comment {
    background: #00565C;
    color: white;
    border: none;
    border-radius: 60px;
    padding: 0.6rem 2rem;
    margin-top: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.page-article-submit-comment:hover {
    background: #eec02b;
    color: #00565C;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .page-article-hero-title {
        font-size: 2rem;
    }

    .page-article-main h2 {
        font-size: 1.5rem;
    }

    .page-article-intro {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .page-article-hero-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .page-article-share {
        flex-direction: column;
        align-items: center;
    }

    .page-article-sidebar {
        position: static;
        margin-top: 2rem;
    }
}