@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000000;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* ============================================
   NAVIGATION STYLES
   ============================================ */
nav {
    backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
}

.nav-container {
    position: relative;
}

.nav-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(220, 38, 38, 0.5));
}

.nav-brand {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.brand-tagline {
    font-size: 0.7rem;
    color: #dc2626;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #dc2626, transparent);
    transition: width 0.4s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: #dc2626;
    background: rgba(220, 38, 38, 0.08);
    transform: translateY(-2px);
}

.nav-link i {
    font-size: 0.9rem;
}

.subscribe-btn {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: #ffffff !important;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 1rem;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.subscribe-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.subscribe-btn:hover::before {
    left: 100%;
}

.subscribe-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(220, 38, 38, 0.8);
    background: linear-gradient(135deg, #991b1b, #dc2626);
    border-color: rgba(255, 255, 255, 0.2);
}

.mobile-menu-btn {
    display: none;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    color: #dc2626;
    padding: 0.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(220, 38, 38, 0.2);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(220, 38, 38, 0.3);
    flex-direction: column;
    padding: 1rem 0;
}

.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 2rem;
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    color: #dc2626;
    background: rgba(220, 38, 38, 0.1);
}

.subscribe-mobile {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: #ffffff !important;
    margin: 0.5rem 2rem;
    border-radius: 25px;
    justify-content: center;
}

/* ============================================
   HERO SECTION STYLES
   ============================================ */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
    min-height: 600px;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #000000 0%, #0a0000 40%, #1a0000 70%, #000000 100%);
    z-index: 1;
}

.parallax-bg::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.08) 2px, transparent 2px);
    background-size: 60px 60px;
    animation: gridMove 30s linear infinite;
}

.parallax-bg::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 0%, rgba(220, 38, 38, 0.15), transparent 60%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 2;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    max-width: 1200px;
    padding: 0 2rem;
    animation: fadeInUp 1.5s ease-out;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #dc2626;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: slideRight 0.8s ease-out;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.2), transparent);
    transition: left 0.6s ease;
}

.hero-badge:hover::before {
    left: 100%;
}

.hero-badge:hover {
    background: rgba(220, 38, 38, 0.15);
    border-color: #dc2626;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.hero-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    object-fit: contain;
    filter: drop-shadow(0 0 40px rgba(220, 38, 38, 0.6));
    animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 40px rgba(220, 38, 38, 0.6));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 60px rgba(220, 38, 38, 0.8));
    }
}

.hero-title {
    margin-bottom: 0.5rem;
}

.hero-title-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #dc2626, transparent);
    margin: 0.75rem auto;
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.6);
    animation: slideIn 1s ease-out;
}

.title-main {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #ffcccc 25%, #dc2626 50%, #ffcccc 75%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(220, 38, 38, 0.6)) drop-shadow(0 0 60px rgba(220, 38, 38, 0.3));
    letter-spacing: 2px;
    display: block;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        filter: drop-shadow(0 0 30px rgba(220, 38, 38, 0.6)) drop-shadow(0 0 60px rgba(220, 38, 38, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(220, 38, 38, 0.8)) drop-shadow(0 0 80px rgba(220, 38, 38, 0.5));
    }
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: #dc2626;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.6);
}

.hero-divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #dc2626, transparent);
    margin: 2rem auto;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.8);
    transition: all 0.4s ease;
    animation: slideIn 1s ease-out;
}

.hero-divider:hover {
    width: 150px;
    box-shadow: 0 0 40px rgba(220, 38, 38, 1);
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
}
    
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 120px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.15), transparent);
    transition: left 0.6s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    background: rgba(220, 38, 38, 0.1);
    border-color: rgba(220, 38, 38, 0.3);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.3);
}

.stat-number {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #dc2626;
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.6);
}

.stat-label {
    font-size: 0.8rem;
    color: #e0e0e0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(220, 38, 38, 0.3);
    margin: 0 1rem;
}

