/*
Theme Name: Sharifmojir
*/
body {
    margin: 0;
    font-family: "IRANSans", sans-serif;
    background: #e6f0fa; /* آبی روشن سنتی */
    color: #333;
}
html, body {
    overflow-x: hidden;
    width: 100%;
}
a {
    text-decoration: none;
}
/* ================= هدر کوتاه ================= */

/* .hero {
    position: relative;
    width: 100%;
    height: 140px; // ارتفاع واقعی پترن خودتان 

    background-image: url("../images/pattern.png");
    background-repeat: repeat-x;
    background-position: top center;
    background-size: contain;

    overflow: hidden;
    box-sizing: border-box;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}


// لایه شفاف روی پترن 
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.5);
    pointer-events: none;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-text {
    position: relative;
    z-index: 2;
    /* color: #222;
    font-size: 28px;
    text-shadow: 0 0 8px rgb(0 0 0 / 70%);
    color: #ffffff;
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow:
        0 0 8px rgba(255,255,255,0.35),
        0 2px 4px rgba(0,0,0,0.4); 
       
}


// منوی موبایل 
.mobile-menu-btn {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 26px;
    display: none;
    cursor: pointer;
    color: white;
} */

.hero {
    position: relative;
    width: 100%;
    height: 140px;
    background-image: url("../images/pattern.png");
    background-repeat: repeat-x;
    background-position: top center;
    background-size: contain;
    display: flex;
    align-items: center;
    padding: 0 25px;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.5);
    pointer-events: none;
}

/* سه بخش اصلی */
.header-right,
.header-left {
    flex: 1 1 30%;
    display: flex;
    align-items: center;
}

.hero-text {
    flex: 0 1 auto;
    position: relative;
    text-align: center;
    padding: 0 15px;
    z-index: 2;
    color: #ffffff;
    font-size: 2.4rem;
    font-weight: 700;
    text-shadow:
        0 0 8px rgba(255,255,255,0.35),
        0 2px 4px rgba(0,0,0,0.4);
}

/* لوگو سمت راست */
.header-right {
    justify-content: flex-start;
}
.header-right img {
    height: 70px;
    width: auto;
}

/* اطلاعات سمت چپ */
.header-left {
    justify-content: flex-start;
    flex-direction: column;
    gap: 6px;
    padding-left: 15px; /* جلوگیری از چسبیدن */
}



.info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.4;
    white-space: nowrap; /* جلوگیری از شکستن ناخواسته */
    font-weight: bold;
    text-shadow:
        0 0 8px rgba(255,255,255,0.35),
        0 2px 4px rgba(0,0,0,0.4);
}

.info-item a {
    color: #ffffff;
    text-decoration: none;
}

/* موبایل */
.mobile-menu-btn {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 28px;
    color: #ffffff;
    display: none;
    cursor: pointer;
    z-index: 9999 !important; /* 🔥 بالاتر از همه */
}
/* لایه شفاف پس‌زمینه */
.hero::before {
    z-index: 0; /* 🔥 باعث نمی‌شود دکمه زیر آن برود */
}

/* تصویر لوگو همیشه بالاتر بماند */
.header-right img,
.hero-text,
.header-left {
    position: relative;
    z-index: 2;
}

/* ریسپانسیو */
@media (max-width: 768px) {
    /* .header-left {
        display: none;
    }
    .hero-text {
        display: none;
    }
    .mobile-menu-btn {
        display: block !important;
    }
    .hero {
        justify-content: center;
        height: 120px;
    }
    .header-right img {
        height: 55px;
    } */
     .hero-text,
    .header-left {
        display: none !important; /* حذف کامل ستون چپ و متن وسط */
        
    }

    .mobile-menu-btn {
        display: block !important;
        justify-content: flex-end;
        position: absolute;
        top: auto;
        left: 10%;
    }

    .hero {
        justify-content: center;
        height: 120px;
    }
}


/* ================= منو ================= */
.navbar {
    background: #005b8f; /* آبی کاشی */
}
.navbar ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 0;
    
}
.navbar ul li {
    border-bottom: 1px solid rgb(201, 175, 175);
}
.navbar a {
     color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 15px 22px;   /* افزایش پدینگ برای ارتفاع مناسب */
    display: inline-block;
}
.navbar a:hover {
    opacity: 0.8;
}



