/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@1,400;1,600;1,700;1,800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --bg-dark: #050508;
    --bg-card: #0c0c14;
    --bg-card-hover: #121220;
    --text-primary: #ffffff;
    --text-secondary: #8e8e9f;
    
    --red-gradient-btn: linear-gradient(135deg, #ff0844 0%, #7a001a 100%);
    --blue-gradient-btn: linear-gradient(135deg, #0077ff 0%, #002d62 100%);
    --red-glow: 0 0 35px rgba(230, 0, 50, 0.35);
    --blue-glow: 0 0 35px rgba(0, 119, 255, 0.35);
    --border-color: rgba(255, 255, 255, 0.05);
    --border-hover: rgba(230, 0, 50, 0.4);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-serif-italic: 'Playfair Display', serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom Highlight Italics & Cursive Styling */
.highlight-italic {
    font-family: var(--font-serif-italic);
    font-style: italic;
    font-weight: 700;
    background: linear-gradient(135deg, #ff0844 0%, #4a000d 80%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: movingGradient 5s ease infinite;
    padding-right: 0.1em;
}

/* Red italic for plan name highlights and hero */
.plan-italic-red {
    font-family: var(--font-serif-italic);
    font-style: italic;
    color: #ff0844;
    font-weight: 700;
}

/* Red italic for hero 'perform' word */
.red-italic {
    font-style: italic;
    color: #ff0844;
    font-weight: 900;
    font-family: var(--font-serif-italic);
}

/* Red underline style with drawing animation */
.highlight-underline {
    position: relative;
    display: block;
    font-weight: 900;
    opacity: 0;
    animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
}

/* Typewriter cursor blink */
.typewriter-cursor {
    color: #ff0844;
    font-style: normal;
    font-weight: 900;
    animation: cursorBlink 0.7s infinite;
    display: inline;
}

/* Underline drawn under the typed text, starts from left ("b") */
#typewriter-text {
    position: relative;
    display: inline;
    color: #ffffff;
}

#typewriter-text em.red-italic {
    color: #ff0844;
}

/* Underline element rendered as a separate block line under the span */
.typewriter-underline {
    display: block;
    height: 4px;
    background: linear-gradient(90deg, #ff0844 0%, transparent 100%);
    border-radius: 2px;
    width: 0;
    margin-top: -4px;
    animation: drawLine 1.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes drawLine {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes movingGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Hero Section (Overlay Layout) */
.hero {
    position: relative;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
    height: 100vh;
    min-height: 700px;
    justify-content: center;
}

/* Background marquee with curved scale-down entrance animation */
@keyframes marqueeIntro {
    0% {
        transform: scale(1.6) translate(8%, 12%);
        opacity: 0;
    }
    100% {
        transform: scale(1.0) translate(0, 0);
        opacity: 0.35;
    }
}

.hero-marquee-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow: hidden;
    padding: 2rem 0;
    pointer-events: auto;
    /* Ultra-fast 1s intro — thumbnails snap to position instantly */
    animation: marqueeIntro 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Vignette overlay */
.hero-vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: radial-gradient(circle at center, rgba(5, 5, 8, 0.15) 0%, var(--bg-dark) 85%);
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 10;
    /* hero content starts invisible, text will fade in after marquee settles */
    opacity: 1;
}

/* Staged hero text lines - logo fades first */
.hero-logo {
    height: 100px;
    width: auto;
    margin-bottom: 2.25rem;
    filter: drop-shadow(0 0 20px rgba(255, 8, 68, 0.45));
    user-select: none;
    -webkit-user-drag: none;
    opacity: 0;
    animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}

/* First hero line - appears right after logo */
.hero-line-1 {
    display: block;
    opacity: 0;
    animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) 1.0s forwards;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
}

.hero h1 span.block-word {
    display: block;
}

/* Hero subtitle */
.hero p.hero-subtitle {
    font-size: 1.35rem;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 3rem;
    letter-spacing: -0.5px;
    opacity: 0;
    animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) 2.2s forwards;
}

/* CTA buttons appear last */
.hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) 2.4s forwards;
}

