* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --peach: #FFB5C2;
    --pink: #F5A3D0;
    --purple: #D4A5F5;
    --white: #FFFFFF;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
    
    /* Soft gradient colors */
    --gradient-soft: linear-gradient(135deg, #FFB5C2, #F5A3D0, #D4A5F5);
    --gradient-soft-bg: linear-gradient(135deg, rgba(255, 181, 194, 0.1), rgba(245, 163, 208, 0.1), rgba(212, 165, 245, 0.1));
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px 0;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(0px);
    will-change: transform, background-color;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 212, 229, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo-img {
    height: 125px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FFD4E5, #FFC4E1, #E8D4F8);
    transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--pink);
}

.cta-nav {
    padding: 12px 24px;
    background: linear-gradient(135deg, #FFB5C2, #F5A3D0, #D4A5F5);
    color: white !important;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    text-align: center;
}

.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 163, 208, 0.4);
    background: linear-gradient(135deg, #F5A3D0, #D4A5F5, #FFB5C2);
}

.cta-nav::after {
    display: none;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

/* Subtle Brand Color Background */
.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(245, 183, 161, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(231, 139, 203, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(180, 110, 255, 0.12) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.gradient-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
    pointer-events: none;
    will-change: transform;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(245, 183, 161, 0.3), rgba(231, 139, 203, 0.3));
    top: -200px;
    right: -200px;
    animation: float1 20s ease-in-out infinite;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(231, 139, 203, 0.3), rgba(180, 110, 255, 0.3));
    bottom: -150px;
    left: -150px;
    animation: float2 25s ease-in-out infinite;
}

.shape-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(180, 110, 255, 0.25), rgba(245, 183, 161, 0.25));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float3 30s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -50px) scale(1.1); }
    66% { transform: translate(-50px, 50px) scale(0.9); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-60px, 40px) scale(1.15); }
    66% { transform: translate(40px, -60px) scale(0.85); }
}

@keyframes float3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
}

/* Floating Particles - Optimized */
.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
    will-change: transform;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(135deg, var(--peach), var(--pink), var(--purple));
    border-radius: 50%;
    opacity: 0.4;
    will-change: transform, opacity;
}

.particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation: particleFloat 15s ease-in-out infinite;
}

.particle:nth-child(2) {
    left: 20%;
    top: 80%;
    animation: particleFloat 18s ease-in-out infinite 2s;
}

.particle:nth-child(3) {
    left: 80%;
    top: 30%;
    animation: particleFloat 20s ease-in-out infinite 4s;
}

.particle:nth-child(4) {
    left: 70%;
    top: 70%;
    animation: particleFloat 22s ease-in-out infinite 1s;
}

.particle:nth-child(5) {
    left: 40%;
    top: 40%;
    animation: particleFloat 17s ease-in-out infinite 3s;
}

.particle:nth-child(6) {
    left: 60%;
    top: 50%;
    animation: particleFloat 19s ease-in-out infinite 5s;
}

.particle:nth-child(7) {
    left: 30%;
    top: 60%;
    animation: particleFloat 21s ease-in-out infinite 2.5s;
}

.particle:nth-child(8) {
    left: 90%;
    top: 10%;
    animation: particleFloat 16s ease-in-out infinite 4.5s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.4;
    }
    25% {
        transform: translate(30px, -30px);
        opacity: 0.6;
    }
    50% {
        transform: translate(-20px, 40px);
        opacity: 0.3;
    }
    75% {
        transform: translate(40px, 20px);
        opacity: 0.5;
    }
}

