/* ============================================
   WEB DESIGN PAGE - CODE/TECH THEME
   ============================================ */

.web-page {
    background: #0d1117;
    font-family: 'Inter', sans-serif;
}

/* Web Hero Section */
.web-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #0d1117;
}

/* Grid Background */
.grid-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(192, 192, 192, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(192, 192, 192, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

/* Code Rain Effect */
.code-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(192, 192, 192, 0.03) 2px,
        rgba(192, 192, 192, 0.03) 4px
    );
    animation: scroll-down 20s linear infinite;
    opacity: 0.3;
}

@keyframes scroll-down {
    from { transform: translateY(0); }
    to { transform: translateY(50px); }
}

.web-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 6rem 2rem 2rem;
}

/* Terminal Badge */
.terminal-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(192, 192, 192, 0.05);
    border: 1px solid rgba(192, 192, 192, 0.2);
    border-radius: 8px;
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
    color: #58a6ff;
    margin-bottom: 2rem;
}

.terminal-prompt {
    color: #7ee787;
}

.typing-text {
    color: #c9d1d9;
}

.cursor {
    animation: blink 1s infinite;
    color: #c9d1d9;
}

@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

.web-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #c9d1d9;
}

.code-bracket {
    color: #79c0ff;
    font-family: 'Fira Code', monospace;
}

.web-hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: #8b949e;
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* Tech Stack Pills */
.tech-stack {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    justify-content: center;
}

