﻿@import url('https://cdn.jsdelivr.net/gh/rastikerdar/vazirmatn@v33.003/Vazirmatn-font-face.css');

:root {
    /* Navy Palette */
    --c-bg: #040b24;
    --c-surface: #0b1330;
    --c-surface-2: #121b3d;
    --c-surface-hover: #18244b;
    --c-input: #070e29;
    /* Gold Palette */
    --c-brand: #f5b400;
    --c-brand-hover: #d89a00;
    --c-brand-light: #ffd45a;
    --c-brand-dark: #9d7200;
    /* Text */
    --c-text: #ffffff;
    --c-text-soft: #f5f1e8;
    --c-text-muted: #aeb6ca;
    /* Borders */
    --border-color: rgba(245, 180, 0, 0.2);
    --border-light: rgba(255, 255, 255, 0.12);
    /* Shadows */
    --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.18);
    --shadow-md: 0 14px 40px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.45);
    --shadow-gold: 0 8px 25px rgba(245, 180, 0, 0.25);
    /* Radius */
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   BASE & UTILITIES
   ========================================================================== */

html {
    background-color: var(--c-bg);
}

body {
    direction: rtl;
    overflow-x: hidden;
    margin: 0;
    background-color: var(--c-bg);
    color: var(--c-text-soft);
    font-family: 'Vazirmatn', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
}

h1, h2, h3, h4, h5, h6, .fw-black {
    color: var(--c-text) !important;
    font-weight: 800 !important;
}

.text-brand {
    color: var(--c-brand) !important;
}

.text-muted-soft {
    color: var(--c-text-muted) !important;
}

.fs-7 {
    font-size: 0.875rem;
}

.max-w-700 {
    max-width: 700px;
}

/* ==========================================================================
   GLOBAL BOOTSTRAP OVERRIDES
   ========================================================================== */

.bg-white,
.bg-light {
    background-color: var(--c-surface) !important;
}

.text-dark {
    color: var(--c-text) !important;
}

.text-muted {
    color: var(--c-text-muted) !important;
}

.text-success,
.text-warning,
.text-primary {
    color: var(--c-brand) !important;
}

.bg-success,
.bg-warning,
.bg-primary {
    background-color: var(--c-brand) !important;
    color: var(--c-bg) !important;
}

.border,
.border-success,
.border-warning,
.border-primary {
    border-color: var(--border-color) !important;
}

/* ==========================================================================
   CARDS & PEST CARDS
   ========================================================================== */

.card,
.pest-card {
    color: var(--c-text-soft) !important;
    background-color: var(--c-surface) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--radius-md) !important;
    transition: var(--transition);
}

    .card:hover,
    .pest-card:hover {
        background-color: var(--c-surface-hover) !important;
        border-color: var(--c-brand) !important;
        box-shadow: var(--shadow-md) !important;
        transform: translateY(-6px);
    }

    .pest-card h5,
    .pest-card h6 {
        color: var(--c-text) !important;
    }

    .pest-card p {
        color: var(--c-text-muted) !important;
    }

.pest-icon-placeholder {
    color: var(--c-brand) !important;
    font-size: 3rem;
}

/* ==========================================================================
   FORMS
   ========================================================================== */

.form-control,
.form-select {
    min-height: 46px;
    background-color: var(--c-input) !important;
    border: 1px solid var(--border-light) !important;
    border-radius: var(--radius-sm) !important;
    color: var(--c-text) !important;
    transition: var(--transition);
}

    .form-control:focus,
    .form-select:focus {
        background-color: var(--c-surface-2) !important;
        border-color: var(--c-brand) !important;
        color: var(--c-text) !important;
        box-shadow: 0 0 0 0.25rem rgba(245, 180, 0, 0.25) !important;
    }

    .form-control::placeholder {
        color: var(--c-text-muted) !important;
        opacity: 1;
    }

    .form-select option {
        background-color: var(--c-surface);
        color: var(--c-text);
    }

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn-success,
.btn-warning,
.btn-primary {
    background-color: var(--c-brand) !important;
    border-color: var(--c-brand) !important;
    color: var(--c-bg) !important;
    font-weight: 700 !important;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
}

    .btn-success:hover,
    .btn-success:focus,
    .btn-warning:hover,
    .btn-warning:focus,
    .btn-primary:hover,
    .btn-primary:focus {
        background-color: var(--c-brand-hover) !important;
        border-color: var(--c-brand-hover) !important;
        color: #000000 !important;
        box-shadow: 0 10px 30px rgba(245, 180, 0, 0.4);
        transform: translateY(-2px);
    }

