/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-purple-dark: #7B2CBF;
    --color-purple-light: #8334ab;
    --color-white-10: rgba(255, 255, 255, 0.1);
    --color-white-20: rgba(255, 255, 255, 0.2);
    --color-white-40: rgba(255, 255, 255, 0.4);
    --color-white-60: rgba(255, 255, 255, 0.6);
    --color-white-70: rgba(255, 255, 255, 0.7);
    --color-white-80: rgba(255, 255, 255, 0.8);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Background Animation */
.background-animation {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    filter: blur(80px);
}

.orb-1 {
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, rgba(123, 44, 191, 0.2) 0%, transparent 70%);
    animation: orb-float-1 20s linear infinite;
}

.orb-2 {
    bottom: -50%;
    right: -50%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.2) 0%, transparent 70%);
    animation: orb-float-2 25s linear infinite;
}

@keyframes orb-float-1 {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.2) rotate(90deg);
        opacity: 0.2;
    }
}

@keyframes orb-float-2 {
    0%, 100% {
        transform: scale(1.2) rotate(90deg);
        opacity: 0.1;
    }
    50% {
        transform: scale(1) rotate(0deg);
        opacity: 0.2;
    }
}

/* Navigation */
.navbar {
    position: relative;
    z-index: 50;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-white-10);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, var(--color-purple-dark), var(--color-purple-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.logo-text {
    font-weight: 600;
    font-size: 1.125rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--color-white-80);
    transition: color 0.3s;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--color-purple-light);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-purple-dark), var(--color-purple-light));
    color: var(--color-white);
    box-shadow: 0 10px 20px rgba(168, 85, 247, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 15px 30px rgba(168, 85, 247, 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--color-purple-light);
    border: 2px solid var(--color-purple-light);
}

.btn-outline:hover {
    background: var(--color-purple-light);
    color: var(--color-white);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

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

.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--color-purple-light);
    border-radius: 50%;
    animation: particle-float 5s infinite;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-duration: 3s; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; top: 80%; animation-duration: 4s; animation-delay: 0.5s; }
.particle:nth-child(3) { left: 30%; top: 40%; animation-duration: 3.5s; animation-delay: 1s; }
.particle:nth-child(4) { left: 40%; top: 60%; animation-duration: 4.5s; animation-delay: 0.2s; }
.particle:nth-child(5) { left: 50%; top: 30%; animation-duration: 3.8s; animation-delay: 0.8s; }
.particle:nth-child(6) { left: 60%; top: 70%; animation-duration: 4.2s; animation-delay: 0.3s; }
.particle:nth-child(7) { left: 70%; top: 50%; animation-duration: 3.3s; animation-delay: 1.2s; }
.particle:nth-child(8) { left: 80%; top: 25%; animation-duration: 4.8s; animation-delay: 0.6s; }
.particle:nth-child(9) { left: 90%; top: 75%; animation-duration: 3.6s; animation-delay: 0.9s; }
.particle:nth-child(10) { left: 15%; top: 45%; animation-duration: 4.3s; animation-delay: 0.4s; }
.particle:nth-child(11) { left: 25%; top: 15%; animation-duration: 3.9s; animation-delay: 1.1s; }
.particle:nth-child(12) { left: 35%; top: 85%; animation-duration: 4.6s; animation-delay: 0.7s; }
.particle:nth-child(13) { left: 45%; top: 35%; animation-duration: 3.4s; animation-delay: 1.3s; }
.particle:nth-child(14) { left: 55%; top: 65%; animation-duration: 4.4s; animation-delay: 0.5s; }
.particle:nth-child(15) { left: 65%; top: 20%; animation-duration: 3.7s; animation-delay: 1.4s; }
.particle:nth-child(16) { left: 75%; top: 55%; animation-duration: 4.1s; animation-delay: 0.1s; }
.particle:nth-child(17) { left: 85%; top: 40%; animation-duration: 3.2s; animation-delay: 1.5s; }
.particle:nth-child(18) { left: 95%; top: 60%; animation-duration: 4.7s; animation-delay: 0.8s; }
.particle:nth-child(19) { left: 12%; top: 90%; animation-duration: 3.1s; animation-delay: 1.6s; }
.particle:nth-child(20) { left: 88%; top: 10%; animation-duration: 4.9s; animation-delay: 0.2s; }