.hero-date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem 0;
    font-size: 1rem;
    color: #e0e0e0;
    font-weight: 500;
}

.hero-date i {
    color: #dc2626;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.cta-primary {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-primary:hover::before {
    width: 300px;
    height: 300px;
}

.cta-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 16px 45px rgba(220, 38, 38, 0.8);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(220, 38, 38, 0.2);
    transition: left 0.4s ease;
}

.cta-secondary:hover::before {
    left: 100%;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px) scale(1.05);
    border-color: #dc2626;
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #e0e0e0;
    font-size: 0.8rem;
    font-weight: 500;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ============================================
   PARALLAX SECTIONS
   ============================================ */
.parallax-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.featured-banner {
    background: linear-gradient(135deg, #0a0000 0%, #1a0000 50%, #0a0000 100%);
    border-top: 1px solid rgba(220, 38, 38, 0.2);
    border-bottom: 1px solid rgba(220, 38, 38, 0.2);
    position: relative;
    padding: 4rem 2rem;
}

.banner-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.banner-icon {
    font-size: 3rem;
    color: #dc2626;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.6);
    animation: infiniteFloat 3s ease-in-out infinite;
}

.banner-content h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.banner-content p {
    color: #e0e0e0;
    font-size: 1.1rem;
}

.quote-banner {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    border-top: 1px solid rgba(220, 38, 38, 0.2);
    border-bottom: 1px solid rgba(220, 38, 38, 0.2);
    position: relative;
    padding: 6rem 2rem;
}

.quote-banner.quote-banner-truth {
    background: linear-gradient(135deg, #1a0000 0%, #0a0a0a 50%, #1a0000 100%);
}

.sataniwujite-banner {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 50%, #0a0a0a 100%);
    border-top: 1px solid rgba(220, 38, 38, 0.2);
    border-bottom: 1px solid rgba(220, 38, 38, 0.2);
    position: relative;
    padding: 6rem 2rem;
    overflow: hidden;
}

.sataniwujite-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(139, 0, 0, 0.15), transparent 60%);
    animation: pulse 4s ease-in-out infinite;
    z-index: 1;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(10, 10, 10, 0.8));
    z-index: 2;
}

.quote-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 3;
}

.quote-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.quote-subtitle {
    color: #dc2626;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.quote-icon {
    font-size: 2rem;
    color: #dc2626;
    margin-bottom: 1rem;
    animation: infiniteFloat 3s ease-in-out infinite;
}

.quote-content blockquote {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.4;
    letter-spacing: 0.5px;
    animation: smoothSlideUp 0.9s ease-out;
}

.quote-author {
    color: #dc2626;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.content-section {
    background: #000000;
    position: relative;
    min-height: auto;
    overflow: hidden;
}

.section-header-pro {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.section-icon {
    font-size: 3rem;
    color: #dc2626;
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: floatUp 3s ease-in-out infinite;
}

.section-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.section-title-pro {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #ffcccc 25%, #dc2626 50%, #ffcccc 75%, #7f1d1d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    filter: drop-shadow(0 0 20px rgba(220, 38, 38, 0.4));
}

.section-title-pro.featured-invest-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.section-subtitle-pro {
    color: #e0e0e0;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    opacity: 0.8;
}

.section-line {
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #dc2626, transparent);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.8);
    transition: all 0.4s ease;
    animation: slideIn 0.8s ease-out;
}

/* ============================================
   CASES GRID
   ============================================ */
.cases-grid {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 2rem;
}

.case-card {
    background: linear-gradient(145deg, #0a0a0a, #1a0000);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    animation: smoothSlideUp 0.7s ease-out;
}

.case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.15), transparent);
    transition: left 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.case-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.5), rgba(220, 38, 38, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.case-card:hover::after {
    opacity: 1;
}

.case-card:hover::before {
    left: 100%;
}

.case-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: #dc2626;
    box-shadow: 0 30px 60px rgba(220, 38, 38, 0.4), inset 0 0 20px rgba(220, 38, 38, 0.1);
}