/* Flashing button animations */
@keyframes flashRed {
    0% { box-shadow: 0 0 15px rgba(255, 8, 68, 0.4); border-color: rgba(255, 8, 68, 0.4); }
    50% { box-shadow: 0 0 35px rgba(255, 8, 68, 0.85); border-color: rgba(255, 8, 68, 1); }
    100% { box-shadow: 0 0 15px rgba(255, 8, 68, 0.4); border-color: rgba(255, 8, 68, 0.4); }
}

@keyframes flashBlue {
    0% { box-shadow: 0 0 15px rgba(0, 119, 255, 0.4); border-color: rgba(0, 119, 255, 0.4); }
    50% { box-shadow: 0 0 35px rgba(0, 119, 255, 0.85); border-color: rgba(0, 119, 255, 1); }
    100% { box-shadow: 0 0 15px rgba(0, 119, 255, 0.4); border-color: rgba(0, 119, 255, 0.4); }
}

/* Premium Wider Buttons */
.btn-primary {
    text-decoration: none;
    padding: 1.1rem;
    min-width: 240px;
    background: var(--red-gradient-btn);
    color: white;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 8, 68, 0.5);
    cursor: pointer;
    text-align: center;
    animation: flashRed 2.5s infinite ease-in-out;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 45px rgba(255, 8, 68, 0.9);
}

.btn-secondary {
    text-decoration: none;
    padding: 1.1rem;
    min-width: 240px;
    background: var(--blue-gradient-btn);
    color: white;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 119, 255, 0.5);
    cursor: pointer;
    text-align: center;
    animation: flashBlue 2.5s infinite ease-in-out;
}

.btn-secondary:hover {
    box-shadow: 0 0 45px rgba(0, 119, 255, 0.9);
    transform: translateY(-2px);
}

/* Loop marquee animation specs */
.thumbnail-row {
    display: flex;
    gap: 1.5rem;
    width: max-content;
}

/* Outer rows move at normal speed; center row is slower */
.row-left {
    animation: scrollLeft 65s linear infinite;
}

/* Center row (row-right) is slowest for more presence */
.row-right {
    animation: scrollRight 95s linear infinite;
}

/* Larger card size, drag-locked styling and red sweep outline border animation on hover */
.thumbnail-card {
    width: 380px;
    height: 213px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.03);
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: auto;
    user-select: none;
}

.thumbnail-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

/* Sweep border outline container on hover */
.thumbnail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    border: 2px solid transparent;
    background: linear-gradient(90deg, #ff0844, transparent, #ff0844) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
}

@keyframes borderSweep {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 200%; }
}

.thumbnail-card:hover::before {
    opacity: 1;
    animation: borderSweep 2s linear infinite;
    background-size: 200% 200%;
}

.thumbnail-card:hover {
    opacity: 0.8 !important;
    transform: scale(1.04);
}

/* About Us Section */
.about {
    padding: 10rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.about-header {
    margin-bottom: 4rem;
    text-align: center;
}

.about-header h2 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 2rem;
}

.about-header p {
    font-size: 1.35rem;
    color: var(--text-secondary);
    max-width: 900px;
    line-height: 1.7;
    margin: 0 auto 3rem auto;
}

/* Quick links layout styles */
.about-quick-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3.5rem;
    margin-bottom: 5rem;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.about-quick-links a {
    text-decoration: none;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.about-quick-links a:hover {
    color: #ff0844;
}

/* Transparent hire link with red curved outline */
.about-quick-links a.hire-link {
    border: 2px solid #ff0844;
    padding: 0.5rem 1.75rem;
    border-radius: 50px;
    color: #ff0844;
    background: transparent;
    transition: all 0.3s ease;
}

.about-quick-links a.hire-link:hover {
    background: rgba(255, 8, 68, 0.1);
    box-shadow: var(--red-glow);
    color: white;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--border-color);
    padding-top: 5rem;
    gap: 4rem;
    text-align: center;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: -3px;
    line-height: 1;
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.stat-number::after {
    content: '+';
    color: #ff0844;
    font-size: 3.5rem;
    position: absolute;
    right: -2rem;
    top: -0.2rem;
    font-weight: 600;
}

.stat-number.views-stat {
    font-size: 7.5rem;
    margin-top: -1.5rem;
    text-shadow: 0 0 40px rgba(255, 8, 68, 0.25);
}

.stat-number.views-stat::after {
    content: 'B+';
    font-size: 5rem;
    right: -6.5rem;
    top: 0.8rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-top: 0.5rem;
}

/* Work Section */
.work {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 1rem;
}

/* Category Tab Switching Container */
.work-tabs {
    position: relative;
    display: flex;
    justify-content: center;
    background: rgba(255, 255, 255, 0.02);
    padding: 0.4rem;
    border-radius: 50px;
    width: max-content;
    margin: 0 auto 5rem auto;
    border: 1px solid var(--border-color);
}

/* Smooth active slider background pill */
.tab-slider-pill {
    position: absolute;
    top: 0.4rem;
    left: 0.4rem;
    height: calc(100% - 0.8rem);
    background: var(--red-gradient-btn);
    border-radius: 50px;
    z-index: 1;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: var(--red-glow);
}

.tab-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    padding: 0.9rem 2.2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

/* Low-opacity curved pill forming on hover category headings with filling animation */
.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0; /* start flat for filling animation */
    background: rgba(255, 8, 68, 0.08);
    border-radius: 50px;
    z-index: -1;
    transition: height 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.tab-btn:hover::after {
    height: 100%; /* fills the button from bottom to top */
}

.tab-btn:hover {
    color: var(--text-primary);
}

.tab-btn.active {
    color: white;
}

/* Work Grid Setup */
.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2rem;
    transition: opacity 0.3s ease;
}

