* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #020511;
    --secondary-black: #0f1425;
    --tertiary-black: #1a1f3a;
    --primary-blue: #0066ff;
    --neon-blue: #00d4ff;
    --neon-purple: #b000ff;
    --neon-pink: #ff0099;
    --text-light: #e0e0e0;
    --text-muted: #888888;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(-45deg, #020511, #0f1425, #1a1f2e, #020511);
    background-size: 400% 400%;
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 50%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
    100% {
        background-position: 0% 50%;
    }
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(176, 0, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(0, 212, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
    animation: parallaxShift 20s ease-in-out infinite;
    z-index: -1;
}

@keyframes parallaxShift {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(30px, -20px);
    }
    50% {
        transform: translate(-20px, 30px);
    }
    75% {
        transform: translate(20px, 10px);
    }
}

/* Advanced Animation Keyframes */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInCenter {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
    }
}

/* Order Success Animation */
@keyframes successPulse {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes confetti {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(300px) rotate(720deg);
        opacity: 0;
    }
}

@keyframes checkmark {
    0% {
        stroke-dashoffset: 50;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

.success-animation {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    animation: successPulse 0.6s ease-out;
}

.success-animation-content {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(176, 0, 255, 0.1) 100%);
    border: 2px solid var(--neon-blue);
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.6);
}

.success-checkmark {
    width: 100px;
    height: 100px;
}

.success-checkmark-circle {
    stroke: var(--neon-blue);
    stroke-dasharray: 50;
    animation: checkmark 0.6s ease-out forwards;
}

.confetti-piece {
    position: fixed;
    pointer-events: none;
    z-index: 9998;
}

.price-update-animation {
    animation: fadeInScale 0.3s ease-out;
}

/* Header/Navigation */
header {
    background: linear-gradient(135deg, rgba(2, 5, 17, 0.95) 0%, rgba(15, 20, 37, 0.95) 100%);
    border-bottom: 2px solid var(--neon-blue);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    backdrop-filter: blur(10px);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 50px;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.6));
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

nav a:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
}

/* User Profile */
.user-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-right: 1rem;
}

/* Notification Wrapper */
.notification-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 1.5rem;
}

.notification-btn {
    background: none;
    border: none;
    color: var(--neon-blue);
    cursor: pointer;
    font-size: 1.5rem;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.bell-icon {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

.notification-btn:hover .bell-icon {
    animation: glow 1.5s ease-in-out infinite;
}

.notification-badge {
    position: absolute;
    top: -2px;
    right: 0;
    width: 8px;
    height: 8px;
    background-color: #ff0099;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.notification-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    width: 350px;
    max-height: 0;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(2, 5, 17, 0.95) 0%, rgba(15, 20, 37, 0.95) 100%);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    z-index: 1001;
}

.notification-dropdown.active {
    max-height: 500px;
    opacity: 1;
    overflow-y: auto;
}

.notification-dropdown::-webkit-scrollbar {
    width: 6px;
}

.notification-dropdown::-webkit-scrollbar-track {
    background: transparent;
}

.notification-dropdown::-webkit-scrollbar-thumb {
    background: rgba(0, 212, 255, 0.3);
    border-radius: 3px;
}

.notification-dropdown::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 212, 255, 0.6);
}

.notification-header {
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    font-weight: 600;
    color: var(--neon-blue);
    font-size: 0.95rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, transparent 100%);
}

.notification-list {
    padding: 0.5rem 0;
}

/* Update Item Styles */
.update-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.update-item:hover {
    background-color: rgba(0, 212, 255, 0.05);
    border-left: 3px solid var(--neon-blue);
    padding-left: calc(1rem - 3px);
}

.update-badge {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    white-space: nowrap;
    height: fit-content;
}

.update-item.new-update .update-badge {
    background-color: rgba(0, 212, 255, 0.2);
    color: var(--neon-blue);
    border: 1px solid var(--neon-blue);
}

.update-item.coming-soon .update-badge {
    background-color: rgba(255, 0, 153, 0.2);
    color: var(--neon-pink);
    border: 1px solid var(--neon-pink);
}

