/* ITS DIGITAL - Custom CSS */
/* Brand Colors: Purple #8B5CF6, Dark Blue #1E1B4B, Pink #EC4899 */

:root {
    --primary-purple: #8B5CF6;
    --primary-dark-blue: #1E1B4B;
    --primary-pink: #EC4899;
    --dark-bg: #0F0F23;
    --dark-card: #1A1A2E;
    --text-light: #E2E8F0;
    --text-gray: #94A3B8;
    --gradient-primary: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    --gradient-secondary: linear-gradient(135deg, #1E1B4B 0%, #8B5CF6 100%);
    --gradient-bg: linear-gradient(135deg, #0F0F23 0%, #1A1A2E 100%);
    --shadow-glow: 0 0 30px rgba(139, 92, 246, 0.3);
    --shadow-glow-pink: 0 0 30px rgba(236, 72, 153, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

/* Scroll Progress Indicator */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--gradient-primary);
    z-index: 9999;
    transition: width 0.3s ease;
    box-shadow: var(--shadow-glow);
}

/* Custom Navbar */
.custom-navbar {
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    transition: var(--transition);
    position: relative;
}

.custom-navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.custom-navbar.scrolled {
    background: rgba(15, 15, 35, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.custom-navbar.scrolled::before {
    opacity: 0.05;
}

.navbar-brand img {
    transition: var(--transition);
}

.navbar-brand:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
}

.navbar-nav .nav-link {
    color: var(--text-light);
    font-weight: 500;
    margin: 0 0.5rem;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-purple);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0F0F23 0%, #1A1A2E 50%, #16213E 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(30, 27, 75, 0.2) 0%, transparent 70%);
    animation: heroFloat 8s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    33% { transform: translateY(-15px) scale(1.02); }
    66% { transform: translateY(-5px) scale(0.98); }
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Particle System */
.particle-system {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    will-change: auto;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.15;
    animation-duration: 25s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    filter: blur(0.5px);
    will-change: transform;
}

.floating-shape::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--gradient-primary) 0%, transparent 70%);
    opacity: 0.3;
    animation: shapeGlow 4s ease-in-out infinite;
}

@keyframes shapeGlow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-name: float1;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    top: 20%;
    right: 15%;
    animation-name: float2;
    animation-delay: 2s;
}

.shape-3 {
    width: 40px;
    height: 40px;
    bottom: 30%;
    left: 20%;
    animation-name: float3;
    animation-delay: 4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    bottom: 10%;
    right: 10%;
    animation-name: float4;
    animation-delay: 6s;
}

.shape-5 {
    width: 30px;
    height: 30px;
    top: 60%;
    left: 5%;
    animation-name: float5;
    animation-delay: 8s;
}

.shape-6 {
    width: 50px;
    height: 50px;
    top: 40%;
    right: 5%;
    animation-name: float6;
    animation-delay: 10s;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1) rotate(0deg); }
    25% { transform: translateY(-30px) translateX(15px) scale(1.2) rotate(90deg); }
    50% { transform: translateY(-50px) translateX(-10px) scale(0.8) rotate(180deg); }
    75% { transform: translateY(-15px) translateX(-20px) scale(1.1) rotate(270deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1) rotate(0deg); }
    25% { transform: translateY(-40px) translateX(-25px) scale(1.3) rotate(-90deg); }
    50% { transform: translateY(-20px) translateX(20px) scale(0.7) rotate(-180deg); }
    75% { transform: translateY(-35px) translateX(8px) scale(1.15) rotate(-270deg); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1) rotate(0deg); }
    25% { transform: translateY(-15px) translateX(25px) scale(1.4) rotate(120deg); }
    50% { transform: translateY(-35px) translateX(-15px) scale(0.6) rotate(240deg); }
    75% { transform: translateY(-8px) translateX(12px) scale(1.25) rotate(360deg); }
}

@keyframes float4 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1) rotate(0deg); }
    25% { transform: translateY(-45px) translateX(-30px) scale(0.85) rotate(-120deg); }
    50% { transform: translateY(-25px) translateX(25px) scale(1.2) rotate(-240deg); }
    75% { transform: translateY(-40px) translateX(-8px) scale(0.95) rotate(-360deg); }
}

