/* ===================================
   CSS Variables & Reset
   =================================== */
:root {
    --primary-gradient: linear-gradient(135deg, #00D4FF 0%, #5B42F3 50%, #F025DD 100%);
    --blue: #00D4FF;
    --purple: #5B42F3;
    --pink: #F025DD;
    --black: #0A0A0A;
    --dark-gray: #1A1A1A;
    --medium-gray: #2A2A2A;
    --light-gray: #CCCCCC;
    --white: #FFFFFF;
    
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Outfit', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s ease;
    --transition-slow: 0.6s ease;
    
    --shadow-sm: 0 2px 10px rgba(0, 212, 255, 0.1);
    --shadow-md: 0 4px 20px rgba(91, 66, 243, 0.2);
    --shadow-lg: 0 8px 40px rgba(240, 37, 221, 0.3);
    --shadow-glow: 0 0 30px rgba(91, 66, 243, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    width: 100%;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Ensure images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Better touch targets for mobile */
@media (hover: none) and (pointer: coarse) {
    button,
    a {
        min-height: 44px;
        min-width: 44px;
    }
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(91, 66, 243, 0.2);
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: var(--shadow-md);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--light-gray);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width var(--transition-normal);
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition-fast);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 20px 40px 20px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(91, 66, 243, 0.15) 0%, transparent 70%),
                radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(240, 37, 221, 0.1) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.glitch-text {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    position: relative;
    animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(91, 66, 243, 0.5)); }
    50% { filter: drop-shadow(0 0 20px rgba(91, 66, 243, 0.8)); }
}

.subtitle {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--light-gray);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.scroll-indicator {
    margin-top: 6rem;
    text-align: center;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.scroll-indicator span {
    display: block;
    font-size: 0.875rem;
    color: var(--light-gray);
    margin-bottom: 0.5rem;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid var(--blue);
    border-bottom: 2px solid var(--blue);
    transform: rotate(45deg);
    margin: 0 auto;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(45deg); }
    40% { transform: translateY(10px) rotate(45deg); }
    60% { transform: translateY(5px) rotate(45deg); }
}

/* ===================================
   Buttons
   =================================== */
.btn-primary,
.btn-secondary,
.btn-outline {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-display);
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    border-color: var(--blue);
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid;
    border-image: var(--primary-gradient) 1;
}

.btn-outline:hover {
    background: rgba(91, 66, 243, 0.1);
    transform: translateY(-3px);
}

/* ===================================
   Sections
   =================================== */
section {
    padding: 5rem 0;
    position: relative;
    background: var(--black);
    z-index: 1;
}

section .container {
    width: 100%;
}

/* Sticky section transitions */
section:not(.hero):not(.footer) {
    position: sticky;
    top: 0;
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.8);
}

/* Sections start hidden until activated (only when JS is loaded) */
body:not(.js-loading) section:not(.hero):not(.footer):not(.is-active) {
    opacity: 0;
    transform: translateY(100px) scale(0.95);
}

section.is-active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Fallback: Show all sections if JS hasn't loaded yet */
body.js-loading section {
    opacity: 1 !important;
    transform: none !important;
}

/* Z-index stacking for layered effect */
.hero {
    z-index: 1;
    opacity: 1;
    transform: none;
}
.about { z-index: 2; }
.services { z-index: 3; }
.portfolio { z-index: 4; }
.process { z-index: 5; }
.contact { z-index: 6; }
.footer {
    z-index: 7;
    position: relative;
    opacity: 1;
    transform: none;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--light-gray);
    font-size: 1.25rem;
    margin-bottom: 3rem;
}

/* ===================================
   About Section
   =================================== */
.about {
    background: var(--dark-gray);
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.about-card {
    background: var(--medium-gray);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(91, 66, 243, 0.2);
    transition: all var(--transition-normal);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.about-card:nth-child(1) { animation-delay: 0.1s; }
.about-card:nth-child(2) { animation-delay: 0.2s; }
.about-card:nth-child(3) { animation-delay: 0.3s; }
.about-card:nth-child(4) { animation-delay: 0.4s; }

.about-card:hover {
    transform: translateY(-10px);
    border-color: var(--blue);
    box-shadow: var(--shadow-glow);
}

.card-icon {
    margin-bottom: 1.5rem;
}

.about-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.about-card p {
    color: var(--light-gray);
    line-height: 1.8;
}

/* ===================================
   Services Section
   =================================== */
.services {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--medium-gray);
    border-radius: 16px;
    padding: 2.5rem;
    border: 2px solid rgba(91, 66, 243, 0.2);
    transition: all var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--purple);
    box-shadow: var(--shadow-lg);
}