/* ================= اسلاید تمام صفحه ================= */
.hero-slider,
.heroSwiper {
    width: 100%;
    height: calc(100vh - 150px);
    min-height: calc(100vh - 150px);
    position: relative;
}

.heroSwiper .swiper-slide {
    position: relative;
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 6s ease;
    will-change: transform;
}

.swiper-slide-active .slide-bg {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.65), rgba(0,0,0,.15));
}

.slide-content {
    position: absolute;
    bottom: 15%;
    right: 10%;
    color: #fff;
    text-align: right;
    max-width: 600px;
    animation: fadeUp 1.2s ease forwards;
    will-change: opacity, transform;
}

.slide-content h1 {
    font-size: 3rem;
    margin-bottom: 25px;
}

.slide-btn {
    display: inline-block;
    padding: 14px 34px;
    background: #fff;
    color: #000;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
    transition: all .3s ease;
}

.slide-btn:hover {
    transform: translateY(-4px);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media(max-width: 768px) {
    .slide-content h1 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-align: justify;
}
.slide-btn {
font-size: 0.8rem;
}

}

/*-------------- SITE INTRO ---------------------- */
.site-intro {
    padding: 80px 20px;
    /* background: linear-gradient(
        to bottom,
        #ffffff,
        #faf7f3
    ); */
    background: #FFF;
}

.site-intro .intro-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: justify;
}

.site-intro h2 {
    font-size: 30px;
    margin-bottom: 25px;
    color: #2c2c2c;
    position: relative;
    text-align: center;
}



.site-intro p {
    font-size: 17px;
    line-height: 2;
    color: #555;
    padding: 0 10px;
}

@media (max-width: 768px) {
    .site-intro {
        padding: 60px 15px;
    }

    .site-intro h2 {
        font-size: 24px;
    }

    .site-intro p {
        font-size: 15px;
        line-height: 1.9;
    }
}


/* ================= خدمات (با افکت هاور ملایم) ================= */
.services {
    padding: 40px 20px;
    text-align: center;
}
.service-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    animation: riseFade .9s ease-out;
}
.service {
    width: 240px;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 0 8px #bbb;
}
.service:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px #aaa;
}
.service img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}
.service h3 {
    padding: 12px;
}

/* ================= نظرات ویدئویی مشتریان ================= */

#video_comments {
    padding: 80px 0;
    background: #fFF;
    text-align: center;
}

#video_comments h2 {
    margin-bottom: 40px;
    font-size: 28px;
}

#video_comments .video-comment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#video_comments .video-box {
    width: 280px;
    aspect-ratio: 9 / 16;
    border-radius: 18px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

#video_comments .video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#video_comments .video-title {
    margin-top: 15px;
    font-size: 15px;
    color: #555;
}

/* Swiper */
#video_comments .videoCommentSwiper {
    width: 100%;
    overflow: hidden;
}

#video_comments .videoCommentSwiper .swiper-slide {
    display: flex;
    justify-content: center;
}

/* pagination */
#video_comments .video-comment-pagination {
    margin-top: 16px;
    text-align: center;
}


#video_comments .video-box {
    position: relative;
    cursor: pointer;
}

/* دکمه پلی */
#video_comments .video-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.25);
    transition: 0.3s;
}

#video_comments .video-play-btn i {
    font-size: 64px;
    color: #fff;
    background: rgba(0,0,0,0.55);
    border-radius: 50%;
    padding: 28px 32px;
}

/* hover */
#video_comments .video-box:hover .video-play-btn {
    background: rgba(0,0,0,0.4);
}

/* هنگام پخش مخفی شود */
#video_comments .video-box.playing .video-play-btn {
    opacity: 0;
    pointer-events: none;
}




/* ================= گالری (اسلایدر + پاپ‌آپ) ================= */
.gallery {
    padding: 40px 20px;
    text-align: center;
}
.gallery img {
    width: 100%;
    /* height: 220px; */
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
    transition: transform .2s;
}
.gallery img:hover {
    transform: scale(1.05);
}

/* لینک‌های پایین اسلایدر */
.more-link {
    display: inline-block;
    margin-top: 15px;
    text-decoration: none;
    color: #005b8f;
    font-weight: bold;
}