@keyframes float5 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1) rotate(0deg); }
    25% { transform: translateY(-20px) translateX(30px) scale(1.5) rotate(45deg); }
    50% { transform: translateY(-40px) translateX(-20px) scale(0.5) rotate(90deg); }
    75% { transform: translateY(-12px) translateX(15px) scale(1.35) rotate(135deg); }
}

@keyframes float6 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1) rotate(0deg); }
    25% { transform: translateY(-35px) translateX(18px) scale(1.15) rotate(-45deg); }
    50% { transform: translateY(-50px) translateX(-12px) scale(0.85) rotate(-90deg); }
    75% { transform: translateY(-20px) translateX(-18px) scale(1.25) rotate(-135deg); }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.badge-glow {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: var(--primary-purple);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
    animation: badgeGlow 2s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2); }
    50% { box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4); }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    animation: titleReveal 1.5s ease-out;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
}

.typing-effect {
    animation: typeWriter 3s ease-out infinite;
}

@keyframes typeWriter {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero-subtitle {
    font-size: 1.375rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.5s both;
}

.floating-btn {
    position: relative;
    overflow: hidden;
    animation: buttonFloat 3s ease-in-out infinite;
}

.floating-btn:hover {
    animation-play-state: paused;
    transform: translateY(-5px);
}

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

.hero-stats {
    animation: fadeInUp 1s ease-out 0.7s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Hero Visual */
.hero-visual-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    z-index: 2;
}

.hero-card {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    background: rgba(26, 26, 46, 0.3);
    border: 1px solid rgba(139, 92, 246, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card {
    animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0px) rotateY(0deg); }
    33% { transform: translateY(-20px) rotateY(2deg); }
    66% { transform: translateY(-10px) rotateY(-1deg); }
}

.card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: 20px;
    opacity: 0.3;
    filter: blur(10px);
    animation: cardGlow 3s ease-in-out infinite;
}

@keyframes cardGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-tech-stack {
    position: relative;
    width: 300px;
    height: 300px;
}

.tech-orbit {
    position: relative;
    width: 100%;
    height: 100%;
    animation: orbitRotate 20s linear infinite;
}

@keyframes orbitRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.tech-item {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--dark-card);
    border: 2px solid var(--primary-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-purple);
    transition: all 0.3s ease;
    cursor: pointer;
    animation: techFloat 4s ease-in-out infinite;
}

.tech-item:hover {
    transform: scale(1.2);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.5);
}

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