.hero-container {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(48px, 7vw, 96px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
    min-height: 210px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.typewriter-line {
    display: block;
    width: 100%;
    text-align: center;
    min-height: 1.1em;
    position: relative;
}

.typewriter-line.line-1 {
    margin-bottom: 0;
}

.typewriter-line.line-2 {
    margin-top: 0;
}

.typewriter-text {
    display: inline;
    white-space: nowrap;
}

.typewriter-cursor {
    display: inline;
    margin-left: 2px;
    font-weight: 300;
    opacity: 1;
    color: var(--text-dark);
    position: relative;
    animation: cursorBlink 1.06s steps(2) infinite;
}

@keyframes cursorBlink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

.gradient-text {
    background: linear-gradient(135deg, #FFD4E5, #FFC4E1, #E8D4F8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

.hero-subtitle {
    font-size: clamp(18px, 2vw, 22px);
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.7;
    /* Initial state - will be animated by JS */
    opacity: 0;
    transform: translateY(20px);
}

.hero-subtitle strong {
    color: var(--text-dark);
    font-weight: 700;
    background: linear-gradient(135deg, #FFD4E5, #FFC4E1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    /* Initial state - will be animated by JS */
    opacity: 0;
    transform: translateY(20px);
}

.hero-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 25px rgba(245, 163, 208, 0.35);
}

/* Buttons */
.btn {
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    cursor: pointer;
    border: none;
    will-change: transform;
}

.btn-primary {
    background: linear-gradient(135deg, #FFB5C2, #F5A3D0, #D4A5F5);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 163, 208, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 163, 208, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--text-dark);
    border: 2px solid #f0f0f0;
}

.btn-secondary:hover {
    border-color: var(--pink);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.magnetic {
    position: relative;
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease forwards;
    opacity: 0;
}

.fade-in-delay {
    animation: fadeIn 1s ease 0.3s forwards;
    opacity: 0;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease 0.6s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
    from {
        opacity: 0;
        transform: translateY(20px);
    }
}

/* Social Proof */
.social-proof {
    padding: 80px 0;
    background: #fafafa;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px;
    text-align: center;
}

.stat-number {
    font-size: 64px;
    font-weight: 900;
    background: linear-gradient(135deg, #FFD4E5, #FFC4E1, #E8D4F8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(30px) scale(0.8);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-block;
}

.stat-number.counting {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.stat-label {
    font-size: 16px;
    color: var(--text-gray);
    font-weight: 500;
}

/* Value Section */
.value-section {
    padding: 120px 0;
}

.section-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    padding: 50px 40px;
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    will-change: transform;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: white;
}

.gradient-border {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #FFB5C2, #F5A3D0, #D4A5F5) border-box;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Services Preview */
.services-preview {
    padding: 120px 0;
    background: #fafafa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    text-decoration: none;
    color: var(--text-dark);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFB5C2, #F5A3D0, #D4A5F5);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(245, 163, 208, 0.2);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-gray);
    font-size: 15px;
}

/* Portfolio Preview */
.portfolio-preview {
    padding: 120px 0;
}

.portfolio-scroll {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 40px 0;
    scroll-behavior: smooth;
}

.portfolio-scroll::-webkit-scrollbar {
    height: 8px;
}

.portfolio-scroll::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.portfolio-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--peach), var(--pink), var(--purple));
    border-radius: 10px;
}

.portfolio-item {
    min-width: 400px;
    text-align: center;
}

/* Video placeholder - hide play overlay */
.video-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.video-placeholder iframe,
.video-placeholder video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Hide play overlay */
.play-overlay {
    display: none;
}

.portfolio-item p {
    margin-top: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.text-center {
    text-align: center;
    margin-top: 40px;
}

/* Retainer Section */
.retainer-section {
    padding: 120px 0;
    background: #fafafa;
    text-align: center;
}

.retainer-section .btn {
    margin-top: 40px;
}

/* Final CTA */
.final-cta {
    padding: 120px 0;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 181, 194, 0.1), rgba(245, 163, 208, 0.1), rgba(212, 165, 245, 0.1));
}

.cta-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.final-cta .btn {
    position: relative;
    z-index: 2;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    color: white;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #FFD4E5, #FFC4E1, #E8D4F8, transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #FFD4E5, #FFC4E1, #E8D4F8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: #999;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 16px;
    color: white;
}

.footer-col a {
    display: block;
    color: #999;
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-col a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FFD4E5, #FFC4E1, #E8D4F8);
    transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-col a:hover {
    color: #FFD4E5;
    padding-left: 20px;
}

.footer-col a:hover::before {
    width: 12px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #666;
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    /* Navigation */
    .nav-menu {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .navbar {
        padding: 15px 0;
    }
    
    .navbar.scrolled {
        padding: 12px 0;
    }
    
    .logo-img {
        height: 40px;
    }
    
    /* Mobile Navigation Menu */
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        gap: 20px;
        z-index: 999;
    }
    
    .nav-menu.active .cta-nav {
        width: 100%;
        padding: 14px 24px;
        text-align: center;
        margin-top: 10px;
    }
    
    /* Hero Section */
    .hero {
        min-height: 80vh;
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 40px;
        margin-bottom: 20px;
        min-height: 180px;
    }
    
    .typewriter-line {
        min-height: 1.2em;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        text-align: center;
        padding: 16px 30px;
    }
    
    /* Stats Grid */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stat-number {
        font-size: 48px;
    }
    
    /* Section Spacing */
    .value-section,
    .services-preview,
    .portfolio-preview,
    .retainer-section,
    .final-cta,
    .about-section,
    .mission-section,
    .how-it-works,
    .why-choose-us,
    .vertical-showcase,
    .video-creation-section,
    .contact-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .feature-card {
        padding: 40px 30px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    /* Portfolio */
    .portfolio-item {
        min-width: 280px;
    }
    
    .portfolio-scroll {
        padding: 20px 0;
    }
    
    /* Footer */
    .footer {
        padding: 60px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    /* About Cards */
    .about-grid {
        gap: 25px;
        margin-top: 40px;
        margin-bottom: 50px;
    }
    
    .about-card {
        padding: 40px 30px;
    }
    
    .about-card-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    
    .about-card h3 {
        font-size: 20px;
    }
    
    /* Stats Boxes */
    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-box {
        padding: 30px 25px;
    }
    
    .stat-number-large {
        font-size: 42px;
    }
    
    /* Mission Box */
    .mission-box {
        padding: 50px 30px;
        border-radius: 24px;
    }
    
    .mission-title-new {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .mission-text-new {
        font-size: 16px;
    }
    
    /* How It Works Steps */
    .steps-container {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-top: 40px;
    }
    
    .step-card {
        padding: 60px 30px 40px;
    }
    
    .step-connector {
        display: none;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
    }
    
    .step-number-badge {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    /* Why Choose Us */
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .reason-card {
        padding: 40px 30px;
    }
    
    .reason-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    
    /* Vertical Showcase */
    .vertical-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0;
    }
    
    .showcase-header {
        margin-bottom: 50px;
    }
    
    .social-icons-float {
        gap: 15px;
        margin-top: 30px;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
    }
    
    .showcase-cta {
        margin-top: 50px;
    }
    
    .category-tag,
    .stat-badge {
        font-size: 11px;
        padding: 6px 12px;
    }
    
    /* Video Creation Section */
    .creation-header {
        margin-bottom: 60px;
    }
    
    .showcase-grid {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 25px;
    }
    
    .showcase-card {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        max-width: 100%;
        margin: 0 auto;
        padding: 30px 25px;
    }
    
    .showcase-card h3 {
        font-size: 20px;
    }
    
    .showcase-center {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        margin: 30px auto;
    }
    
    .center-video-frame {
        width: 100%;
        max-width: 320px;
        height: 400px;
        margin: 0 auto;
    }
    
    .floating-icon {
        width: 45px;
        height: 45px;
    }
    
    .icon-youtube {
        top: -15px;
        left: -15px;
    }
    
    .icon-tiktok {
        left: -25px;
    }
    
    .icon-meta {
        right: -25px;
        bottom: 20px;
    }
    
    /* Contact Section */
    .contact-header {
        margin-bottom: 50px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-video {
        order: 2;
    }
    
    .contact-form-wrapper {
        order: 1;
        padding: 35px 25px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .video-info h3 {
        font-size: 22px;
    }
    
    .video-info {
        margin-top: 20px;
    }
    
    /* Gradient Shapes - Reduce on Mobile */
    .gradient-shape {
        opacity: 0.08;
    }
    
    .shape-1,
    .shape-2,
    .shape-3 {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .hero-title {
        font-size: 32px;
        min-height: 150px;
    }
    
    .typewriter-line {
        min-height: 1.3em;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 15px;
    }
    
    .btn {
        padding: 14px 25px;
        font-size: 15px;
    }
    
    .stat-number {
        font-size: 40px;
    }
    
    .stat-number-large {
        font-size: 36px;
    }
    
    .feature-card,
    .service-card,
    .about-card,
    .step-card,
    .reason-card {
        padding: 30px 20px;
    }
    
    .mission-box {
        padding: 40px 25px;
    }
    
    .mission-title-new {
        font-size: 28px;
    }
    
    .mission-text-new {
        font-size: 15px;
    }
    
    .center-video-frame {
        width: 100%;
        max-width: 280px;
        height: 350px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .footer {
        padding: 50px 0 20px;
    }
}

/* About Section - Redesigned */
.about-section {
    padding: 120px 0;
    background: white;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    margin-bottom: 80px;
}

.about-card {
    background: white;
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
}

.about-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--peach), var(--pink), var(--purple));
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.about-card:hover::before {
    opacity: 1;
}

.about-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(245, 163, 208, 0.25);
}

.about-card-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 181, 194, 0.1), rgba(245, 163, 208, 0.1), rgba(212, 165, 245, 0.1));
    border-radius: 20px;
    transition: all 0.4s ease;
}

.about-card:hover .about-card-icon {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, rgba(255, 181, 194, 0.15), rgba(245, 163, 208, 0.2), rgba(212, 165, 245, 0.2));
}

.about-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.about-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-box {
    background: linear-gradient(135deg, rgba(255, 181, 194, 0.05), rgba(245, 163, 208, 0.05), rgba(212, 165, 245, 0.05));
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.stat-box:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, rgba(255, 181, 194, 0.1), rgba(245, 163, 208, 0.1), rgba(212, 165, 245, 0.1));
    border-color: var(--pink);
}

.stat-number-large {
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, #FFB5C2, #F5A3D0, #D4A5F5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label-large {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-gray);
}

/* Mission Section - Redesigned to Match Reference */
.mission-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.mission-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 60px;
    background: linear-gradient(135deg, #FFB5C2, #F5A3D0, #D4A5F5);
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(245, 163, 208, 0.3);
    position: relative;
    overflow: hidden;
}

.mission-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: missionGlow 8s ease-in-out infinite;
}

@keyframes missionGlow {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.5;
    }
    50% {
        transform: translate(10%, 10%);
        opacity: 1;
    }
}

.mission-title-new {
    font-size: 48px;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mission-text-new {
    font-size: 22px;
    line-height: 1.7;
    color: white;
    font-weight: 500;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .about-section,
    .mission-section {
        padding: 80px 0;
    }
    
    .about-grid {
        gap: 25px;
    }
    
    .about-card {
        padding: 40px 30px;
    }
    
    .about-card h3 {
        font-size: 20px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-number-large {
        font-size: 48px;
    }
    
    .mission-box {
        padding: 60px 40px;
        border-radius: 24px;
    }
    
    .mission-title-new {
        font-size: 36px;
    }
    
    .mission-text-new {
        font-size: 18px;
    }
}

/* How It Works */
.how-it-works {
    padding: 120px 0;
    background: #fafafa;
    position: relative;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    position: relative;
}

.step-card {
    background: white;
    padding: 50px 30px;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    border: 2px solid transparent;
}

.step-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--peach), var(--pink), var(--purple));
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.step-card:hover::before {
    opacity: 1;
}

.step-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 60px rgba(245, 163, 208, 0.25);
}

.step-number-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFB5C2, #F5A3D0, #D4A5F5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    color: white;
    box-shadow: 0 8px 20px rgba(245, 163, 208, 0.4);
    transition: all 0.4s ease;
}