.tech-item {
    padding: 0.5rem 1.25rem;
    background: rgba(88, 166, 255, 0.1);
    border: 1px solid rgba(88, 166, 255, 0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #58a6ff;
    font-family: 'Fira Code', monospace;
}

/* Code Snippet */
.code-snippet {
    background: #161b22;
    border: 1px solid #30363d;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.snippet-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #0d1117;
    border-bottom: 1px solid #30363d;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.snippet-title {
    margin-left: auto;
    font-family: 'Fira Code', monospace;
    font-size: 0.85rem;
    color: #8b949e;
}

.snippet-code {
    padding: 1.5rem;
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
    line-height: 1.8;
}

.snippet-code .keyword { color: #ff7b72; }
.snippet-code .variable { color: #79c0ff; }
.snippet-code .property { color: #7ee787; }
.snippet-code .string { color: #a5d6ff; }
.snippet-code .boolean { color: #79c0ff; }

/* Web Buttons */
.btn-web {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: 'Fira Code', monospace;
}

.btn-web-primary {
    background: linear-gradient(135deg, #58a6ff 0%, #1f6feb 100%);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(88, 166, 255, 0.3);
}

.btn-web-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(88, 166, 255, 0.5);
}

.btn-web-secondary {
    background: rgba(88, 166, 255, 0.1);
    border: 2px solid rgba(88, 166, 255, 0.3);
    color: #58a6ff;
}

.btn-web-secondary:hover {
    background: rgba(88, 166, 255, 0.2);
    border-color: rgba(88, 166, 255, 0.5);
    transform: translateY(-3px);
}

/* Web Services Section */
.web-services {
    padding: 8rem 0;
    background: #010409;
}

.section-header-web {
    text-align: center;
    margin-bottom: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.section-tag {
    font-family: 'Fira Code', monospace;
    color: #58a6ff;
    font-size: 1.5rem;
}

.section-header-web h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #c9d1d9;
}

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

.service-web-card {
    position: relative;
    padding: 2.5rem;
    background: #161b22;
    border: 1px solid #30363d;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-web-card:hover {
    transform: translateY(-10px);
    border-color: #58a6ff;
    box-shadow: 0 20px 50px rgba(88, 166, 255, 0.2);
}

.featured-service {
    border-color: #58a6ff;
    background: linear-gradient(135deg, rgba(88, 166, 255, 0.05) 0%, rgba(31, 111, 235, 0.05) 100%);
}

.featured-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.4rem 1rem;
    background: rgba(88, 166, 255, 0.2);
    border: 1px solid #58a6ff;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #58a6ff;
}

.service-icon-web {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-web-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #c9d1d9;
}

.service-web-card p {
    color: #8b949e;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.tech-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.tech-tags span {
    padding: 0.35rem 0.85rem;
    background: rgba(88, 166, 255, 0.1);
    border: 1px solid rgba(88, 166, 255, 0.2);
    border-radius: 12px;
    font-size: 0.8rem;
    color: #58a6ff;
    font-family: 'Fira Code', monospace;
}

.service-link {
    color: #58a6ff;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-web-card:hover .service-link {
    transform: translateX(5px);
    display: inline-block;
}

/* Tech Showcase */
.tech-showcase {
    padding: 8rem 0;
    background: #0d1117;
}

.showcase-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: #c9d1d9;
}

.showcase-subtitle {
    text-align: center;
    color: #8b949e;
    font-size: 1.1rem;
    margin-bottom: 5rem;
}

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

.tech-category {
    padding: 2.5rem;
    background: #161b22;
    border: 1px solid #30363d;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.tech-category:hover {
    border-color: #58a6ff;
    box-shadow: 0 15px 40px rgba(88, 166, 255, 0.15);
}

.tech-category h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #c9d1d9;
}

.tech-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tech-badge {
    padding: 0.75rem 1.25rem;
    background: rgba(88, 166, 255, 0.05);
    border: 1px solid rgba(88, 166, 255, 0.2);
    border-radius: 8px;
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
    color: #58a6ff;
    transition: all 0.3s ease;
}

.tech-badge:hover {
    background: rgba(88, 166, 255, 0.1);
    border-color: #58a6ff;
    transform: translateX(5px);
}

/* Web Pricing */
.web-pricing {
    padding: 8rem 0;
    background: #010409;
}

.pricing-title-web {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: #c9d1d9;
}

.pricing-subtitle-web {
    text-align: center;
    color: #8b949e;
    font-size: 1.1rem;
    margin-bottom: 4rem;
}

.pricing-grid-web {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.price-card-web {
    position: relative;
    padding: 3rem 2.5rem;
    background: #161b22;
    border: 2px solid #30363d;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.price-card-web:hover {
    transform: translateY(-10px);
    border-color: #58a6ff;
    box-shadow: 0 25px 60px rgba(88, 166, 255, 0.2);
}

.featured-web {
    border-color: #58a6ff;
    background: linear-gradient(135deg, rgba(88, 166, 255, 0.05) 0%, rgba(31, 111, 235, 0.05) 100%);
}

.popular-web {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, #58a6ff 0%, #1f6feb 100%);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 800;
}

.plan-name-web {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #c9d1d9;
}

.price-web {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #58a6ff;
    margin-bottom: 1rem;
}

.plan-desc-web {
    color: #8b949e;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #30363d;
}

.features-web {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.features-web li {
    padding: 0.75rem 0;
    color: #8b949e;
    border-bottom: 1px solid rgba(48, 54, 61, 0.5);
}

.cta-web {
    display: block;
    text-align: center;
    padding: 1.1rem 2rem;
    background: rgba(88, 166, 255, 0.1);
    border: 2px solid rgba(88, 166, 255, 0.3);
    color: #58a6ff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-family: 'Fira Code', monospace;
    transition: all 0.3s ease;
}

.cta-web:hover {
    background: rgba(88, 166, 255, 0.2);
    border-color: #58a6ff;
    transform: translateY(-2px);
}

.cta-web-featured {
    background: linear-gradient(135deg, #58a6ff 0%, #1f6feb 100%);
    color: white;
    border-color: transparent;
}

.cta-web-featured:hover {
    box-shadow: 0 10px 30px rgba(88, 166, 255, 0.4);
}

/* Web CTA */
.web-cta {
    padding: 8rem 0;
    background: #0d1117;
}

.web-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.terminal-window {
    background: #161b22;
    border: 1px solid #30363d;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.terminal-header {
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #0d1117;
    border-bottom: 1px solid #30363d;
}

.terminal-body {
    padding: 1.5rem;
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
    line-height: 2;
    text-align: left;
}

.terminal-body .prompt { color: #7ee787; }
.terminal-body .cmd { color: #58a6ff; }
.terminal-body .output { color: #8b949e; }

.web-cta-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: #c9d1d9;
}

.web-cta-content p {
    font-size: 1.3rem;
    color: #8b949e;
    margin-bottom: 3rem;
}

.btn-web-cta {
    background: linear-gradient(135deg, #58a6ff 0%, #1f6feb 100%);
    color: white;
    padding: 1.3rem 3rem;
    font-size: 1.1rem;
    box-shadow: 0 15px 40px rgba(88, 166, 255, 0.4);
}

.btn-web-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(88, 166, 255, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .tech-stack {
        justify-content: flex-start;
    }
    
    .services-web-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-categories {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid-web {
        grid-template-columns: 1fr;
    }
}