@keyframes particle-float {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.2;
    }
    50% {
        transform: translateY(-30px) scale(1.5);
        opacity: 0.8;
    }
}

.glowing-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-purple-light), transparent);
    opacity: 0.3;
    animation: line-glow 3s infinite;
}

@keyframes line-glow {
    0%, 100% {
        opacity: 0.1;
    }
    50% {
        opacity: 0.5;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 60rem;
    animation: fade-in-up 1s ease-out;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    border: 1px solid rgba(168, 85, 247, 0.3);
    background: rgba(168, 85, 247, 0.1);
    backdrop-filter: blur(4px);
    color: var(--color-purple-light);
    margin-bottom: 1.5rem;
    animation: badge-glow 2s infinite;
}

@keyframes badge-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(168, 85, 247, 0.5);
    }
}

.hero-title {
    background: linear-gradient(90deg, var(--color-white), var(--color-purple-light), var(--color-white));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    color: var(--color-white-70);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 1.5s infinite;
}

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

.scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid var(--color-purple-light);
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    padding: 0.5rem 0;
}

.scroll-wheel {
    width: 0.375rem;
    height: 0.375rem;
    background: var(--color-purple-light);
    border-radius: 50%;
    animation: scroll-wheel 1.5s infinite;
}

@keyframes scroll-wheel {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(12px);
    }
}

/* Section Styles */
section {
    position: relative;
    padding: 5rem 0;
}

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

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    border: 1px solid rgba(168, 85, 247, 0.3);
    background: rgba(168, 85, 247, 0.1);
    backdrop-filter: blur(4px);
    color: var(--color-purple-light);
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--color-white-70);
    max-width: 42rem;
    margin: 0 auto;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-card {
    position: relative;
    background: var(--color-black);
    border: 1px solid var(--color-white-10);
    border-radius: 1rem;
    padding: 2rem;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
}

.card-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(123, 44, 191, 0.2), transparent, rgba(168, 85, 247, 0.2));
    opacity: 0;
    transition: opacity 0.5s;
}

.service-card:hover .card-glow {
    opacity: 1;
}

.card-border {
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    border: 2px solid transparent;
    transition: all 0.5s;
}

.service-card:hover .card-border {
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.3);
}

.card-content {
    position: relative;
    z-index: 10;
}

.service-icon {
    display: inline-flex;
    padding: 1rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, var(--color-purple-dark), var(--color-purple-light));
    box-shadow: 0 10px 20px rgba(123, 44, 191, 0.5);
    margin-bottom: 1.5rem;
    transition: box-shadow 0.5s;
}

.service-card:hover .service-icon {
    box-shadow: 0 15px 30px rgba(168, 85, 247, 0.7);
}

.service-icon i {
    font-size: 2rem;
    color: var(--color-white);
}

.service-card h3 {
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--color-white-70);
}

.corner-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 8rem;
    height: 8rem;
    background: radial-gradient(circle at top right, rgba(168, 85, 247, 0.1), transparent);
    border-radius: 0 1rem 0 100%;
    opacity: 0;
    transition: opacity 0.5s;
}

.service-card:hover .corner-accent {
    opacity: 1;
}

/* Portfolio Section */
.portfolio {
    background: linear-gradient(180deg, var(--color-black), rgba(123, 44, 191, 0.05), var(--color-black));
}

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

.portfolio-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    border: 2px solid var(--color-white-10);
    transition: border-color 0.5s, transform 0.3s;
}

.portfolio-card:hover {
    border-color: rgba(168, 85, 247, 0.5);
}

.portfolio-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--color-black);
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.5), var(--color-black));
    opacity: 0.6;
    transition: opacity 0.5s;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 0.8;
}

.portfolio-hover {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(123, 44, 191, 0.8), rgba(168, 85, 247, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s;
}

.portfolio-card:hover .portfolio-hover {
    opacity: 1;
}

.portfolio-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: transform 0.3s 0.2s;
}

.portfolio-card:hover .portfolio-icon {
    transform: scale(1);
}

