 :root {
            --abt-red: #ff3b30;
            --abt-dark: #0a0a0a;
            --abt-gray: #fbfbfd;
            --abt-border: rgba(0, 0, 0, 0.1);
        }

        #abt-skeleton-overlay {
            position: fixed;
            inset: 0;
            background: #fff;
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .abt-sk-wrap {
            width: 1000px;
            padding: 20px;
        }

        .abt-sk-hero {
            height: 400px;
            background: #f2f2f7;
            border-radius: 30px;
            animation: abt-pulse 1.5s infinite;
        }

        .abt-sk-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        .abt-sk-box {
            height: 200px;
            background: #f2f2f7;
            border-radius: 20px;
            animation: abt-pulse 1.5s infinite;
        }

        .abt-sk-box.wide {
            grid-column: span 2;
        }

        @keyframes abt-pulse {
            50% {
                opacity: 0.5;
            }
        }

        .abt-main-wrapper {
            opacity: 0;
            transition: opacity 0.8s ease;
        }

        .abt-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
        }

        .abt-badge {
            background: #f2f2f7;
            color: var(--abt-red);
            padding: 6px 14px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 12px;
            display: inline-block;
            margin-bottom: 15px;
        }

        .abt-hero-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 60px;
            align-items: center;
        }

        .abt-hero-grid h1 {
            font-size: 64px;
            line-height: 1.1;
            margin: 20px 0;
            letter-spacing: -2px;
            color: var(--abt-dark);
        }

        .abt-highlight {
            color: var(--abt-red);
        }

        .abt-hero-img img {
            width: 100%;
            border-radius: 40px;
            box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
        }

        .abt-dash-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 40px;
        }

        .abt-dash-card {
            padding: 40px;
            border-radius: 32px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .abt-dash-card.dark-mode {
            background: var(--abt-dark);
            color: #fff;
        }

        .abt-dash-card.outline-mode {
            border: 1px solid var(--abt-border);
        }

        .abt-stat-unit {
            margin-bottom: 20px;
        }

        .abt-stat-number {
            display: block;
            font-size: 32px;
            font-weight: 800;
            color: var(--abt-red);
        }

        .abt-legal-item {
            display: flex;
            justify-content: space-between;
            border-bottom: 1px solid var(--abt-border);
            padding: 15px 0;
        }

        .abt-bento-box {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-auto-rows: 220px;
            gap: 20px;
            margin-top: 60px;
        }

        .abt-bento-cell {
            background: var(--abt-gray);
            border-radius: 32px;
            padding: 40px;
            transition: transform 0.4s ease;
            overflow: hidden;
            position: relative;
        }

        .abt-bento-cell:hover {
            transform: translateY(-5px);
        }

        .abt-bento-cell.span-wide {
            grid-column: span 2;
        }

        .abt-bento-cell.span-tall {
            grid-row: span 2;
            padding: 0;
        }

        .abt-bento-cell.span-tall img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .abt-bento-cell.red-accent {
            background: var(--abt-red);
            color: #fff;
        }

        .abt-icon-lg {
            font-size: 32px;
            margin-bottom: 15px;
        }

        .abt-reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: 1s cubic-bezier(0.19, 1, 0.22, 1);
        }

        .abt-reveal.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 900px) {

            .abt-hero-grid,
            .abt-dash-row,
            .abt-bento-box {
                grid-template-columns: 1fr;
            }

            .abt-bento-cell.span-wide,
            .abt-bento-cell.span-tall {
                grid-column: span 1;
                grid-row: span 1;
            }

            .abt-bento-box {
                grid-auto-rows: auto;
            }

            .abt-hero-grid h1 {
                font-size: 42px;
            }
        }

        /* در بخش فوتر */
        .premium-footer {
            opacity: 0;
            /* نامرئی */
            visibility: hidden;
            /* غیرقابل دسترس */
            transition: opacity 0.8s ease-in-out;
            /* برای ظاهر شدن نرم */
        }

        /* کلاس کمکی برای نمایش */
        .premium-footer.is-visible {
            opacity: 1;
            visibility: visible;
        }
        /* Container Layout */
.abt-bento-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    padding: 20px 0;
}

