/* Standalone styles for Pozycjonowanie Stron page */
/* All necessary styles copied from main stylesheet */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Modern Edgy Color Palette */
    --primary-bg: #0a0a0a;
    --secondary-bg: #111111;
    --card-bg: rgba(18, 18, 18, 0.95);
    --accent-color: #00ff88;
    --accent-secondary: #ff0070;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #666666;
    --border-color: rgba(255, 255, 255, 0.1);
    --hover-bg: rgba(0, 255, 136, 0.1);
    
    /* Gradients */
    --gradient: linear-gradient(135deg, #00ff88 0%, #00d4aa 50%, #00b894 100%);
    --gradient-dark: linear-gradient(135deg, rgba(0, 255, 136, 0.2) 0%, rgba(0, 212, 170, 0.2) 50%, rgba(0, 184, 148, 0.2) 100%);
    --gradient-card: linear-gradient(135deg, rgba(18, 18, 18, 0.8) 0%, rgba(25, 25, 25, 0.9) 100%);
    
    /* Neon Effects */
    --neon-green: #00ff88;
    --neon-blue: #00d4ff;
    --neon-pink: #ff0070;
    --neon-purple: #8b5cf6;
    
    /* Box Shadows */
    --shadow-neon: 0 0 20px rgba(0, 255, 136, 0.5);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.6);
    --shadow-hover: 0 12px 40px rgba(0, 255, 136, 0.3);
}

body {
    background: var(--primary-bg);
    color: var(--text-primary);
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
}

html {
    scroll-behavior: smooth;
}

/* Cyberpunk grid background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -1;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo a {
    font-size: 24px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-link:hover {
    color: var(--neon-green);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.8);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--neon-green);
}

.nav-link.active::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: var(--text-secondary);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger:hover .bar {
    background: var(--neon-green);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: var(--neon-green);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    background: var(--neon-green);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: auto;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    25% { 
        transform: translateY(-10px) rotate(1deg); 
    }
    50% { 
        transform: translateY(-20px) rotate(0deg); 
    }
    75% { 
        transform: translateY(-10px) rotate(-1deg); 
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card), inset 0 0 50px rgba(0, 255, 136, 0.05);
}

.hero h1 {
    width: 80vw;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 50px rgba(0, 255, 136, 0.3);
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

.hero .tagline {
    font-size: clamp(1.2rem, 3vw, 2rem);
    margin-bottom: 10px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.7s forwards;
    font-weight: 300;
}

.hero .subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
    color: rgba(255, 255, 255, 0.8);
}

.cta-button {
    background: var(--gradient);
    box-shadow: var(--shadow-neon);
    border: none;
    color: var(--primary-bg);
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    backdrop-filter: blur(20px);
    opacity: 1;
    animation: fadeInUp 1s ease 1.1s forwards;
    position: relative;
    z-index: 10;
}

.cta-button:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.8);
    color: var(--primary-bg);
}

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

/* Section Styling */
.section {
    padding: 40px 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-primary);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

/* Portfolio Section */
.portfolio-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.portfolio-category {
    width: 100%;
    margin-bottom: 0;
}

.category-title {
    font-size: 28px;
    color: var(--text-primary);
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 20px;
}

@media (min-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1100px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .category-title {
        margin-bottom: 50px;
    }
}

.portfolio-item {
    background: var(--gradient-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-item.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.portfolio-image {
    height: 220px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #00d4ff 100%);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.portfolio-content {
    padding: 30px 25px;
}

.portfolio-content h4 {
    font-size: 22px;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.portfolio-content p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cta-secondary {
    background: transparent;
    border: 2px solid var(--neon-green);
    color: var(--neon-green);
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.cta-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    transition: left 0.3s ease;
    z-index: -1;
}

.cta-secondary:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
}

.cta-secondary:hover::before {
    left: 0;
}

/* Pricing Section */
.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 60px;
    padding-top: 20px;
}

.pricing-card {
    background: var(--gradient-card);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-card);
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--neon-green);
}