.tech-react { top: 0; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.tech-node { top: 25%; right: 0; animation-delay: 0.5s; }
.tech-flutter { bottom: 25%; right: 0; animation-delay: 1s; }
.tech-aws { bottom: 0; left: 50%; transform: translateX(-50%); animation-delay: 1.5s; }
.tech-figma { bottom: 25%; left: 0; animation-delay: 2s; }
.tech-javascript { top: 25%; left: 0; animation-delay: 2.5s; }

.center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

.logo-floating {
    width: 50px;
    height: auto;
    filter: brightness(0) invert(1);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: scrollBounce 2s infinite;
    z-index: 10;
}

.scroll-text {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-purple);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    margin: 0 auto;
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes titleReveal {
    0% { opacity: 0; transform: translateY(50px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Responsive Design for Hero Section */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-card {
        width: 300px;
        height: 300px;
    }
    
    .hero-tech-stack {
        width: 200px;
        height: 200px;
    }
    
    .tech-item {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .center-logo {
        width: 60px;
        height: 60px;
    }
    
    .logo-floating {
        width: 35px;
    }
    
    .floating-shape {
        display: none;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-buttons .btn {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-card {
        width: 250px;
        height: 250px;
    }
    
    .hero-tech-stack {
        width: 150px;
        height: 150px;
    }
    
    .tech-item {
        width: 30px;
        height: 30px;
        font-size: 0.875rem;
    }
    
    .center-logo {
        width: 50px;
        height: 50px;
    }
    
    .logo-floating {
        width: 30px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

/* Page Hero */
.page-hero {
    background: var(--gradient-bg);
    padding: 150px 0 80px;
    text-align: center;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Service Hero */
.service-hero {
    background: var(--gradient-bg);
    padding: 150px 0 80px;
}

.service-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.service-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.service-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    position: relative;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #EC4899 0%, #8B5CF6 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-outline-light {
    border: 2px solid var(--text-light);
    color: var(--text-light);
    background: transparent;
    position: relative;
    z-index: 1;
}

.btn-outline-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--text-light);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-outline-light:hover {
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(226, 232, 240, 0.3);
}

.btn-outline-light:hover::before {
    opacity: 1;
}

.btn-outline-primary {
    border: 2px solid var(--primary-purple);
    color: var(--primary-purple);
    background: transparent;
    position: relative;
    z-index: 1;
}

.btn-outline-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-purple);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-outline-primary:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.btn-outline-primary:hover::before {
    opacity: 1;
}

.glow-btn {
    position: relative;
    overflow: hidden;
}

.glow-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.glow-btn:hover::after {
    left: 100%;
}

.glow-btn:hover {
    box-shadow: var(--shadow-glow);
}

/* Sections */
.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 1.25rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* Cards */
.service-card,
.feature-card,
.testimonial-card,
.blog-card,
.portfolio-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(30, 27, 75, 0.1) 100%);
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before,
.feature-card::before,
.testimonial-card::before,
.blog-card::before,
.portfolio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-card:hover,
.feature-card:hover,
.testimonial-card:hover,
.blog-card:hover,
.portfolio-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-purple);
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.3);
}

.service-card:hover::before,
.feature-card:hover::before,
.testimonial-card:hover::before,
.blog-card:hover::before,
.portfolio-card:hover::before {
    opacity: 0.05;
}

.service-icon,
.feature-icon,
.mvv-icon,
.benefit-icon,
.tech-icon {
    color: var(--primary-purple);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-icon i,
.feature-icon i,
.mvv-icon i,
.benefit-icon i,
.tech-icon i {
    transition: var(--transition);
}

.service-card:hover .service-icon i,
.feature-card:hover .feature-icon i,
.mvv-card:hover .mvv-icon i,
.benefit-card:hover .benefit-icon i,
.tech-card:hover .tech-icon i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
}

/* Technology Icons with Glow Effects */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tech-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--dark-card);
    border-radius: 15px;
    transition: var(--transition);
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.tech-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-purple);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.tech-item i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-purple);
    transition: var(--transition);
}

.tech-item:hover i {
    transform: scale(1.2);
}

/* Technology Specific Glows */
.react-glow:hover { box-shadow: 0 0 30px rgba(97, 218, 251, 0.5); }
.html-glow:hover { box-shadow: 0 0 30px rgba(227, 79, 38, 0.5); }
.css-glow:hover { box-shadow: 0 0 30px rgba(21, 114, 182, 0.5); }
.js-glow:hover { box-shadow: 0 0 30px rgba(240, 219, 79, 0.5); }
.node-glow:hover { box-shadow: 0 0 30px rgba(104, 160, 99, 0.5); }
.php-glow:hover { box-shadow: 0 0 30px rgba(119, 123, 180, 0.5); }
.flutter-glow:hover { box-shadow: 0 0 30px rgba(66, 165, 245, 0.5); }
.wordpress-glow:hover { box-shadow: 0 0 30px rgba(33, 117, 155, 0.5); }
.shopify-glow:hover { box-shadow: 0 0 30px rgba(150, 194, 79, 0.5); }
.bootstrap-glow:hover { box-shadow: 0 0 30px rgba(121, 82, 179, 0.5); }

/* Stats Section */
.stats-section {
    background: var(--dark-card);
    padding: 80px 0;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.25rem;
    color: var(--text-gray);
    font-weight: 600;
}

/* Portfolio Section */
.portfolio-filters {
    margin-bottom: 3rem;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--primary-purple);
    color: var(--primary-purple);
    padding: 10px 25px;
    border-radius: 50px;
    margin: 0 0.5rem 1rem;
    font-weight: 600;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
}

.portfolio-item {
    margin-bottom: 2rem;
    transition: var(--transition);
}

