/* DXHUBX ICT - Modern, animated landing theme */
:root {
    --bg: #0b1021;
    --bg-alt: #0f172a;
    --card: rgba(255, 255, 255, 0.04);
    --border: rgba(255, 255, 255, 0.08);
    --text: #e5e7eb;
    --muted: #94a3b8;
    --accent: #38bdf8;
    --accent-2: #a855f7;
    --accent-3: #22d3ee;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    --radius-lg: 24px;
    --radius: 16px;
    --radius-sm: 12px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', 'Space Grotesk', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: radial-gradient(circle at 20% 20%, rgba(56, 189, 248, 0.15), transparent 25%),
        radial-gradient(circle at 80% 0%, rgba(168, 85, 247, 0.15), transparent 22%),
        linear-gradient(135deg, #0b1021 0%, #0e1530 45%, #0b1021 100%);
    min-height: 100vh;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: var(--accent);
}

.container {
    width: min(1100px, 90vw);
    margin: 0 auto;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    background: rgba(12, 18, 36, 0.8);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.navbar-brand h1 {
    margin: 0;
    font-size: 20px;
    letter-spacing: 0.4px;
}

.navbar-brand a {
    color: #fff;
    font-weight: 700;
}

.tagline {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 13px;
    letter-spacing: 0.3px;
}

.navbar-menu ul {
    list-style: none;
    display: flex;
    gap: 18px;
    margin: 0;
    padding: 0;
}

.nav-link {
    padding: 10px 14px;
    border-radius: 12px;
    color: var(--muted);
    transition: color 0.2s ease, background 0.3s ease, transform 0.2s ease;
}

.nav-link:hover {
    color: #fff;
    background: rgba(56, 189, 248, 0.12);
    transform: translateY(-2px);
}

/* Content spacing */
.content section {
    padding: 24px 0;
}

.page-header {
    text-align: center;
    padding: 36px 0 20px;
    margin-bottom: 12px;
}

.page-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.page-header p {
    color: var(--muted);
    margin: 0 auto;
    max-width: 640px;
    font-size: 15px;
}

/* Hero image styling */
.hero {
    position: relative;
    padding: 120px 0 90px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px);
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.18), transparent 60%);
    filter: blur(30px);
    z-index: -1;
}

.hero::before {
    top: -80px;
    left: -40px;
}

.hero::after {
    bottom: -120px;
    right: -10px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.2), transparent 60%);
}

.hero-content h1 {
    font-size: 56px;
    margin: 0 0 16px;
    letter-spacing: -0.5px;
}

.hero-tagline {
    font-size: 22px;
    color: var(--accent);
    margin: 0 0 10px;
    font-weight: 600;
}

