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

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #2d2e2e;
            color: #FFF;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .grecaptcha-badge {
            display: none !important;
        }

        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background: linear-gradient(90deg, #FFF 0%, rgba(255,255,255,0.8) 100%);
            z-index: 1001;
            transition: width 0.1s ease;
        }

        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            backdrop-filter: blur(15px);
            z-index: 1000;
            padding: 15px 0;
            transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .navbar.scrolled {
            padding: 10px 0;
            background: rgba(45, 46, 46, 0.98);
            backdrop-filter: blur(20px);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Poppins', sans-serif;
            font-weight: 900;
            font-size: 32px;
            letter-spacing: -1px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 40px;
        }

        .nav-link {
            color: #FFF;
            text-decoration: none;
            font-weight: 400;
            transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
            position: relative;
            padding: 8px 0;
        }

        .nav-link:hover {
            color: #ccc;
            transform: translateY(-1px);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #FFF, rgba(255,255,255,0.5));
            transition: width 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
        }

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

        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }

        .mobile-menu-btn span {
            width: 25px;
            height: 3px;
            background: #FFF;
            transition: all 0.3s ease;
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 300px;
            height: 100vh;
            background: rgba(45, 46, 46, 0.98);
            backdrop-filter: blur(20px);
            padding: 100px 40px 40px;
            transition: right 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
            z-index: 999;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-nav-link {
            display: block;
            color: #FFF;
            text-decoration: none;
            padding: 15px 0;
            font-size: 18px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            transition: all 0.3s ease;
        }

        .mobile-nav-link:hover {
            color: #ccc;
            transform: translateX(10px);
        }

        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background-image: url('../img/background.jpg');
            background-size: cover;
            background-position: center;
            padding-top: 100px;
            padding-bottom: 40px;
        }

        .hero > .container {
            margin-top: auto;
            margin-bottom: auto;
        }

        @media (max-width: 768px) {
            .hero {
                background-attachment: scroll;
            }
        }

        @media (min-width: 769px) {
            .hero {
                background-attachment: fixed;
            }
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                135deg, 
                rgba(45, 46, 46, 0.92) 0%, 
                rgba(45, 46, 46, 0.85) 50%, 
                rgba(45, 46, 46, 0.90) 100%
            );
            background-blend-mode: multiply;
            z-index: 1;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 1;
            animation: float 6s ease-in-out infinite;
        }

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

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
            opacity: 0;
            animation: fadeInUp 1s ease 0.5s forwards;
        }

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

        .hero-text h1 {
            font-family: 'Poppins', sans-serif;
            font-weight: 900;
            font-size: clamp(3rem, 8vw, 5.5rem);
            line-height: 1;
            margin-bottom: 30px;
            letter-spacing: -2px;
            background: linear-gradient(135deg, #FFF 0%, rgba(255,255,255,0.8) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-text .subtext {
            font-size: 1rem;
            opacity: 0.7;
            margin-bottom: 40px;
            animation: fadeInUp 1s ease 0.9s both;

        }

        .cta-button {
            background: linear-gradient(135deg, #FFF 0%, rgba(255,255,255,0.9) 100%);
            color: #2d2e2e;
            padding: 18px 45px;
            border: none;
            border-radius: 50px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
            animation: fadeInUp 1s ease 1.1s both;
        }

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

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

        .cta-button:hover {
            transform: translateY(-3px) scale(1.02);
        }

        .cta-button:active {
            transform: translateY(-1px) scale(0.98);
        }

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

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

        .services {
            padding: 120px 0;
            position: relative;
            background-color: #FFF;
            color: #2d2e2e;
            overflow: hidden;
        }

        .services::before {
            content: '';
            position: absolute;
            top: -200px;
            left: -30%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(45, 46, 46, 0.05) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 8s ease-in-out infinite reverse;
        }

        .services .service-card {
            background: rgba(45, 46, 46, 0.05);
            padding: 40px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(45, 46, 46, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
            color: #2d2e2e;
            position: relative;
            overflow: hidden;
        }

        .services .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(45, 46, 46, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .services .service-card:hover::before {
            left: 100%;
        }

        .services .service-card:hover {
            transform: translateY(-15px) scale(1.02);
            background: rgba(45, 46, 46, 0.08);
        }

        .services-closing-text {
            text-align: center;
            margin-top: 60px;
            font-size: 1.2rem;
            color: #2d2e2e;
            opacity: 0.8;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
        }

        /* Nuevos estilos para la sección de contacto integrada */
        .contact-section {
            padding: 120px 0;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #2d2e2e 0%, #1a1b1b 100%);
        }

        .contact-section::before {
            content: '';
            position: absolute;
            top: -200px;
            right: -200px;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 8s ease-in-out infinite;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: start;
            position: relative;
            z-index: 2;
        }

        .contact-info {
            padding-top: 40px;
        }

        .contact-info h2 {
            font-family: 'Poppins', sans-serif;
            font-weight: 900;
            font-size: clamp(2rem, 5vw, 3.5rem);
            margin-bottom: 30px;
            letter-spacing: -1px;
            background: linear-gradient(135deg, #FFF 0%, rgba(255,255,255,0.8) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .contact-info p {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 40px;
            line-height: 1.7;
        }

        .contact-methods {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .contact-method {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 20px;
            background: rgba(255,255,255,0.05);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.3s ease;
            text-decoration: none;
            color: #FFF;
        }

        .contact-method:hover {
            background: rgba(255,255,255,0.08);
            transform: translateY(-3px);
        }

        .contact-method-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #FFF 0%, rgba(255,255,255,0.9) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-method-icon svg {
            width: 24px;
            height: 24px;
            fill: #2d2e2e;
        }

        .contact-method-info h4 {
            font-weight: 600;
            margin-bottom: 5px;
        }

        .contact-method-info p {
            opacity: 0.8;
            margin: 0;
            font-size: 1rem;
        }

        /* Formulario */
        .contact-form {
            background: rgba(255,255,255,0.05);
            padding: 50px;
            border-radius: 25px;
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255,255,255,0.1);
            position: relative;
            overflow: hidden;
        }

        .contact-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(255,255,255,0.05) 100%);
            pointer-events: none;
        }

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

        .form-title {
            font-family: 'Poppins', sans-serif;
            font-weight: 900;
            font-size: 2rem;
            margin-bottom: 30px;
            text-align: center;
            color: #FFF;
        }

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

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

        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #FFF;
            font-size: 1rem;
        }

        input,
        textarea,
        select {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid rgba(255,255,255,0.2);
            border-radius: 12px;
            background: rgba(255,255,255,0.1);
            color: #FFF;
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        input::placeholder,
        textarea::placeholder {
            color: rgba(255,255,255,0.6);
        }

        input:focus,
        textarea:focus,
        select:focus {
            outline: none;
            border-color: #FFF;
            background: rgba(255,255,255,0.15);
        }

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

        .budget-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 15px;
            margin-top: 10px;
        }

        .budget-option {
            position: relative;
        }

        .budget-option input[type="radio"] {
            opacity: 0;
            position: absolute;
            width: 100%;
            height: 100%;
            margin: 0;
            cursor: pointer;
        }

        .budget-option label {
            display: block;
            padding: 15px 20px;
            border: 2px solid rgba(255,255,255,0.2);
            border-radius: 12px;
            background: rgba(255,255,255,0.1);
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            margin: 0;
            font-size: 0.9rem;
        }

        .budget-option input[type="radio"]:checked + label {
            border-color: #FFF;
            background: rgba(255,255,255,0.2);
            color: #FFF;
        }

        .budget-option:hover label {
            background: rgba(255,255,255,0.15);
        }

        .form-submit {
            text-align: center;
            margin-top: 40px;
        }

        .submit-btn {
            background: linear-gradient(135deg, #FFF 0%, rgba(255,255,255,0.9) 100%);
            color: #2d2e2e;
            padding: 18px 50px;
            border: none;
            border-radius: 50px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
            position: relative;
            overflow: hidden;
            min-width: 200px;
        }

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

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

        .submit-btn:hover {
            transform: translateY(-3px) scale(1.02);
        }

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

        .loading {
            display: none;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .spinner {
            width: 20px;
            height: 20px;
            border: 2px solid rgba(45, 46, 46, 0.3);
            border-top: 2px solid #2d2e2e;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

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

        .error-message {
            color: #ff6b6b;
            font-size: 0.9rem;
            margin-top: 8px;
            display: none;
        }

        .success-message {
            background: rgba(46, 204, 113, 0.2);
            border: 1px solid rgba(46, 204, 113, 0.5);
            color: #2ecc71;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            margin-top: 20px;
            display: none;
        }

        .recaptcha-container {
            margin: 30px 0;
            text-align: center;
        }

        /* Estilos para reCAPTCHA en tema oscuro */
        .g-recaptcha {
            display: inline-block;
            border-radius: 12px;
            overflow: hidden;
            background: rgba(255,255,255,0.1);
            padding: 10px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
        }

        .footer {
            background-color: #2d2e2e;
            color: #FFF;
            padding: 60px 0 30px 0;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: -100px;
            left: -200px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
            border-radius: 50%;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
            position: relative;
            z-index: 2;
        }

        .footer-section h4 {
            font-family: 'Poppins', sans-serif;
            font-weight: 900;
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: #FFF;
        }

        .footer-section p,
        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            line-height: 1.8;
            transition: all 0.3s ease;
        }

        .footer-section a:hover {
            color: #FFF;
            transform: translateX(5px);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-link {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #FFF 0%, rgba(255,255,255,0.9) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
            text-decoration: none;
            color: #000;
            position: relative;
            overflow: hidden;
        }

        .social-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

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

        .social-link:hover {
            background: #FFF;
            transform: translateY(-5px) scale(1.1);
        }

        .contact-icon {
            width: 20px;
            height: 20px;
            background: #FFF;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .contact-icon svg {
            width: 12px;
            height: 12px;
            fill: #000;
        }

        .footer-contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            font-size: 1.1rem;
            opacity: 0.9;
            color: #FFF;
            transition: all 0.3s ease;
        }

        .footer-contact-item:hover {
            opacity: 1;
            transform: translateX(5px);
        }

        .footer-contact-item:hover .contact-icon {
            transform: scale(1.1);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
            position: relative;
            z-index: 2;
        }

        .section-title {
            font-family: 'Poppins', sans-serif;
            font-weight: 900;
            font-size: clamp(2.5rem, 6vw, 4rem);
            text-align: center;
            margin-bottom: 80px;
            letter-spacing: -1px;
        }

        .services-grid {
            display: grid;
            gap: 30px;
            position: relative;
            z-index: 2;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

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

        .portfolio-content {
            padding: 25px;
        }

        .portfolio-content h4 {
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .portfolio-content p {
            opacity: 0.7;
            font-size: 0.9rem;
        }

        .service-card h3 {
            font-family: 'Poppins', sans-serif;
            font-weight: 900;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        .service-card p {
            opacity: 0.8;
            line-height: 1.6;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .nav-menu {
                display: none;
            }

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

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 40px;
            }

            .hero-text h1 {
                font-size: 3rem;
            }

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

            .contact-container {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .contact-form {
                padding: 30px;
            }

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

            .budget-options {
                grid-template-columns: 1fr 1fr;
            }

            .contact-info h2 {
                text-align: center;
            }

            .social-links {
                justify-content: center;
            }

            .services-closing-text {
                font-size: 1.1rem;
                padding: 0 10px;
            }
        }

        @media (max-width: 568px) {
            .contact-section {
                padding: 80px 0;
            }

            .contact-form {
                padding: 25px;
            }

            .budget-options {
                grid-template-columns: 1fr;
            }

            .form-title {
                font-size: 1.5rem;
            }
        }

        html {
            scroll-behavior: smooth;
        }

        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }
        }

        .float {
            position:fixed;
            width:60px;
            height:60px;
            bottom:40px;
            right:40px;
            background-color:#25d366;
            color:#FFF;
            border-radius:50px;
            text-align:center;
            font-size:30px;
            z-index:100;
        }

        select option {
            background: #FFF;
            color: #2d2e2e;
            padding: 10px;
        }

        .portfolio {
            padding: 120px 0;
            position: relative;
            background-color: #2d2e2e;
            color: #FFF;
            overflow: hidden;
        }

        .portfolio::before {
            content: '';
            position: absolute;
            bottom: -200px;
            right: -20%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 10s ease-in-out infinite;
        }

        .portfolio .portfolio-item {
            background: rgba(255,255,255,0.05);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
            cursor: pointer;
            border: 1px solid rgba(255,255,255,0.1);
            color: #FFF;
            position: relative;
        }

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

        .portfolio .portfolio-item:hover::before {
            opacity: 1;
        }

        .portfolio .portfolio-item:hover {
            transform: translateY(-8px) scale(1.03);
            background: rgba(255,255,255,0.08);
        }

        .portfolio-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            opacity: 0.7;
            transition: all 0.3s ease;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
            overflow: hidden;
        }

        .portfolio-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(45, 46, 46, 0.4);
            z-index: 1;
        }

        .portfolio-image-text {
            position: relative;
            z-index: 2;
            color: #FFF;
            font-weight: 600;
            text-align: center;
            padding: 20px;
            background: rgba(0,0,0,0.6);
            border-radius: 8px;
            backdrop-filter: blur(5px);
        }

        .portfolio .portfolio-item:hover .portfolio-image {
            opacity: 1;
        }

        .portfolio .portfolio-item:hover .portfolio-image::before {
            background: rgba(45, 46, 46, 0.2);
        }     

#changingWord {
    position: relative;
    display: inline-block;
    -webkit-text-fill-color: transparent;
    background: linear-gradient(135deg, #FFF 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    min-width: 200px;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}


.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
    z-index: 1000;
    position: relative;
    transition: transform 0.3s ease;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #FFF;
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    transform-origin: center;
}


.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}


.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(45, 46, 46, 0.95) 0%, rgba(29, 30, 30, 0.98) 100%);
    backdrop-filter: blur(20px);
    z-index: 999;
    padding: 100px 0 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transition: right 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu.active {
    right: 0;
}