.service-card.featured {
    border-color: var(--blue);
    box-shadow: var(--shadow-md);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    font-family: var(--font-display);
}

.service-header {
    text-align: center;
    margin-bottom: 2rem;
}

.service-header h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--white);
}

.price {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.price-from {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--light-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.currency {
    font-size: 1.5rem;
    font-weight: 700;
}

.amount {
    font-size: 3rem;
    font-weight: 900;
    font-family: var(--font-display);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.package-tagline {
    color: var(--light-gray);
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-features li {
    padding: 0.75rem 0;
    color: var(--light-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-footer {
    text-align: center;
}

.delivery-time {
    color: var(--light-gray);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* Add-ons */
.addons {
    background: var(--medium-gray);
    padding: 2.5rem;
    border-radius: 12px;
    margin-top: 3rem;
}

.addons h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--white);
}

.addon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.addon-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--dark-gray);
    border-radius: 8px;
    border: 1px solid rgba(91, 66, 243, 0.2);
}

.addon-item strong {
    color: var(--white);
}

.addon-item span {
    color: var(--blue);
    font-weight: 600;
}

/* ===================================
   Portfolio Section
   =================================== */
.portfolio {
    background: var(--dark-gray);
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.portfolio-showcase {
    max-width: 1100px;
    margin: 0 auto;
}

.portfolio-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--medium-gray);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(91, 66, 243, 0.2);
}

.portfolio-content h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.portfolio-category {
    color: var(--blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

.portfolio-description {
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.portfolio-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    list-style: none;
    margin-bottom: 2rem;
}

.portfolio-tech li {
    background: rgba(91, 66, 243, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--blue);
    border: 1px solid rgba(91, 66, 243, 0.3);
}

.portfolio-images {
    position: relative;
}

.device-mockup img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-normal);
}

.device-mockup.desktop {
    margin-bottom: 2rem;
}

.device-mockup.mobile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.device-mockup:hover img {
    transform: scale(1.05);
}

/* ===================================
   Process Section
   =================================== */
.process {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.process-step {
    background: var(--medium-gray);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(91, 66, 243, 0.2);
    transition: all var(--transition-normal);
    position: relative;
}

.process-step:hover {
    transform: translateY(-10px);
    border-color: var(--purple);
    box-shadow: var(--shadow-md);
}

.step-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.process-step h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.process-step p {
    color: var(--light-gray);
    line-height: 1.8;
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    background: var(--dark-gray);
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    font-size: 2rem;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--medium-gray);
    border-radius: 12px;
    border: 1px solid rgba(91, 66, 243, 0.2);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--blue);
    transition: fill var(--transition-fast);
}

.contact-item:hover .contact-icon svg {
    fill: var(--pink);
}

.contact-item h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.contact-item a {
    color: var(--blue);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.contact-item a:hover {
    color: var(--pink);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--medium-gray);
    border-radius: 12px;
    border: 1px solid rgba(91, 66, 243, 0.2);
    color: var(--white);
    transition: all var(--transition-normal);
}

.social-icon:hover {
    background: var(--primary-gradient);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper {
    background: var(--medium-gray);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(91, 66, 243, 0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--dark-gray);
    border: 2px solid rgba(91, 66, 243, 0.2);
    border-radius: 8px;
    padding: 1rem;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--black);
    padding: 3rem 0;
    border-top: 1px solid rgba(91, 66, 243, 0.2);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--light-gray);
    margin-bottom: 1rem;
}