.hero-description {
    max-width: 540px;
    color: var(--muted);
    margin-bottom: 26px;
    font-size: 18px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 14px;
    border: 1px solid var(--border);
    color: #fff;
    background: transparent;
    font-weight: 600;
    letter-spacing: 0.2px;
    transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    border-color: rgba(56, 189, 248, 0.7);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    border: none;
    box-shadow: 0 12px 30px rgba(56, 189, 248, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.btn-large {
    padding: 14px 22px;
    font-size: 16px;
}

/* Cards */
.about-card,
.service-card,
.value-item,
.client-type,
.reason,
.next-step,
.mission-card,
.value-block,
.team-section,
.info-item,
.contact-item,
.contact-form,
.privacy-content,
.service-text {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 16px;
    box-shadow: var(--shadow);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.service-card {
    position: relative;
    overflow: hidden;
    min-height: 180px;
    padding: 14px;
}

.service-thumb {
    width: 100%;
    height: 110px;
    border-radius: 12px;
    margin-bottom: 14px;
    object-fit: cover;
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover .service-thumb {
    transform: scale(1.02);
    box-shadow: 0 12px 32px rgba(56, 189, 248, 0.2);
}

.card-image {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
    border: 1px solid var(--border);
}

.about-grid,
.values-grid,
.services-grid,
.work-steps,
.clients-grid,
.reasons-grid,
.values-detailed,
.team-info,
.info-grid,
.contact-grid,
.steps-grid {
    display: grid;
    gap: 14px;
}

.about-preview,
.values,
.services-preview,
.how-we-work,
.target-clients {
    margin-bottom: 8px;
}

.about-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.values-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.work-steps,
.clients-grid,
.reasons-grid,
.steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.values-detailed {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.team-info {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.info-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.contact-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.service-detail {
    padding: 40px 0;
    margin-bottom: 0;
}

.service-header {
    margin-bottom: 24px;
    text-align: center;
}

.service-header h2 {
    font-size: 28px;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-intro {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.service-content {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
    align-items: start;
}

@media (min-width: 768px) {
    .service-content {
        grid-template-columns: 1fr 1fr;
    }
}

.service-visual {
    width: 100%;
    height: 200px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    object-fit: cover;
    box-shadow: var(--shadow);
    grid-column: 1 / -1;
}

.service-text h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--accent);
}

.service-text p {
    line-height: 1.7;
    color: var(--text-secondary);
}

.feature-list,
.tech-list {
    list-style: none;
    padding: 0;
}

.feature-list li,
.tech-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    line-height: 1.6;
    color: var(--text-secondary);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* Showcase and Gallery sections */
.showcase,
.team-gallery,
.tech-showcase {
    padding: 48px 0;
}

.showcase h2,
.team-gallery h2,
.tech-showcase h2 {
    text-align: center;
    margin-bottom: 32px;
    font-size: 26px;
}

.showcase-grid,
.gallery-grid,
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.showcase-item img,
.gallery-item img,
.tech-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-item:hover img,
.gallery-item:hover img,
.tech-item:hover img {
    transform: scale(1.02);
    box-shadow: 0 12px 32px rgba(56, 189, 248, 0.2);
}

.why-choose,
.reasons-grid .reason p {
    color: var(--muted);
}

.contact-item h3,
.next-step h3 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 17px;
}

.contact-item p,
.next-step p {
    margin: 0;
    line-height: 1.6;
    font-size: 14px;
}

/* Value icons and images */
.value-icon {
    font-size: 36px;
    margin-bottom: 12px;
    display: block;
}

.value-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid var(--border);
}

.approach-image {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid var(--border);
}

.info-image {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
    border: 1px solid var(--border);
}

/* Contact */
.contact-form {
    margin-top: 12px;
    display: grid;
    gap: 12px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

label {
    color: #fff;
    font-weight: 600;
}

input,
select,
textarea {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 10px 12px;
    color: #fff;
    font-size: 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2338bdf8' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    padding-right: 36px;
}

select option {
    background: #0b1021;
    color: #fff;
    padding: 10px;
}

select option:hover,
select option:checked {
    background: rgba(56, 189, 248, 0.2);
    color: var(--accent);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: rgba(56, 189, 248, 0.7);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.25);
}

.alert {
    border-radius: var(--radius);
    padding: 10px 12px;
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 14px;
}

.alert.success {
    background: rgba(34, 197, 94, 0.16);
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: #bbf7d0;
}

.alert.error {
    background: rgba(239, 68, 68, 0.18);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #fecdd3;
}

/* CTA */
.cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.15), rgba(168, 85, 247, 0.15));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta h2 {
    font-size: 34px;
    margin-bottom: 12px;
}

.cta p {
    color: var(--muted);
    margin-bottom: 18px;
}

/* Footer */
.footer {
    background: rgba(8, 12, 26, 0.8);
    border-top: 1px solid var(--border);
    padding: 40px 0 26px;
}

.footer-content {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.footer-section h3,
.footer-section h4 {
    margin-top: 0;
}

.footer-section p,
.footer-section ul {
    color: var(--muted);
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin: 8px 0;
}

.footer-bottom {
    margin-top: 18px;
    color: var(--muted);
    text-align: center;
    font-size: 14px;
}

.visitor-stats {
    margin-top: 8px;
    font-size: 13px;
    color: var(--accent);
    opacity: 0.8;
}

.visitor-stats strong {
    color: var(--accent-2);
    font-size: 14px;
}

/* Reveal animation */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero.reveal {
    opacity: 1;
    animation: floatIn 1s ease forwards;
}

@keyframes floatIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Accent glow on hover */
.service-card:hover,
.about-card:hover,
.reason:hover,
.client-type:hover,
.next-step:hover,
.contact-item:hover {
    border-color: rgba(56, 189, 248, 0.6);
    box-shadow: 0 16px 40px rgba(56, 189, 248, 0.15);
    transform: translateY(-4px);
    transition: transform 0.2s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .hero {
        padding-top: 96px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .nav-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .navbar-menu ul {
        flex-wrap: wrap;
    }
}

/* Professional Horizontal Footer */
.footer-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}

.footer-left h3 {
    margin: 0 0 4px 0;
    font-size: 18px;
}

.footer-left .tagline {
    margin: 0;
    font-size: 12px;
    color: var(--muted);
}

.footer-nav {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--muted);
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: var(--accent);
}

.footer-contact,
.footer-support {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
}

.footer-contact h4,
.footer-support h4 {
    margin: 0 0 8px 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
}

.footer-contact a,
.footer-support a {
    color: var(--muted);
    transition: color 0.2s ease;
}

.footer-contact a:hover,
.footer-support a:hover {
    color: var(--accent);
}

.support-note {
    margin: 8px 0 0 0;
    font-size: 11px;
    color: var(--muted);
    font-style: italic;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-link svg {
    flex-shrink: 0;
}

.whatsapp-link:hover {
    color: #25D366 !important;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .footer-nav {
        gap: 16px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* Read More Button - Futuristic Style */
.read-more-btn {
    display: inline-block;
    margin-top: 8px;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    border: 1px solid var(--accent);
    border-radius: 20px;
    color: var(--bg);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.3);
}

.read-more-btn:hover {
    background: linear-gradient(135deg, var(--accent-2), var(--accent));
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.5);
    transform: translateY(-2px);
}

.read-more-btn.active {
    background: linear-gradient(135deg, #ef4444, #f59e0b);
    border-color: #ef4444;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
}

.short-text {
    display: inline;
}

.full-text {
    display: none;
}

/* Enhanced Value Cards with Images */
.values-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.value-card {
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 32px rgba(56, 189, 248, 0.2);
    transform: translateY(-4px);
}

.value-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
    opacity: 0.85;
}

.value-icon {
    font-size: 32px;
    margin: 8px 0;
    filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.5));
}