/* ================= CTA ================= */
.cta {
    background: #005b8f;
    color: white;
    text-align: center;
    padding: 50px 25px;
}
.cta-btn {
    padding: 12px 30px;
    background: white;
    color: #005b8f;
    border-radius: 8px;
    text-decoration: none
}

/* ================= فوتر با طرح اصفهان ================= */
footer {
    background: #004b75; /* آبی روشن‌تر */
    color: #eaf4ff;
    margin-top: 50px;
    padding-top: 20px;
    position: relative;
}

.footer-pattern {
    background-image: url('../images/pattern.png'); /* یک طرح سنتی اصفهان */
    background-size: contain;
    width: 100%;
    height: 100px;
    opacity: 0.15;
}

#footer > .logo {
    position: absolute;
    top: 25px;
    width: 100%;
    height: 80px;
    text-align: center;
}

#footer > .logo img {
    height: 50px;
    width: auto;
    }
#footer > .logo p {
    margin-top: 0;
    /* font-weight: 700; */
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.35), 0 2px 4px rgba(0, 0, 0, 0.4);
    }


.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 20px;
}

.footer-container h3 {
    border-bottom: 1px solid #a7c9e2;
    padding-bottom: 5px;
}

footer h3 {
    border-bottom: 1px solid #80a7c2;
    padding-bottom: 5px;
}

.social-icons i {
    font-size: 28px;
    margin-left: 10px;
    color: #d8ecff;
    transition: transform .2s, color .2s;
}
.social-icons i:hover {
    color: #ffffff;
    transform: scale(1.2);
}

.footer-links a {
    color: #d8ecff !important;   /* لینک‌ها کاملاً روشن و خوانا */
    text-decoration: none;
    display: block;
    padding: 5px 0;
}
.footer-links a:hover {
    color: #ffffff; /* روشن‌تر در hover */
}

/* ================= کپی‌رایت ================= */
copyright,
footer .copyright {
    background: #003a5d;
    text-align: center;
    padding: 12px;
    color: #cfe9ff;
}

/* ================= ریسپانسیو ================= */
@media(max-width: 768px) {

    

    .navbar ul {
        flex-direction: column;
        display: none;
        background: #005b8f;
    }

    .navbar.active ul {
        display: flex;
    }
}

/* ================== آرشیو گالری ==============*/
.gallery-archive-container {
    padding: 50px 20px;
    max-width: 1200px;
    margin: auto;
}

.page-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    object-fit: cover;
}

.load-more-container {
    text-align: center;
    margin-top: 40px;
}

#loadMoreBtn {
    padding: 12px 25px;
    background: #2164f3;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

#loadMoreBtn:hover {
    background: #1547b5;
}

/* ریسپانسیو */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
/* -------- call to action gallery index---------------*/
.cta-gallery-box {
    text-align: center;
    background: #ffffff;
    padding: 35px 20px;
    border-radius: 16px;
    margin: 35px auto;
    max-width: 820px;
    border: 1px solid #0077b6; /* آبی لاجوردی */
    box-shadow: 0 6px 18px rgba(0, 119, 182, 0.08);
    animation: riseFade .9s ease-out;
}

.cta-gallery-box h2 {
    font-size: 28px;
    font-weight: 700;
    color: #023e8a; /* آبی تیره لاجوردی */
    margin-bottom: 12px;
    line-height: 1.5;
}

.cta-gallery-box p {
    font-size: 18px;
    color: #0077b6; /* آبی آسمانی */
    margin-bottom: 22px;
}

.cta-btn {
    background: #0077b6;
    color: #ffffff;
    padding: 14px 36px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all .3s ease;
    box-shadow: 0 4px 12px rgba(0, 119, 182, 0.25);
}

.cta-btn:hover {
    background: #023e8a;
    transform: translateY(-3px);
}