.mobile-nav-link {
    display: block;
    color: #FFF;
    text-decoration: none;
    padding: 20px 40px;
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    transform: translateX(50px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}


.mobile-menu.active .mobile-nav-link:nth-child(1) { 
    animation: slideInFromRight 0.6s 0.1s cubic-bezier(0.23, 1, 0.320, 1) forwards; 
}
.mobile-menu.active .mobile-nav-link:nth-child(2) { 
    animation: slideInFromRight 0.6s 0.2s cubic-bezier(0.23, 1, 0.320, 1) forwards; 
}
.mobile-menu.active .mobile-nav-link:nth-child(3) { 
    animation: slideInFromRight 0.6s 0.3s cubic-bezier(0.23, 1, 0.320, 1) forwards; 
}
.mobile-menu.active .mobile-nav-link:nth-child(4) { 
    animation: slideInFromRight 0.6s 0.4s cubic-bezier(0.23, 1, 0.320, 1) forwards; 
}

@keyframes slideInFromRight {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}


.mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateX(10px);
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: linear-gradient(45deg, #FFF, rgba(255,255,255,0.8));
    transition: height 0.3s ease;
}

.mobile-nav-link:hover::before {
    height: 60%;
}


.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
    opacity: 0;
    transform: rotate(-90deg) scale(0.8);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu.active .mobile-menu-close {
    opacity: 1;
    transform: rotate(0deg) scale(1);
    transition-delay: 0.3s;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg) scale(1.1);
}