.value-card h3 {
    font-size: 18px;
    margin: 8px 0;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-short {
    font-size: 13px;
    line-height: 1.5;
    color: var(--muted);
    text-align: left;
}

.value-short .read-more-btn {
    display: block;
    margin: 10px auto 0;
    font-size: 10px;
    padding: 6px 16px;
}

/* ============================================
   HOW WE WORK - NEON TECH STYLE (CSS ONLY)
   ============================================ */

.how-we-work-neon {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.how-we-work-neon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(56, 189, 248, 0.3) 20%, 
        rgba(168, 85, 247, 0.3) 80%, 
        transparent 100%);
    opacity: 0;
    animation: lineReveal 1.5s ease-out 0.5s forwards;
}

@keyframes lineReveal {
    from {
        opacity: 0;
        height: 0;
    }
    to {
        opacity: 1;
        height: 100%;
    }
}

.neon-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    text-align: center;
    background: linear-gradient(135deg, #38bdf8, #a855f7, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    text-shadow: 0 0 30px rgba(56, 189, 248, 0.5);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% {
        filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.4));
    }
    100% {
        filter: drop-shadow(0 0 25px rgba(168, 85, 247, 0.6));
    }
}

.neon-subtitle {
    text-align: center;
    color: var(--muted);
    font-size: 16px;
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.workflow-timeline {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

/* Individual workflow step */
.workflow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: none;
    min-height: 240px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.workflow-step:hover {
    transform: translateY(-8px);
}

.workflow-step:hover .step-badge {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 
        0 0 50px rgba(56, 189, 248, 0.8),
        inset 0 0 30px rgba(56, 189, 248, 0.2);
}

/* Trigger animations when in view */
.workflow-step.in-view.step-1 { animation: stepReveal 0.8s ease-out 0.1s forwards; }
.workflow-step.in-view.step-2 { animation: stepReveal 0.8s ease-out 0.3s forwards; }
.workflow-step.in-view.step-3 { animation: stepReveal 0.8s ease-out 0.5s forwards; }
.workflow-step.in-view.step-4 { animation: stepReveal 0.8s ease-out 0.7s forwards; }
.workflow-step.in-view.step-5 { animation: stepReveal 0.8s ease-out 0.9s forwards; }

@keyframes stepReveal {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Step badge (number + emoji) */
.step-badge {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(168, 85, 247, 0.1));
    border: 2px solid rgba(56, 189, 248, 0.3);
    box-shadow: 
        0 0 20px rgba(56, 189, 248, 0.2),
        inset 0 0 20px rgba(56, 189, 248, 0.05);
    transition: all 0.4s ease;
    margin-bottom: 16px;
}

.step-badge:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 0 40px rgba(56, 189, 248, 0.6),
        inset 0 0 30px rgba(56, 189, 248, 0.1);
    border-color: rgba(56, 189, 248, 0.8);
}

.step-number {
    display: none;
}

@keyframes numberPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.4));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 15px rgba(168, 85, 247, 0.6));
    }
}

