/* Green & Purple Cyberpunk Theme Portfolio */

:root {
    --primary-green: #00ff41;
    --dark-bg: #000000;
    --dark-purple: #1a0033;
    --purple-accent: #6600ff;
    --accent-green: #00cc34;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Courier New', monospace;
    background-color: #000000;
    color: var(--primary-green);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h2, h3, .section-title {
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Navbar */
.navbar {
    background-color: #000000;
    border-bottom: 2px solid var(--purple-accent);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 0 20px rgba(102, 0, 255, 0.2);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--purple-accent);
    text-decoration: none;
    text-shadow: 0 0 10px var(--purple-accent);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--primary-green);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--purple-accent);
    text-shadow: 0 0 10px var(--purple-accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--purple-accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #000000 0%, var(--dark-purple) 100%);
    border-bottom: 2px solid var(--purple-accent);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(102, 0, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(2rem, 8vw, 3.5rem);
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px var(--primary-green), 0 0 40px var(--purple-accent);
    animation: glow 2s ease-in-out infinite, fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 5vw, 1.5rem);
    color: var(--purple-accent);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px var(--purple-accent);
    animation: fadeInUp 1.2s ease-out;
    transition: all 0.3s ease;
}

.hero-subtitle:hover {
    text-shadow: 0 0 20px var(--purple-accent), 0 0 30px var(--purple-accent);
}

.hero-bio {
    font-size: 1rem;
    color: var(--primary-green);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-cta {
    margin: 2rem 0;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    text-decoration: none;
    border: 2px solid;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
    border-radius: 4px;
}

.btn-primary {
    background-color: var(--purple-accent);
    color: var(--primary-green);
    border-color: var(--primary-green);
}

.btn-primary:hover {
    background-color: transparent;
    box-shadow: 0 0 20px var(--purple-accent), 0 0 15px var(--primary-green);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-green);
    border-color: var(--purple-accent);
}

.btn-secondary:hover {
    background-color: var(--purple-accent);
    box-shadow: 0 0 20px var(--purple-accent);
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 20px var(--primary-green);
    }
    50% {
        text-shadow: 0 0 30px var(--primary-green), 0 0 40px var(--accent-green);
    }
}

/* Services Section */
.services {
    padding: 80px 20px;
    background-color: #000000;
    text-align: center;
}

.section-title {
    font-size: clamp(2rem, 6vw, 2.5rem);
    text-align: center !important;
    margin-bottom: 3rem;
    margin-left: auto;
    margin-right: auto;
    color: var(--purple-accent);
    text-shadow: 0 0 15px var(--purple-accent);
    position: relative;
    width: 100%;
    display: block;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background: var(--purple-accent);
    margin: 1rem auto 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--dark-purple);
    border: 2px solid var(--purple-accent);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(102, 0, 255, 0.2);
}

.service-card:hover {
    box-shadow: 0 0 30px rgba(102, 0, 255, 0.5), 0 0 20px rgba(0, 255, 65, 0.3);
    transform: translateY(-10px);
    border-color: var(--primary-green);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--primary-green);
}

.service-features {
    list-style: none;
    margin-top: 1rem;
    text-align: left;
    color: var(--primary-green);
    font-size: 0.9rem;
}

.service-features li {
    padding: 0.3rem 0;
}

/* Portfolio/Gallery Section */
.portfolio {
    padding: 80px 20px;
    background-color: #000000;
    text-align: center;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    background-color: var(--dark-purple);
    border: 2px solid var(--purple-accent);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(102, 0, 255, 0.2);
}

.gallery-item:hover {
    box-shadow: 0 0 30px rgba(102, 0, 255, 0.5), 0 0 20px rgba(0, 255, 65, 0.3);
    border-color: var(--primary-green);
    transform: scale(1.05);
}