.video-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.video-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: var(--border-hover);
    box-shadow: var(--red-glow);
}

.video-preview-container {
    width: 100%;
    aspect-ratio: 16/9;
    position: relative;
    background: #000;
    overflow: hidden;
}

/* UGC layout override to 9:16 portrait */
.video-card.portrait .video-preview-container {
    aspect-ratio: 9/16;
}

/* Portrait specific grid card styling */
.work-grid.portrait-active {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    max-width: 1200px;
    margin: 0 auto;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
    z-index: 2;
    position: relative;
}

.video-card:hover .video-thumbnail {
    opacity: 0;
}

.video-iframe-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.video-iframe-wrapper iframe, .video-iframe-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}

/* Immersive Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(5, 5, 8, 0.98);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    width: 90%;
    max-width: 1000px;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.9);
    position: relative;
}

.lightbox-content.portrait-lightbox {
    max-width: 450px;
    aspect-ratio: 9/16;
}

.lightbox-content iframe, .lightbox-content video {
    width: 100%;
    height: 100%;
    border: none;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #ff0844;
}

.play-hover-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: var(--red-gradient-btn);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 3;
    box-shadow: 0 4px 20px rgba(255, 8, 68, 0.5);
}

.play-hover-indicator i {
    color: white;
    font-size: 1.25rem;
    margin-left: 4px;
}

.video-card:hover .play-hover-indicator {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.video-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: #0c0c14;
    border-top: 1px solid var(--border-color);
}

.video-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
}

.video-tag {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ffb199;
}

/* Horizontal Moving Testimonials (Marquee Track) */
.testimonials {
    padding: 10rem 0;
    overflow: hidden;
    position: relative;
    background: radial-gradient(circle at 50% 50%, rgba(230, 0, 50, 0.03) 0%, transparent 80%);
}

.testimonials-marquee-container {
    width: 100vw;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.testimonials-marquee-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scrollLeft 45s linear infinite;
}

/* Pause scroll animation on hover so reviews can be read */
.testimonials-marquee-container:hover .testimonials-marquee-track {
    animation-play-state: paused;
}

/* Glassmorphism Testimonial Card Styling */
.testimonial-card {
    background: rgba(12, 12, 20, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    position: relative;
    cursor: pointer;
}

.testimonial-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-5px);
    box-shadow: var(--red-glow);
}

.client-avatar-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
}

.client-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ff0844;
    box-shadow: 0 0 20px rgba(255, 8, 68, 0.4);
}

.discord-badge {
    position: absolute;
    bottom: 2px;
    right: 2px;
    background: #5865F2;
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    border: 2px solid #090910;
}