.step-card:hover .step-number-badge {
    transform: translateX(-50%) scale(1.2) rotate(360deg);
}

.step-icon {
    margin: 30px auto 25px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 181, 194, 0.1), rgba(245, 163, 208, 0.1), rgba(212, 165, 245, 0.1));
    border-radius: 20px;
    transition: all 0.4s ease;
}

.step-card:hover .step-icon {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, rgba(255, 181, 194, 0.2), rgba(245, 163, 208, 0.2), rgba(212, 165, 245, 0.2));
}

.step-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.step-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

.step-connector {
    position: absolute;
    top: 50%;
    right: -30px;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--pink), var(--purple));
    transform: translateY(-50%);
}

.step-card:last-child .step-connector {
    display: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .step-connector {
        display: none;
    }
}

@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-visual {
        height: 450px;
        margin: 0 auto;
        max-width: 500px;
    }
    
    .values-grid-about {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-section,
    .mission-section,
    .how-it-works {
        padding: 80px 0;
    }
    
    .values-grid-about {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-visual {
        height: 400px;
    }
    
    .visual-card {
        width: 220px !important;
        padding: 30px 20px;
    }
    
    .card-number {
        font-size: 48px;
    }
    
    .mission-content {
        padding: 40px 30px;
    }
    
    .mission-title {
        font-size: 36px;
    }
    
    .mission-text {
        font-size: 18px;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .step-card {
        padding: 60px 30px 40px;
    }
}

/* Why Choose Us */
.why-choose-us {
    padding: 120px 0;
    background: #fafafa;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.reason-card {
    background: white;
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    text-align: center;
}

.reason-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.reason-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 181, 194, 0.1), rgba(245, 163, 208, 0.1), rgba(212, 165, 245, 0.1));
    border-radius: 20px;
    transition: all 0.3s ease;
}

