* {
    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;
}

/* Add 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%;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(17, 17, 17, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 10px;
    padding: 10px 0;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    margin-top: 15px;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    color: var(--neon-green);
    background: rgba(0, 255, 136, 0.05);
    border-left-color: var(--neon-green);
    padding-left: 25px;
}

/* 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);
}

/* About Section - Fixed */
#about {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    justify-items: center;
    margin-top: 60px;
}

.profile-pic {
    width: 100%;
    border-radius: 40px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image {
    width: 100%;
    max-width: 350px;
    height: 400px;
    border-radius: 40px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid var(--neon-green);
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Fallback if no image */
.about-image:not([style*="background-image"]) {
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    color: white;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 255, 136, 0.1) 0%, transparent 50%, rgba(0, 255, 136, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-image:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.5);
    border-color: var(--neon-blue);
}

.about-image:hover::before {
    opacity: 1;
}

.about-text {
    text-align: left;
}

.about-text h3 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 30px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.8;
}

.about-text p:last-of-type {
    margin-bottom: 40px;
}

.highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.highlight-item {
    text-align: center;
    padding: 25px 20px;
    border-radius: 15px;
    background: var(--gradient-card);
    border: 1px solid rgba(0, 255, 136, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.highlight-item:hover {
    transform: translateY(-5px);
    border-color: var(--neon-green);
    box-shadow: var(--shadow-hover);
}

.highlight-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--neon-green);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    display: block;
    margin-bottom: 8px;
}

.highlight-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* CTA Button in About */
.about-cta {
    margin-top: 30px;
}

.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;
}


/* Portfolio Section */
.portfolio-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    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;
}

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

/* Desktop: 3 columns in one row */
@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;
}

/* Specific styling for projects */
.portfolio-item[data-project="tytanimowy"] .portfolio-image {
    background-image: url('../images/tytanimowy.png');
    background-size: cover;
    background-position: center;
}

.portfolio-item[data-project="dachdecker"] .portfolio-image {
    background-image: url('../images/dachdecker.png');
    background-size: cover;
    background-position: center;
}

.portfolio-item[data-project="aquarius"] .portfolio-image {
    background-image: url('../images/aquarius.png');
    background-size: cover;
    background-position: center;
}

.portfolio-image.app-preview {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #00d4ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.code-preview {
    font-family: 'Courier New', monospace;
    color: #00ff88;
    font-size: 14px;
    line-height: 1.6;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.code-line {
    margin-bottom: 8px;
    opacity: 0;
    animation: typeIn 0.5s ease-in-out forwards;
}

.code-line:nth-child(1) { animation-delay: 0s; }
.code-line:nth-child(2) { animation-delay: 0.2s; }
.code-line:nth-child(3) { animation-delay: 0.4s; }

@keyframes typeIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.project-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: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.portfolio-item:hover .project-overlay {
    opacity: 1;
}

.project-links {
    display: flex;
    gap: 15px;
}

.project-btn {
    padding: 12px 20px;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.4);
    border: 1px solid var(--neon-green);
}

.project-btn:hover {
    box-shadow: 0 6px 25px rgba(0, 255, 136, 0.6);
    transform: scale(1.05) translateY(-2px);
}

.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;
}

.portfolio-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tag {
    background: rgba(0, 255, 136, 0.1);
    color: var(--neon-green);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(0, 255, 136, 0.3);
    box-shadow: inset 0 0 10px rgba(0, 255, 136, 0.1);
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: rgba(0, 255, 136, 0.2);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
    color: #ffffff;
    transform: scale(1.05);
}