.client-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.testimonial-body {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-style: normal;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial-pill {
    background: rgba(255, 8, 68, 0.08);
    border: 1px solid rgba(255, 8, 68, 0.2);
    color: #ffb199;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.proof-link {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.testimonial-card:hover .proof-link {
    color: #ff0844;
}

/* Glassmorphism Reviews Custom Message Box Dialog / Modal */
.review-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(5, 5, 8, 0.95);
    z-index: 2500;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-modal.active {
    display: flex;
    opacity: 1;
}

.review-modal-content {
    background: rgba(8, 8, 16, 0.45);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 90%;
    max-width: 600px;
    border-radius: 28px;
    padding: 3.5rem;
    position: relative;
    box-shadow: 0 35px 120px rgba(0,0,0,0.85), inset 0 0 60px rgba(255,255,255,0.01);
    border-top: 4px solid #ff0844;
}

.review-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.review-modal-close:hover {
    color: #ff0844;
}

.review-modal-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.review-modal-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ff0844;
}

.review-modal-client-info h4 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
}

.review-modal-body {
    min-height: 120px;
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
    position: relative;
}

/* Typing cursor blink effect */
.typing-cursor::after {
    content: '|';
    color: #ff0844;
    animation: cursorBlink 0.8s infinite;
}

@keyframes cursorBlink {
    50% { opacity: 0; }
}

.review-modal-footer {
    display: flex;
    justify-content: space-between;
}

.review-modal-nav-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.review-modal-nav-btn:hover {
    background: rgba(255, 8, 68, 0.1);
    border-color: rgba(255, 8, 68, 0.5);
    color: #ffb199;
}

/* Pricing Grid Redesign */
.pricing {
    padding: 10rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    align-items: stretch;
}

.pricing-card {
    background: #08080f;
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 4rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-hover);
    box-shadow: var(--red-glow);
}

.pricing-card.featured {
    background: linear-gradient(180deg, #0e0e1a 0%, #08080f 100%);
    border-color: rgba(255, 8, 68, 0.4);
    box-shadow: 0 10px 45px rgba(255, 8, 68, 0.15);
}

.pricing-card.featured::before {
    content: 'BEST VALUE';
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--red-gradient-btn);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    letter-spacing: 1.5px;
}

/* Shimmer Swipe Effect */
.pricing-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.08), transparent);
    transform: skewX(-20deg);
    transition: none;
    pointer-events: none;
    z-index: 2;
}

.pricing-card:hover::after {
    left: 150%;
    transition: all 0.85s cubic-bezier(0.25, 1, 0.5, 1);
}

.pricing-card h3 {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.pricing-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.pricing-price {
    margin-bottom: 3rem;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 3.75rem;
    font-weight: 800;
    color: var(--text-primary);
}

.price-period {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 3.5rem;
}

.pricing-features li {
    font-size: 1.05rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pricing-features li i {
    color: #ff0844;
    font-size: 0.95rem;
}

.pricing-btn {
    text-decoration: none;
    text-align: center;
    padding: 1.1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-plan-standard {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-plan-standard:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-plan-featured {
    background: var(--red-gradient-btn);
    color: white;
    box-shadow: var(--red-glow);
}

.btn-plan-featured:hover {
    box-shadow: 0 0 45px rgba(255, 8, 68, 0.6);
}

/* Premium Red Gradient Contact Section Background */
.contact {
    padding: 10rem 2rem;
    position: relative;
}

.contact-ambient-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230, 0, 50, 0.22) 0%, transparent 70%);
    filter: blur(120px);
    z-index: 1;
    pointer-events: none;
}

/* Dark red-to-dark gradient card background */
.contact-card {
    background: linear-gradient(135deg, rgba(230, 0, 50, 0.15) 0%, rgba(5, 5, 8, 0.95) 100%);
    border: 1px solid rgba(255, 8, 68, 0.25);
    border-radius: 40px;
    padding: 6rem 4rem;
    position: relative;
    z-index: 5;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 30px 100px rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--red-gradient-btn);
}

/* Larger contact logo */
.contact-logo {
    height: 110px;
    width: auto;
    margin-bottom: 2.5rem;
    filter: drop-shadow(0 0 15px rgba(255, 8, 68, 0.3));
    user-select: none;
    -webkit-user-drag: none;
}

.contact-card h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-card p {
    color: var(--text-secondary);
    font-size: 1.25rem;
    margin-bottom: 3.5rem;
    max-width: 700px;
    line-height: 1.7;
    text-align: center;
}