.btn-outline-success,
.btn-outline-warning,
.btn-outline-primary {
    background-color: transparent !important;
    border-color: var(--c-brand) !important;
    color: var(--c-brand) !important;
    transition: var(--transition);
}

    .btn-outline-success:hover,
    .btn-outline-warning:hover,
    .btn-outline-primary:hover {
        background-color: var(--c-brand) !important;
        border-color: var(--c-brand) !important;
        color: var(--c-bg) !important;
        box-shadow: var(--shadow-gold);
    }

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.4) !important;
    color: var(--c-text) !important;
    transition: var(--transition);
}

    .btn-outline-light:hover {
        background-color: var(--c-text) !important;
        color: var(--c-bg) !important;
    }

/* ==========================================================================
   HERO
   ========================================================================== */

.hero-section {
    position: relative;
    width: 100%;
    min-height: 1024px;
    overflow: hidden;
    background-image: linear-gradient(90deg, rgb(4 11 36 / 66%) 0%, rgb(4 11 36 / 30%) 18%, rgb(23 16 42) 100%), url(/images/header/SamPashiHeaderHomepage.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-bottom: 1px solid var(--border-color);
}

    .hero-section .hero-overlay {
        width: 100%;
        min-height: inherit;
    }

.min-vh-75 {
    min-height: 75vh;
}

.hero-section h1,
.hero-section p {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-badge {
    color: var(--c-brand-light) !important;
    background-color: rgba(245, 180, 0, 0.12) !important;
    border: 1px solid rgba(245, 180, 0, 0.35) !important;
    backdrop-filter: blur(10px);
}

.hero-description {
    max-width: 720px;
    color: var(--c-text-soft) !important;
}

.hero-guarantee > div {
    background-color: rgba(11, 19, 48, 0.9) !important;
    border: 1px solid var(--border-color) !important;
    border-right: 5px solid var(--c-brand) !important;
    backdrop-filter: blur(10px);
}

/* ==========================================================================
   ACCORDION
   ========================================================================== */

.accordion-item {
    margin-bottom: 0.75rem;
    overflow: hidden;
    background-color: var(--c-surface) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--radius-sm) !important;
}

.accordion-button {
    background-color: var(--c-surface) !important;
    color: var(--c-text) !important;
    box-shadow: none !important;
}

    .accordion-button::after {
        filter: brightness(0) saturate(100%) invert(78%) sepia(99%) saturate(1000%) hue-rotate(5deg) brightness(102%) contrast(102%);
    }

    .accordion-button:not(.collapsed) {
        background-color: rgba(245, 180, 0, 0.12) !important;
        color: var(--c-brand-light) !important;
        border-bottom: 1px solid var(--border-color);
    }

.accordion-body {
    background-color: var(--c-bg) !important;
    color: var(--c-text-soft) !important;
}

/* ==========================================================================
   QUICK CALL BAR
   ========================================================================== */

.quick-call-bar {
    z-index: 1040;
    background-color: var(--c-bg) !important;
    border-top: 1px solid var(--border-color);
}

.animate-bounce {
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

/* ==========================================================================
   LINKS & UTILITIES
   ========================================================================== */

a {
    color: var(--c-brand);
    text-decoration: none;
}

    a:hover {
        color: var(--c-brand-light);
    }

.rating-stars i {
    color: var(--c-brand) !important;
    transition: color 0.2s ease-in-out;
}

.cursor-pointer {
    cursor: pointer;
}

.hover-link {
    transition: color 0.2s ease;
}

    .hover-link:hover {
        color: var(--c-brand) !important;
    }

/* ==========================================================================
   QUOTE SECTION & PEST CONTROL ATMOSPHERE
   ========================================================================== */

.quote-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: radial-gradient(circle at 50% 45%, rgba(245, 180, 0, 0.055), transparent 42%), var(--c-bg);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

/* لایه اتمسفر مه‌پاشی و پاکسازی */
.pest-control-atmosphere {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.quote-content {
    position: relative;
    z-index: 3;
}

/* ذرات مه‌پاشی نانو */
.mist-particle {
    position: absolute;
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    opacity: 0;
    background: var(--c-brand-light);
    box-shadow: 0 0 8px rgba(255, 212, 90, 0.85), 0 0 20px rgba(245, 180, 0, 0.5);
    animation: mistRise 8s linear infinite;
}

.particle-1 {
    right: 12%;
    bottom: -20px;
    animation-delay: 0s;
    animation-duration: 9s;
}

.particle-2 {
    right: 28%;
    bottom: -20px;
    width: 3px;
    height: 3px;
    animation-delay: 2s;
    animation-duration: 11s;
}

.particle-3 {
    right: 47%;
    bottom: -20px;
    animation-delay: 4s;
    animation-duration: 8s;
}

.particle-4 {
    left: 25%;
    bottom: -20px;
    width: 4px;
    height: 4px;
    animation-delay: 1.5s;
    animation-duration: 10s;
}

.particle-5 {
    left: 12%;
    bottom: -20px;
    width: 3px;
    height: 3px;
    animation-delay: 5s;
    animation-duration: 12s;
}

.particle-6 {
    left: 42%;
    bottom: -20px;
    width: 6px;
    height: 6px;
    animation-delay: 6.5s;
    animation-duration: 9.5s;
}

@keyframes mistRise {
    0% {
        opacity: 0;
        transform: translate3d(0, 20px, 0) scale(0.7);
    }

    15% {
        opacity: 0.7;
    }

    50% {
        opacity: 0.45;
        transform: translate3d(45px, -45vh, 0) scale(1);
    }

    85% {
        opacity: 0.15;
    }

    100% {
        opacity: 0;
        transform: translate3d(-35px, -100vh, 0) scale(0.5);
    }
}

/* حلقه‌های رادار پاکسازی */
.cleaning-ring {
    position: absolute;
    display: block;
    width: 90px;
    height: 90px;
    border: 1px solid rgba(245, 180, 0, 0.2);
    border-radius: 50%;
    opacity: 0;
    filter: drop-shadow(0 0 8px rgba(245, 180, 0, 0.2));
    animation: cleaningPulse 8s ease-out infinite;
}

    .cleaning-ring::before,
    .cleaning-ring::after {
        content: "";
        position: absolute;
        border-radius: 50%;
    }

    .cleaning-ring::before {
        inset: 12px;
        border: 1px solid rgba(245, 180, 0, 0.12);
    }

    .cleaning-ring::after {
        inset: 25px;
        border: 1px solid rgba(245, 180, 0, 0.18);
    }

.ring-1 {
    top: 18%;
    right: 8%;
    animation-delay: 0s;
}

.ring-2 {
    top: 55%;
    left: 5%;
    width: 130px;
    height: 130px;
    animation-delay: 3s;
}

.ring-3 {
    bottom: 8%;
    right: 42%;
    width: 70px;
    height: 70px;
    animation-delay: 5.5s;
}

@keyframes cleaningPulse {
    0% {
        opacity: 0;
        transform: scale(0.55);
    }

    20% {
        opacity: 0.55;
    }

    70% {
        opacity: 0.18;
    }

    100% {
        opacity: 0;
        transform: scale(2.6);
    }
}

/* نور پس زمینه هاله ای مرکزی */
.quote-bg-glow {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 180, 0, 0.08) 0%, rgba(4, 11, 36, 0) 70%);
    border-radius: 50%;
    filter: blur(50px);
    animation: pulseGlow 6s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 1;
}

.quote-badge {
    background: rgba(245, 180, 0, 0.1);
    color: var(--c-brand-light);
    border: 1px solid var(--border-color);
    font-weight: 600;
}

/* کارت‌های مراحل */
.quote-card {
    background: rgba(11, 19, 48, 0.92);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition);
    z-index: 4;
    overflow: hidden;
}

    .quote-card:hover {
        transform: translateY(-8px);
        background: var(--c-surface-hover);
        border-color: var(--c-brand);
        box-shadow: 0 15px 35px rgba(245, 180, 0, 0.15);
    }