/* 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;
}

.skill-progress {
    background: rgba(255, 255, 255, 0.1);
    height: 8px;
    border-radius: 4px;
    margin: 20px 0;
    overflow: hidden;
}

.skill-progress-bar {
    height: 100%;
    background: var(--gradient);
    border-radius: 4px;
    transition: width 2s ease;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

/* 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;
    padding: 0 20px;
}

.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;
    transition: all 0.3s ease;
    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);
}

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

.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;
}

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

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

/* Schedule Meeting Button */
.schedule-btn {
    background: linear-gradient(135deg, var(--accent-color), #007BFF);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(34, 139, 34, 0.3);
    margin-top: 5px;
}

.schedule-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(34, 139, 34, 0.4);
    background: linear-gradient(135deg, #28a745, #0056b3);
}

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

/* Calendar modal styles removed */

/* 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 {
    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 input:focus,
.form-group textarea: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;
}

/* Social Links */
.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;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 0 15px;
    }
    
    .newsletter {
        padding: 20px 15px;
    }
    
    .footer-links {
        gap: 15px;
    }
    
    .footer-links a {
        font-size: 12px;
    }
}

/* Add these animation styles after your existing CSS */

/* 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);
}

/* Staggered animation delays for multiple elements */
.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; }

/* Section title animation */
.section-title.fade-in {
    transform: translateY(30px) scale(0.9);
}

.section-title.fade-in.visible {
    transform: translateY(0) scale(1);
}

/* Portfolio items animation */
.portfolio-item {
    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);
}

/* Skill cards animation */
.skill-card {
    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);
}

/* Testimonial animation */
.testimonial-item {
    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);
}

/* Contact items animation */
.contact-item {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Footer sections animation */
.footer-section {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* About content animation */
.about-content {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-content.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Highlight items staggered animation */
.highlight-item {
    opacity: 0;
    transform: translateY(30px) scale(0.8);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.highlight-item:nth-child(1) { transition-delay: 0.1s; }
.highlight-item:nth-child(2) { transition-delay: 0.2s; }
.highlight-item:nth-child(3) { transition-delay: 0.3s; }

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

/* 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;
    }
    
    /* Mobile Dropdown */
    .nav-dropdown {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .dropdown-toggle {
        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;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        margin-top: 10px;
        width: 90%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding: 0;
        border: none;
    }
    
    .nav-dropdown:hover .dropdown-menu {
        max-height: 300px;
        padding: 10px 0;
        border: 1px solid rgba(0, 255, 136, 0.2);
    }
    
    .dropdown-item {
        padding: 12px 20px;
        font-size: 15px;
        text-align: center;
    }
}

/* Tablet Navigation */
@media (max-width: 1024px) and (min-width: 769px) {
    
    #about {
        padding: 0px 50px;
        max-width: 1024px;
    }

    .about-content {
        gap: 0px;
    }

    .nav-container {
        padding: 0 30px;
    }
    
    .nav-menu {
        gap: 25px;
    }
    
    .nav-link {
        font-size: 15px;
    }

    .about-text {
        padding: 0px 20px;
    }

    .portfolio-container {
        padding: 0px;
    }

    .contact-container {
        padding: 0px;
    }

    .footer {
        padding: 40px 50px;
        margin-top: 0px;
    }

    .footer-content {
        margin-bottom: 10px;
    }

    #footer-middle {
        display:none
    }
}

/* Large screens */
@media (min-width: 1400px) {
    .nav-container {
        padding: 0 80px;
    }
}


/* Responsive About Section */
@media (max-width: 968px) {
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-image {
        max-width: 300px;
        height: 400px;
        margin: 0 auto;
    }
    
    .about-text {
        text-align: center;
    }
    
    .highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {

    .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;
    }

    #about {
        padding: 0px 50px;
    }

    #skills {
        padding: 0px 50px;
    }

    #testimonials {
        padding: 0px 50px;
    }

    #portfolio {
        padding: 0px 30px;
    }

    .contact {
        padding: 0px 40px;
    }

    #footer {
        margin-top: 20px;
        padding: 20px 30px;
    }

    .contact-container {
        padding: 0 0;
    }

    .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;
    }

    
    .about-image {
        max-width: 250px;
        height: 350px;
    }
    
    .highlights {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .highlight-item {
        padding: 20px 15px;
    }

}