body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}


@media (max-width: 968px) {
    .mobile-menu-btn {
        display: flex;
    }
}


.mobile-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 50%, rgba(255,255,255,0.02) 100%);
    pointer-events: none;
}


@media (prefers-reduced-motion: no-preference) {
    .mobile-menu {
        transform: translateX(100%);
        transition: transform 0.5s cubic-bezier(0.23, 1, 0.320, 1), 
                    right 0s 0.5s;
    }
    
    .mobile-menu.active {
        transform: translateX(0);
        transition: transform 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    }
}

.faq-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #FFF 0%, #f8f9fa 100%);
    color: #2d2e2e;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(45, 46, 46, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-intro {
    text-align: center;
    margin-bottom: 50px;
    margin-top: -50px;
    color: #2d2e2e;
    opacity: 0.8;
}

.faq-intro p {
    font-size: 1.2rem;
    line-height: 1.6;
}

.faq-item {
    background: rgba(45, 46, 46, 0.05);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    border: 1px solid rgba(45, 46, 46, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
}

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

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

.faq-item:hover {
    transform: translateY(-3px);
    background: rgba(45, 46, 46, 0.08);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(45, 46, 46, 0.03);
}

.faq-question h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
    color: #2d2e2e;
    line-height: 1.4;
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #2d2e2e 0%, rgba(45, 46, 46, 0.9) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.faq-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.faq-icon:hover::before {
    left: 100%;
}

