/* ============================================
   SAMPLE PAGE & OTHER PAGES STYLING
   ============================================ */

/* Footer Advanced - For Footer1 */
.footer-advanced {
    padding: 0 !important;
}

@media screen and (max-width: 768px) {
    .footer-advanced {
        padding: 0 !important;
    }
}

@media screen and (max-width: 480px) {
    .footer-advanced {
        padding: 0 !important;
    }
}


/* Section Title - Exact Match with Home Page Sections */
.section-title-wrapper {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 30px;
    background: rgba(0, 212, 255, 0.15);
    border: 2px solid rgba(0, 212, 255, 0.4);
    border-radius: 50px;
    color: #00d4ff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.3);
    transition: all 0.4s ease;
    cursor: default;
}

.section-badge:hover {
    background: rgba(0, 212, 255, 0.25);
    border-color: #00d4ff;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.5);
}

.badge-dot {
    width: 10px;
    height: 10px;
    background: #00d4ff;
    border-radius: 50%;
    animation: badgePulse 2s infinite;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}

@keyframes badgePulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

.section-title {
    font-size: 36px;
    font-weight: 900;
    line-height: 1.0;
    margin-bottom: 5px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

.text-gradient {
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 16px;
    color: #d1d5db;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* Header Page Variant */
.header-page {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    position: fixed;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Page Content Section */
.page-content-section {
    position: relative;
    padding: 140px 0 80px;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    overflow: hidden;
}

.page-content-section .section-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
}

.page-content-section .section-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
}

.page-content-section .container {
    position: relative;
    z-index: 1;
}

/* Content Card */
.content-card {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: none;
    position: relative;
    z-index: 2;
}

/* Icon in Title Section */
.page-title-content .header-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.page-title-content .header-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(0, 150, 255, 0.2) 100%);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
    border: 2px solid rgba(0, 212, 255, 0.4);
    animation: iconFloat 3s ease-in-out infinite;
}

.page-title-content .header-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #00d4ff, #0096ff);
    border-radius: 22px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.page-title-content .header-icon:hover::before {
    opacity: 0.3;
}

.page-title-content .header-icon i {
    font-size: 42px;
    color: #00d4ff;
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.6));
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
}

.card-body {
    padding: 50px 40px;
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: #d1d5db;
    margin-bottom: 40px;
    text-align: center;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.feature-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-box:hover {
    background: rgba(0, 212, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    border-radius: 50%;
    font-size: 28px;
    color: #ffffff;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.feature-description {
    font-size: 14px;
    line-height: 1.6;
    color: #9ca3af;
    margin: 0;
}

/* Info Section */
.info-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 35px;
    margin-bottom: 40px;
}

.section-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-subtitle i {
    color: #00d4ff;
    font-size: 22px;
}

.info-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #d1d5db;
    margin-bottom: 25px;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #e5e7eb;
}

.info-list li i {
    color: #00d4ff;
    font-size: 18px;
    flex-shrink: 0;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 50px 40px;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
}

.cta-title {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
}

.cta-description {
    font-size: 16px;
    color: #d1d5db;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .page-header-banner {
        padding: 120px 0 60px;
    }
    
    .page-title {
        font-size: 36px;
    }
    
    .card-header {
        padding: 30px 25px;
    }
    
    .card-title {
        font-size: 24px;
    }
    
    .card-body {
        padding: 35px 25px;
    }
    
    .intro-text {
        font-size: 16px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-section {
        padding: 25px;
    }
    
    .cta-section {
        padding: 35px 25px;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .page-title {
        font-size: 28px;
    }
    
    .card-title {
        font-size: 20px;
        flex-direction: column;
        gap: 10px;
    }
    
    .breadcrumb {
        font-size: 12px;
    }
}