/* 🔹 انیمیشن ورود نرم */
@keyframes riseFade {
    0% { opacity: 0; transform: translateY(25px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* 🔹 واکنش‌گرایی */
@media(max-width: 600px){
    .cta-gallery-box h2 {
        font-size: 22px;
    }
    .cta-gallery-box p {
        font-size: 16px;
    }
    .cta-btn {
        font-size: 16px;
        padding: 12px 24px;
    }
}

/*--------------- services index----------------*/
.services-archive-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
}

.page-title {
    font-size: 32px;
    font-weight: 700;
    color: #023e8a;
    margin-bottom: 35px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    animation: riseFade .9s ease-out;
}

.service-card {
    position: relative;
    width: 100%;
    height: 260px;
    background-size: cover;
    background-position: center;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    direction: rtl;
    transition: transform 0.45s cubic-bezier(.19,1,.22,1),
                box-shadow 0.45s cubic-bezier(.19,1,.22,1);
    box-shadow: 0 4px 14px rgba(0, 119, 182, 0.1);
}

/* افکت هاور */
.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 119, 182, 0.25);
}

/* گرادیان پایین تصویر جهت خوانایی متن */
.service-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(2,62,138,0.85), rgba(0,0,0,0));
    bottom: 0;
    left: 0;
    opacity: 0.5;
    transition: opacity 0.45s ease;
}

.service-card:hover .service-gradient {
    opacity: 1;
}

/* عنوان روی عکس */
.service-title {
    position: absolute;
    bottom: 14px;
    right: 14px;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none !important;
    opacity: 0.8;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-title {
    opacity: 1;
}

/*---------------single services -------------------*/
/* =======================
📌 هدر صفحه خدمت
======================= */
.single-service-header {
    position: relative;
    width: 100%;
    height: 420px;
    background-size: cover;
    background-position: center;
    border-radius: 0 0 16px 16px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 0 24px;
    box-sizing: border-box;
}

.single-service-header .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(2,62,138,0.88), rgba(0,0,0,0));
    top: 0;
    left: 0;
}

.single-service-title {
    position: relative;
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    padding-bottom: 30px;
    z-index: 2;
    max-width: 100%;
    direction: rtl;
    line-height: 1.4;
    opacity: 0;
    animation: slideUp .9s .3s forwards ease-out;
}

/* =======================
📌 Breadcrumb
======================= */
.breadcrumb-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 24px auto 10px;
    padding: 0 20px;
    direction: rtl;
}

.breadcrumb-inner {
    font-size: 14px;
    color: #0077b6;
}

.breadcrumb-inner a {
    color: #023e8a;
    text-decoration: none;
    transition: color .3s ease;
}

.breadcrumb-inner a:hover {
    color: #0096c7;
}

.fa-angle-left {
    margin: 0 6px;
    opacity: .8;
}

/* =======================
📌 محتوا
======================= */
.single-service-container {
    width: 100%;
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.single-service-content {
    font-size: 17px;
    line-height: 1.9;
    color: #023e8a;
    direction: rtl;
    text-align: justify;
    animation: fadeUp 1s ease forwards;
}

/* =======================
📌 خدمات مرتبط
======================= */
.related-title {
    font-size: 22px;
    font-weight: 700;
    margin: 50px 0 20px;
    color: #0077b6;
    direction: rtl;
    text-align: right;
}

.related-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 22px;
    padding: 0 8px;
    box-sizing: border-box;
}

.related-card {
    position: relative;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
    width: 100%;
    transition: transform .45s cubic-bezier(.19,1,.22,1),
                box-shadow .45s cubic-bezier(.19,1,.22,1);
}

.related-card:hover {
    transform: scale(1.07);
    box-shadow: 0 8px 26px rgba(0, 119, 182, .25);
}

.related-service-title {
    position: absolute;
    bottom: 12px;
    right: 12px;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    z-index: 2;
    text-shadow: 0 2px 8px rgba(0,0,0,.4);
}

/* =======================
📌 انیمیشن‌ها
======================= */
.fade-in {
    opacity: 0;
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    from {opacity: 0; transform: translateY(25px);}
    to {opacity: 1; transform: translateY(0);}
}

@keyframes slideUp {
    from {opacity: 0; transform: translateY(40px);}
    to {opacity: 1; transform: translateY(0);}
}

/* =======================
📌 ریسپانسیو
======================= */
@media (max-width: 768px) {
    .single-service-header {
        height: 320px;
        padding: 0 18px;
    }
    .single-service-title {
        font-size: 26px;
        padding-bottom: 22px;
    }
    .related-title {
        font-size: 20px;
    }
}