.faq-icon svg {
    width: 16px;
    height: 16px;
    fill: #FFF;
    transition: transform 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: linear-gradient(135deg, #FFF 0%, rgba(255,255,255,0.9) 100%);
}

.faq-item.active .faq-icon svg {
    fill: #2d2e2e;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.faq-answer-content {
    padding: 0 30px 25px;
    color: #2d2e2e;
    opacity: 0.8;
    line-height: 1.7;
    transform: translateY(-10px);
    transition: all 0.3s ease 0.1s;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-item.active .faq-answer-content {
    transform: translateY(0);
    opacity: 0.9;
}

.faq-cta {
    background: rgba(45, 46, 46, 0.05);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-top: 60px;
    border: 1px solid rgba(45, 46, 46, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.faq-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 46, 46, 0.02) 0%, transparent 50%, rgba(45, 46, 46, 0.01) 100%);
    pointer-events: none;
}

.faq-cta h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2d2e2e;
}

.faq-cta p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 30px;
    color: #2d2e2e;
}

.faq-cta-button {
    background: linear-gradient(135deg, #2d2e2e 0%, rgba(45, 46, 46, 0.9) 100%);
    color: #FFF;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

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

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

.faq-cta-button:hover {
    transform: translateY(-3px) scale(1.02);
}

@media (max-width: 768px) {
    .faq-section {
        padding: 80px 0;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 1rem;
        padding-right: 15px;
    }

    .faq-answer-content {
        padding: 0 20px 20px;
    }

    .faq-cta {
        padding: 30px 20px;
    }

    .faq-cta h3 {
        font-size: 1.5rem;
    }
}

.portfolio-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(29, 30, 30, 0.85);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-modal-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.portfolio-modal {
    background: rgba(45, 46, 46, 0.98);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.95) translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.portfolio-modal-backdrop.active .portfolio-modal {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.portfolio-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
}

.portfolio-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.portfolio-modal-close svg {
    width: 18px;
    height: 18px;
    fill: #FFF;
}

.portfolio-modal-image {
    width: 100%;
    border-radius: 20px 20px 0 0;
    display: block;
}

.portfolio-modal-body {
    padding: 30px;
}

.portfolio-modal-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: #FFF;
    margin-bottom: 12px;
}

.portfolio-modal-desc {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1rem;
}

.portfolio-modal-badge {
    display: inline-block;
    margin-top: 16px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 568px) {
    .portfolio-modal {
        width: 95%;
        border-radius: 16px;
    }

    .portfolio-modal-image {
        border-radius: 16px 16px 0 0;
    }

    .portfolio-modal-body {
        padding: 20px;
    }

    .portfolio-modal-title {
        font-size: 1.3rem;
    }
}

.exit-overlay-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(29, 30, 30, 0.95);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.exit-overlay-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.exit-overlay-box {
    background: rgba(45, 46, 46, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 420px;
    width: 90%;
}

.exit-overlay-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: #FFF;
    margin-bottom: 32px;
}

.exit-overlay-countdown {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 3.5rem;
    color: #FFF;
    line-height: 1;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    margin-bottom: 36px;
}

.exit-overlay-cancel {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #FFF;
    padding: 14px 40px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.exit-overlay-cancel:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 568px) {
    .exit-overlay-box {
        padding: 36px 28px;
    }

    .exit-overlay-title {
        font-size: 1.3rem;
    }

    .exit-overlay-countdown {
        font-size: 2.8rem;
        width: 85px;
        height: 85px;
    }
}