.update-content {
    flex: 1;
    min-width: 0;
}

.update-title {
    margin: 0 0 0.25rem 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
}

.update-date {
    margin: 0 0 0.5rem 0;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.update-description {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--neon-blue);
    cursor: pointer;
    transition: all 0.3s ease;
    object-fit: cover;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.profile-pic:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}

.user-name {
    color: var(--neon-blue);
    font-weight: 500;
    font-size: 0.95rem;
}

.logout-btn {
    padding: 0.5rem 1rem;
    background: rgba(255, 0, 153, 0.1);
    border: 1px solid var(--neon-pink);
    border-radius: 6px;
    color: var(--neon-pink);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    font-weight: 500;
}

.logout-btn:hover {
    background: rgba(255, 0, 153, 0.2);
    box-shadow: 0 0 15px rgba(255, 0, 153, 0.4);
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--neon-blue);
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
}

.menu-toggle:hover {
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
}

.nav-menu {
    display: flex;
}

@media (max-width: 768px) {
    nav {
        gap: 1rem;
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(2, 5, 17, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        border-top: 2px solid var(--neon-blue);
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .cta-btn {
        position: static;
        width: auto;
        padding: 0.8rem 1.2rem;
        margin: 0;
        flex-shrink: 0;
    }
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-blue);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.cta-btn {
    background: linear-gradient(135deg, var(--primary-blue), var(--neon-blue));
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.5);
    position: relative;
    overflow: hidden;
    animation: slideInDown 0.6s ease 0.1s both;
}

.cta-btn::before {
    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.5s ease;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.8), inset 0 0 10px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px) scale(1.05);
}

.cta-btn:active {
    transform: translateY(0px) scale(0.98);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(2, 5, 17, 0.95) 0%, rgba(15, 20, 37, 0.95) 50%, rgba(26, 31, 46, 0.95) 100%);
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(176, 0, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) scale(1);
    }
    50% { 
        transform: translateY(30px) scale(1.1);
    }
}

.hero-content {
    max-width: 800px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    animation: slideUp 0.8s ease-out 0.2s both;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideUp 0.8s ease-out 0.4s both;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--neon-blue));
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    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.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.8), inset 0 0 15px rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) scale(1.05);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-secondary {
    background: transparent;
    color: var(--neon-blue);
    padding: 1rem 2rem;
    border: 2px solid var(--neon-blue);
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-secondary:hover::before {
    left: 100%;
}

.btn-secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
    transform: translateY(-3px) scale(1.05);
}

.btn-secondary:active {
    transform: translateY(-1px) scale(0.98);
}

/* Services Section */
.services {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInDown 0.8s ease;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: linear-gradient(135deg, rgba(15, 20, 37, 0.8), rgba(0, 102, 255, 0.08));
    border: 2px solid var(--neon-blue);
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    opacity: 0;
}

.service-card.in-view {
    animation: fadeInCenter 0.7s ease forwards;
}

.service-card:nth-child(1).in-view { animation-delay: 0.1s; }
.service-card:nth-child(2).in-view { animation-delay: 0.2s; }
.service-card:nth-child(3).in-view { animation-delay: 0.3s; }

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    border-color: var(--neon-purple);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6), inset 0 0 20px rgba(0, 212, 255, 0.1);
    transform: translateY(-10px) scale(1.02);
}
    transform: translateY(-10px);
}