@media (max-width: 520px) {
    .single-service-header {
        height: 260px;
        padding: 0 14px;
    }
    .single-service-title {
        font-size: 21px;
        padding-bottom: 16px;
    }
    .related-services-grid {
        gap: 16px;
        padding: 0 6px;
    }
}

/*----------------- bread crumb ---------------*/
.breadcrumb-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 20px auto 10px;
    padding: 0 20px;
    direction: rtl;
}

.breadcrumb-inner {
    font-size: 14px;
    color: #0077b6;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.breadcrumb-inner a,
.breadcrumb-inner span {
    display: inline-flex;
    align-items: center;
    color: #023e8a;
    text-decoration: none;
    transition: color .3s ease;
    font-weight: bold;
}
.breadcrumb-inner > span:last-child span {
    font-weight: normal;
}

.breadcrumb-inner a:hover {
    color: #0096c7;
}

/* آیکون جداکننده */
.breadcrumb-inner .separator::before {
    content: "\f104"; /* fa-angle-left */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin: 0 6px;
    color: #0077b6;
    font-size: 12px;
    transform: scaleX(-1); /* اصلاح جهت در RTL */
}

/* آیکون خانه */
.breadcrumb-inner span:first-child a::before {
    content: "\f015"; /* fa-home */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 6px;
    font-size: 14px;
    color: #023e8a;
}

/* ریسپانسیو - خواناتر در موبایل */
@media (max-width: 575px) {
    .breadcrumb-inner {
        font-size: 15px;
        gap: 4px;
    }
    .breadcrumb-inner a:first-child::before {
        font-size: 16px;
    }
}

/*-------------- پک ها -----------------*/

.packs-section {
    padding: 100px 15px;
    text-align: center;
    background: radial-gradient(circle at top, #eaf6ff, #ffffff);
}

.packs-title {
    font-size: 34px;
    margin-bottom: 8px;
    color: #0b3c5d;
}

.packs-sub {
    color: #4c7ea8;
    margin-bottom: 60px;
}

.packs-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 35px;
    max-width: 1200px;
    margin: auto;
}

/* کارت */
.pack-card {
    background: linear-gradient(180deg,#ffffff,#f3f9ff);
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,70,140,.18);
    transition: .6s cubic-bezier(.22,1,.36,1);
    transform: translateY(80px) scale(.92);
    opacity: 0;
    position: relative;
}

/* وقتی وارد دید شد */
.pack-card.visible {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* تصویر */
.pack-card img {
    width: 100%;
    aspect-ratio: 576 / 1025;
    object-fit: cover;
}

/* عنوان */
.pack-card h3 {
    margin: 20px 0 10px;
    color: #0b3c5d;
}

/* دکمه */
.pack-btn {
    display: block;
    margin: 0 24px 28px;
    padding: 14px;
    border-radius: 40px;
    background: linear-gradient(135deg,#1f6fb2,#3fa9f5);
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.pack-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(63,169,245,.45);
}

/* Badge */
.badge {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 9px 20px 10px;
    font-size: 13px;
    font-weight: bold;
    border-radius: 0 18px 18px 18px;
    color: #fff;
    background: linear-gradient(135deg,#ffb100,#ff7b00);
    box-shadow: 0 10px 30px rgba(255,140,0,.6);
    text-shadow: 0 1px 4px rgba(0,0,0,.35);
    letter-spacing: .5px;
    animation: glow 2s infinite alternate;
}

/* VIP نسخه خاص */
.badge.vip {
    background: linear-gradient(135deg,#8a5cff,#2d0b6b);
    box-shadow: 0 10px 30px rgba(120,60,255,.6);
}

/* انیمیشن نور */
@keyframes glow {
    from { filter: brightness(1); }
    to   { filter: brightness(1.35); }
}


/* CTA پایین */
.packs-cta {
    margin-top: 90px;
}

.cta-call {
    display: inline-block;
    margin-top: 18px;
    padding: 16px 40px;
    border-radius: 50px;
    background: linear-gradient(135deg,#0b3c5d,#3fa9f5);
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    box-shadow: 0 20px 40px rgba(0,70,140,.35);
}

/* موبایل */
@media (max-width: 768px) {
    .packs-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }
}


