/* Web Design Page Styles */

/* Hero Section */
.web-design-hero {
    background: linear-gradient(135deg, rgba(10, 1, 24, 0.95), rgba(15, 25, 35, 0.95));
    padding: 12rem 0 8rem 0;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.web-design-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/cyberpunk-inspo/cp-inspo1.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.web-design-hero .section-container {
    position: relative;
    z-index: 1;
}

.web-design-badge {
    display: inline-block;
    background: rgba(252, 238, 10, 0.1);
    border: 1px solid var(--color-highlight);
    color: var(--color-highlight);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.web-design-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-white);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.web-design-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    font-weight: 300;
    color: var(--color-primary);
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 4rem auto;
}

.web-design-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.web-design-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.web-design-feature svg {
    color: var(--color-highlight);
    width: 32px;
    height: 32px;
}

.web-design-feature span {
    color: var(--color-white);
    font-weight: 600;
    font-size: 0.95rem;
}

.web-design-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cta-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* Services Section */
.web-design-services {
    background-color: var(--color-background);
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(15, 25, 35, 0.5);
    border: 2px solid rgba(252, 238, 10, 0.15);
    border-radius: 20px;
    padding: 3rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: rgba(252, 238, 10, 0.5);
    background: rgba(252, 238, 10, 0.05);
    transform: translateY(-8px);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(252, 238, 10, 0.1);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    color: var(--color-primary);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

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

/* Industries Section */
.web-design-industries {
    background: linear-gradient(135deg, rgba(10, 1, 24, 0.95), rgba(15, 25, 35, 0.95));
    padding: 8rem 0;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.industry-card {
    background: rgba(15, 25, 35, 0.5);
    border: 2px solid rgba(252, 238, 10, 0.15);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.industry-card:hover {
    border-color: rgba(252, 238, 10, 0.5);
    background: rgba(252, 238, 10, 0.05);
    transform: translateY(-4px);
}

.industry-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.industry-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.industry-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.industry-card li {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.industry-card li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-highlight);
    font-weight: bold;
}

/* Process Section - Timeline Style (like EDG Grant) */
.web-design-process {
    background-color: var(--color-background);
    padding: 8rem 0;
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 4rem auto 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-highlight), rgba(252, 238, 10, 0.2));
}

.process-step {
    position: relative;
    padding-left: 100px;
    margin-bottom: 4rem;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-highlight), rgba(252, 238, 10, 0.8));
    color: var(--color-background);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    border: 4px solid var(--color-background);
    z-index: 2;
}

.process-step h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.process-step p {
    font-size: 1.125rem;
    color: var(--color-primary);
    line-height: 1.7;
}

/* CTA Section */
.web-design-cta-section {
    background: linear-gradient(135deg, rgba(10, 1, 24, 0.98), rgba(15, 25, 35, 0.98));
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.web-design-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 110%;
    height: 110%;
    background-image: url('../images/cyberpunk-inspo/cp-inspo1.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 100%);
    animation: kenBurnsEnhanced 30s ease-in-out infinite alternate;
}

.web-design-cta-section .section-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-title {
    color: var(--color-white);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .web-design-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .process-timeline::before {
        left: 25px;
    }

    .process-step {
        padding-left: 80px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        border: 3px solid var(--color-background);
    }
}

@media (max-width: 768px) {
    .web-design-hero {
        padding: 8rem 0 6rem 0;
    }

    .web-design-title {
        font-size: 2rem;
    }

    .web-design-subtitle {
        font-size: 1.125rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline::before {
        left: 20px;
    }

    .process-step {
        padding-left: 70px;
        margin-bottom: 3rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        border: 2px solid var(--color-background);
    }

    .process-step h3 {
        font-size: 1.25rem;
    }

    .process-step p {
        font-size: 1rem;
    }

    .web-design-cta-section {
        padding: 6rem 0 5rem 0;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .cta-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .web-design-hero {
        padding: 6rem 0 4rem 0;
    }

    .web-design-title {
        font-size: 1.75rem;
    }

    .web-design-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .web-design-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .industries-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .industry-card {
        padding: 1.5rem;
    }

    .process-timeline::before {
        left: 15px;
    }

    .process-step {
        padding-left: 60px;
        margin-bottom: 2.5rem;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        border: 2px solid var(--color-background);
    }

    .process-step h3 {
        font-size: 1.1rem;
    }

    .process-step p {
        font-size: 0.95rem;
    }

    .web-design-cta-section {
        padding: 4rem 0 3rem 0;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-description {
        font-size: 0.95rem;
    }
}

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