.gallery-image {
    position: relative;
    overflow: hidden;
    height: 220px;
    background-color: rgba(102, 0, 255, 0.1);
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.view-btn {
    background-color: var(--purple-accent);
    color: var(--primary-green);
    padding: 10px 20px;
    text-decoration: none;
    border: 2px solid var(--primary-green);
    transition: all 0.3s ease;
    font-weight: bold;
}

.view-btn:hover {
    background-color: transparent;
    color: var(--primary-green);
    box-shadow: 0 0 15px var(--purple-accent), 0 0 10px var(--primary-green);
}

.gallery-info {
    padding: 1.5rem;
}

.gallery-info h3 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.category {
    color: var(--purple-accent);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.description {
    color: var(--primary-green);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.price {
    color: var(--accent-green);
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px var(--accent-green);
}

.available-for {
    color: var(--primary-green);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    display: inline-block;
    background-color: rgba(102, 0, 255, 0.2);
    color: var(--primary-green);
    padding: 4px 10px;
    border: 1px solid var(--purple-accent);
    font-size: 0.8rem;
    border-radius: 3px;
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #000000 0%, var(--dark-purple) 100%);
    border-top: 2px solid var(--purple-accent);
    border-bottom: 2px solid var(--purple-accent);
}

.contact-text {
    font-size: 1.2rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
}

.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    text-align: left;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background-color: rgba(102, 0, 255, 0.1);
    border: 2px solid var(--purple-accent);
    color: var(--primary-green);
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(0, 255, 65, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
}

.contact-btn {
    display: inline-block;
    background-color: var(--purple-accent);
    color: var(--primary-green);
    padding: 12px 30px;
    text-decoration: none;
    border: 2px solid var(--primary-green);
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.contact-btn:hover {
    background-color: transparent;
    color: var(--primary-green);
    box-shadow: 0 0 20px var(--purple-accent), 0 0 15px var(--primary-green);
    transform: scale(1.05);
}

.cyber-text {
    color: var(--primary-green);
    font-size: 0.9rem;
    text-shadow: 0 0 10px var(--primary-green);
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Project Detail Page */
.project-detail {
    padding: 3rem 20px;
    min-height: calc(100vh - 200px);
}

.back-link {
    color: var(--primary-green);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: var(--purple-accent);
    margin-left: -10px;
}

.project-hero {
    margin-bottom: 2rem;
    border: 2px solid var(--purple-accent);
    overflow: hidden;
    max-height: 500px;
    box-shadow: 0 0 30px rgba(102, 0, 255, 0.3);
}

.project-image {
    width: 100%;
    height: auto;
    display: block;
}

.project-content {
    background-color: var(--dark-purple);
    padding: 2rem;
    border: 2px solid var(--purple-accent);
    box-shadow: 0 0 15px rgba(102, 0, 255, 0.2);
}

.project-title {
    color: var(--primary-green);
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px var(--primary-green), 0 0 20px var(--purple-accent);
}

.project-category {
    color: var(--purple-accent);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.project-description {
    color: var(--primary-green);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.project-tags {
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.project-link {
    display: inline-block;
    background-color: var(--purple-accent);
    color: var(--primary-green);
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.project-link:hover {
    background-color: transparent;
    color: var(--primary-green);
    box-shadow: 0 0 20px var(--purple-accent), 0 0 15px var(--primary-green);
}

/* Stats Section */
.stats-section {
    padding: 80px 20px;
    background-color: #000000;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-box {
    background-color: var(--dark-purple);
    border: 2px solid var(--purple-accent);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(102, 0, 255, 0.2);
}

.stat-box:hover {
    box-shadow: 0 0 30px rgba(102, 0, 255, 0.5);
    transform: translateY(-5px);
}

.stat-value {
    font-size: 3rem;
    color: var(--primary-green);
    font-weight: bold;
    text-shadow: 0 0 20px var(--primary-green);
    margin-bottom: 0.5rem;
}

.stat-text {
    color: var(--primary-green);
    font-size: 1rem;
}

/* About Page Styles */
.about-hero {
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(135deg, #000000 0%, var(--dark-purple) 100%);
    border-bottom: 2px solid var(--purple-accent);
}

.page-title {
    font-size: clamp(2rem, 8vw, 3.5rem);
    color: var(--primary-green);
    text-shadow: 0 0 20px var(--primary-green), 0 0 40px var(--purple-accent);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: clamp(1.2rem, 5vw, 1.5rem);
    color: var(--purple-accent);
    text-shadow: 0 0 10px var(--purple-accent);
}

.about-content {
    padding: 80px 20px;
    background-color: #000000;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    text-shadow: 0 0 15px var(--primary-green);
}

.about-text p {
    color: var(--primary-green);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.contact-info {
    background-color: var(--dark-purple);
    border: 2px solid var(--purple-accent);
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 4px;
}

.contact-info p {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.contact-info strong {
    color: var(--purple-accent);
}

.stats-card {
    background: linear-gradient(135deg, var(--dark-purple) 0%, rgba(102, 0, 255, 0.1) 100%);
    border: 2px solid var(--purple-accent);
    padding: 2rem;
    border-radius: 4px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat {
    text-align: center;
    border-right: 1px solid rgba(102, 0, 255, 0.3);
}

.stat:nth-child(2n) {
    border-right: none;
}

.stat-number {
    font-size: 2.5rem;
    color: var(--primary-green);
    font-weight: bold;
    text-shadow: 0 0 15px var(--primary-green);
}

.stat-label {
    color: var(--primary-green);
    margin-top: 0.5rem;
}

.skills-section {
    padding: 80px 20px;
    background-color: #000000;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.skill-item {
    background-color: var(--dark-purple);
    border: 2px solid var(--purple-accent);
    padding: 1.5rem;
    border-radius: 4px;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.skill-name {
    color: var(--primary-green);
    font-weight: bold;
}

.skill-category {
    color: var(--accent-green);
    font-size: 0.85rem;
}

.skill-bar {
    background-color: rgba(102, 0, 255, 0.2);
    height: 6px;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.skill-fill {
    background: linear-gradient(90deg, var(--purple-accent), var(--primary-green));
    height: 100%;
    transition: width 0.5s ease;
}

.skill-level {
    text-align: right;
    color: var(--primary-green);
    font-size: 0.85rem;
}

.testimonials-section {
    padding: 80px 20px;
    background-color: #000000;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--dark-purple);
    border: 2px solid var(--purple-accent);
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(102, 0, 255, 0.2);
}

.testimonial-card:hover {
    box-shadow: 0 0 30px rgba(102, 0, 255, 0.4);
}

.star-rating {
    color: var(--accent-green);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--primary-green);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid rgba(102, 0, 255, 0.3);
    padding-top: 1rem;
}

.author-name {
    color: var(--primary-green);
    font-weight: bold;
    margin-bottom: 0.3rem;
}

.author-role {
    color: var(--accent-green);
    font-size: 0.9rem;
}

.cta-section {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #000000 0%, var(--dark-purple) 100%);
    border-top: 2px solid var(--purple-accent);
}

.cta-section h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    text-shadow: 0 0 15px var(--primary-green);
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
}

.cta-btn {
    display: inline-block;
    background-color: var(--purple-accent);
    color: var(--primary-green);
    padding: 15px 40px;
    text-decoration: none;
    border: 2px solid var(--primary-green);
    font-weight: bold;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.cta-btn:hover {
    background-color: transparent;
    box-shadow: 0 0 30px var(--purple-accent), 0 0 20px var(--primary-green);
    transform: scale(1.05);
}

.form-message {
    color: var(--accent-green);
    font-weight: bold;
    margin-top: 1rem;
}

.form-message.error {
    color: #ff4444;
}

/* Footer */
.footer {
    background-color: #000000;
    border-top: 2px solid var(--purple-accent);
    padding: 2rem 20px;
    text-align: center;
    color: var(--primary-green);
}

.footer .cyber-text {
    margin-top: 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.footer-section h3 {
    color: var(--purple-accent);
    margin-bottom: 1rem;
}

.footer-section a {
    display: block;
    color: var(--primary-green);
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: var(--purple-accent);
    text-shadow: 0 0 10px var(--purple-accent);
}

.footer-bottom {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
        justify-items: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 500px;
        margin: 0 auto;
    }

    .service-card {
        padding: 1.5rem;
    }

    .gallery-image {
        height: 180px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        justify-items: center;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 20px;
    }

    .container {
        padding: 0 15px;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }

    .nav-links {
        gap: 0.75rem;
        font-size: 0.85rem;
        flex-direction: column;
    }

    .logo a {
        font-size: 1.2rem;
    }

    .gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .services-grid {
        gap: 0.75rem;
    }

    .service-card {
        padding: 1.2rem;
    }

    .gallery-image {
        height: 150px;
    }

    .gallery-item {
        border: 1px solid var(--purple-accent);
    }

    .view-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .contact-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .btn {
        width: 100%;
    }

    .hero-cta {
        flex-direction: column;
    }

    .form-group input,
    .form-group textarea {
        font-size: 16px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

/* Page Hero Sections */
.page-hero {
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.05) 0%, rgba(102, 0, 255, 0.05) 100%);
    border-bottom: 2px solid var(--purple-accent);
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 2rem;
}

.page-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--primary-green);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
}

.page-subtitle {
    color: var(--purple-accent);
    font-size: clamp(1rem, 3vw, 1.3rem);
}

/* Services Detail Page */
.services-expanded {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.service-detail-card {
    background: linear-gradient(135deg, rgba(102, 0, 255, 0.1) 0%, rgba(0, 255, 65, 0.05) 100%);
    border: 2px solid var(--purple-accent);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 65, 0.2), transparent);
    transition: left 0.5s ease;
}

.service-detail-card:hover::before {
    left: 100%;
}

.service-detail-card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.3), 0 0 40px rgba(102, 0, 255, 0.2);
    transform: translateY(-5px);
}

.service-icon-large {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-detail-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.service-description {
    color: #ccc;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-features-list {
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem;
    border-left: 3px solid var(--primary-green);
    margin-top: 1rem;
}

.service-features-list h4 {
    color: var(--purple-accent);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.service-features-list ul {
    list-style: none;
}

.service-features-list li {
    color: #aaa;
    margin: 0.4rem 0;
    font-size: 0.9rem;
}

/* Service Process */
.service-process {
    margin: 4rem 0;
    padding: 2rem 0;
    border-top: 2px solid var(--purple-accent);
    border-bottom: 2px solid var(--purple-accent);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 50%;
    width: 2rem;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-green), transparent);
    transform: translateY(-50%);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--purple-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: bold;
    color: #000;
    font-size: 1.3rem;
}

.process-step h3 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.process-step p {
    color: #999;
    font-size: 0.85rem;
}

/* Pricing Page */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(102, 0, 255, 0.1) 0%, rgba(0, 255, 65, 0.03) 100%);
    border: 2px solid var(--purple-accent);
    border-radius: 8px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.popular {
    border: 2px solid var(--primary-green);
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.3);
    transform: scale(1.05);
}

.pricing-card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.2);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-green), var(--purple-accent));
    color: #000;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
}

.plan-name {
    color: var(--primary-green);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    margin: 1.5rem 0;
}

.price-amount {
    font-size: 2.5rem;
    color: var(--primary-green);
    font-weight: bold;
}

.price-currency {
    font-size: 1rem;
    color: var(--purple-accent);
}

.price-duration {
    color: #999;
    font-size: 0.9rem;
    margin-left: auto;
}

.best-for {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.features-list {
    list-style: none;
    margin: 1.5rem 0;
}

.features-list li {
    color: #ccc;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.checkmark {
    color: var(--primary-green);
    margin-right: 0.5rem;
}

.plan-btn {
    width: 100%;
    padding: 0.75rem;
    margin-top: 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Courier New', monospace;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    color: #000;
}

.btn-primary:hover {
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
    background: rgba(0, 255, 65, 0.1);
}

/* Case Studies */
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.case-study-card {
    background: linear-gradient(135deg, rgba(102, 0, 255, 0.1) 0%, rgba(0, 255, 65, 0.03) 100%);
    border: 2px solid var(--purple-accent);
    border-radius: 8px;
    padding: 2rem;
    position: relative;
}

.case-study-card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.2);
}

.study-number {
    position: absolute;
    top: -10px;
    left: 20px;
    background: linear-gradient(135deg, var(--primary-green), var(--purple-accent));
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.case-study-card h3 {
    color: var(--primary-green);
    margin: 1rem 0;
    text-transform: uppercase;
}

.study-section {
    margin: 1.5rem 0;
}

.study-section h4 {
    color: var(--purple-accent);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.study-section p {
    color: #ccc;
    font-size: 0.9rem;
}

.result-highlight {
    background: rgba(0, 255, 65, 0.1);
    padding: 0.5rem;
    border-left: 3px solid var(--primary-green);
}

.study-meta {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--purple-accent);
}

.tech-stack {
    margin-bottom: 1rem;
}

.tech-stack strong {
    color: var(--primary-green);
    font-size: 0.85rem;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.tech-tag {
    background: rgba(102, 0, 255, 0.2);
    border: 1px solid var(--purple-accent);
    color: #aaa;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    font-size: 0.75rem;
}

.duration {
    color: #999;
    font-size: 0.85rem;
}

.duration strong {
    color: var(--primary-green);
}

/* Results Summary */
.results-summary {
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.05) 0%, rgba(102, 0, 255, 0.05) 100%);
    border: 2px solid var(--purple-accent);
    border-radius: 8px;
    padding: 3rem 0;
    margin: 3rem 0;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.metric-box {
    text-align: center;
}

.metric-value {
    font-size: 2rem;
    color: var(--primary-green);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.metric-label {
    color: #999;
    font-size: 0.9rem;
}

/* FAQ Page */
.faq-section {
    padding: 2rem 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-accordion-item {
    margin-bottom: 1rem;
    border: 2px solid var(--purple-accent);
    border-radius: 4px;
    overflow: hidden;
    background: rgba(102, 0, 255, 0.05);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(102, 0, 255, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Courier New', monospace;
    color: var(--primary-green);
    font-weight: bold;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.1) 0%, rgba(102, 0, 255, 0.1) 100%);
}

.faq-icon {
    color: var(--primary-green);
    font-size: 1.5rem;
    font-weight: bold;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.faq-accordion-item.active .faq-answer {
    padding: 1rem 1.5rem;
}

.faq-answer p {
    color: #ccc;
    line-height: 1.8;
}

.contact-cta {
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.05) 0%, rgba(102, 0, 255, 0.05) 100%);
    border-radius: 8px;
    margin: 2rem 0;
}

.contact-cta h2 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.contact-cta p {
    color: #999;
    margin-bottom: 1.5rem;
}

.cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    color: #000;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.5);
    transform: scale(1.05);
}

.pricing-faq {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 2px solid var(--purple-accent);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.faq-item {
    background: rgba(102, 0, 255, 0.05);
    border: 1px solid var(--purple-accent);
    border-radius: 4px;
    padding: 1.5rem;
}

.faq-item h3 {
    color: var(--primary-green);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.faq-item p {
    color: #ccc;
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Blog Section */
.blog-section {
    padding: 2rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.blog-post {
    background: linear-gradient(135deg, rgba(102, 0, 255, 0.1) 0%, rgba(0, 255, 65, 0.03) 100%);
    border: 2px solid var(--purple-accent);
    border-radius: 8px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}

.blog-post:hover {
    border-color: var(--primary-green);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.2);
    transform: translateY(-5px);
}

.post-date {
    color: var(--primary-green);
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.blog-post h2 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    line-height: 1.4;
}

.post-excerpt {
    color: #ccc;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.category {
    background: rgba(0, 255, 65, 0.1);
    border: 1px solid var(--primary-green);
    color: var(--primary-green);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
}

.read-time {
    color: #999;
    font-size: 0.85rem;
}

.read-more {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

.read-more:hover {
    transform: translateX(5px);
}

/* Contact Section */
.contact-section {
    padding: 2rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.contact-info h2 {
    color: var(--primary-green);
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--purple-accent);
}

.contact-item:last-of-type {
    border-bottom: none;
}

.contact-icon {
    font-size: 2rem;
    min-width: 50px;
}

.contact-item h3 {
    color: var(--primary-green);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.contact-item p {
    color: #ccc;
    margin: 0;
}

.social-links h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.socials {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.1), rgba(102, 0, 255, 0.1));
    border: 1px solid var(--purple-accent);
    color: var(--primary-green);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-link:hover {
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.2), rgba(102, 0, 255, 0.2));
    border-color: var(--primary-green);
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.2);
}

.contact-form-container {
    background: linear-gradient(135deg, rgba(102, 0, 255, 0.1) 0%, rgba(0, 255, 65, 0.03) 100%);
    border: 2px solid var(--purple-accent);
    border-radius: 8px;
    padding: 2rem;
}

.contact-form-full {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form-full .form-group {
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step::after {
        display: none;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