.service-card h3 {
    color: var(--neon-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.price {
    font-size: 1.8rem;
    color: var(--neon-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.features li::before {
    content: '✓ ';
    color: var(--neon-blue);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Template Button Styling */
.btn-template {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.7rem 1.5rem;
    color: var(--neon-blue);
    background: transparent;
    border: 2px solid var(--neon-blue);
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-template:hover {
    background: var(--neon-blue);
    color: white;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
    transform: translateY(-2px);
}

/* About Section */
.about {
    background: linear-gradient(135deg, rgba(15, 20, 37, 0.95), rgba(26, 31, 46, 0.8));
    padding: 4rem 2rem;
    border-top: 2px solid var(--neon-blue);
    border-bottom: 2px solid var(--neon-purple);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(0, 212, 255, 0.03) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(176, 0, 255, 0.03) 50%, transparent 70%);
    animation: shimmer 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0%, 100% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(100%);
    }
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-content h2 {
    color: var(--neon-blue);
    margin-bottom: 2rem;
    font-size: 2rem;
    animation: slideInDown 0.8s ease;
}

.about-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    animation: fadeInUp 0.8s ease backwards;
}

.about-content p:nth-of-type(1) { animation-delay: 0.2s; }
.about-content p:nth-of-type(2) { animation-delay: 0.3s; }

.what-we-do {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(2, 5, 17, 0.95) 0%, rgba(15, 20, 37, 0.95) 50%, rgba(26, 31, 46, 0.95) 100%);
    position: relative;
    overflow: hidden;
    padding: 2rem;
    text-align: center;
}

.what-we-do::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}

.what-we-do::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(176, 0, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
    animation: float 8s ease-in-out infinite reverse;
}

.what-we-do-content {
    max-width: 800px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.workflow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.workflow-step {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid var(--neon-blue);
    border-radius: 8px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease backwards;
    position: relative;
    overflow: hidden;
}

.workflow-step:nth-child(1) { animation-delay: 0.1s; }
.workflow-step:nth-child(2) { animation-delay: 0.2s; }
.workflow-step:nth-child(3) { animation-delay: 0.3s; }
.workflow-step:nth-child(4) { animation-delay: 0.4s; }
.workflow-step:nth-child(5) { animation-delay: 0.5s; }
.workflow-step:nth-child(6) { animation-delay: 0.6s; }

.workflow-step::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.workflow-step:hover::before {
    opacity: 1;
}

.workflow-step:hover {
    background: rgba(0, 212, 255, 0.15);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
    transform: translateY(-5px) scale(1.05);
}

.workflow-step h4 {
    color: var(--neon-blue);
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact {
    max-width: 600px;
    margin: 4rem auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.contact-form {
    background: linear-gradient(135deg, rgba(15, 20, 37, 0.8), rgba(0, 102, 255, 0.08));
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--neon-blue);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--neon-blue);
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 212, 255, 0.4);
    border-radius: 5px;
    color: var(--text-light);
    font-family: inherit;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.form-group input::placeholder {
    color: rgba(200, 200, 200, 0.5);
}

/* Date Input Styling */
.date-input {
    cursor: pointer;
}

.date-input::-webkit-calendar-picker-indicator {
    filter: invert(0.8) drop-shadow(0 0 0 #00d4ff);
    cursor: pointer;
}

.date-input::-webkit-outer-spin-button,
.date-input::-webkit-inner-spin-button {
    display: none;
    -webkit-appearance: none;
    margin: 0;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--neon-blue);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.4), inset 0 0 10px rgba(0, 212, 255, 0.1);
    background: rgba(0, 102, 255, 0.15);
    animation: glow 0.3s ease;
}

.form-group input,
.form-group textarea,
.form-group select {
    animation: fadeInUp 0.6s ease-out backwards;
}

.form-group:nth-child(1) input,
.form-group:nth-child(1) textarea,
.form-group:nth-child(1) select {
    animation-delay: 0.1s;
}

.form-group:nth-child(2) input,
.form-group:nth-child(2) textarea,
.form-group:nth-child(2) select {
    animation-delay: 0.2s;
}

.form-group:nth-child(3) input,
.form-group:nth-child(3) textarea,
.form-group:nth-child(3) select {
    animation-delay: 0.3s;
}

.form-group:nth-child(4) input,
.form-group:nth-child(4) textarea,
.form-group:nth-child(4) select {
    animation-delay: 0.4s;
}

.form-group:nth-child(5) input,
.form-group:nth-child(5) textarea,
.form-group:nth-child(5) select {
    animation-delay: 0.5s;
}

.form-group select {
    appearance: none;
    padding-right: 2.5rem;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300d4ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/csvg%3e");
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
    background-size: 1.2em 1.2em;
    padding-right: 2.5rem;
}

.form-group select option {
    background: var(--secondary-black);
    color: var(--text-light);
    border: 1px solid var(--neon-blue);
}

.form-group select option:checked {
    background: linear-gradient(135deg, var(--primary-blue), var(--neon-blue));
    color: white;
}

/* Service Select Styling */
.service-select {
    background-image: linear-gradient(rgba(2, 5, 17, 0), rgba(2, 5, 17, 0)), url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300d4ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/csvg%3e");
}

.service-select:hover {
    border-color: var(--neon-purple);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

/* Budget Select Styling */
.budget-select {
    background-image: linear-gradient(rgba(2, 5, 17, 0), rgba(2, 5, 17, 0)), url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300d4ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/csvg%3e");
}

.budget-select:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.5);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
footer {
    background: linear-gradient(135deg, rgba(2, 5, 17, 0.98), rgba(15, 20, 37, 0.95));
    border-top: 2px solid var(--neon-blue);
    padding: 3rem 2rem;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    animation: fadeInUp 0.8s ease-out backwards;
}

.footer-section:nth-child(1) {
    animation-delay: 0.1s;
}

.footer-section:nth-child(2) {
    animation-delay: 0.2s;
}

.footer-section:nth-child(3) {
    animation-delay: 0.3s;
}

.footer-section:nth-child(4) {
    animation-delay: 0.4s;
}

.footer-section h3 {
    color: var(--text-light);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.footer-section h4 {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    max-width: 60px;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

.footer-logo h3 {
    margin: 0;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    animation: fadeInUp 0.6s ease-out backwards;
}

.footer-section ul li:nth-child(1) {
    animation-delay: 0.1s;
}

.footer-section ul li:nth-child(2) {
    animation-delay: 0.2s;
}

.footer-section ul li:nth-child(3) {
    animation-delay: 0.3s;
}

.footer-section ul li:nth-child(4) {
    animation-delay: 0.4s;
}

.footer-section ul li:nth-child(5) {
    animation-delay: 0.5s;
}

.footer-section ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    color: var(--text-muted);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
    }

    footer {
        padding: 2rem 1rem;
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: linear-gradient(135deg, rgba(15, 20, 37, 0.95), rgba(0, 102, 255, 0.1));
    margin: 5% auto;
    padding: 2rem;
    border: 2px solid var(--neon-blue);
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.5);
    animation: slideUp 0.3s ease, popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.5) rotateZ(-5deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotateZ(0);
    }
}

.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-blue), var(--neon-blue));
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
}