.step-number {
    position: absolute;
    top: -15px;
    left: 15px;
    font-size: 4.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    transition: var(--transition);
    user-select: none;
}

.quote-card:hover .step-number {
    color: rgba(245, 180, 0, 0.1);
    transform: scale(1.1);
}

.quote-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(245, 180, 0, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--c-brand);
    transition: var(--transition);
}

.quote-card:hover .quote-icon-box {
    background: var(--c-brand);
    color: var(--c-bg);
    box-shadow: var(--shadow-gold);
    transform: rotate(-6deg) scale(1.05);
}

/* دکمه استعلام */
.btn-quote-cta {
    background: linear-gradient(135deg, var(--c-brand-light) 0%, var(--c-brand) 100%) !important;
    border: none !important;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
}

    .btn-quote-cta:hover {
        transform: scale(1.03);
        box-shadow: 0 12px 35px rgba(245, 180, 0, 0.4);
    }

.cta-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(60deg, transparent 30%, rgba(255, 255, 255, 0.5) 50%, transparent 70%);
    transform: rotate(30deg);
    animation: ctaShine 4s infinite;
}

/* ==========================================================================
   KEYFRAMES & UTILITY ANIMATIONS
   ========================================================================== */

@keyframes pulseGlow {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.5;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
}

@keyframes ctaShine {
    0% {
        transform: translateX(-100%) rotate(30deg);
    }

    20%, 100% {
        transform: translateX(100%) rotate(30deg);
    }
}