@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;
    }

    #about {
        padding: 0px 30px;
    }

    #skills {
        padding: 0px 30px;
    }

    #testimonials {
        margin-top: 20px;
        padding: 0px 30px;
    }

    #contact {
        margin-top: 20px;
        padding: 0px 30px;
    }

    .portfolio-container {
        padding: 0px;
    }

    .contact-container {
        padding: 0 0;
    }

    .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;
    }

    .about-text p {
        font-size: 1rem;
    }
    
    .highlight-number {
        font-size: 1.8rem;
    }
    
    .highlight-text {
        font-size: 0.8rem;
    }
}

/* Appointment Calendar Styles */
.appointment-calendar {
    margin-top: 40px;
    padding: 30px;
    background: var(--card-bg);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
}

.appointment-calendar h3 {
    color: var(--accent-color);
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.8rem;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.calendar-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.week-nav-btn {
    background: var(--gradient);
    color: var(--primary-bg);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 14px;
}

.week-nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

#current-week-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
}

.calendar-table {
    overflow-x: auto;
    margin-bottom: 20px;
}

#calendar-grid {
    width: 100%;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

#calendar-grid th {
    background: var(--gradient);
    color: var(--primary-bg);
    padding: 15px 8px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
}

#calendar-grid td {
    border: 1px solid var(--border-color);
    padding: 0;
    text-align: center;
    vertical-align: middle;
    height: 50px;
}

.time-slot {
    background: rgba(30, 30, 30, 0.8);
    color: var(--text-secondary);
    font-weight: 600;
    padding: 15px 8px;
    border-right: 2px solid var(--border-color);
}