.reason-card:hover .reason-icon {
    transform: scale(1.1) rotate(5deg);
}

.reason-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.reason-card p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Responsive Updates */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-visual {
        height: 400px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .step-card {
        grid-column: span 1 !important;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        grid-column: span 1 !important;
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .visual-card {
        width: 200px !important;
        padding: 30px;
    }
    
    .card-number {
        font-size: 42px;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .step-arrow {
        display: none;
    }
}

/* Vertical Video Showcase Section */
.vertical-showcase {
    padding: 120px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.showcase-bg-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.08;
}

.bg-shape-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--peach), var(--pink));
    top: -100px;
    left: -100px;
    animation: bgFloat1 25s ease-in-out infinite;
}

.bg-shape-2 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    bottom: -150px;
    right: -150px;
    animation: bgFloat2 30s ease-in-out infinite;
}

.bg-shape-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--purple), var(--peach));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: bgFloat3 35s ease-in-out infinite;
}

@keyframes bgFloat1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(100px, 100px); }
}

@keyframes bgFloat2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-80px, -80px); }
}

@keyframes bgFloat3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.3); }
}

.showcase-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

/* Floating Social Icons */
.social-icons-float {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.social-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    cursor: pointer;
}

.instagram-icon {
    animation: socialFloat1 4s ease-in-out infinite;
}