.close {
    color: var(--neon-blue);
    float: right;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close:hover {
    color: var(--neon-pink);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .workflow {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Header & Navigation */
    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0.8rem;
        flex-wrap: wrap;
        padding: 1rem;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }

    nav ul li {
        width: 100%;
        text-align: center;
    }

    .cta-btn {
        width: auto;
        flex-shrink: 0;
    }

    .logo {
        font-size: 1.5rem;
    }

    .logo-img {
        height: 35px;
    }

    /* Hero Section */
    .hero {
        padding: 3rem 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }

    /* Section Titles */
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    /* About Section */
    .about {
        padding: 2rem 1rem;
    }

    .about-content h2 {
        font-size: 1.8rem;
    }

    .about-content h3 {
        font-size: 1.3rem;
    }

    .workflow {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .workflow-step h4 {
        font-size: 1.1rem;
    }

    .workflow-step p {
        font-size: 0.95rem;
    }

    /* Services Section */
    .services {
        padding: 2rem 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.4rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .price {
        font-size: 1.8rem;
        margin: 1rem 0;
    }

    .features {
        font-size: 0.9rem;
        line-height: 1.8;
    }

    /* Contact Section */
    .contact {
        padding: 2rem 1rem;
    }

    .contact-form {
        max-width: 100%;
        padding: 1.5rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-group label {
        font-size: 0.95rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 1rem;
        padding: 0.8rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
    }

    .footer-section p,
    .footer-section ul li {
        font-size: 0.9rem;
    }

    .footer-logo-img {
        height: 40px;
    }

    .footer-bottom {
        font-size: 0.85rem;
        padding-top: 1.5rem;
    }

    /* Modal */
    .modal-content {
        width: 95%;
        margin: 20% auto;
        padding: 1.5rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    /* Scroll to Top Button */
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    /* Success Message */
    .success-message {
        top: 10px;
        right: 10px;
        left: 10px;
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    /* Header & Navigation */
    nav {
        padding: 0.8rem;
        gap: 0.8rem;
    }

    nav ul {
        gap: 0.5rem;
    }

    .logo {
        font-size: 1.3rem;
    }

    .logo-img {
        height: 30px;
    }

    /* Hero Section */
    .hero {
        padding: 2rem 0.8rem;
        min-height: auto;
    }

    .hero h1 {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .hero-buttons {
        gap: 0.8rem;
    }

    .btn-primary, .btn-secondary {
        font-size: 0.9rem;
        padding: 0.8rem;
    }

    /* Section Titles */
    .section-title {
        font-size: 1.5rem;
    }

    /* About Section */
    .about {
        padding: 1.5rem 0.8rem;
    }

    .about-content h2 {
        font-size: 1.5rem;
    }

    .about-content h3 {
        font-size: 1.1rem;
    }

    .about-content p {
        font-size: 0.9rem;
    }

    .workflow {
        gap: 1rem;
    }

    .workflow-step {
        padding: 1rem;
    }

    .workflow-step h4 {
        font-size: 1rem;
    }

    .workflow-step p {
        font-size: 0.85rem;
    }

    /* Services Section */
    .services {
        padding: 1.5rem 0.8rem;
    }

    .services-grid {
        gap: 1rem;
    }

    .service-card {
        padding: 1.2rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-card p {
        font-size: 0.85rem;
    }

    .price {
        font-size: 1.6rem;
        margin: 0.8rem 0;
    }

    .features {
        font-size: 0.85rem;
        padding-left: 1.2rem;
    }

    .features li {
        margin-bottom: 0.6rem;
    }

    /* Contact Section */
    .contact {
        padding: 1.5rem 0.8rem;
    }

    .contact-form {
        padding: 1rem;
    }

    .form-group {
        margin-bottom: 0.8rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 1rem;
        padding: 0.7rem;
    }

    /* Footer */
    .footer-content {
        gap: 1.2rem;
    }

    .footer-section h3,
    .footer-section h4 {
        font-size: 1rem;
    }

    .footer-section p,
    .footer-section ul li {
        font-size: 0.85rem;
    }

    .footer-logo {
        gap: 0.6rem;
    }

    .footer-logo-img {
        height: 35px;
    }

    .footer-bottom {
        font-size: 0.8rem;
        padding: 1rem;
    }

    /* Modal */
    .modal-content {
        width: 98%;
        margin: 30% auto;
        padding: 1.2rem;
    }

    .modal-content h2 {
        font-size: 1.3rem;
    }

    .form-group label {
        font-size: 0.85rem;
    }

    /* Scroll to Top Button */
    .scroll-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    /* Success Message */
    .success-message {
        top: 8px;
        right: 8px;
        left: 8px;
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
    }
}

/* Success Message */
.success-message {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-blue), var(--neon-blue));
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 5px;
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.6);
    animation: slideInRight 0.3s ease, pulse 1.5s ease-in-out 0.5s;
    z-index: 2001;
}

@keyframes slideInRight {
    from { transform: translateX(400px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.success-message::before {
    content: '✓';
    display: inline-block;
    margin-right: 10px;
    font-weight: bold;
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--neon-blue));
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: none;
    justify-content: center;
    align-items: center;
    animation: fadeInScale 0.4s ease;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.8), inset 0 0 15px rgba(255, 255, 255, 0.1);
}
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.6);
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    box-shadow: 0 0 35px rgba(176, 0, 255, 0.8);
    transform: translateY(-5px);
}

.scroll-to-top.show {
    display: flex;
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}