.step-emoji {
    font-size: 40px;
    filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.4));
}

/* Spinning animations for emojis */
.workflow-step.step-1 .step-emoji {
    animation: emojiSpin 4s ease-in-out infinite;
}

.workflow-step.step-2 .step-emoji {
    animation: emojiTilt 3s ease-in-out infinite;
}

.workflow-step.step-3 .step-emoji {
    animation: emojiRotate 3s linear infinite;
}

.workflow-step.step-4 .step-emoji {
    animation: emojiPulse 2s ease-in-out infinite;
}

.workflow-step.step-5 .step-emoji {
    animation: emojiFloat 3s ease-in-out infinite;
}

@keyframes emojiSpin {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(-10deg) scale(1.1);
    }
    75% {
        transform: rotate(10deg) scale(1.1);
    }
}

@keyframes emojiTilt {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(15deg);
    }
}

@keyframes emojiRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes emojiPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

@keyframes emojiFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-8px) scale(1.1);
        opacity: 1;
    }
}

.workflow-step.step-1 .step-emoji { animation-delay: 0s; }
.workflow-step.step-2 .step-emoji { animation-delay: 0.3s; }
.workflow-step.step-3 .step-emoji { animation-delay: 0.6s; }
.workflow-step.step-4 .step-emoji { animation-delay: 0.9s; }
.workflow-step.step-5 .step-emoji { animation-delay: 1.2s; }

/* Step content */
.step-content {
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    width: 100%;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(56, 189, 248, 0.1), 
        transparent);
    transition: left 0.6s ease;
}

.step-content:hover::before {
    left: 100%;
}

.step-content:hover {
    border-color: rgba(56, 189, 248, 0.3);
    box-shadow: 0 8px 32px rgba(56, 189, 248, 0.15);
    transform: none;
}

.step-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 8px 0;
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.3);
}

.step-description {
    font-size: 13px;
    line-height: 1.5;
    color: var(--muted);
    margin: 0;
}

/* Neon connecting lines */
.neon-line {
    display: none;
}

/* Step arrows */
.step-arrow {
    position: absolute;
    right: -32px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 32px;
    font-weight: bold;
    color: var(--accent);
    text-shadow: 0 0 20px rgba(56, 189, 248, 0.6);
    opacity: 0;
    animation: arrowSlide 2s ease-in-out infinite;
}

.workflow-step.in-view .step-arrow {
    opacity: 1;
}

.workflow-step:last-child .step-arrow {
    display: none;
}

@keyframes arrowSlide {
    0%, 100% {
        transform: translateY(-50%) translateX(0);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-50%) translateX(8px);
        opacity: 1;
    }
}

.workflow-step.in-view.step-1 .neon-line { animation: lineGrow 0.6s ease-out 0.4s forwards; }
.workflow-step.in-view.step-2 .neon-line { animation: lineGrow 0.6s ease-out 0.6s forwards; }
.workflow-step.in-view.step-3 .neon-line { animation: lineGrow 0.6s ease-out 0.8s forwards; }
.workflow-step.in-view.step-4 .neon-line { animation: lineGrow 0.6s ease-out 1.0s forwards; }

@keyframes lineGrow {
    from {
        opacity: 0;
        height: 0;
    }
    to {
        opacity: 1;
        height: 60px;
    }
}

