/* assets/css/premium.css - Elite Design System 2026 */

/* ============================================
   🔥 PREMIUM GLOW EFFECTS & MICRO-INTERACTIONS
   ============================================ */

/* Glow Text Effect */
.glow-text {
    text-shadow: 0 0 40px rgba(229, 57, 53, 0.3), 0 0 80px rgba(229, 57, 53, 0.1);
    animation: textPulse 4s ease-in-out infinite;
}

@keyframes textPulse {

    0%,
    100% {
        text-shadow: 0 0 40px rgba(229, 57, 53, 0.3), 0 0 80px rgba(229, 57, 53, 0.1);
    }

    50% {
        text-shadow: 0 0 60px rgba(229, 57, 53, 0.5), 0 0 100px rgba(229, 57, 53, 0.2);
    }
}

/* Glassmorphism Cards - Premium Glass Effect */
.glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.7) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow:
        0 8px 32px rgba(229, 57, 53, 0.06),
        0 4px 16px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 20px;
}

.glass-card:hover {
    transform: translateY(-8px);
    border-color: rgba(229, 57, 53, 0.25);
    box-shadow:
        0 24px 64px rgba(229, 57, 53, 0.12),
        0 12px 32px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* Floating Animation */
.float-element {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Gradient Border Effect */
.gradient-border {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
}

.gradient-border::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.3) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gradient-border:hover::before {
    opacity: 1;
}

/* ============================================
   ✨ PREMIUM BUTTON STYLES
   ============================================ */

.btn-premium {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #fff 0%, #e6e6e6 100%);
    color: #000;
    font-weight: 700;
    font-size: 15px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.7s ease;
}

.btn-premium:hover::before {
    left: 100%;
}

.btn-premium:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 15px 40px rgba(255, 255, 255, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-premium i {
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-premium:hover i {
    transform: translateX(5px);
}

/* Outline Premium Button */
.btn-premium-outline {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: transparent;
    color: var(--text-main);
    font-weight: 600;
    font-size: 15px;
    border-radius: 100px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-premium-outline:hover {
    border-color: rgba(229, 57, 53, 0.4);
    background: rgba(229, 57, 53, 0.05);
    transform: translateY(-2px);
}

/* ============================================
   🎯 HERO SECTION ENHANCEMENTS
   ============================================ */

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(229, 57, 53, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 80% 20%, rgba(102, 126, 234, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

/* ============================================
   📊 STAT COUNTER ANIMATION
   ============================================ */

.stat-counter {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
}

/* ============================================
   🎨 SERVICE DETAIL PAGE PREMIUM DESIGN
   ============================================ */

/* Premium Hero for Service Detail */
.service-hero-ultra {
    position: relative;
    padding: 200px 0 120px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
}

.service-hero-ultra::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(229, 57, 53, 0.03) 0%, transparent 40%);
    animation: rotateGradient 20s linear infinite;
}

@keyframes rotateGradient {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.service-hero-ultra .hero-content {
    position: relative;
    z-index: 2;
}

/* Service Badge */
.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(229, 57, 53, 0.1);
    border: 1px solid rgba(229, 57, 53, 0.2);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #E53935;
    margin-bottom: 30px;
}

.service-badge i {
    font-size: 10px;
}

/* Service Title */
.service-title-ultra {
    font-size: clamp(48px, 10vw, 120px);
    font-weight: 800;
    line-height: 0.95;
    margin-bottom: 40px;
    letter-spacing: -0.04em;
}

.service-title-ultra .highlight {
    display: inline-block;
    position: relative;
}

.service-title-ultra .highlight::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, rgba(229, 57, 53, 0.6), rgba(229, 57, 53, 0));
    border-radius: 4px;
}

/* Service Description */
.service-description-ultra {
    font-size: 22px;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 700px;
    font-weight: 400;
}

/* ============================================
   📝 CONTENT SECTION IMPROVEMENTS
   ============================================ */

.content-premium {
    padding: 120px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Rich Text Styling */
.rich-text-premium {
    font-size: 19px;
    line-height: 1.9;
    color: var(--text-secondary);
}

.rich-text-premium h2 {
    font-size: 36px;
    color: var(--text-main);
    margin: 80px 0 30px;
    position: relative;
    padding-left: 20px;
}

.rich-text-premium h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: linear-gradient(180deg, #E53935 0%, transparent 100%);
    border-radius: 2px;
}

.rich-text-premium h3 {
    font-size: 26px;
    color: var(--text-main);
    margin: 50px 0 20px;
}

.rich-text-premium p {
    margin-bottom: 25px;
}

.rich-text-premium strong {
    color: var(--text-main);
    font-weight: 600;
}

.rich-text-premium ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.rich-text-premium li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.rich-text-premium li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #E53935;
    font-weight: bold;
}

/* ============================================
   📦 SIDEBAR CTA BOX
   ============================================ */

.sidebar-cta-box {
    position: sticky;
    top: 120px;
    padding: 40px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    overflow: hidden;
}

.sidebar-cta-box::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(229, 57, 53, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.sidebar-cta-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
}

.sidebar-cta-box p {
    font-size: 15px;
    color: #777;
    line-height: 1.7;
    margin-bottom: 25px;
}

.sidebar-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.sidebar-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 14px;
    color: #aaa;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.sidebar-features li:last-child {
    border-bottom: none;
}

.sidebar-features li i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(229, 57, 53, 0.1);
    border-radius: 6px;
    color: #E53935;
    font-size: 10px;
}