.case-thumbnail {
    width: 100%;
    height: 220px;
    object-fit: cover;
    filter: grayscale(40%) brightness(0.75) contrast(1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-card:hover .case-thumbnail {
    filter: grayscale(0%) brightness(1.1) contrast(1.1);
    transform: scale(1.12);
}

.case-content {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.case-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.case-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    flex: 1;
}

.category-badge {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    flex-shrink: 0;
}

.case-summary {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.case-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: #ffffff;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    position: relative;
    overflow: hidden;
}

.case-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.case-link:hover::before {
    left: 100%;
}

.case-link:hover {
    transform: translateY(-3px) translateX(2px) scale(1.08);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.8);
}

/* ============================================
   SHORTS GRID
   ============================================ */
.shorts-grid {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 2rem;
}

.shorts-card {
    background: linear-gradient(145deg, #1a0000, #0a0a0a);
    border: 2px solid rgba(220, 38, 38, 0.3);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    animation: smoothSlideUp 0.8s ease-out;
}

.shorts-card::before {
    content: 'SHORTS';
    position: absolute;
    top: 10px;
    right: -35px;
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: white;
    padding: 6px 45px;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 1px;
    transform: rotate(45deg);
    z-index: 2;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.6);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.shorts-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: #dc2626;
    box-shadow: 0 30px 60px rgba(220, 38, 38, 0.5);
}

.shorts-thumbnail {
    width: 100%;
    height: 280px;
    object-fit: cover;
    filter: brightness(0.85) contrast(1) saturate(0.9);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.shorts-card:hover .shorts-thumbnail {
    filter: brightness(1.15) contrast(1.1) saturate(1.1);
    transform: scale(1.08);
}

.shorts-content {
    padding: 1.5rem;
}

.shorts-category {
    display: inline-block;
    color: #dc2626;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.shorts-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.shorts-summary {
    color: #cccccc;
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.shorts-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: #ffffff;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    position: relative;
    overflow: hidden;
}

.shorts-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.shorts-link:hover::before {
    left: 100%;
}

.shorts-link:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.8);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-grid.gallery-single-column {
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 250px;
    cursor: pointer;
    border: 1px solid rgba(220, 38, 38, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: elasticScale 0.7s ease-out;
}

.gallery-item:hover {
    transform: scale(1.08) translateY(-5px);
    border-color: #dc2626;
    box-shadow: 0 25px 50px rgba(220, 38, 38, 0.4);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease;
    filter: brightness(0.75) saturate(0.7) blur(0px);
}

.gallery-item:hover img {
    transform: scale(1.25) rotate(1deg);
    filter: brightness(1.1) saturate(1.2) blur(0px);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.85), rgba(0, 0, 0, 0.95));
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), backdrop-filter 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    backdrop-filter: blur(0px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    backdrop-filter: blur(3px);
}

.gallery-caption {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
}

.about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.about-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.about-logo-wrapper {
    position: relative;
}

.about-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(220, 38, 38, 0.6));
}

.about-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    margin: 0;
    letter-spacing: 1px;
}

.about-divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #dc2626, transparent);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.8);
}

.about-content {
    max-width: 800px;
    text-align: center;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 2rem;
}

.about-text strong {
    color: #dc2626;
    font-weight: 700;
}

.about-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.25);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.2), transparent);
    transition: left 0.6s ease;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    background: rgba(220, 38, 38, 0.15);
    border-color: #dc2626;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

.feature-item i {
    color: #dc2626;
    font-size: 1.2rem;
}

.feature-item span {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
}

.about-quote-box {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(0, 0, 0, 0.5));
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about-quote-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.15) 0%, transparent 70%);
    transition: all 0.6s ease;
    pointer-events: none;
}