.animate-shake {
    animation: phoneShake 2s infinite ease-in-out;
}

@keyframes phoneShake {
    0%, 100% {
        transform: rotate(0deg);
    }

    10%, 30%, 50% {
        transform: rotate(-10deg);
    }

    20%, 40% {
        transform: rotate(10deg);
    }

    60% {
        transform: rotate(0deg);
    }
}

/* ==========================================================================
   RESPONSIVE & ACCESSIBILITY
   ========================================================================== */

@media (max-width: 991.98px) {
    .hero-section {
        min-height: 600px;
        background-image: linear-gradient(90deg, rgb(4 11 36 / 66%) 0%, rgb(4 11 36 / 30%) 18%, rgb(23 16 42) 100%), url(/images/header/SamPashiHeaderHomepage.webp);
    }

    .min-vh-75 {
        min-height: 600px;
    }

    .hero-section .col-lg-8 {
        margin-inline: auto;
        text-align: center;
    }

    .hero-section .d-flex {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .mist-particle {
        opacity: 0.5;
    }

    .cleaning-ring {
        opacity: 0.7;
        transform: scale(0.75);
    }

    .ring-1 {
        right: -20px;
    }

    .ring-2 {
        left: -35px;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        min-height: auto;
    }

    .min-vh-75 {
        min-height: 560px;
    }

    .hero-section h1 {
        font-size: 1.85rem;
    }

    .hero-description {
        font-size: 0.95rem !important;
    }

    .hero-section .btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mist-particle,
    .cleaning-ring,
    .quote-bg-glow,
    .cta-shine,
    .animate-shake,
    .animate-bounce {
        animation: none !important;
        transform: none !important;
    }
}

.borderDes {
    border-bottom: 1px solid #f5b400;
    border-top: 1px solid #f5b400;
}
/* ==========================================
   دکمه ۱: تماس فوری (سبز لوکس، زمردی و پالس‌دار)
   ========================================== */
.btn-call-glow {
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
    color: #ffffff !important;
    border: 1px solid rgba(16, 185, 129, 0.5);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.45);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

    .btn-call-glow:hover {
        transform: translateY(-3px) scale(1.02);
        background: linear-gradient(135deg, #34d399 0%, #10b981 50%, #059669 100%);
        box-shadow: 0 8px 28px rgba(16, 185, 129, 0.65), 0 0 15px rgba(52, 211, 153, 0.5);
        color: #ffffff !important;
    }

    .btn-call-glow:active {
        transform: translateY(0) scale(0.98);
    }

    /* افکت حلقه پالس تپنده دور دکمه تماس */
    .btn-call-glow .pulse-ring {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: inherit;
        border: 2px solid #10b981;
        animation: btn-pulse 2s infinite cubic-bezier(0.24, 0, 0.38, 1);
        z-index: -1;
        pointer-events: none;
    }

@keyframes btn-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.15, 1.3);
        opacity: 0;
    }
}