.portfolio-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(139, 92, 246, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-image:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-content {
    text-align: center;
    color: white;
}

.portfolio-links {
    margin-top: 1rem;
}

.portfolio-link {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    margin: 0 0.5rem;
    line-height: 50px;
    text-align: center;
    transition: var(--transition);
}

.portfolio-link:hover {
    background: white;
    color: var(--primary-purple);
}

.tech-tag {
    display: inline-block;
    background: var(--primary-purple);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    margin: 0.25rem;
}

/* Blog Section */
.featured-post {
    background: var(--dark-card);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 3rem;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.featured-badge {
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.featured-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.featured-excerpt {
    color: var(--text-gray);
    font-size: 1.125rem;
    line-height: 1.6;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-avatar-sm {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: var(--text-light);
}

.post-date {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.blog-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.blog-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

/* Testimonials */
.testimonial-card {
    text-align: center;
    position: relative;
    padding: 3rem 2rem 2rem;
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.rating {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: var(--text-light);
}

.author-title {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.author-company {
    color: var(--primary-purple);
    font-size: 0.875rem;
}

/* Contact Form */
.contact-form-container {
    background: var(--dark-card);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.contact-info-container {
    background: var(--dark-card);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.form-label {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    background: var(--dark-bg);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: var(--text-light);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    background: var(--dark-bg);
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 0.2rem rgba(139, 92, 246, 0.25);
    color: var(--text-light);
}

.form-control::placeholder {
    color: var(--text-gray);
}

.form-check-input {
    background: var(--dark-bg);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.form-check-input:checked {
    background: var(--primary-purple);
    border-color: var(--primary-purple);
}

.form-check-label {
    color: var(--text-gray);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-details h5 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-gray);
    margin: 0;
}

.contact-details a {
    color: var(--primary-purple);
    text-decoration: none;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--primary-pink);
}

.social-media-contact .social-links {
    display: flex;
    gap: 1rem;
}

.quick-contact-buttons .btn {
    margin-bottom: 0.5rem;
}

/* Map */
.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: var(--dark-card);
    border-top: 1px solid rgba(139, 92, 246, 0.1);
}

.footer-title {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-purple);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-purple);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-pink);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-pink);
}

.footer-divider {
    border-color: rgba(139, 92, 246, 0.1);
    margin: 2rem 0;
}

.copyright-text {
    color: var(--text-gray);
    text-align: center;
    margin: 0;
}

/* Pricing Cards */
.pricing-card {
    background: var(--dark-card);
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: 20px;
    transition: var(--transition);
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-purple);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.pricing-card.featured {
    border-color: var(--primary-purple);
    position: relative;
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.package-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.package-description {
    color: var(--text-gray);
    margin-bottom: 0;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    margin-bottom: 0.75rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
}

.pricing-features li i {
    color: var(--primary-purple);
    margin-right: 0.75rem;
}

/* Process Steps */
.process-step {
    text-align: center;
    position: relative;
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h6 {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--text-gray);
    font-size: 0.875rem;
}

/* Accordions */
.accordion {
    background: transparent;
}

.accordion-item {
    background: var(--dark-card);
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: 10px;
    margin-bottom: 1rem;
}

.accordion-button {
    background: transparent;
    color: var(--text-light);
    font-weight: 600;
    border: none;
    padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-purple);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-purple);
}

.accordion-body {
    background: var(--dark-bg);
    color: var(--text-gray);
    padding: 1.5rem;
}

/* Newsletter */
.newsletter-section {
    background: var(--dark-card);
    padding: 80px 0;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .input-group {
    border-radius: 50px;
    overflow: hidden;
}

.newsletter-form .form-control {
    border: none;
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 1rem 1.5rem;
}

.newsletter-form .btn {
    border: none;
    padding: 1rem 2rem;
}

/* CTA Sections */
.cta-section {
    background: var(--gradient-secondary);
    padding: 80px 0;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .service-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons,
    .service-hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .contact-form-container,
    .contact-info-container {
        padding: 2rem;
    }
    
    .tech-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }
    
    .stats-section .stat-number {
        font-size: 2.5rem;
    }
    
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .page-hero,
    .service-hero {
        padding: 120px 0 60px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .page-title,
    .service-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle,
    .service-subtitle {
        font-size: 1rem;
    }
    
    .package-price {
        font-size: 2rem;
    }
    
    .process-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--primary-purple);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

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

/* Utility Classes */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient {
    background: var(--gradient-primary);
}

.shadow-glow {
    box-shadow: var(--shadow-glow);
}

.shadow-glow-pink {
    box-shadow: var(--shadow-glow-pink);
}

.border-gradient {
    border: 1px solid;
    border-image: var(--gradient-primary) 1;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-pink);
}

/* Selection */
::selection {
    background: var(--primary-purple);
    color: white;
}

::-moz-selection {
    background: var(--primary-purple);
    color: white;
}
