/* ===== GLOBAL STYLES ===== */
:root {
    --primary: #9d4edd;
    --primary-light: #c77dff;
    --primary-dark: #5a189a;
    --accent: #e0aaff;
    --design-accent: #c77dff;
    --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;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

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;
    user-select: none;
    -webkit-user-select: none;
    zoom: 90%;
}

img {
    user-drag: none;
    -webkit-user-drag: none;
    pointer-events: none;
    -webkit-touch-callout: none;
}

/* ===== FLOATING NAV ===== */
.floating-nav {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: auto;
    max-width: 680px;
    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(--design-accent) 0%, #c77dff 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(199, 125, 255, 0.3);
    flex-shrink: 0;
}

.nav-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(199, 125, 255, 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;
    }
    .nav-links {
        gap: 10px;
    }
}

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

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

.hero-content {
    flex: 1;
    z-index: 2;
    max-width: 700px;
    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(--design-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-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(--design-accent) 0%, #c77dff 100%);
    color: var(--text-primary);
    box-shadow: 0 8px 25px rgba(199, 125, 255, 0.3);
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(199, 125, 255, 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);
}

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

/* ===== PORTFOLIO SECTION ===== */
.portfolio-section {
    padding: 100px 60px;
    background: linear-gradient(180deg, transparent 0%, rgba(199, 125, 255, 0.05) 100%);
    position: relative;
    z-index: 1;
}

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

.portfolio-desc {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 50px;
    font-weight: 300;
}

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

.portfolio-item {
    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;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.portfolio-item:hover {
    border-color: rgba(199, 125, 255, 0.5);
    transform: translateY(-15px);
    background: linear-gradient(135deg, rgba(199, 125, 255, 0.15) 0%, rgba(90, 25, 154, 0.1) 100%);
    box-shadow: 0 25px 60px rgba(199, 125, 255, 0.15);
}

.portfolio-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.2), rgba(199, 125, 255, 0.1));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(199, 125, 255, 0.5);
    gap: 10px;
}

.portfolio-placeholder p {
    font-size: 0.9rem;
    color: var(--accent);
}

.portfolio-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.portfolio-item h3 {
    padding: 20px 20px 10px;
    color: var(--accent);
    font-weight: 600;
}

.portfolio-item p {
    padding: 0 20px 15px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.portfolio-price {
    padding: 0 20px 15px;
    color: var(--design-accent);
    font-size: 1.2rem;
    margin-top: 10px;
    font-weight: 700;
}

.portfolio-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.portfolio-item:hover .portfolio-badge {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.portfolio-badge.completed {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.5) 0%, rgba(22, 163, 74, 0.5) 100%);
    color: #ffffff;
    border-color: rgba(34, 197, 94, 0.7);
}

.portfolio-badge.completed:hover {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.7) 0%, rgba(22, 163, 74, 0.7) 100%);
}

.portfolio-badge.in-progress {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.5) 0%, rgba(37, 99, 235, 0.5) 100%);
    color: #ffffff;
    border-color: rgba(59, 130, 246, 0.7);
}

.portfolio-badge.in-progress:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.7) 0%, rgba(37, 99, 235, 0.7) 100%);
}

.portfolio-badge.updating {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.5) 0%, rgba(217, 119, 6, 0.5) 100%);
    color: #ffffff;
    border-color: rgba(245, 158, 11, 0.7);
}

.portfolio-badge.updating:hover {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.7) 0%, rgba(217, 119, 6, 0.7) 100%);
}

.portfolio-badge.updated {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.5) 0%, rgba(126, 34, 206, 0.5) 100%);
    color: #ffffff;
    border-color: rgba(168, 85, 247, 0.7);
}

.portfolio-badge.updated:hover {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.7) 0%, rgba(126, 34, 206, 0.7) 100%);
}

/* ===== PACKAGE DESCRIPTION ===== */
.package-description {
    padding: 0 20px 12px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: 0;
    margin-bottom: 10px;
}

.package-description strong {
    display: inline;
    margin-right: 6px;
}

.package-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
}

.package-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(199, 125, 255, 0.25) 0%, rgba(157, 78, 221, 0.15) 100%);
    border: 1px solid rgba(199, 125, 255, 0.3);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.package-badge:hover {
    background: linear-gradient(135deg, rgba(199, 125, 255, 0.4) 0%, rgba(157, 78, 221, 0.25) 100%);
    border-color: rgba(199, 125, 255, 0.5);
    transform: translateY(-2px);
}

.package-badge i {
    font-size: 0.9rem;
    color: var(--design-accent);
}

/* ===== SERVICES SECTION ===== */
.services-section {
    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);
    position: relative;
    z-index: 1;
}

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

.services-desc {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 50px;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    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: 40px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

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

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

.service-icon {
    font-size: 2.5rem;
    color: var(--design-accent);
    margin-bottom: 20px;
}

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

.service-list {
    list-style: none;
    text-align: left;
}

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

.service-list i {
    color: var(--design-accent);
}

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

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

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--design-accent) 0%, #c77dff 100%);
    color: var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 15px;
    box-shadow: 0 8px 25px rgba(199, 125, 255, 0.3);
}

.process-step h3 {
    color: var(--text-primary);
    margin-bottom: 10px;
    font-weight: 700;
}

.process-step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.process-arrow {
    font-size: 1.5rem;
    color: var(--design-accent);
    display: none;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .process-steps {
        flex-wrap: nowrap;
    }
    
    .process-arrow {
        display: block;
    }
}

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

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

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

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

.contact-btn {
    background: linear-gradient(135deg, rgba(199, 125, 255, 0.15), rgba(199, 125, 255, 0.08));
    border: 1px solid rgba(199, 125, 255, 0.3);
    color: var(--design-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-btn:hover {
    background: linear-gradient(135deg, var(--design-accent) 0%, #c77dff 100%);
    color: var(--text-primary);
    border-color: var(--design-accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(199, 125, 255, 0.3);
}

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

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero {
        padding: 60px 30px 100px;
    }
    
    .portfolio-section {
        padding: 60px 30px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-section {
        padding: 60px 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-section {
        padding: 60px 30px;
    }
    
    .contact-section {
        padding: 60px 30px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 20px 80px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content > p {
        font-size: 0.95rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.85rem;
    }
    
    .portfolio-section {
        padding: 40px 20px;
    }
    
    .portfolio-section h2 {
        font-size: 1.5rem;
    }
    
    .portfolio-grid {
        gap: 15px;
    }
    
    .services-section {
        padding: 40px 20px;
    }
    
    .services-desc {
        font-size: 0.95rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-card {
        padding: 25px;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .process-section {
        padding: 40px 20px;
    }
    
    .process-section h2 {
        font-size: 1.5rem;
        margin-bottom: 40px;
    }
    
    .process-steps {
        gap: 15px;
    }
    
    .process-step {
        min-width: 150px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .contact-section {
        padding: 40px 20px;
    }
    
    .contact-section h2 {
        font-size: 1.5rem;
    }
    
    .contact-social-btns {
        gap: 10px;
    }
    
    .contact-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}


