/* Cookie Policy Page Styles */

/* Breadcrumb Styles */
.pbmit-breadcrumb {
    background: transparent;
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.pbmit-breadcrumb .breadcrumb-item {
    font-size: 0.9rem;
    color: #6c757d;
}

.pbmit-breadcrumb .breadcrumb-item a {
    color: var(--pbmit-global-color, #1e3a8a);
    text-decoration: none;
    transition: color 0.3s ease;
}

.pbmit-breadcrumb .breadcrumb-item a:hover {
    color: var(--pbmit-secondary-color, #3b82f6);
}

.pbmit-breadcrumb .breadcrumb-item.active {
    color: var(--pbmit-global-color, #1e3a8a);
    font-weight: 500;
}

/* Cookie Policy Content */
.cookie-policy-content {
    background: #ffffff;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Cookie Title */
.cookie-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--pbmit-global-color, #1e3a8a);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.cookie-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--pbmit-global-color, #1e3a8a) 0%, var(--pbmit-secondary-color, #3b82f6) 100%);
    border-radius: 2px;
}

[dir="rtl"] .cookie-title::after {
    left: auto;
    right: 0;
}


/* Cookie Subtitle */
.cookie-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--pbmit-global-color, #1e3a8a);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.cookie-subtitle:first-child {
    margin-top: 0;
}

/* Cookie Section */
.cookie-section {
    margin-bottom: 2.5rem;
}

.cookie-section:last-child {
    margin-bottom: 0;
}

.cookie-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1rem;
}

/* Cookie List */
.cookie-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.cookie-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid var(--pbmit-global-color, #1e3a8a);
    transition: all 0.3s ease;
}

.cookie-list li:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.cookie-list li i {
    color: var(--pbmit-global-color, #1e3a8a);
    font-size: 1.2rem;
    margin-right: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.cookie-list li strong {
    color: #2d3748;
    font-weight: 600;
}

/* Cookie Types Grid */
.cookie-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.cookie-type-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
}

.cookie-type-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.cookie-type-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--pbmit-global-color, #1e3a8a) 0%, var(--pbmit-secondary-color, #3b82f6) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.cookie-type-icon i {
    color: white;
    font-size: 1.3rem;
}

.cookie-type-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--pbmit-global-color, #1e3a8a);
    margin-bottom: 0.5rem;
}

.cookie-type-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #6c757d;
    margin: 0;
}

/* Cookie CTA */
.cookie-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.cookie-cta .btn {
    background: linear-gradient(135deg, var(--pbmit-global-color, #1e3a8a) 0%, var(--pbmit-secondary-color, #3b82f6) 100%);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
}

.cookie-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.4);
}

.cookie-cta .btn i {
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-policy-content {
        padding: 2rem 1.5rem;
    }
    
    .cookie-title {
        font-size: 1.5rem;
    }
    
    .cookie-subtitle {
        font-size: 1.1rem;
    }
    
    .cookie-types {
        grid-template-columns: 1fr;
    }
    
    .cookie-type-item {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-type-icon {
        margin-right: 0;
        margin-bottom: 1rem;
        margin-left: auto;
        margin-right: auto;
    }
    
    .cookie-list li {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-list li i {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .cookie-policy-content {
        padding: 1.5rem 1rem;
    }
    
    .cookie-title {
        font-size: 1.3rem;
    }
    
    .cookie-subtitle {
        font-size: 1rem;
    }
    
    .cookie-section p {
        font-size: 0.95rem;
    }
}

/* RTL Support */
[dir="rtl"] .cookie-list li {
    border-left: none;
    border-right: 4px solid var(--pbmit-global-color, #1e3a8a);
}

[dir="rtl"] .cookie-list li:hover {
    transform: translateX(-5px);
}

[dir="rtl"] .cookie-list li i {
    margin-right: 0;
    margin-left: 1rem;
}

[dir="rtl"] .cookie-type-icon {
    margin-right: 0;
    margin-left: 1rem;
}

[dir="rtl"] .cookie-type-item {
    flex-direction: row-reverse;
}

[dir="rtl"] .cookie-cta .btn i {
    margin-right: 0;
    margin-left: 0.5rem;
}

/* Animation for Cookie Types */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cookie-type-item {
    animation: fadeInUp 0.6s ease-out;
}



.cookie-type-item:nth-child(1) { animation-delay: 0.1s; }
.cookie-type-item:nth-child(2) { animation-delay: 0.2s; }
.cookie-type-item:nth-child(3) { animation-delay: 0.3s; }
.cookie-type-item:nth-child(4) { animation-delay: 0.4s; }
