/* ===== GLOBAL STYLES ===== */
:root {
    --primary: #9d4edd;
    --primary-light: #c77dff;
    --primary-dark: #5a189a;
    --accent: #e0aaff;
    --text-primary: #ffffff;
    --text-secondary: #c0c0c0;
    --bg-dark: #0a0014;
    --bg-card: #1a0a2e;
    --border: rgba(157, 78, 221, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0a0014 0%, #1a0a2e 50%, #2d0a47 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    zoom: 90%;
}

/* ===== FLOATING NAV ===== */
.floating-nav {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: auto;
    max-width: 500px;
    padding: 0 20px;
}

.nav-content {
    background: rgba(26, 10, 46, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.nav-content:hover {
    border-color: rgba(157, 78, 221, 0.5);
    background: rgba(26, 10, 46, 0.95);
    box-shadow: 0 12px 40px rgba(157, 78, 221, 0.15);
}

.nav-logo {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(157, 78, 221, 0.3);
    flex-shrink: 0;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.nav-logo:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(157, 78, 221, 0.5);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--accent);
    font-size: 1rem;
    text-decoration: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(157, 78, 221, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background: rgba(157, 78, 221, 0.3);
    color: var(--primary-light);
    transform: translateY(-3px);
}

.nav-cta {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(157, 78, 221, 0.3);
    flex-shrink: 0;
}

.nav-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(157, 78, 221, 0.5);
}

@media (max-width: 600px) {
    .nav-content {
        gap: 12px;
        padding: 10px 16px;
    }
    .nav-links a, .nav-cta {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 60px 120px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.15) 0%, transparent 70%);
    top: -200px;
    right: 10%;
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    flex: 1;
    z-index: 2;
    max-width: 600px;
    animation: slideInLeft 1s ease;
}

.hero-badge {
    display: inline-block;
    background: rgba(157, 78, 221, 0.15);
    border: 1px solid rgba(157, 78, 221, 0.3);
    border-radius: 30px;
    padding: 8px 20px;
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-content h1 {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 300;
}

.hero-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.hero-card {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.1) 0%, rgba(90, 25, 154, 0.05) 100%);
    border: 1px solid rgba(157, 78, 221, 0.2);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-card:hover {
    border-color: rgba(157, 78, 221, 0.5);
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.15) 0%, rgba(90, 25, 154, 0.08) 100%);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--primary-light);
}

.video-card .card-icon {
    color: #ff6b9d;
}

.design-card .card-icon {
    color: #c77dff;
}

.hero-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.hero-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 13px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--text-primary);
    box-shadow: 0 8px 25px rgba(157, 78, 221, 0.3);
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(157, 78, 221, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-outline:hover {
    background: rgba(157, 78, 221, 0.1);
    border-color: var(--primary-light);
    transform: translateY(-3px);
}

.hero-visual {
    flex: 1;
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-character {
    width: clamp(70%, 80%, 100%);
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(157, 78, 221, 0.3));
    transform: translateY(clamp(-15px, -30px, -40px));
    animation: float 3s ease-in-out infinite;
}

@media (max-width: 1024px) {
    .floating-character {
        width: clamp(130%, 160%, 180%);
        transform: translateY(-15px);
    }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding: 60px 30px 100px;
    }
    
    .hero-visual {
        height: 400px;
        margin-top: 40px;
    }
    
    .floating-character {
        width: 110%;
        transform: translateY(-10px);
    }
}

@media (max-width: 480px) {
    .hero-visual {
        height: 300px;
    }
    
    .floating-character {
        width: 100%;
        transform: translateY(-5px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-30px);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== SERVICES SHOWCASE ===== */
.services {
    padding: 100px 60px;
    background: linear-gradient(180deg, transparent 0%, rgba(157, 78, 221, 0.05) 100%);
    position: relative;
    z-index: 1;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 300;
}

.services-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-showcase {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.1) 0%, rgba(90, 25, 154, 0.05) 100%);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 45px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-showcase:hover {
    border-color: rgba(157, 78, 221, 0.5);
    transform: translateY(-15px);
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.15) 0%, rgba(90, 25, 154, 0.1) 100%);
    box-shadow: 0 25px 60px rgba(157, 78, 221, 0.15);
}

.service-showcase:hover::before {
    opacity: 1;
}