.pricing-card.featured {
    border: 2px solid var(--neon-green);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.pricing-card.featured::before {
    content: "POPULARNY";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: var(--shadow-neon);
}

.pricing-card h3 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.pricing-card .price {
    font-size: 1.8rem;
    font-weight: bold;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.pricing-card .time {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.pricing-card li {
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.pricing-card li:hover {
    color: var(--neon-green);
    padding-left: 5px;
}

.pricing-card li:before {
    content: "✓";
    color: var(--neon-green);
    font-weight: bold;
    margin-right: 0.75rem;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.pricing-btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 15px 35px;
    background: transparent;
    border: 2px solid var(--neon-green);
    color: var(--neon-green);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.pricing-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    transition: left 0.3s ease;
    z-index: -1;
}

.pricing-btn:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
}

.pricing-btn:hover::before {
    left: 0;
}

.pricing-btn.featured-btn {
    background: var(--gradient);
    color: white;
    border-color: var(--neon-green);
    box-shadow: var(--shadow-neon);
}

.pricing-btn.featured-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.8);
}

/* FAQ Section */
.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
}

.faq-item {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    width: 100%;
}

.faq-item:hover {
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.faq-question {
    background: transparent;
    padding: 1.75rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.faq-item.active .faq-question {
    border-bottom-color: var(--border-color);
}

.faq-question:hover {
    background: rgba(0, 255, 136, 0.05);
}

.faq-question h4 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--neon-green);
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 1.75rem;
    max-height: none;
    overflow: visible;
    transition: none;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

@media (min-width: 1000px) {
    .faq-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Skills Section */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.skill-card {
    background: var(--gradient-card);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(40px) rotateY(10deg);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.skill-card.visible {
    opacity: 1;
    transform: translateY(0) rotateY(0deg);
}

.skill-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.skill-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-item {
    background: var(--gradient-card);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(10px);
    text-align: center;
    transition: transform 0.3s ease;
    border-left: 3px solid var(--neon-green);
    border-right: 3px solid var(--neon-green);
    opacity: 0;
    transform: translateX(-30px) rotateX(10deg);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-item.visible {
    opacity: 1;
    transform: translateX(0) rotateX(0deg);
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    padding: 10px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 700;
    color: var(--neon-green);
}

/* Contact Section */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 60px 0 40px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 20px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    text-align: left;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

.contact-item:hover::before {
    left: 100%;
}

.contact-item.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.contact-item:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--neon-green);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, rgba(18, 18, 18, 0.95) 100%);
}

.contact-icon {
    font-size: 20px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.contact-item:hover .contact-icon {
    transform: rotate(360deg) scale(1.15);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.contact-details h4 {
    color: var(--text-primary);
    margin: 0 0 5px 0;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.contact-item:hover .contact-details h4 {
    color: var(--neon-green);
}

.contact-details p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
    transition: color 0.3s ease;
}

.contact-item:hover .contact-details p {
    color: var(--text-primary);
}

.contact-details p a {
    transition: all 0.3s ease;
}

.contact-item:hover .contact-details p a {
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.6);
}

/* Contact Form */
.contact-form {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    margin-top: 20px;
}

.form-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.form-column-left,
.form-column-right {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: inherit;
    box-sizing: border-box;
}

.form-group 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='%2300ff88' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 45px;
}

.form-group select option {
    background: var(--secondary-bg);
    color: var(--text-primary);
    padding: 10px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--neon-green);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
    background: rgba(0, 255, 136, 0.05);
}

.form-group textarea {
    resize: vertical;
    height: 100%;
    min-height: 180px;
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.error-message {
    color: var(--neon-pink);
    font-size: 12px;
    margin-top: 5px;
    display: block;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.error-message.show {
    opacity: 1;
}

.submit-btn {
    padding: 18px 40px;
    background: var(--gradient);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-neon);
    white-space: nowrap;
    animation: pulse 2s infinite;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
    animation: none;
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 255, 136, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0);
    }
}