/* ==========================================
   دکمه ۲: ثبت نوبت (طلایی کهربایی لوکس)
   ========================================== */
.btn-reserve-glow {
    background: linear-gradient(135deg, #ffb703 0%, #fb8500 100%);
    color: #111827 !important;
    border: 1px solid rgba(255, 183, 3, 0.5);
    box-shadow: 0 4px 18px rgba(251, 133, 0, 0.45);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

    .btn-reserve-glow:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 8px 25px rgba(251, 133, 0, 0.65), 0 0 15px rgba(255, 183, 3, 0.5);
        color: #000000 !important;
    }

    .btn-reserve-glow:active {
        transform: translateY(0) scale(0.98);
    }

/* بچ کوچک فوری داخل دکمه */
.small-badge {
    font-size: 0.72rem;
    padding: 0.25em 0.6em;
    vertical-align: middle;
}

/* ==========================================
   انیمیشن‌های مشترک (شاین نورانی + تکان خوردن گوشی)
   ========================================== */
.btn-shine {
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient( 120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100% );
    transform: skewX(-25deg);
    animation: shine-sweep 3.5s infinite ease-in-out;
    pointer-events: none;
}

@keyframes shine-sweep {
    0% {
        left: -120%;
    }

    30%, 100% {
        left: 180%;
    }
}

/* آیکون تکان‌خورنده تلفن */
.animate-shake {
    display: inline-block;
    animation: phone-vibrate 2s infinite ease-in-out;
}

@keyframes phone-vibrate {
    0%, 50%, 100% {
        transform: rotate(0);
    }

    10%, 30% {
        transform: rotate(-15deg);
    }

    20%, 40% {
        transform: rotate(15deg);
    }
}
/* ===================================================
   FLOATING CALL BUTTON - REFINED & LEFT SIDE
   =================================================== */
.floating-call-wrapper {
    position: fixed;
    bottom: 25px;
    left: 25px; /* انتقال به چپ */
    right: auto;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(80px) scale(0.85);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    direction: ltr;
}

    .floating-call-wrapper.is-visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }

    /* انیمیشن خیلی ملایم هنگام اسکرول - دیگه تکون‌های عصبی نداره */
    .floating-call-wrapper.is-scrolling .floating-call-btn {
        transform: scale(1.05);
    }

.floating-call-btn {
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ffca28 0%, #ff9800 100%);
    color: #121212 !important;
    text-decoration: none !important;
    padding: 10px 18px 10px 10px;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
    transition: transform 0.4s ease;
}

/* افکت "تنفس" به جای لرزش */
.phone-icon {
    animation: gentlePulse 3s infinite ease-in-out;
}

@keyframes gentlePulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* امواج راداری پشت دکمه رو هم ملایم‌تر کردیم */
.wave {
    position: absolute;
    top: 50%;
    left: 28px;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ff9800;
    opacity: 0.3; /* شفافیت کمتر برای زیبایی بیشتر */
    animation: wavePulse 3s infinite cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* بقیه کلاس‌ها همون قبلی‌هاست، فقط همین قسمت‌ها رو با این‌ها جایگزین کن */

/* ریسپانسیو برای سمت چپ */
@media (max-width: 576px) {
    .floating-call-wrapper {
        bottom: 20px;
        left: 20px; /* انتقال به چپ در موبایل */
        right: auto;
    }

    .wave {
        left: 50%;
    }
}
/* تنظیم ابعاد کنترل‌شده و فشرده برای کل المان تصویر */
.luxury-art-wrapper {
    width: 100%;
    max-width: 380px; /* سایز جمع‌وجور و چشم‌نواز */
    padding: 10px;
}

/* ۱. هاله نور پشت قاب */
.ambient-glow {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.22) 0%, rgba(255, 193, 7, 0.04) 55%, transparent 75%);
    filter: blur(35px);
    z-index: 0;
    pointer-events: none;
}

