/* ============================================
   SECTION DIVIDERS - جداکننده‌های پویا و زیبا
   ============================================ */

/* Base Divider Container */
.section-divider {
    position: relative;
    width: 100%;
    height: 120px;
    overflow: hidden;
    background: transparent;
    margin: 0;
    padding: 0;
    z-index: 1;
}

.section-divider-small {
    height: 80px;
}

.section-divider-large {
    height: 150px;
}

/* Wave Divider - موجی */
.divider-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.divider-wave svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    fill: currentColor;
}

/* Gradient Wave */
.divider-wave-gradient {
    background: linear-gradient(180deg, transparent 0%, rgba(76, 175, 80, 0.05) 50%, transparent 100%);
}

/* Animated Wave */
@keyframes wave-animation {
    0% {
        transform: translateX(0) translateY(0);
    }
    50% {
        transform: translateX(-25%) translateY(-10px);
    }
    100% {
        transform: translateX(0) translateY(0);
    }
}

.divider-wave-animated svg {
    animation: wave-animation 8s ease-in-out infinite;
}

/* Curved Divider - منحنی */
.divider-curved {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.divider-curved svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    fill: currentColor;
}

/* Zigzag Divider - زیگزاگ */
.divider-zigzag {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.divider-zigzag svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    fill: currentColor;
}

/* Blob Divider - لکه‌ای */
.divider-blob {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.divider-blob svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    fill: currentColor;
}

@keyframes blob-animation {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.divider-blob-animated svg {
    animation: blob-animation 10s ease-in-out infinite;
}

/* Particles Divider - ذرات */
.divider-particles {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: linear-gradient(180deg, transparent 0%, rgba(76, 175, 80, 0.03) 100%);
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(76, 175, 80, 0.4);
    border-radius: 50%;
    animation: particle-float 6s ease-in-out infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 1s; }
.particle:nth-child(3) { left: 30%; animation-delay: 2s; }
.particle:nth-child(4) { left: 40%; animation-delay: 0.5s; }
.particle:nth-child(5) { left: 50%; animation-delay: 1.5s; }
.particle:nth-child(6) { left: 60%; animation-delay: 2.5s; }
.particle:nth-child(7) { left: 70%; animation-delay: 0.8s; }
.particle:nth-child(8) { left: 80%; animation-delay: 1.8s; }
.particle:nth-child(9) { left: 90%; animation-delay: 2.8s; }

@keyframes particle-float {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-50px) scale(1.5);
        opacity: 0.8;
    }
}

/* Gradient Line Divider - خط گرادیان */
.divider-gradient-line {
    position: relative;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(76, 175, 80, 0.3) 20%, 
        rgba(76, 175, 80, 0.6) 50%, 
        rgba(76, 175, 80, 0.3) 80%, 
        transparent 100%);
    margin: 60px 0;
    overflow: hidden;
}

.divider-gradient-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.8), 
        transparent);
    animation: gradient-shine 3s ease-in-out infinite;
}

@keyframes gradient-shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Geometric Divider - هندسی */
.divider-geometric {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.divider-geometric svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    fill: currentColor;
}

@keyframes geometric-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.divider-geometric-animated svg {
    animation: geometric-rotate 20s linear infinite;
}

/* Liquid Divider - مایع */
.divider-liquid {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: linear-gradient(180deg, transparent 0%, rgba(76, 175, 80, 0.05) 100%);
}

.liquid-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(76, 175, 80, 0.1);
    animation: liquid-move 15s ease-in-out infinite;
}

.liquid-shape-1 {
    width: 200px;
    height: 200px;
    top: -100px;
    right: 10%;
    animation-delay: 0s;
}

.liquid-shape-2 {
    width: 150px;
    height: 150px;
    top: -75px;
    left: 20%;
    animation-delay: 2s;
}

.liquid-shape-3 {
    width: 180px;
    height: 180px;
    top: -90px;
    right: 50%;
    animation-delay: 4s;
}

@keyframes liquid-move {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(50px, -30px) scale(1.2);
        opacity: 0.5;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .section-divider {
        height: 80px;
    }
    
    .section-divider-small {
        height: 60px;
    }
    
    .section-divider-large {
        height: 100px;
    }
}

@media (max-width: 480px) {
    .section-divider {
        height: 60px;
    }
    
    .section-divider-small {
        height: 40px;
    }
    
    .section-divider-large {
        height: 80px;
    }
}