.form-message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: var(--neon-green);
}

.form-message.error {
    background: rgba(255, 0, 112, 0.1);
    border: 1px solid rgba(255, 0, 112, 0.3);
    color: var(--neon-pink);
}

/* Footer */
.footer {
    background: var(--secondary-bg);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 0;
    margin-top: 80px;
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

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

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col-company {
    grid-column: span 1;
}

.footer-heading {
    color: var(--neon-green);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Address Styling */
.footer-address {
    font-style: normal;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.address-line {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.address-icon {
    font-size: 16px;
    flex-shrink: 0;
    width: 20px;
}

.footer-link-inline {
    color: var(--neon-green);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link-inline:hover {
    opacity: 0.8;
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.5);
}

/* Navigation Lists */
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 10px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-link:hover {
    color: var(--neon-green);
    transform: translateX(5px);
}

.footer-link::before {
    content: '→';
    position: absolute;
    left: -18px;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: var(--neon-green);
}

.footer-link:hover::before {
    opacity: 1;
}

/* Why Us List */
.footer-why-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
}

.footer-why-list li {
    margin-bottom: 8px;
    padding-left: 8px;
}

/* Newsletter Form */
.newsletter-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    line-height: 1.5;
}

.footer-newsletter-form {
    margin-bottom: 20px;
}

.newsletter-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
}

.newsletter-input-group {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.newsletter-input {
    flex: 1;
    padding: 10px 14px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--neon-green);
    box-shadow: 0 0 12px rgba(0, 255, 136, 0.3);
    background: rgba(0, 0, 0, 0.4);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-btn {
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--neon-green), var(--neon-blue));
    border: none;
    border-radius: 6px;
    color: #000;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.newsletter-btn:active {
    transform: translateY(0);
}

.newsletter-consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}

.newsletter-consent input[type="checkbox"] {
    margin-top: 2px;
    cursor: pointer;
}

.newsletter-consent label {
    cursor: pointer;
    line-height: 1.4;
}

.newsletter-status {
    font-size: 13px;
    padding: 8px 12px;
    border-radius: 4px;
    margin-top: 8px;
    display: none;
}

.newsletter-status.show {
    display: block;
}