.footer-copyright {
    color: var(--light-gray);
    font-size: 0.875rem;
    opacity: 0.7;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 968px) {
    .navbar {
        padding: 0;
    }

    .nav-content {
        padding: 0.75rem 1rem;
    }

    .logo {
        font-size: 1.25rem;
        gap: 0.5rem;
    }

    .logo svg {
        width: 40px;
        height: 40px;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--dark-gray);
        width: 100%;
        padding: 2rem;
        transition: left var(--transition-normal);
        gap: 1.5rem;
        z-index: 999;
        align-items: flex-start;
    }

    .nav-links a {
        font-size: 1.125rem;
        width: 100%;
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .portfolio-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Adjust section padding for tablets */
    section {
        padding: 4rem 0;
    }

    .about, .services, .portfolio, .process, .contact {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    /* Adjust sticky transitions for mobile */
    section:not(.hero):not(.footer) {
        transform: translateY(50px) scale(0.98);
    }

    .container {
        padding: 0 1.5rem;
    }

    /* Adjust service card spacing */
    .service-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    /* Hero section mobile adjustments */
    .hero {
        padding: 100px 15px 60px 15px;
        min-height: 100vh;
    }

    .hero-content {
        padding: 0 0.5rem;
    }

    .glitch-text {
        font-size: clamp(2rem, 10vw, 3rem);
        line-height: 1.2;
    }

    .subtitle {
        font-size: clamp(1.25rem, 6vw, 1.75rem);
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 3rem;
    }

    .btn-large {
        width: 100%;
        max-width: 300px;
        padding: 1rem 2rem;
    }

    .scroll-indicator {
        margin-top: 3rem;
    }

    /* Section adjustments */
    section {
        padding: 3rem 0;
    }

    .about, .services, .portfolio, .process, .contact {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .section-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
        margin-bottom: 0.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    /* Grid layouts */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-card {
        padding: 2rem 1.5rem;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-step {
        padding: 1.5rem;
    }

    /* Portfolio mobile */
    .portfolio-item {
        padding: 1.5rem;
    }

    .device-mockup.mobile {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .device-mockup.desktop {
        margin-bottom: 1.5rem;
    }

    /* Service cards mobile */
    .service-card {
        padding: 2rem 1.25rem;
    }

    .price {
        margin-bottom: 0.5rem;
        gap: 0.35rem;
    }

    .price-from {
        font-size: 0.85rem;
    }

    .currency {
        font-size: 1.25rem;
    }

    .amount {
        font-size: 2.5rem;
    }

    /* Contact form mobile */
    .contact-content {
        gap: 2rem;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .contact-item {
        flex-direction: row;
        align-items: center;
    }

    .contact-icon {
        min-width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    /* Footer mobile */
    .footer {
        padding: 2rem 0;
    }

    .footer-logo {
        font-size: 1.25rem;
    }

    .footer-tagline {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .nav-content {
        padding: 0.65rem 0.75rem;
    }

    .logo {
        font-size: 1.1rem;
        gap: 0.4rem;
    }

    .logo svg {
        width: 35px;
        height: 35px;
    }

    .nav-links {
        padding: 1.5rem;
        top: 65px;
    }

    .hero {
        padding: 90px 10px 40px 10px;
    }

    .glitch-text {
        font-size: 1.75rem;
    }

    .subtitle {
        font-size: 1.25rem;
    }

    .hero-description {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }

    .btn-large {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
        max-width: 280px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }

    .container {
        padding: 0 0.75rem;
    }

    .about-card,
    .service-card,
    .process-step {
        padding: 1.5rem 1rem;
    }

    .price {
        gap: 0.25rem;
    }

    .price-from {
        font-size: 0.75rem;
    }

    .currency {
        font-size: 1rem;
    }

    .amount {
        font-size: 2rem;
    }

    .portfolio-item {
        padding: 1rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem 1rem;
    }

    .contact-icon {
        min-width: 45px;
        height: 45px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
}

/* Mobile landscape orientation */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 15px 40px 15px;
    }

    .hero-content {
        padding: 2rem 1rem;
    }

    .glitch-text {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.25rem;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-cta {
        margin-bottom: 2rem;
    }

    .scroll-indicator {
        margin-top: 2rem;
    }

    section {
        padding: 3rem 0;
    }
}

/* ===================================
   Scroll Animations
   =================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