/* ۲. لایه هندسی/منحنی زیرین با انحنای ارگانیک */
.geometric-backdrop {
    inset: -8px -8px 8px 8px; /* افست ظریف‌تر متناسب با سایز جدید */
    background: linear-gradient(135deg, #ffc107 0%, rgba(255, 152, 0, 0.6) 50%, #151922 100%);
    border-radius: 24px 10px 30px 14px;
    transform: rotate(-3deg);
    z-index: 1;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
}

/* ۳. قاب عکس شناور */
.floating-photo-card {
    z-index: 2;
    border-radius: 20px;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 193, 7, 0.25);
    aspect-ratio: 1 / 1; /* نسبت استاندارد مربعی، در صورت نیاز به حالت عمودی یا افقی قابل تغییر است */
    animation: subtleFloat 6s ease-in-out infinite;
    will-change: transform;
    background-color: #1a1e29;
}

.glass-rim-highlight {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 1px 1.5px rgba(255, 255, 255, 0.35), inset 0 -2px 5px rgba(0, 0, 0, 0.5);
}

/* ۴. انیمیشن شناور نرم */
@keyframes subtleFloat {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-8px) rotate(0.6deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* هاور نرم */
.luxury-art-wrapper:hover .geometric-backdrop {
    transform: rotate(-4.5deg) scale(1.02);
}

.luxury-art-wrapper:hover .floating-photo-card {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.65), 0 0 18px rgba(255, 193, 7, 0.35);
}









.staggered-gallery {
    20px;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 460px;
    margin: 30px auto;
}

.photo-card {
    border-radius: 18px;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
    aspect-ratio: 1 / 1;
    position: relative;
    background: #1a1e29;
}

    .photo-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* 🔑 کلید ماجرا: جابه‌جایی عمودی به جای روی هم قرار دادن */
.card-top {
    transform: translateY(-24px) rotate(-3deg);
    animation: cardFloatA 5s ease-in-out infinite;
}

.card-bottom {
    transform: translateY(24px) rotate(3deg);
    animation: cardFloatB 5s ease-in-out infinite;
    animation-delay: 0.6s; /* حرکت پله‌ای، نه همزمان */
}

/* بج روی عکس */
.card-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(255, 193, 7, 0.95);
    color: #121212;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* هاور: کارت صاف می‌شود و بقیه را جلو می‌اندازد */
.photo-card:hover {
    transform: translateY(0) rotate(0) scale(1.04);
    z-index: 3;
}

@keyframes cardFloatA {
    0%, 100% {
        transform: translateY(-24px) rotate(-3deg);
    }

    50% {
        transform: translateY(-34px) rotate(-2deg);
    }
}

@keyframes cardFloatB {
    0%, 100% {
        transform: translateY(24px) rotate(3deg);
    }

    50% {
        transform: translateY(34px) rotate(2deg);
    }
}

/* ریسپانسیو موبایل: دو کارت زیر هم، بدون کجی */
@media (max-width: 576px) {
    .staggered-gallery {
        grid-template-columns: 1fr;
        max-width: 280px;
    }

    .card-top,
    .card-bottom {
        transform: none;
        animation: none;
        margin-bottom: 20px;
    }
}

/* ==========================================================================
   POISON SHOP SECTION (فروشگاه سموم تخصصی)
   ========================================================================== */

#poison-shop {
    position: relative;
    background: radial-gradient(circle at 80% 20%, rgba(245, 180, 0, 0.04), transparent 50%), var(--c-surface);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.shop-badge {
    background: rgba(245, 180, 0, 0.12);
    color: var(--c-brand-light);
    border: 1px solid var(--border-color);
    font-weight: 700;
}