/* Modern Card Styling */
.abt-bento-cell {
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.abt-bento-cell:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Icons styling - Making them pop */
.abt-bento-cell svg {
    margin-bottom: 24px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 12px;
    stroke-width: 1.5;
}

/* Gradient Accents (The Trendy Part) */
.instagram-card:hover { border: 1px solid #E1306C; }
.telegram-card:hover { border: 1px solid #0088cc; }
.whatsapp-card:hover { border: 1px solid #25D366; }

/* Typography */
.abt-bento-cell h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.abt-bento-cell p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 24px;
}

/* The Link Button - Make it look like a CTA */
.btn-channel {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 2px solid #eee;
    transition: 0.3s;
}

.btn-channel:hover {
    border-bottom-color: #000;
    padding-left: 5px;
}
/* Container: Uniform Height Grid */
.abt-bento-box-social {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    align-items: stretch; /* این دستور باعث هم‌قد شدن کارت‌ها می‌شود */
}

/* Base Card Style */
.abt-social-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 28px;
    border: 1px solid rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    overflow: hidden;
}

/* Hover Animation: Lift & Glow */
.abt-social-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* The Animated Icon Box */
.icon-box {
    width: 60px;
    height: 60px;
    background: #f4f4f4;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.abt-social-card:hover .icon-box {
    transform: translateY(-8px);
}

/* Background Tints (The "Professional Color" Trick) */
.insta:hover { background: linear-gradient(135deg, #fff 0%, #fdf0f5 100%); border-color: #E1306C; }
.tele:hover { background: linear-gradient(135deg, #fff 0%, #eefaff 100%); border-color: #0088cc; }
.whats:hover { background: linear-gradient(135deg, #fff 0%, #f0fff4 100%); border-color: #25D366; }

/* Typography Adjustment */
.abt-social-card h3 { font-size: 1.25rem; margin-bottom: 15px; }
.abt-social-card p { flex-grow: 1; margin-bottom: 20px; line-height: 1.6; color: #555; }
/* Container adjustment for same height */
.abt-bento-box-social {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: stretch;
}

/* The Button Styling - High Interaction */
.btn-modern-action {
    position: relative;
    padding: 16px 24px;
    border: 2px solid #000;
    background: transparent;
    border-radius: 14px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.btn-modern-action span {
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

/* The Animated Background Layer */
.btn-bg {
    position: absolute;
    top: 100%; /* شروع از پایین دکمه */
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 1;
}

/* Hover States for Buttons */
.btn-modern-action:hover .btn-bg {
    top: 0; /* لایه سیاه می‌آید بالا و دکمه را پر می‌کند */
}

.btn-modern-action:hover span {
    color: #fff; /* متن سفید می‌شود */
}

.btn-modern-action:active {
    transform: scale(0.96); /* افکت کلیک شدن */
}

/* Individual Brand Colors on Hover (Optional improvement) */
.insta .btn-modern-action { border-color: #E1306C; color: #E1306C; }
.insta .btn-modern-action .btn-bg { background: #E1306C; }

.tele .btn-modern-action { border-color: #0088cc; color: #0088cc; }
.tele .btn-modern-action .btn-bg { background: #0088cc; }

.whats .btn-modern-action { border-color: #25D366; color: #25D366; }
.whats .btn-modern-action .btn-bg { background: #25D366; }

/* Keep span color logic consistent */
.btn-modern-action:hover span {
    color: #fff !important;
}
/* Hero Image Interaction */
.abt-hero-img {
    perspective: 1000px; /* برای ایجاد حس سه بعدی */
    overflow: hidden;
    border-radius: 24px;
}

.abt-hero-img img {
    width: 100%;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
    will-change: transform;
}

.abt-hero-img:hover img {
    transform: scale(1.05) rotate(1deg); /* کمی زوم و چرخش برای پویایی */
    filter: brightness(1.1);
}
/* Contact Grid */
.abt-contact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:28px;
}

/* Contact Card */
.abt-contact-card{
    background:#ffffff;
    border-radius:26px;
    padding:36px;
    border:1px solid rgba(0,0,0,0.06);

    display:flex;
    flex-direction:column;

    transition:all .55s cubic-bezier(.19,1,.22,1);
    position:relative;
    overflow:hidden;
}

/* Hover Lift */
.abt-contact-card:hover{
    transform:translateY(-12px) scale(1.02);
    box-shadow:0 30px 60px rgba(0,0,0,0.12);
}

/* Icon Animation */
.abt-contact-card:hover .icon-box{
    transform:translateY(-6px) scale(1.1);
}

/* Background glow */
.abt-contact-card::after{
    content:"";
    position:absolute;
    inset:0;
    background:radial-gradient(circle at center,rgba(0,0,0,0.04),transparent 70%);
    opacity:0;
    transition:.4s;
}

.abt-contact-card:hover::after{
    opacity:1;
}

/* Phone Color Theme */
.phone:hover{
    border-color:#34a853;
    background:linear-gradient(135deg,#fff,#f2fff5);
}

/* Email Color Theme */
.email:hover{
    border-color:#4285f4;
    background:linear-gradient(135deg,#fff,#f3f7ff);
}
/* اصلاح کلی باکس آیکون */
.icon-box {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

/* استایل‌دهی به رنگ‌های اختصاصی */
.insta-color { background: rgba(225, 48, 108, 0.15); color: #E1306C; }
.tele-color { background: rgba(0, 136, 204, 0.15); color: #0088CC; }
.whats-color { background: rgba(37, 211, 102, 0.15); color: #25D366; }
.phone-color { background: rgba(0, 122, 255, 0.15); color: #007AFF; }
.email-color { background: rgba(255, 149, 0, 0.15); color: #FF9500; }

/* افکت هاور روی باکس آیکون */
.abt-social-card:hover .icon-box,
.abt-contact-card:hover .icon-box {
    transform: scale(1.1) rotate(5deg); /* کمی چرخش نرم هنگام هاور */
    box-shadow: 0 10px 20px -5px rgba(0,0,0,0.1);
}