/* Contact Form Styling */
.contact-form {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.form-group {
    width: 100%;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 1.1rem 1.5rem;
    border-radius: 12px;
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: rgba(255, 8, 68, 0.5);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 15px rgba(255, 8, 68, 0.15);
}

/* Custom Horizontal Glassmorphism Category Selector */
.custom-select-wrapper {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
}

.custom-select-wrapper.has-value {
    border-color: rgba(255, 8, 68, 0.4);
    box-shadow: 0 0 12px rgba(255, 8, 68, 0.1);
}

.custom-select-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
    font-family: var(--font-body);
}

.custom-select-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.custom-select-option {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.55);
    padding: 0.55rem 1.15rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    letter-spacing: 0.2px;
    position: relative;
}

.custom-select-hint {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.2);
    font-family: var(--font-body);
    margin-bottom: 0.75rem;
    letter-spacing: 0.3px;
}

.custom-select-option:hover {
    background: rgba(255, 8, 68, 0.1);
    border-color: rgba(255, 8, 68, 0.3);
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

.custom-select-option.active {
    background: var(--red-gradient-btn);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(255, 8, 68, 0.4);
    transform: translateY(-1px);
}

.custom-select-option.active::before {
    content: '✓ ';
    font-size: 0.8rem;
    opacity: 0.85;
}

/* Contact Send Button with animation classes support */
.contact-submit-btn {
    background: var(--red-gradient-btn);
    color: white;
    border: none;
    padding: 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
    animation: flashRed 2.5s infinite ease-in-out;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(255, 8, 68, 0.8);
}

/* Sending spinner indicator styles */
.contact-submit-btn.sending {
    background: #1a0206;
    border-color: rgba(255, 8, 68, 0.3);
    cursor: not-allowed;
    animation: none;
}

.spinner-icon {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Confirmation Success Popup modal */
.confirmation-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(5, 5, 8, 0.96);
    z-index: 3000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.confirmation-popup.active {
    display: flex;
    opacity: 1;
}

.confirmation-card {
    background: #090910;
    border: 1px solid rgba(255, 8, 68, 0.3);
    border-radius: 28px;
    padding: 4rem 3rem;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 0 50px rgba(255, 8, 68, 0.25);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.confirmation-popup.active .confirmation-card {
    transform: scale(1);
}

.confirmation-icon {
    font-size: 4rem;
    color: #ff0844;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 15px rgba(255, 8, 68, 0.5));
}

.confirmation-card h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.confirmation-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.confirmation-close-btn {
    background: var(--red-gradient-btn);
    color: white;
    border: none;
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.confirmation-close-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--red-glow);
}

/* Discord button styles (lowercase, styled beautifully) */
.discord-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-decoration: none;
    padding: 1.3rem 3.5rem;
    background: #5865F2;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 50px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 45px rgba(88, 101, 242, 0.35);
}

.discord-btn img {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(1);
}

.discord-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 55px rgba(88, 101, 242, 0.65);
    background: #4752c4;
}

/* Footer Section */
footer {
    padding: 4rem 2rem;
    border-top: 1px solid var(--border-color);
    background: #030305;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-primary);
    font-size: 1.35rem;
}

.footer-logo img {
    height: 54px;
}

/* Footer brand name - bigger and italic */
.footer-brand-name {
    font-family: var(--font-serif-italic);
    font-style: italic;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.footer-copy {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Keyframes & Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Responsive Rules */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3.2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
        gap: 3.5rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 3rem;
        align-items: center;
        text-align: center;
    }
    
    .stat-box {
        align-items: center;
    }
    
    .stat-number.views-stat {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p.hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }
    
    .about-header h2 {
        font-size: 2.75rem;
    }
    
    .about-header p {
        font-size: 1.15rem;
    }
    
    .work-tabs {
        width: 100%;
        overflow-x: auto;
        justify-content: flex-start;
        border-radius: 24px;
    }
    
    .tab-slider-pill {
        display: none; 
    }
    
    .tab-btn.active {
        background: var(--red-gradient-btn);
    }
    
    .work-grid {
        grid-template-columns: 1fr;
    }
    
    .work-grid.portrait-active {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        padding: 4rem 1.5rem;
    }
    
    .contact-card h2 {
        font-size: 2.3rem;
    }
    
    .contact-card p {
        font-size: 1.1rem;
    }
    
    .discord-btn {
        width: 100%;
        padding: 1.2rem 2rem;
        font-size: 1.05rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}