/* کارت پروموشن محصولات و سموم */
.poison-showcase-card {
    background: rgba(11, 19poison-showcase-card:hover {
    transform: translateY(-5px);
    border-color:);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    overflow: hidden;
    position: relative;
}

    .poison-showcase-card:hover {
        transform: translateY(-5px);
        border-color: var(--c-brand);
        box-shadow: 0 16px 40px rgba(245, 180, 0, 0.18);
    }

/* باکس آیکون سربرگ فروشگاه */
.shop-icon-circle {
    width: 76px;
    height: 76px;
    background: linear-gradient(135deg, rgba(245, 180, 0, 0.15) 0%, rgba(245, 180, 0, 0.05) 100%);
    border: 1.5px solid var(--border-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--c-brand);
    font-size: 2rem;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
}

.poison-showcase-card:hover .shop-icon-circle {
    background: var(--c-brand);
    color: var(--c-bg);
    transform: scale(1.08) rotate(-5deg);
}

/* آیتم‌های ویژگی‌های سموم */
.poison-feature-item {
    background: var(--c-surface-2);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    transition: var(--transition);
}

    .poison-feature-item:hover {
        poison-showcase-card:hover {
            transform: translateY(-5px);
            border-color: var(--c-brand);
            box-shadow: 0 16px 40px rgba(245, 180, 0, 0.18);
        }
        /* باکس آیکون سربرگ فروشگاه */
        .shop-icon-circle {
            width: 76px;
            height: 76px;
            background: linear-gradient(135deg, rgba(245, 180, 0, 0.15) 0%, rgba(245, 180, 0, 0.05) 100%);
            border: 1.5px solid var(--border-color);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--c-brand);
            font-size: 2rem;
            box-shadow: var(--shadow-gold);
            transition: var(--transition);
        }

        .poison-showcase-card:hover .shop-icon-circle {
            background: var(--c-brand);
            color: var(--c-bg);
            transform: scale(1.08) rotate(-5deg);
        }
        /* آیتم‌های ویژگی‌های سموم */
        .poison-feature-item {
            background: var(--c-surface-2);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-sm);
            padding: 10px 14px;
            transition: var(--transition);
        }

            .poison-feature-item:hover {
                background: var(--c-surface-hover);
                border-color: var(--border-color);
            }

            .poison-feature-item i {
                color: var(--c-brand);
            }
        /* دکمه اختصاصی سفارش سم */
        .btn-poison-order {
            background: linear-gradient(135deg, var(--c-brand-light) 0%, var(--c-brand) 100%) !important;
            color class="text-brand">خرید سموم اورجینال زاگرس</span> </h2> <p class="text-muted-soft mb-4 lh-lg fs-6"> اگر قصد دارید خودتان محیط منزل، کارگاه، شرکت یا باشگاه را ضدعفونی کنید، نیازی نیست سموم شیمیایی پرخطر و بی‌اثر بازار را تست کنید. ما همان فرمولاسیون اختصاصی، ارگانیک و آلمانی که تکنسین‌های زاگرس استفاده می‌کنند را با آموزش نحوه استفاده و ارسال سریع در اختیارتان می‌گذاریم. </p> <div class="d-flex flex-wrap justify-content-center justify-content-lg-start gap-3"> <a href="tel:+989199864148" class="btn btn-poison-order btn-lg px-4 py-3 position-relative overflow-hidden"> <span class="btn-shine"></span> <i class="fas fa-phone-alt animate-shake me-2"></i> مشاوره انتخاب سم و سفارش تلفنی </a> </div> </div> <div class="col-lg-5"> <div class="poison-showcase-card p-4 text-center"> <div class="shop-icon-circle mb-3"> <i class="fas fa-shield-virus"></i> </div> <h3 class="h5 fw-bold text-white mb-2">پکیج‌های سموم فرموله ویژه</h3> <p class="text-muted-soft small mb-4">دارای هولوگرام اصالت و بارکد تاییدیه سلامت</p> <div class="d-flex flex-column gap-2 text-start"> <div class="poison-feature-item d-flex align-items-center gap-2"> <i class="fas fa-check-circle"></i> <span class="small text-white">سم مایع ترکیبی ریشه‌کن‌کننده ساس (تخم‌کش قوی)</span> </div> <div class="poison-feature-item d-flex align-items-center gap-2"> <i class="fas fa-check-circle"></i> <span class="small text-white">ژل خوراکی نابودکننده کلونی سوسک ریز کابینت</span> </div> <div class="poison-feature-item d-flex align-items-center gap-2"> <i class="fas fa-check-circle"></i> <span class="small text-white">طعمه‌های مومی پلت‌شده ضد آب مخصوص موش و جوندگان</span> </div> </div> </div> </div> </div> </div> </section>