.appointment-cell {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px 5px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.appointment-cell.available {
    background: rgba(0, 255, 136, 0.1);
    color: var(--accent-color);
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.appointment-cell.available:hover {
    background: rgba(0, 255, 136, 0.2);
    box-shadow: inset 0 0 20px rgba(0, 255, 136, 0.3);
    transform: scale(1.02);
}

.appointment-cell.booked {
    background: rgba(255, 0, 112, 0.1);
    color: var(--accent-secondary);
    border: 1px solid rgba(255, 0, 112, 0.3);
    cursor: default;
}

.appointment-cell .appointment-status {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.legend-color.available {
    background: rgba(0, 255, 136, 0.3);
    border-color: var(--accent-color);
}

.legend-color.booked {
    background: rgba(255, 0, 112, 0.3);
    border-color: var(--accent-secondary);
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideIn 0.3s ease;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.close-modal {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 5px;
    line-height: 1;
}

.close-modal:hover {
    color: var(--accent-secondary);
}

.modal-body {
    padding: 30px;
}

#selected-time-info {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 25px;
    text-align: center;
    color: var(--accent-color);
    font-weight: 600;
}

.modal .form-group {
    margin-bottom: 20px;
}

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

.modal .form-group input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 16px;
    transition: all 0.3s ease;
}

.modal .form-group input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.modal-footer {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.cancel-btn, .confirm-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.cancel-btn {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.cancel-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.confirm-btn {
    background: var(--gradient);
    color: var(--primary-bg);
}

.confirm-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Schedule Meeting Button */
.schedule-btn {
    background: var(--gradient);
    color: var(--primary-bg);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 14px;
}

.schedule-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0; 
        transform: translateY(-50px) scale(0.9); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .appointment-calendar {
        padding: 20px;
        margin-top: 30px;
    }
    
    .calendar-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .week-nav-btn {
        padding: 8px 15px;
        font-size: 12px;
    }
    
    #calendar-grid th {
        padding: 10px 5px;
        font-size: 12px;
    }
    
    .appointment-cell {
        padding: 8px 3px;
        min-height: 40px;
    }
    
    .appointment-cell .appointment-status {
        font-size: 10px;
    }
    
    .calendar-legend {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .modal-content {
        margin: 20px;
        width: calc(100% - 40px);
    }
    
    .modal-header,
    .modal-body {
        padding: 20px;
    }
    
    .modal-footer {
        flex-direction: column;
        gap: 10px;
    }
    
    .cancel-btn, .confirm-btn {
        width: 100%;
    }
}

/* Additional CSS for this page */
.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.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-note {
    text-align: center;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 2.5rem;
    padding: 1rem;
    background: rgba(0, 255, 136, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.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;
}

/* Two-column layout on larger screens */
@media (min-width: 1000px) {
    .faq-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    /* Make answers expand within their own column only */
    .faq-answer {
        max-width: 100%;
    }
}

.contact-coverage {
    background: rgba(0, 255, 136, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    margin-top: 2rem;
    text-align: center;
}

@media (max-width: 768px) {
    .pricing-table {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
}

/* ================================================
   CTA & CONVERSION ELEMENTS - Elementy konwersji
   ================================================ */

/* Dodatkowe zmienne dla CTA */
:root {
    --cta-primary: var(--neon-green);
    --cta-hover: var(--neon-blue);
    --cta-shadow: var(--shadow-neon);
    --cta-radius: 50px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   STICKY CTA - Przyklejony pasek mobilny
   ======================================== */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gradient-card);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    padding: 12px 16px;
    z-index: 9998;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-cta.show {
    transform: translateY(0);
}

.sticky-cta-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-secondary);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    font-size: 16px;
}

.sticky-cta-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.sticky-cta-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sticky-cta-text {
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.sticky-cta-buttons {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.sticky-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 12px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}

.phone-btn {
    background: var(--gradient);
    color: white;
    border-color: var(--neon-green);
}

.phone-btn:hover {
    box-shadow: var(--cta-shadow);
    transform: translateY(-2px);
}

.email-btn {
    background: var(--card-bg);
    color: var(--neon-blue);
    border-color: var(--neon-blue);
}

.email-btn:hover {
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.whatsapp-btn {
    background: var(--card-bg);
    color: #25D366;
    border-color: #25D366;
}

.whatsapp-btn:hover {
    background: rgba(37, 211, 102, 0.1);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
}

/* Desktop: ukryj sticky CTA */
@media (min-width: 769px) {
    .sticky-cta {
        display: none;
    }
}

/* ========================================
   SOCIAL PROOF BADGE - Pasek opinii
   ======================================== */
.social-proof-badge {
    position: fixed;
    top: 50%;
    right: -320px;
    transform: translateY(-50%);
    background: var(--gradient-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 20px 0 0 20px;
    padding: 20px;
    max-width: 280px;
    box-shadow: var(--shadow-card);
    z-index: 9997;
    transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-proof-badge.show {
    right: 0;
}

.badge-content {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 15px;
}

.badge-icon {
    font-size: 28px;
    animation: pulse 2s ease-in-out infinite;
}

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

.badge-text strong {
    color: var(--text-primary);
    font-size: 16px;
    display: block;
    margin-bottom: 4px;
}

.badge-text p {
    color: var(--neon-green);
    font-size: 14px;
    margin: 0;
}

.badge-trust {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}

.trust-item {
    color: var(--text-secondary);
    font-size: 13px;
    display: flex;
    align-items: center;
}

/* Mobile: ukryj social proof badge */
@media (max-width: 1024px) {
    .social-proof-badge {
        display: none;
    }
}

/* ========================================
   FLOATING CTA - Pływający przycisk
   ======================================== */
.floating-cta-btn {
    position: fixed;
    bottom: 100px;
    right: 24px;
    background: var(--gradient);
    border: none;
    border-radius: var(--cta-radius);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: var(--cta-shadow);
    z-index: 9996;
    transform: translateY(20px);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.floating-cta-btn.show {
    opacity: 1;
    transform: translateY(0);
}

.floating-cta-btn:hover {
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.6);
    transform: translateY(-3px);
}

.floating-cta-btn:focus {
    outline: 3px solid rgba(255, 255, 255, 0.4);
    outline-offset: 3px;
}

.floating-cta-icon {
    flex-shrink: 0;
}

.floating-cta-pulse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--cta-radius);
    background: var(--neon-green);
    opacity: 0;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Mobile: zmniejsz floating CTA */
@media (max-width: 768px) {
    .floating-cta-btn {
        bottom: 120px;
        right: 16px;
        padding: 12px 18px;
        font-size: 14px;
    }
    
    .floating-cta-text {
        display: none;
    }
}

/* ========================================
   BACK TO TOP - Przycisk powrotu
   ======================================== */
.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--cta-shadow);
    border: none;
    cursor: pointer;
    transform: translateY(20px);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 9995;
}

.back-to-top.show {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.6);
    transform: translateY(-3px);
}

.back-to-top:focus {
    outline: 3px solid rgba(255, 255, 255, 0.4);
    outline-offset: 3px;
}

/* Mobile: dostosuj pozycję */
@media (max-width: 768px) {
    .back-to-top {
        right: 16px;
        bottom: 80px;
        width: 48px;
        height: 48px;
    }
}

/* ========================================
   MICRO CTA - Inline powiadomienie
   ======================================== */
.micro-cta {
    position: fixed;
    top: 100px;
    right: 24px;
    max-width: 380px;
    background: var(--gradient-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--neon-green);
    border-radius: 16px;
    padding: 18px;
    box-shadow: var(--shadow-hover);
    z-index: 9994;
    transform: translateX(420px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.micro-cta.show {
    transform: translateX(0);
}

.micro-cta-content {
    display: flex;
    align-items: center;
    gap: 14px;
}

.micro-cta-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.micro-cta-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.micro-cta-text strong {
    color: var(--text-primary);
    font-size: 15px;
}

.micro-cta-text span {
    color: var(--text-secondary);
    font-size: 13px;
}

.micro-cta-button {
    flex-shrink: 0;
    background: var(--gradient);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.micro-cta-button:hover {
    box-shadow: var(--cta-shadow);
    transform: translateY(-2px);
}

.micro-cta-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-secondary);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    font-size: 14px;
}

.micro-cta-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

/* Mobile: pełna szerokość */
@media (max-width: 768px) {
    .micro-cta {
        top: auto;
        bottom: 120px;
        left: 16px;
        right: 16px;
        max-width: none;
        transform: translateY(200px);
    }
    
    .micro-cta.show {
        transform: translateY(0);
    }
    
    .micro-cta-content {
        flex-wrap: wrap;
    }
    
    .micro-cta-button {
        width: 100%;
        text-align: center;
    }
}

/* ========================================
   DODATKOWE MIKROKONWERSJE
   ======================================== */

/* Efekt hover dla wszystkich linków telefonicznych */
a[href^="tel:"] {
    position: relative;
    transition: var(--transition-smooth);
}

a[href^="tel:"]:hover {
    color: var(--neon-green);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

/* Efekt hover dla wszystkich linków email */
a[href^="mailto:"]:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

/* Puls animation dla ważnych CTA */
@keyframes cta-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 255, 136, 0.8);
    }
}

.cta-button,
.submit-btn {
    animation: cta-pulse 2s ease-in-out infinite;
}

/* ========================================
   ACCESSIBILITY IMPROVEMENTS
   ======================================== */

/* Lepsze focus states dla wszystkich interaktywnych elementów */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--neon-green);
    outline-offset: 3px;
}

/* Skip to content link (dla czytników ekranu) */
.skip-to-content {
    position: absolute;
    left: -9999px;
    z-index: 10000;
    padding: 1em;
    background-color: var(--neon-green);
    color: var(--primary-bg);
    text-decoration: none;
    font-weight: bold;
}

.skip-to-content:focus {
    left: 50%;
    transform: translateX(-50%);
    top: 10px;
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
    .sticky-cta,
    .social-proof-badge,
    .floating-cta-btn,
    .back-to-top,
    .micro-cta {
        display: none !important;
    }
}

/* ========================================
   FIX: Usuń gap po footer i body
   ======================================== */
html {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    min-height: 100%;
    margin: 0 !important;
    padding: 0 !important;
}

footer {
    margin-bottom: 0 !important;
    padding-bottom: 0;
}
