:root {
            --primary: #667eea;
            --secondary: #764ba2;
            --accent: #f093fb;
            --dark: #0f172a;
            --light: #f8fafc;
            --gray: #64748b;
            --success: #10b981;
            --warning: #f59e0b;
            --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-accent: linear-gradient(135deg, #f093fb 0%, #667eea 100%);
            --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
            --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
            --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
            --shadow-glow: 0 0 40px rgba(102, 126, 234, 0.3);
        }

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

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

        /* Enhanced Navbar */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(248, 250, 252, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(100, 116, 139, 0.1);
            z-index: 1000;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        nav.scrolled {
            background: rgba(248, 250, 252, 0.95);
            box-shadow: var(--shadow-md);
            border-bottom-color: rgba(100, 116, 139, 0.2);
        }

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

        .logo {
            font-size: 2.5rem;
            font-weight: 900;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.05em;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 3rem;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            font-size: 0.95rem;
            position: relative;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 0.75rem 0;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--gradient-primary);
            border-radius: 2px;
            transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-links a:hover {
            color: var(--primary);
            transform: translateY(-2px);
        }

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

        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--dark);
            cursor: pointer;
            padding: 0.75rem;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .hamburger:hover {
            background: rgba(102, 126, 234, 0.1);
        }

        /* Enhanced Hero Section */
        .hero {
            min-height: 100vh;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(255,255,255,0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(255,255,255,0.12) 0%, transparent 50%);
            animation: float 25s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 120px;
            background: linear-gradient(180deg, transparent 0%, rgba(248,250,252,0.1) 100%);
        }

        @keyframes float {
            0%, 100% { 
                transform: translateY(0px) rotate(0deg);
                opacity: 1;
            }
            33% { 
                transform: translateY(-30px) rotate(60deg);
                opacity: 0.7;
            }
            66% { 
                transform: translateY(-10px) rotate(120deg);
                opacity: 0.9;
            }
        }

        .hero-content {
            text-align: center;
            color: white;
            z-index: 2;
            position: relative;
            max-width: 1000px;
            padding: 0 2rem;
        }

        .hero h1 {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 900;
            margin-bottom: 2rem;
            animation: slideInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1);
            text-shadow: 0 4px 30px rgba(0,0,0,0.3);
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        .hero p {
            font-size: clamp(1.25rem, 4vw, 2rem);
            margin-bottom: 3.5rem;
            opacity: 0.95;
            animation: slideInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
            text-shadow: 0 2px 15px rgba(0,0,0,0.2);
            line-height: 1.5;
            font-weight: 300;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            padding: 1.5rem 3rem;
            background: rgba(255, 255, 255, 0.15);
            color: white;
            text-decoration: none;
            border-radius: 60px;
            font-weight: 700;
            font-size: 1.2rem;
            border: 2px solid rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(20px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            animation: slideInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
            position: relative;
            overflow: hidden;
        }

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

        .cta-button:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 25px 50px rgba(0,0,0,0.3);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button i {
            font-size: 1.3rem;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .cta-button:hover i {
            transform: translateX(8px) rotate(15deg);
        }

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

        /* Floating Decorations */
        .hero-decorations {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .decoration-circle {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            animation: floatDecorations 12s ease-in-out infinite;
        }

        .decoration-circle:nth-child(1) {
            width: 120px;
            height: 120px;
            top: 15%;
            left: 8%;
            animation-delay: 0s;
        }

        .decoration-circle:nth-child(2) {
            width: 180px;
            height: 180px;
            top: 50%;
            right: 10%;
            animation-delay: 3s;
        }

        .decoration-circle:nth-child(3) {
            width: 90px;
            height: 90px;
            top: 25%;
            right: 30%;
            animation-delay: 6s;
        }

        .decoration-circle:nth-child(4) {
            width: 150px;
            height: 150px;
            bottom: 15%;
            left: 15%;
            animation-delay: 9s;
        }

        @keyframes floatDecorations {
            0%, 100% {
                transform: translateY(0px) scale(1) rotate(0deg);
                opacity: 0.6;
            }
            33% {
                transform: translateY(-40px) scale(1.1) rotate(120deg);
                opacity: 0.3;
            }
            66% {
                transform: translateY(-20px) scale(0.9) rotate(240deg);
                opacity: 0.8;
            }
        }

        /* Enhanced Sections */
        section:not(.hero) {
            padding: 8rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
        }

        .section-title {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 900;
            text-align: center;
            margin-bottom: 1.5rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.02em;
            position: relative;
        }

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

        .section-subtitle {
            font-size: 1.3rem;
            color: var(--gray);
            text-align: center;
            margin-bottom: 5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        /* Enhanced Service Cards */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-top: 5rem;
        }

        .service-card {
            background: white;
            padding: 3rem;
            border-radius: 24px;
            text-align: center;
            box-shadow: var(--shadow-lg);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(100, 116, 139, 0.1);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .service-card::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(102, 126, 234, 0.03) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-xl), var(--shadow-glow);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

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

        .service-icon {
            width: 100px;
            height: 100px;
            background: var(--gradient-primary);
            margin: 0 auto 2rem;
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: white;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            box-shadow: var(--shadow-lg);
        }

        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(10deg);
            box-shadow: var(--shadow-xl);
        }

        .service-card h3 {
            font-size: 1.75rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: var(--dark);
            letter-spacing: -0.01em;
        }

        .service-card p {
            color: var(--gray);
            line-height: 1.7;
            font-size: 1.1rem;
        }

        /* Enhanced Portfolio */
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 3rem;
            margin-top: 5rem;
        }

        .portfolio-card {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            border: 1px solid rgba(100, 116, 139, 0.1);
        }

        .portfolio-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-xl), var(--shadow-glow);
        }

        .portfolio-image {
            width: 100%;
            height: 280px;
            background: var(--gradient-accent);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .portfolio-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
        }

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

        .portfolio-overlay i {
            font-size: 3.5rem;
            color: white;
            transition: transform 0.4s ease;
        }

        .portfolio-card:hover .portfolio-overlay i {
            transform: scale(1.2);
        }

        .portfolio-content {
            padding: 2.5rem;
        }

        .portfolio-content h3 {
            font-size: 1.6rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: var(--dark);
            letter-spacing: -0.01em;
        }

        .portfolio-content p {
            color: var(--gray);
            margin-bottom: 2rem;
            line-height: 1.7;
            font-size: 1.1rem;
        }

        .portfolio-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            background: var(--gradient-primary);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 700;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-md);
        }

        .portfolio-link:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        /* Enhanced About Section */
        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
            margin-top: 5rem;
        }

        .about-text h3 {
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 2rem;
            color: var(--dark);
            letter-spacing: -0.02em;
        }

        .about-text p {
            color: var(--gray);
            margin-bottom: 2.5rem;
            line-height: 1.8;
            font-size: 1.2rem;
        }

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

        .stat-item {
            text-align: center;
            padding: 2rem 1.5rem;
            background: white;
            border-radius: 20px;
            box-shadow: var(--shadow-md);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(100, 116, 139, 0.1);
        }

        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 900;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            letter-spacing: -0.02em;
        }

        .stat-label {
            color: var(--gray);
            font-weight: 600;
            margin-top: 0.5rem;
            font-size: 1rem;
        }

        .about-image {
            position: relative;
        }

        .about-image img {
            width: 100%;
            border-radius: 24px;
            box-shadow: var(--shadow-xl);
        }

        /* Enhanced Contact Form */
        .contact-form {
            max-width: 700px;
            margin: 5rem auto 0;
            background: white;
            padding: 4rem;
            border-radius: 24px;
            box-shadow: var(--shadow-xl);
            border: 1px solid rgba(100, 116, 139, 0.1);
        }

        .form-group {
            margin-bottom: 2.5rem;
            position: relative;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1.5rem 2rem;
            border: 2px solid #e2e8f0;
            border-radius: 16px;
            font-size: 1.1rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            background: var(--light);
            font-family: inherit;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
            background: white;
        }

        .form-group label {
            position: absolute;
            top: 1.5rem;
            left: 2rem;
            color: var(--gray);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            pointer-events: none;
            font-weight: 500;
        }

        .form-group input:focus + label,
        .form-group textarea:focus + label,
        .form-group input:not(:placeholder-shown) + label,
        .form-group textarea:not(:placeholder-shown) + label {
            transform: translateY(-3rem) scale(0.85);
            color: var(--primary);
            font-weight: 600;
        }

        .submit-button {
            width: 100%;
            padding: 1.5rem;
            background: var(--gradient-primary);
            color: white;
            border: none;
            border-radius: 16px;
            font-size: 1.2rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-lg);
            position: relative;
            overflow: hidden;
        }

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

        .submit-button:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-xl), var(--shadow-glow);
        }

        .submit-button:hover::before {
            left: 100%;
        }

        /* Enhanced Footer */
        footer {
            background: var(--gradient-dark);
            color: white;
            padding: 4rem 2rem 3rem;
            text-align: center;
            margin-top: 6rem;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 3rem;
        }

        .social-links a {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .social-links a:hover {
            transform: translateY(-8px) scale(1.1);
            background: var(--gradient-primary);
            box-shadow: var(--shadow-xl);
        }

        footer p {
            margin-bottom: 1rem;
            opacity: 0.8;
        }

        /* WhatsApp Button Enhanced */
        .whatsapp-float {
            position: fixed;
            width: 70px;
            height: 70px;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(135deg, #25d366, #128c7e);
            color: white;
            border-radius: 50%;
            text-align: center;
            font-size: 32px;
            box-shadow: var(--shadow-xl), 0 0 30px rgba(37, 211, 102, 0.4);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            animation: pulse 3s infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.15);
            box-shadow: var(--shadow-xl), 0 0 40px rgba(37, 211, 102, 0.6);
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow: var(--shadow-xl), 0 0 30px rgba(37, 211, 102, 0.4);
            }
            50% {
                box-shadow: var(--shadow-xl), 0 0 40px rgba(37, 211, 102, 0.6);
            }
        }

        /* Loading Screen Enhanced */
        .loading {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.6s ease, visibility 0.6s ease;
        }

        .loading.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .spinner {
            width: 60px;
            height: 60px;
            border: 4px solid rgba(255, 255, 255, 0.2);
            border-top: 4px solid white;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Modal Enhanced */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(15, 23, 42, 0.9);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(20px);
        }

        .modal img {
            max-width: 90vw;
            max-height: 90vh;
            border-radius: 20px;
            box-shadow: var(--shadow-xl);
        }

        .modal .close {
            position: absolute;
            top: 40px;
            right: 40px;
            font-size: 3rem;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            backdrop-filter: blur(10px);
        }

        .modal .close:hover {
            transform: scale(1.2);
            background: rgba(255, 255, 255, 0.2);
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        /* Progress Bar */
        .progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            height: 4px;
            background: var(--gradient-primary);
            z-index: 10001;
            transition: width 0.1s ease;
            box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--light);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--gradient-primary);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--gradient-accent);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .about-container {
                grid-template-columns: 1fr;
                gap: 4rem;
            }

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

            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }

            .nav-links {
                position: fixed;
                top: 80px;
                right: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: rgba(248, 250, 252, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                padding-top: 4rem;
                transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                gap: 2rem;
            }

            .nav-links.active {
                right: 0;
            }

            .hero h1 {
                font-size: clamp(2.5rem, 8vw, 4rem);
            }

            .hero p {
                font-size: clamp(1.1rem, 5vw, 1.5rem);
            }

            .cta-button {
                padding: 1.25rem 2.5rem;
                font-size: 1.1rem;
            }

            .decoration-circle {
                display: none;
            }

            .section-title {
                font-size: clamp(2rem, 8vw, 3rem);
            }

            section:not(.hero) {
                padding: 5rem 1.5rem;
            }

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

            .service-card {
                padding: 2.5rem 2rem;
            }

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

            .portfolio-card {
                margin: 0 1rem;
            }

            .about-stats {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .contact-form {
                margin: 3rem 1rem 0;
                padding: 2.5rem;
            }

            .whatsapp-float {
                width: 60px;
                height: 60px;
                bottom: 20px;
                right: 20px;
                font-size: 28px;
            }
        }

        @media (max-width: 480px) {
            .nav-container {
                padding: 0 1rem;
            }

            .logo {
                font-size: 2rem;
            }

            .hero {
                padding: 0 1rem;
            }

            .service-icon {
                width: 80px;
                height: 80px;
                font-size: 2rem;
            }

            .portfolio-image {
                height: 220px;
            }

            .modal img {
                max-width: 95vw;
                max-height: 85vh;
            }

            .modal .close {
                top: 20px;
                right: 20px;
                font-size: 2rem;
                width: 50px;
                height: 50px;
            }
        }

        /* Print Styles */
        @media print {
            .whatsapp-float,
            .loading,
            .modal,
            nav {
                display: none !important;
            }

            .hero {
                min-height: 50vh;
                page-break-after: always;
            }

            section:not(.hero) {
                padding: 2rem 0;
            }
        }