.portfolio-icon i {
    font-size: 2rem;
    color: var(--color-purple-dark);
}

.portfolio-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 10;
}

.portfolio-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    background: rgba(168, 85, 247, 0.2);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: var(--color-purple-light);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.portfolio-content h3 {
    color: var(--color-white);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}

.about-text {
    color: var(--color-white-70);
    margin-bottom: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-card {
    text-align: center;
    padding: 1rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, rgba(123, 44, 191, 0.1), rgba(168, 85, 247, 0.1));
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-purple-light);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--color-white-60);
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    border: 2px solid rgba(168, 85, 247, 0.3);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(123, 44, 191, 0.3), transparent);
}

.floating-accent {
    position: absolute;
    top: -1.5rem;
    right: -1.5rem;
    width: 8rem;
    height: 8rem;
    background: linear-gradient(135deg, var(--color-purple-dark), var(--color-purple-light));
    border-radius: 1rem;
    opacity: 0.5;
    filter: blur(40px);
    animation: floating 8s linear infinite;
}

@keyframes floating {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.2) rotate(90deg);
    }
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(180deg, var(--color-black), rgba(168, 85, 247, 0.05), var(--color-black));
}

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

.testimonial-card {
    position: relative;
    background: var(--color-black);
    border: 1px solid var(--color-white-10);
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(4px);
}

.testimonial-border {
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    border: 1px solid rgba(168, 85, 247, 0.3);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
}

.testimonial-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(123, 44, 191, 0.05), transparent, rgba(168, 85, 247, 0.05));
    border-radius: 1rem;
}

.testimonial-content {
    position: relative;
    z-index: 10;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.stars i {
    color: var(--color-purple-light);
    font-size: 1.25rem;
}

.testimonial-text {
    color: var(--color-white-80);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-purple-dark), var(--color-purple-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-white);
}

.author-name {
    color: var(--color-white);
    font-weight: 600;
}

.author-role {
    color: var(--color-white-60);
    font-size: 0.875rem;
}

/* Contact Section */
.contact-form-wrapper {
    position: relative;
    max-width: 64rem;
    margin: 0 auto;
    background: var(--color-black);
    border: 1px solid var(--color-white-10);
    border-radius: 1rem;
    padding: 3rem;
}

.form-border {
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    border: 1px solid rgba(168, 85, 247, 0.3);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.2);
}

.form-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(123, 44, 191, 0.05), transparent, rgba(168, 85, 247, 0.05));
    border-radius: 1rem;
}

.form-content {
    position: relative;
    z-index: 10;
}

.contact-form {
    margin-bottom: 3rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--color-white-80);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-white-10);
    border-radius: 0.5rem;
    color: var(--color-white);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--color-white-40);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-purple-light);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.2);
}

.form-select {
    cursor: pointer;
}

.form-select option {
    background: var(--color-black);
    color: var(--color-white);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    padding-top: 3rem;
    border-top: 1px solid var(--color-white-10);
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, var(--color-purple-dark), var(--color-purple-light));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    color: var(--color-white);
    font-size: 1.25rem;
}

.info-label {
    color: var(--color-white-60);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.info-value {
    color: var(--color-white);
    font-weight: 500;
}

/* Footer */
.footer {
    position: relative;
    border-top: 1px solid var(--color-white-10);
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col-wide {
    grid-column: span 2;
}

.footer-description {
    color: var(--color-white-60);
    margin-bottom: 1.5rem;
    max-width: 28rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-white-10);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white-60);
    transition: all 0.3s;
}

.social-link:hover {
    color: var(--color-purple-light);
    border-color: rgba(168, 85, 247, 0.3);
}

.footer-col h3 {
    color: var(--color-white);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--color-white-60);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--color-purple-light);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--color-white-10);
    text-align: center;
    color: var(--color-white-60);
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .nav-menu {
        position: fixed;
        top: 73px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        transition: transform 0.3s, opacity 0.3s;
        border-bottom: 1px solid var(--color-white-10);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-buttons {
        flex-direction: column;
    }

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

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

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

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

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

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

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

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

    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: var(--color-purple-light);
    color: var(--color-white);
}