.tiktok-icon {
    animation: socialFloat2 5s ease-in-out infinite;
}

.youtube-icon {
    animation: socialFloat3 6s ease-in-out infinite;
}

@keyframes socialFloat1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes socialFloat2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes socialFloat3 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.social-icon:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 8px 30px rgba(245, 163, 208, 0.3);
}

/* Vertical Grid */
.vertical-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.vertical-card {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.vertical-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--peach), var(--pink), var(--purple));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.vertical-card:hover::before {
    opacity: 1;
}

.vertical-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(245, 163, 208, 0.25);
}

/* Category Tag */
.category-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, rgba(255, 181, 194, 0.9), rgba(245, 163, 208, 0.9));
    color: white;
    z-index: 3;
    transition: all 0.3s ease;
}

.vertical-card:hover .category-tag {
    transform: scale(1.05);
}

/* Vertical Video Container */
.vertical-video {
    aspect-ratio: 9 / 16;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8e8e8, #d0d0d0);
    transition: transform 0.5s ease;
}

.vertical-card:hover .video-thumbnail {
    transform: scale(1.1);
}

/* Gradient Overlay */
.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 181, 194, 0.3), rgba(245, 163, 208, 0.3), rgba(212, 165, 245, 0.3));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.vertical-card:hover .gradient-overlay {
    opacity: 1;
}

/* Play Button - Hidden */
.play-button {
    display: none;
}

/* Video Thumbnail */
.video-thumbnail {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8e8e8, #d0d0d0);
    transition: transform 0.5s ease;
    position: relative;
}

.video-thumbnail iframe,
.video-thumbnail video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
}

.vertical-card:hover .video-thumbnail {
    transform: scale(1.05);
}

/* Stat Badge */
.stat-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    z-index: 3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.vertical-card:hover .stat-badge {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(255, 181, 194, 0.95), rgba(245, 163, 208, 0.95));
    color: white;
}

/* Showcase CTA */
.showcase-cta {
    text-align: center;
    margin-top: 80px;
    position: relative;
    z-index: 1;
}

.glow-btn {
    position: relative;
    overflow: hidden;
}

.glow-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: btnGlow 3s linear infinite;
}

@keyframes btnGlow {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.glow-btn:hover {
    box-shadow: 0 0 30px rgba(245, 163, 208, 0.6), 0 0 60px rgba(245, 163, 208, 0.4);
}

/* Parallax Effect on Scroll */
.vertical-card {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease;
}

/* 3D Tilt Effect (Optional Enhancement) */
.vertical-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* Staggered Animation */
.vertical-card {
    opacity: 0;
    transform: translateY(50px);
    animation: cardFadeUp 0.8s ease forwards;
}

.vertical-card:nth-child(1) { animation-delay: 0.1s; }
.vertical-card:nth-child(2) { animation-delay: 0.2s; }
.vertical-card:nth-child(3) { animation-delay: 0.3s; }
.vertical-card:nth-child(4) { animation-delay: 0.4s; }
.vertical-card:nth-child(5) { animation-delay: 0.5s; }
.vertical-card:nth-child(6) { animation-delay: 0.6s; }
.vertical-card:nth-child(7) { animation-delay: 0.7s; }
.vertical-card:nth-child(8) { animation-delay: 0.8s; }
.vertical-card:nth-child(9) { animation-delay: 0.9s; }

@keyframes cardFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .vertical-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .vertical-showcase {
        padding: 80px 0;
    }
    
    .vertical-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .showcase-header {
        margin-bottom: 50px;
    }
    
    .social-icons-float {
        gap: 20px;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
    }
    
    .showcase-cta {
        margin-top: 50px;
    }
    
    .category-tag,
    .stat-badge {
        font-size: 11px;
        padding: 6px 12px;
    }
}

/* Advanced: Mouse Move Tilt Effect */
@media (hover: hover) and (pointer: fine) {
    .vertical-card {
        transition: transform 0.1s ease-out;
    }
}

/* Glow Shadow Under Grid */
.vertical-grid::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100px;
    background: radial-gradient(ellipse, rgba(245, 163, 208, 0.15), transparent);
    filter: blur(40px);
    pointer-events: none;
    z-index: -1;
}

/* ===== GLOBAL ANIMATION ENHANCEMENTS ===== */

/* Smooth page transitions */
body {
    animation: pageLoad 0.6s ease-out;
}

@keyframes pageLoad {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Enhanced button animations */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

/* Section title animations */
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--peach), var(--pink), var(--purple));
    border-radius: 2px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-title.in-view::after {
    width: 100%;
}

