/* Advanced Animations & Stylish Components */

:root {
    --primary-gradient: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --primary-color: #f59e0b;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

/* Glassmorphism Utility */
.glass-card {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.9) !important;
    border-color: rgba(245, 158, 11, 0.3);
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.float-animation {
    animation: float 4s ease-in-out infinite;
}

/* Shine Effect for Buttons */
.shine-btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.shine-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    z-index: -1;
    pointer-events: none;
    opacity: 0;
}

.shine-btn:hover::after {
    left: 100%;
    top: 100%;
    opacity: 1;
}

/* Modern Accordion Styles */
.modern-accordion {
    width: 100%;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-header {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: all 0.3s;
}

.accordion-header:hover {
    background: #f8fafc;
}

.accordion-header h3 {
    margin: 0;
    font-size: 1.15rem;
    color: #1e293b;
    font-weight: 600;
}

.accordion-icon {
    transition: transform 0.3s;
    color: #f59e0b;
}

.accordion-item.active .accordion-header {
    background: #f1f5f9;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

/* Page Header Enhancements */
.page-header {
    background: var(--primary-gradient) !important;
    padding: 120px 0 80px 0 !important;
    text-align: center;
    color: white !important;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.1;
}

.page-header h1 {
    font-size: 3.5rem !important;
    font-weight: 800 !important;
    margin-bottom: 1rem !important;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* Gallery Enhancements */
.gallery-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    padding: 30px 0;
}

.gallery-item-premium {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: white;
    transition: all 0.4s ease;
}

.gallery-item-premium:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item-premium img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item-premium:hover img {
    transform: scale(1.1);
}

.gallery-premium-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 15px;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item-premium:hover .gallery-premium-overlay {
    opacity: 1;
}

.btn-premium {
    background: var(--primary-gradient);
    color: white !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    border: none;
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.6);
}

/* Section Spacing */
section {
    padding: 80px 0;
}

/* RoadMap Styles */
.roadmap-container {
    position: relative;
    padding: 40px 0;
}

.roadmap-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    align-items: center;
}

.roadmap-number {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
}

.roadmap-content {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    flex-grow: 1;
}

@media (max-width: 768px) {
    .roadmap-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}