/* ============================================
   ❓ FAQ ACCORDION PREMIUM
   ============================================ */

.faq-section-premium {
    margin-top: 100px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-title-premium {
    font-size: 32px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-title-premium i {
    color: #E53935;
    font-size: 28px;
}

.faq-item-premium {
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    margin-bottom: 15px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.01);
    transition: all 0.4s ease;
}

.faq-item-premium:hover {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.faq-item-premium.active {
    border-color: rgba(229, 57, 53, 0.2);
    background: rgba(229, 57, 53, 0.02);
}

.faq-trigger-premium {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
}

.faq-trigger-premium h4 {
    font-size: 17px;
    font-weight: 500;
    color: #888;
    margin: 0;
    transition: color 0.3s ease;
}

.faq-item-premium.active .faq-trigger-premium h4 {
    color: #fff;
}

.faq-trigger-premium .icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: #555;
    font-size: 12px;
    transition: all 0.4s ease;
}

.faq-item-premium.active .faq-trigger-premium .icon {
    background: rgba(229, 57, 53, 0.15);
    color: #E53935;
    transform: rotate(45deg);
}

.faq-content-premium {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.faq-item-premium.active .faq-content-premium {
    max-height: 500px;
}

.faq-content-premium p {
    padding: 0 30px 25px;
    font-size: 16px;
    line-height: 1.8;
    color: #999;
}

/* ============================================
   🚀 CONVERSION BANNER
   ============================================ */

.conversion-banner {
    position: relative;
    padding: 150px 0;
    text-align: center;
    overflow: hidden;
}

.conversion-banner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(229, 57, 53, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.conversion-banner h2 {
    font-size: clamp(36px, 6vw, 64px);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.conversion-banner p {
    font-size: 20px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 1;
}

/* ============================================
   📱 RESPONSIVE PREMIUM
   ============================================ */

@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .sidebar-cta-box {
        position: static;
    }

    .service-hero-ultra {
        padding: 140px 0 80px;
    }

    .service-title-ultra {
        font-size: clamp(36px, 10vw, 60px);
    }

    .service-description-ultra {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .faq-trigger-premium {
        padding: 20px;
    }

    .faq-content-premium p {
        padding: 0 20px 20px;
    }

    .conversion-banner {
        padding: 100px 0;
    }
}

/* ============================================
   🎬 SCROLL REVEAL ANIMATIONS
   ============================================ */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* Stagger Animation for Lists */
.stagger-item {
    opacity: 0;
    transform: translateY(20px);
}

.stagger-item.active {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}