.newsletter-status.success {
    background: rgba(0, 255, 136, 0.15);
    color: var(--neon-green);
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.newsletter-status.error {
    background: rgba(255, 87, 87, 0.15);
    color: #ff5757;
    border: 1px solid rgba(255, 87, 87, 0.3);
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Social Links */
.footer-social {
    margin-top: 20px;
}

.footer-social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(0, 255, 136, 0.08);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: rgba(0, 255, 136, 0.15);
    border-color: var(--neon-green);
    transform: translateX(5px);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.footer-social-link .social-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.footer-social-link:hover .social-icon {
    transform: scale(1.15);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 24px 0;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 0;
    line-height: 1.6;
}

.heart {
    color: var(--neon-pink);
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 50%, 100% { transform: scale(1); }
    25%, 75% { transform: scale(1.2); }
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0;
        margin-top: 60px;
    }
    
    .footer-main {
        padding: 0 20px 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-col-company {
        grid-column: span 1;
    }
    
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .newsletter-btn {
        width: 100%;
    }
}

/* Scroll Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0s;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in:nth-child(1) { transition-delay: 0.1s; }
.fade-in:nth-child(2) { transition-delay: 0.2s; }
.fade-in:nth-child(3) { transition-delay: 0.3s; }
.fade-in:nth-child(4) { transition-delay: 0.4s; }
.fade-in:nth-child(5) { transition-delay: 0.5s; }
.fade-in:nth-child(6) { transition-delay: 0.6s; }

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--secondary-bg);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        gap: 30px;
        transition: all 0.3s ease;
        border-top: 1px solid var(--border-color);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 18px;
        padding: 15px 30px;
        width: 200px;
        text-align: center;
        border-radius: 25px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--border-color);
        transition: all 0.3s ease;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: rgba(0, 255, 136, 0.1);
        border-color: var(--neon-green);
        box-shadow: 0 5px 20px rgba(0, 255, 136, 0.2);
        transform: translateY(-2px);
    }
    
    .nav-link::after {
        display: none;
    }

    .hero {
        min-height: 100vh;
        height: auto;
        padding: 80px 20px 40px;
    }

    .hero-content {
        width: 100%;
        padding: 30px 20px;
        animation: none;
    }
    
    .hero h1 {
        font-size: clamp(2rem, 10vw, 3rem) !important;
        line-height: 1.2;
        margin-bottom: 15px;
        word-break: break-word;
    }
    
    .hero h1 br {
        display: none;
    }
    
    .hero .tagline {
        font-size: clamp(1rem, 4vw, 1.3rem) !important;
        line-height: 1.4;
        margin-bottom: 15px;
        padding: 0 10px;
    }
    
    .hero .subtitle {
        font-size: clamp(0.85rem, 3.5vw, 1.1rem) !important;
        line-height: 1.6;
        margin-bottom: 30px;
        padding: 0 5px;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
        opacity: 1 !important;
        z-index: 100;
        position: relative;
    }

    .testimonials-grid {
        gap: 20px;
    }

    .form-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .portfolio-grid {
       grid-template-columns: 1fr !important;
    }

    .skills-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 70px 15px 30px;
    }

    .hero-content {
        width: 100%;
        padding: 25px 15px;
    }
    
    .hero h1 {
        font-size: clamp(1.75rem, 9vw, 2.5rem) !important;
        margin-bottom: 12px;
    }
    
    .hero .tagline {
        font-size: clamp(0.9rem, 4vw, 1.15rem) !important;
        margin-bottom: 12px;
    }
    
    .hero .subtitle {
        font-size: clamp(0.8rem, 3.5vw, 1rem) !important;
        margin-bottom: 25px;
        line-height: 1.5;
    }
    
    .cta-button {
        padding: 10px 25px;
        font-size: 0.95rem;
        width: 100%;
        opacity: 1 !important;
        z-index: 100;
        position: relative;
    }

    .testimonials-grid {
        gap: 20px;
        grid-template-columns: 1fr !important;
    }

    .form-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .portfolio-grid {
       grid-template-columns: 1fr !important;
    }

    .skills-grid {
        grid-template-columns: 1fr !important;
    }

    .contact-form {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-social-links {
        align-items: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (min-width: 1024px) and (max-width: 1400px) {
    .nav-container {
        padding: 0 30px;
    }
    
    .nav-menu {
        gap: 25px;
    }
    
    .nav-link {
        font-size: 15px;
    }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .fade-in,
    .portfolio-item,
    .skill-card,
    .testimonial-item,
    .contact-item {
        transition-duration: 0.3s;
        transform: none !important;
    }
}

#problems .portfolio-item {
    display: flex;
    flex-direction: column;
}

#problems .portfolio-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: justify;
}

#problems .portfolio-content h3 {
    text-align: center;
}

#problems .portfolio-content .cta-secondary {
    margin-top: auto;
    align-self: center;
    text-align: center;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient);
    border: 2px solid var(--neon-green);
    color: var(--text-primary);
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
    padding: 0;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.8);
}

.scroll-to-top:active {
    transform: translateY(0);
}

.scroll-to-top.show {
    display: flex;
    animation: slideUp 0.4s ease-out;
}

.scroll-to-top.hide {
    animation: slideDown 0.4s ease-out forwards;
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    stroke: var(--text-primary);
    animation: bounce 2s ease-in-out infinite;
}

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

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

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
}