.about-quote-box:hover {
    border-color: #dc2626;
    box-shadow: 0 20px 50px rgba(220, 38, 38, 0.4);
    transform: translateY(-5px);
}

.about-quote-box:hover::before {
    top: -25%;
    left: -25%;
}

.quote-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #dc2626;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.quote-translation {
    color: #cccccc;
    font-size: 0.9rem;
    font-style: italic;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.social-link:hover::before {
    width: 150px;
    height: 150px;
}

.social-link.youtube {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: #ffffff;
}

.social-link.instagram {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #ffffff;
}

.social-link.twitter {
    background: linear-gradient(135deg, #1da1f2, #1991db);
    color: #ffffff;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.15) rotate(5deg);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    border-top: 1px solid rgba(220, 38, 38, 0.2);
}

.footer-top {
    border-bottom: 1px solid rgba(220, 38, 38, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(220, 38, 38, 0.5));
    opacity: 0.8;
    transition: all 0.4s ease;
}

.footer-logo:hover {
    opacity: 1;
    filter: drop-shadow(0 0 30px rgba(220, 38, 38, 0.8));
    transform: scale(1.1) rotate(5deg);
}

.footer-brand h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: #ffffff;
    margin: 0;
    letter-spacing: 1px;
}

.footer-brand p {
    color: #dc2626;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.footer-links h4, .footer-social h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.footer-links a {
    display: block;
    color: #cccccc;
    text-decoration: none;
    margin-bottom: 0.75rem;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #dc2626, transparent);
    transition: width 0.4s ease;
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-links a:hover {
    color: #dc2626;
    transform: translateX(8px);
}

.footer-social-icons {
    display: flex;
    gap: 1rem;
}

.footer-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: #ffffff;
}