/* Card hover glow effect */
.feature-card,
.service-card,
.reason-card,
.testimonial-card,
.portfolio-card {
    position: relative;
}

.feature-card::after,
.service-card::after,
.reason-card::after,
.testimonial-card::after,
.portfolio-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--peach), var(--pink), var(--purple));
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(10px);
}

.feature-card:hover::after,
.service-card:hover::after,
.reason-card:hover::after,
.testimonial-card:hover::after,
.portfolio-card:hover::after {
    opacity: 0.25;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Optimize scroll performance on mobile */
@media (max-width: 768px) {
    /* Disable animations on mobile for better performance */
    .particle,
    .gradient-shape {
        animation: none !important;
        display: none;
    }
    
    /* Reduce blur effects on mobile */
    .gradient-shape {
        filter: blur(60px);
    }
    
    /* Simplify hover effects on mobile */
    .feature-card:hover,
    .service-card:hover,
    .step-card:hover,
    .reason-card:hover {
        transform: translateY(-5px);
    }
}

/* Link hover effects */
a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Image lazy load animation */
img {
    animation: imageLoad 0.6s ease-out;
}

@keyframes imageLoad {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Gradient text animation */
.gradient-text {
    background-size: 200% auto;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

/* Floating animation for icons */
@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.feature-icon,
.reason-icon,
.step-icon {
    animation: iconFloat 3s ease-in-out infinite;
}

.feature-card:nth-child(2) .feature-icon,
.reason-card:nth-child(2) .reason-icon {
    animation-delay: 0.5s;
}

.feature-card:nth-child(3) .feature-icon,
.reason-card:nth-child(3) .reason-icon {
    animation-delay: 1s;
}

/* Pulse animation for CTAs */
@keyframes ctaPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(245, 163, 208, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(245, 163, 208, 0.5);
    }
}

.btn-primary {
    animation: ctaPulse 2s ease-in-out infinite;
}

/* Skeleton loading animation */
@keyframes skeleton {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.video-placeholder {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton 1.5s ease-in-out infinite;
}

/* Stagger animation utility */
.stagger-animation > * {
    opacity: 0;
    transform: translateY(30px);
    animation: staggerFadeUp 0.6s ease forwards;
}

.stagger-animation > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-animation > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-animation > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-animation > *:nth-child(4) { animation-delay: 0.4s; }
.stagger-animation > *:nth-child(5) { animation-delay: 0.5s; }
.stagger-animation > *:nth-child(6) { animation-delay: 0.6s; }

@keyframes staggerFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Shimmer effect for premium elements */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.shimmer {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* Rotate animation for decorative elements */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Scale pulse for attention */
@keyframes scalePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Bounce animation */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Fade in from sides */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Glow pulse effect */
@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(245, 163, 208, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(245, 163, 208, 0.6);
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Performance optimization - Remove will-change after animations */
.feature-card,
.service-card,
.step-card,
.reason-card,
.vertical-card,
.testimonial-card,
.portfolio-card {
    will-change: auto;
}

.feature-card:hover,
.service-card:hover,
.step-card:hover,
.reason-card:hover,
.vertical-card:hover,
.testimonial-card:hover,
.portfolio-card:hover {
    will-change: transform;
}

/* Smooth transitions for all interactive elements */
button,
a,
input,
textarea,
select {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Focus states for accessibility */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--pink);
    outline-offset: 3px;
}

/* ===== VIDEO CREATION SHOWCASE SECTION ===== */
.video-creation-section {
    padding: 120px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.creation-header {
    text-align: center;
    margin-bottom: 100px;
}

.section-title-large {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-subtitle-large {
    font-size: clamp(18px, 2vw, 22px);
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.creation-showcase {
    position: relative;
    min-height: 800px;
}

.showcase-grid {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    height: 800px;
}

/* Showcase Cards */
.showcase-card {
    position: absolute;
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    max-width: 350px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.showcase-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--peach), var(--pink), var(--purple));
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.showcase-card:hover::before {
    opacity: 1;
}

.showcase-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(245, 163, 208, 0.25);
}

.showcase-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.showcase-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
}

/* Card Positions */
.card-left-top {
    top: 0;
    left: 0;
}

.card-right-top {
    top: 0;
    right: 0;
}

.card-left-bottom {
    bottom: 0;
    left: 0;
}

.card-right-bottom {
    bottom: 0;
    right: 0;
}

/* Center Video Frame */
.showcase-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.center-video-frame {
    position: relative;
    width: 450px;
    height: 550px;
}

.video-mockup {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFB5C2, #F5A3D0, #D4A5F5);
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(212, 165, 245, 0.3);
    position: relative;
    overflow: hidden;
}

.mockup-content {
    width: 100%;
    height: calc(100% - 60px);
    background: linear-gradient(135deg, #FFE5EC, #FFD6E8);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

/* Add image to mockup */
.mockup-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* If no image, show gradient */
.mockup-content:empty {
    background: linear-gradient(135deg, #d0a8ff, #f0b8e0);
}

.video-controls {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 12px 15px;
    border-radius: 15px;
}

.play-pause-btn {
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-pause-btn:hover {
    transform: scale(1.2);
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    width: 60%;
    height: 100%;
    background: white;
    border-radius: 3px;
    animation: progressMove 3s ease-in-out infinite;
}

@keyframes progressMove {
    0%, 100% { width: 60%; }
    50% { width: 80%; }
}

/* Floating Social Icons */
.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    animation: iconFloat 3s ease-in-out infinite;
}

.floating-icon:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 35px rgba(245, 163, 208, 0.3);
}

.icon-youtube {
    top: -30px;
    left: -40px;
    animation-delay: 0s;
}

.icon-tiktok {
    top: 50%;
    left: -60px;
    transform: translateY(-50%);
    animation-delay: 0.5s;
}

.icon-meta {
    bottom: 50px;
    right: -50px;
    animation-delay: 1s;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Parallax Effect */
.parallax-card {
    transition: transform 0.3s ease-out;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .showcase-card {
        max-width: 300px;
        padding: 30px;
    }
    
    .center-video-frame {
        width: 380px;
        height: 480px;
    }
}

@media (max-width: 1200px) {
    .showcase-grid {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    .showcase-card {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .showcase-center {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        margin: 40px auto;
    }
    
    .center-video-frame {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .video-creation-section {
        padding: 80px 0;
    }
    
    .creation-header {
        margin-bottom: 60px;
    }
    
    .showcase-card {
        padding: 30px 25px;
    }
    
    .showcase-card h3 {
        font-size: 20px;
    }
    
    .center-video-frame {
        width: 320px;
        height: 400px;
    }
    
    .floating-icon {
        width: 50px;
        height: 50px;
    }
    
    .icon-youtube {
        top: -20px;
        left: -20px;
    }
    
    .icon-tiktok {
        left: -30px;
    }
    
    .icon-meta {
        right: -30px;
        bottom: 30px;
    }
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    position: relative;
}

.contact-header {
    text-align: center;
    margin-bottom: 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* Video Side */
.contact-video {
    position: relative;
}

.video-container {
    position: relative;
}

.video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.video-frame:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(245, 163, 208, 0.3);
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFB5C2, #F5A3D0, #D4A5F5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.video-thumbnail::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: videoGlow 3s ease-in-out infinite;
}

@keyframes videoGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.video-play-btn {
    display: none;
}

.video-info {
    margin-top: 30px;
    text-align: center;
}

.video-info h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.video-info p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Contact Form Side */
.contact-form-wrapper {
    background: white;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.contact-form-wrapper:hover {
    border-color: var(--pink);
    box-shadow: 0 15px 50px rgba(245, 163, 208, 0.15);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: white;
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pink);
    box-shadow: 0 0 0 4px rgba(245, 163, 208, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23666' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 50px;
}

.btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(245, 163, 208, 0.4);
}

.btn-submit:active {
    transform: translateY(-1px);
}

/* Form validation states */
.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: #ff6b6b;
}

.form-group input:valid:not(:placeholder-shown),
.form-group select:valid,
.form-group textarea:valid:not(:placeholder-shown) {
    border-color: #51cf66;
}

/* Success message */
.form-success {
    background: linear-gradient(135deg, rgba(81, 207, 102, 0.1), rgba(81, 207, 102, 0.05));
    border: 2px solid #51cf66;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    color: #2b8a3e;
    font-weight: 600;
    display: none;
}

.form-success.show {
    display: block;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-video {
        order: 2;
    }
    
    .contact-form-wrapper {
        order: 1;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-header {
        margin-bottom: 50px;
    }
    
    .contact-form-wrapper {
        padding: 35px 25px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .video-info h3 {
        font-size: 24px;
    }
}
.video-wrapper {
    display: flex;
    justify-content: center;   /* centers horizontally */
    padding-left: 40px;        /* left padding */
}

.video-wrapper iframe {
    width: 65%;                /* adjust as needed */
    height: 850px;             /* set proper height */
}


/* ===== VIDEO EDITING & COLOR GRADING SECTIONS (HOMEPAGE) ===== */
.video-editing-home {
    background: #FFFFFF;
    padding: 100px 0;
}

.color-grading-home {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.color-grading-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 181, 194, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 165, 245, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.color-grading-home .container {
    position: relative;
    z-index: 2;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.split-reverse-home {
    direction: rtl;
}

.split-reverse-home > * {
    direction: ltr;
}

.split-image-home {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.split-image-home img {
    width: 100%;
    height: auto;
    display: block;
}

.color-wheel-img {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.split-content-home {
    padding: 0 16px;
}

.section-title-home {
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.2;
}

.color-grading-home .section-title-home {
    color: #FFFFFF;
}

.section-text-home {
    font-size: 16px;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 16px;
}

.color-grading-home .section-text-home {
    color: rgba(255, 255, 255, 0.85);
}

.feature-list-home {
    list-style: none;
    padding: 0;
    margin: 24px 0 32px;
}

.feature-list-home li {
    font-size: 16px;
    color: #1a1a1a;
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 32px;
    position: relative;
}

.feature-list-home li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #F5A3D0;
    font-weight: 700;
    font-size: 18px;
}

/* ===== HORIZONTAL SCROLLING TOOLS SECTION ===== */
.tools-scroll-section {
    background: #fafafa;
    padding: 80px 0;
    overflow: hidden;
}

.tools-scroll-section .section-title {
    text-align: center;
    margin-bottom: 16px;
}

.tools-scroll-section .section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666666;
    margin-bottom: 48px;
}

.scroll-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.scroll-track {
    display: flex;
    gap: 32px;
    animation: scrollLeft 30s linear infinite;
    width: fit-content;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.scroll-item {
    flex-shrink: 0;
    width: 200px;
    height: 100px;
    background: #FFFFFF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.scroll-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.tool-logo {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
}

/* ===== NAVIGATION FIXES ===== */
/* Transparent on homepage hero, solid on scroll */
body.home-page .navbar {
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
}

body.home-page .navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(255, 212, 229, 0.3);
}

/* Solid background on all other pages */
body:not(.home-page) .navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(255, 212, 229, 0.3);
}

/* ===== RESPONSIVE STYLES FOR NEW SECTIONS ===== */
@media (max-width: 1024px) {
    .split-layout {
        gap: 48px;
    }
    
    .video-editing-home,
    .color-grading-home {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .split-reverse-home {
        direction: ltr;
    }
    
    .split-content-home {
        padding: 0;
    }
    
    .section-title-home {
        font-size: 32px;
    }
    
    .section-text-home {
        font-size: 15px;
    }
    
    .feature-list-home li {
        font-size: 15px;
    }
    
    .video-editing-home,
    .color-grading-home {
        padding: 70px 0;
    }
    
    .tools-scroll-section {
        padding: 60px 0;
    }
    
    .scroll-item {
        width: 150px;
        height: 80px;
    }
    
    .tool-logo {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .section-title-home {
        font-size: 28px;
    }
    
    .section-text-home,
    .feature-list-home li {
        font-size: 14px;
    }
    
    .video-editing-home,
    .color-grading-home {
        padding: 50px 0;
    }
    
    .tools-scroll-section {
        padding: 50px 0;
    }
    
    .scroll-item {
        width: 120px;
        height: 70px;
    }
    
    .tool-logo {
        font-size: 13px;
    }
}


/* ===== ENHANCED HOVER EFFECTS ===== */
.service-card,
.feature-card,
.about-card,
.vertical-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover,
.feature-card:hover,
.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(245, 163, 208, 0.2);
}

.vertical-card:hover {
    transform: translateY(-5px) scale(1.02);
}

/* Button Gradient Hover */
.btn-primary:hover {
    background: linear-gradient(135deg, #F5A3D0, #D4A5F5, #FFB5C2);
    transform: translateY(-2px);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, rgba(255, 181, 194, 0.1), rgba(245, 163, 208, 0.1));
}

/* ===== FLOATING ACCENT SHAPES ===== */
.floating-accent {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
}

.accent-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #FFB5C2, #F5A3D0);
    top: 10%;
    right: 5%;
}

.accent-2 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #F5A3D0, #D4A5F5);
    bottom: 15%;
    left: 8%;
}

/* Add to sections that need accent shapes */
.value-section,
.services-preview {
    position: relative;
    overflow: hidden;
}

/* ===== LIGHT PARALLAX EFFECT ===== */
.hero {
    position: relative;
}

.hero-bg-gradient {
    transition: transform 0.1s ease-out;
}

/* ===== REMOVE ALL DELAYED ANIMATIONS ===== */
* {
    animation-delay: 0s !important;
}

/* Ensure immediate visibility */
.fade-in,
.fade-in-delay,
.fade-in-delay-2 {
    opacity: 1 !important;
    transform: translateY(0) !important;
    animation: none !important;
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
/* GPU acceleration for smooth animations */
.service-card,
.feature-card,
.about-card,
.vertical-card,
.btn {
    will-change: transform;
    transform: translateZ(0);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