.showcase-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.showcase-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.2), rgba(199, 125, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.video-icon {
    color: #ff6b9d;
}

.design-icon {
    color: #c77dff;
}

.showcase-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
}

.showcase-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.showcase-list {
    list-style: none;
    margin-bottom: 25px;
}

.showcase-list li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.5;
}

.badge {
    display: inline-block;
    background: rgba(157, 78, 221, 0.2);
    color: var(--primary-light);
    padding: 3px 10px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-right: 6px;
    flex-shrink: 0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 12px;
    color: var(--accent);
}

/* ===== NEWS SECTION ===== */
.news {
    padding: 100px 60px;
    background: linear-gradient(180deg, rgba(157, 78, 221, 0.05) 0%, transparent 100%);
    position: relative;
    z-index: 1;
}

.news-container {
    max-width: 1200px;
    margin: 0 auto;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.news-card {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.12) 0%, rgba(90, 25, 154, 0.06) 100%);
    border: 1px solid rgba(157, 78, 221, 0.25);
    border-radius: 15px;
    padding: 35px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.news-card:hover {
    border-color: rgba(157, 78, 221, 0.5);
    transform: translateY(-10px);
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.18) 0%, rgba(90, 25, 154, 0.1) 100%);
    box-shadow: 0 20px 50px rgba(157, 78, 221, 0.15);
}

.news-card:hover::before {
    opacity: 1;
}

.news-icon {
    font-size: 2.5rem;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.news-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.news-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    width: fit-content;
}

.news-link:hover {
    gap: 12px;
    color: var(--accent);
}

/* ===== CTA SECTION ===== */
.cta {
    padding: 100px 60px;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.1) 0%, rgba(90, 25, 154, 0.05) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.cta-content > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 50px;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.cta-option {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.12) 0%, rgba(90, 25, 154, 0.06) 100%);
    border: 1px solid rgba(157, 78, 221, 0.25);
    border-radius: 15px;
    padding: 35px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cta-option:hover {
    border-color: rgba(157, 78, 221, 0.5);
    transform: translateY(-10px);
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.18) 0%, rgba(90, 25, 154, 0.1) 100%);
    box-shadow: 0 20px 50px rgba(157, 78, 221, 0.15);
}

.option-icon {
    font-size: 2.5rem;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.cta-option h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-option p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 80px 60px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.contact-content > p {
    color: var(--text-secondary);
    margin-bottom: 35px;
    font-size: 1rem;
    font-weight: 300;
}

.contact-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-link {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.15), rgba(199, 125, 255, 0.08));
    border: 1px solid rgba(157, 78, 221, 0.3);
    color: var(--accent);
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.contact-link:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--text-primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.3);
}

.contact-link.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.contact-link.disabled:hover {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.15), rgba(199, 125, 255, 0.08));
    color: var(--accent);
    border-color: rgba(157, 78, 221, 0.3);
    transform: none;
    box-shadow: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        padding: 60px 30px 80px;
    }
    
    .hero-visual {
        height: 350px;
        margin-top: 30px;
        order: -1;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 50px 20px 80px;
        flex-direction: column;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-visual {
        height: 300px;
        margin-top: 20px;
        order: -1;
    }
    
    .floating-character {
        width: 100% !important;
        transform: translateY(0) !important;
    }
    
    .hero-cards {
        grid-template-columns: 1fr;
    }
    
    .services {
        padding: 60px 30px;
    }
    
    .services-showcase {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-showcase {
        padding: 35px;
    }
    
    .cta {
        padding: 60px 30px;
    }
    
    .cta-options {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact {
        padding: 60px 30px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 20px 60px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content > p {
        font-size: 0.95rem;
    }
    
    .hero-visual {
        height: 250px;
        margin-top: 20px;
    }
    
    .floating-character {
        width: 100% !important;
        transform: translateY(0) !important;
    }
    
    .hero-cards {
        gap: 10px;
    }
    
    .hero-card {
        padding: 20px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.85rem;
    }
    
    .services {
        padding: 40px 20px;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .services-showcase {
        gap: 15px;
    }
    
    .service-showcase {
        padding: 25px;
    }
    
    .showcase-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .showcase-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .cta {
        padding: 40px 20px;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .contact {
        padding: 40px 20px;
    }
    
    .contact-content h2 {
        font-size: 1.5rem;
    }
    
    .contact-links {
        gap: 10px;
    }
    
    .contact-link {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}