.footer-social-icons a:nth-child(1) {
    background: linear-gradient(135deg, #dc2626, #991b1b);
}

.footer-social-icons a:nth-child(2) {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.footer-social-icons a:nth-child(3) {
    background: linear-gradient(135deg, #1da1f2, #1991db);
}

.footer-social-icons a:hover {
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0;
}

.footer-bottom p {
    color: #888888;
    font-size: 0.9rem;
    margin: 0;
}

.footer-motto {
    color: #dc2626;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 0.5rem;
    font-size: 1rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .carousel-nav-prev {
        left: 5px;
    }
    
    .carousel-nav-next {
        right: 5px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
        margin: 0;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .cases-grid,
    .shorts-grid {
        flex-direction: column;
    }

    .carousel-track .case-card,
    .carousel-track .shorts-card {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .about-features {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title-pro {
        font-size: 2rem;
    }

    .quote-content blockquote {
        font-size: 1.5rem;
    }

    .carousel-container {
        padding: 1.25rem;
    }

    .carousel-nav {
        width: 42px;
        height: 42px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 1rem;
    }

    .title-main {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .section-title-pro {
        font-size: 1.5rem;
    }

    .section-subtitle-pro {
        font-size: 0.8rem;
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 0.4rem 0.75rem;
    }

    .hero-stats {
        flex-direction: row;
        gap: 0.5rem;
        font-size: 0.75rem;
    }

    .stat-number {
        font-size: 1rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .stat-divider {
        width: 1px;
        height: 30px;
        margin: 0 0.5rem;
    }

    .carousel-container {
        padding: 0.75rem;
        margin-top: 1.5rem;
    }

    .carousel-nav {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }

    .carousel-nav-prev {
        left: 2px;
    }

    .carousel-nav-next {
        right: 2px;
    }

    .view-all-btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.8rem;
    }

    .case-card,
    .shorts-card {
        border-radius: 12px;
    }

    .case-thumbnail,
    .shorts-thumbnail {
        height: 180px;
    }

    .quote-content blockquote {
        font-size: 1.2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .about-logo {
        width: 80px;
        height: 80px;
    }

    .about-title {
        font-size: 1.8rem;
    }

    .about-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .title-main {
        font-size: 1.75rem;
    }

    .hero-stats {
        gap: 0.25rem;
    }

    .stat-number {
        font-size: 0.85rem;
    }

    .stat-label {
        font-size: 0.6rem;
    }

    .stat-divider {
        height: 25px;
        margin: 0 0.25rem;
    }

    .carousel-nav {
        width: 32px;
        height: 32px;
        font-size: 0.7rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 320px) {
    .banner-content h2 {
        font-size: 2rem;
    }

    .quote-content blockquote {
        font-size: 1.2rem;
    }

    .about-title {
        font-size: 2.2rem;
    }
}

/* ============================================
   ANIMATIONS & EFFECTS
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes scaleIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(220, 38, 38, 0.3), inset 0 0 20px rgba(220, 38, 38, 0.1);
    }
    50% {
        box-shadow: 0 0 40px rgba(220, 38, 38, 0.6), inset 0 0 30px rgba(220, 38, 38, 0.2);
    }
}

@keyframes floatUp {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes slideRight {
    0% {
        transform: translateX(-20px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes smoothSlideUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes elasticScale {
    0% {
        transform: scale(0.95);
        opacity: 0;
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes infiniteFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes wavePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(220, 38, 38, 0);
    }
}

/* Intersection Observer animations */
.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.slide-in {
    animation: slideIn 0.8s ease-out forwards;
}

.scale-in {
    animation: scaleIn 0.8s ease-out forwards;
}

.glow-effect {
    animation: glow 3s ease-in-out infinite;
}

/* ============================================
   SCROLLBAR STYLING
   ============================================ */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #000000;
    border-left: 1px solid rgba(220, 38, 38, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #dc2626, #991b1b);
    border-radius: 6px;
    border: 2px solid #000000;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #991b1b, #dc2626);
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.6);
}
/* ============================================
   CAROUSEL STYLES
   ============================================ */
.carousel-wrapper {
    position: relative;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

.carousel-container {
    overflow: hidden;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(26, 0, 0, 0.5), rgba(10, 10, 10, 0.5));
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.2);
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 2rem;
}

.carousel-track .case-card,
.carousel-track .shorts-card {
    flex: 0 0 calc(33.333% - 1.33rem);
    min-width: calc(33.333% - 1.33rem);
    animation: fadeIn 0.5s ease-out;
}

/* 3-item carousel alternative - adjust based on preference */
.carousel-track.carousel-three-items .case-card,
.carousel-track.carousel-three-items .shorts-card {
    flex: 0 0 calc(33.333% - 1.33rem);
    min-width: calc(33.333% - 1.33rem);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #dc2626, #991b1b);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.carousel-nav:hover {
    background: linear-gradient(135deg, #991b1b, #dc2626);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.6);
}

.carousel-nav-prev {
    left: -30px;
}

.carousel-nav-next {
    right: -30px;
}

.carousel-footer {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: white;
    padding: 0.875rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
    position: relative;
    overflow: hidden;
}

.view-all-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.view-all-btn:hover::before {
    left: 100%;
}

.view-all-btn:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.6);
}

/* ============================================
   BUTTON STYLES - PRIMARY ACTION
   ============================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: #ffffff !important;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.8);
}

/* ============================================
   RESPONSIVE CAROUSEL
   ============================================ */
@media (max-width: 1024px) {
    .carousel-nav-prev {
        left: 10px;
    }
    
    .carousel-nav-next {
        right: 10px;
    }
    
    .carousel-nav {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .carousel-container {
        padding: 1.5rem;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .carousel-track {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        padding: 1rem;
    }
    
    .carousel-nav {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }
    
    .carousel-nav-prev {
        left: 5px;
    }
    
    .carousel-nav-next {
        right: 5px;
    }
    
    .view-all-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }
}