.progress-bar {
    height: 8px;
    border-radius: 4px;
    background-color: #FFD700;
}
.progress-bg {
    height: 8px;
    border-radius: 4px;
    background-color: #E5E7EB;
}
.custom-border {
    border: 1px solid rgba(229, 231, 235, 1);
}
.glass-overlay {
    backdrop-filter: blur(4px);
    background-color: rgba(0, 0, 0, 0.3);
}

.modal-container {
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-content {
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: scale(0.9);
    opacity: 0;
}
.modal-container.active {
    opacity: 1;
    visibility: visible;
}
.modal-container.active .modal-content {
    transform: scale(1);
    opacity: 1;
}

.content-card {
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.animate-fade-in {
    animation: fadeIn 0.3s ease forwards;
}
.animate-fade-out {
    animation: fadeOut 0.3s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
    to {
        opacity: 0;
        transform: scale(0.9) translateY(10px);
    }
}

.aspect-square {
    aspect-ratio: 1/1;
}

.modal-image-container {
    padding: 16px;
}
.modal-image {
    border-radius: 10px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .mobile-full {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    .mobile-padding {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .mobile-mt-normal {
        margin-top: 1.5rem;
    }
    .modal-image-container {
        padding: 12px;
    }
}

.testimonial-slider {
    margin-bottom: 2rem;
}

.testimonial-slides {
    display: flex;
    width: 100%;
}

.testimonial-slide {
    width: 100%;
    flex-shrink: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.testimonial-dots .dot {
    transition: all 0.3s ease;
    width: 8px;
    height: 8px;
}

.testimonial-dots .dot.active {
    background-color: var(--primary-color, #FF3B5C);
    width: 24px;
    border-radius: 4px;
}

.testimonial-prev,
.testimonial-next {
    transition: all 0.2s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {
    .testimonial-prev,
    .testimonial-next {
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.backdrop-blur-sm {
    backdrop-filter: blur(4px);
}

.transition-opacity {
    transition: opacity 0.3s ease;
}

.opacity-0 {
    opacity: 0;
}

.opacity-100 {
    opacity: 1;
}

.faq-content {
    overflow: hidden;
    transition: all 0.3s ease-out;
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
}

.faq-content.active {
    max-height: 1000px;
    opacity: 1;
    transform: translateY(0);
    padding-top: 8px;
    padding-bottom: 20px;
}

.faq-toggle i {
    transition: transform 0.3s ease;
}

.faq-toggle.active i {
    transform: rotate(180deg);
}

.faq-toggle:hover {
    background-color: #f9fafb;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOutUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

.faq-content.animate-in {
    animation: fadeInDown 0.3s ease-out forwards;
}

.faq-content.animate-out {
    animation: fadeOutUp 0.3s ease-out forwards;
}

@keyframes borderPulse {
    0% { border-color: rgba(229, 231, 235, 0.8); }
    50% { border-color: var(--primary-color, #FF3B5C); }
    100% { border-color: rgba(229, 231, 235, 0.8); }
}

.testimonial-slide:hover .custom-border {
    animation: borderPulse 2s infinite;
}

@media (max-width: 768px) {
    #content-modal .modal-content {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        max-height: 90vh;
        margin: 0;
        border-radius: 1rem 1rem 0 0;
        transform: translateY(100%);
        transition: transform 0.3s ease-out;
    }
    
    #content-modal.active .modal-content {
        transform: translateY(0);
    }
}

.cb {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.cb::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: -1;
}

.cb.sm::before {
    width: 90px;
    height: 90px;
}

.cb.lg::before {
    width: 140px;
    height: 140px;
}