.workflow-step:last-child .neon-line {
    display: none;
}

/* Neon pulse effect on hover */
.workflow-step:hover .step-badge {
    animation: neonPulse 1.5s ease-in-out infinite;
}

@keyframes neonPulse {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(56, 189, 248, 0.4),
            inset 0 0 20px rgba(56, 189, 248, 0.1);
    }
    50% {
        box-shadow: 
            0 0 40px rgba(56, 189, 248, 0.8),
            inset 0 0 30px rgba(56, 189, 248, 0.2);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .how-we-work-neon::before {
        display: none;
    }
    
    .workflow-timeline {
        padding: 0 20px;
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .workflow-step {
        flex-direction: column;
    }
    
    .step-badge {
        width: 70px;
        height: 70px;
    }
    
    .step-emoji {
        font-size: 32px;
    }
    
    .step-arrow {
        display: none;
    }
    
    .step-content {
        padding: 12px 16px;
    }
    
    .step-title {
        font-size: 16px;
    }
    
    .step-description {
        font-size: 13px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .workflow-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .step-arrow {
        display: none;
    }
}

/* Modern scroll-triggered animation (progressive enhancement) */
@supports (animation-timeline: view()) {
    .workflow-step {
        animation: none;
        opacity: 0;
        animation: stepRevealScroll linear forwards;
        animation-timeline: view();
        animation-range: entry 0% cover 30%;
    }
    
    @keyframes stepRevealScroll {
        from {
            opacity: 0;
            transform: translateY(40px) scale(0.95);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }
}

/* Services Cards Grid Layout */
.services-summary {
    padding: 40px 0 60px;
    background: rgba(56, 189, 248, 0.03);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
}

.services-summary h2 {
    text-align: center;
    margin-bottom: 12px;
    font-size: 28px;
}

.summary-intro {
    text-align: center;
    color: var(--muted);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.summary-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    justify-content: space-between;
    align-items: stretch;
}

.summary-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 130px;
}

.summary-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 8px 20px rgba(56, 189, 248, 0.2);
}

.summary-icon {
    font-size: 24px;
    margin-bottom: 6px;
    display: block;
}

.summary-card h4 {
    font-size: 12px;
    margin-bottom: 4px;
    color: var(--accent);
    font-weight: 600;
    line-height: 1.2;
}

.summary-card p {
    font-size: 10px;
    color: var(--muted);
    line-height: 1.3;
    margin: 0;
    display: none;
}

.summary-card:hover p {
    display: block;
}

@media (max-width: 768px) {
    .summary-grid {
        gap: 8px;
    }
    
    .summary-card {
        padding: 10px;
        min-width: 110px;
    }
    
    .summary-icon {
        font-size: 20px;
    }
    
    .summary-card h4 {
        font-size: 11px;
    }
}

.services-overview {
    padding: 60px 0;
}

.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 1200px) {
    .services-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.service-card-modern {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 500px;
    max-height: 800px;
}

.service-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(56, 189, 248, 0.15);
    border-color: var(--accent);
}

.service-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.service-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-body h3 {
    font-size: 20px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-summary {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.service-highlights {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.highlight-tag {
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.3);
    color: var(--accent);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.read-more-btn {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.read-more-btn:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(56, 189, 248, 0.3);
}

.read-more-btn.active {
    background: linear-gradient(135deg, var(--accent-2), var(--accent));
}

.service-full-content {
    padding: 0 20px 20px;
    border-top: 1px solid var(--border);
    margin-top: 12px;
    max-height: 300px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--card);
}

.service-full-content::-webkit-scrollbar {
    width: 6px;
}

.service-full-content::-webkit-scrollbar-track {
    background: var(--card);
}

.service-full-content::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 3px;
}

.service-full-content h4 {
    color: var(--accent);
    font-size: 16px;
    margin: 16px 0 8px;
}

.service-full-content ul {
    list-style: none;
    padding-left: 0;
}

.service-full-content ul li {
    padding: 6px 0 6px 20px;
    position: relative;
    color: var(--muted);
    line-height: 1.5;
}

.service-full-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
}

@media (max-width: 768px) {
    .services-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card-modern {
        min-height: 450px;
    }
}
