        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --coral: #FF6B6B;
            --teal: #4ECDC4;
            --yellow: #FFE66D;
            --purple: #6C5CE7;
            --pink: #FD79A8;
            --dark: #2D3436;
            --light: #FFFFFF;
            --gray: #636E72;
            --bg-cream: #FFF9F0;
        }
        
        body {
            font-family: 'Space Grotesk', sans-serif;
            color: var(--dark);
            overflow-x: hidden;
            background: var(--light);
        }
        
        .serif {
            font-family: 'DM Serif Display', serif;
        }
        
        /* Preloader */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: var(--coral);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
        }
        
        .preloader.hide {
            transform: translateY(-100%);
        }
        
        .preloader-content {
            text-align: center;
        }
        
        .preloader-text {
            font-size: 4rem;
            color: var(--light);
            font-weight: 700;
            animation: bounce 1s infinite;
        }
        
        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }
        
        /* Navigation */
        .nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 1.5rem 3rem;
            z-index: 1000;
            transition: all 0.3s ease;
            mix-blend-mode: difference;
        }
        
        .nav.scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            mix-blend-mode: normal;
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--light);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .nav.scrolled .logo {
            color: var(--dark);
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }
        
        .nav-link {
            color: var(--light);
            text-decoration: none;
            font-weight: 500;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav.scrolled .nav-link {
            color: var(--dark);
        }
        
        .nav-link:hover {
            color: var(--coral);
        }
        
        .burger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }
        
        .burger span {
            width: 25px;
            height: 3px;
            background: var(--light);
            transition: all 0.3s ease;
            border-radius: 3px;
        }
        
        .nav.scrolled .burger span {
            background: var(--dark);
        }
        
        /* Hero Section */
        .hero {
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, var(--coral) 0%, var(--teal) 100%);
            overflow: hidden;
        }
        
        .hero-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }
        
        .shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(40px);
            opacity: 0.3;
            animation: float 20s infinite ease-in-out;
        }
        
        .shape-1 {
            width: 400px;
            height: 400px;
            background: var(--yellow);
            top: -100px;
            right: -100px;
        }
        
        .shape-2 {
            width: 300px;
            height: 300px;
            background: var(--purple);
            bottom: -50px;
            left: -50px;
            animation-delay: 5s;
        }
        
        .shape-3 {
            width: 250px;
            height: 250px;
            background: var(--pink);
            top: 50%;
            left: 50%;
            animation-delay: 10s;
        }
        
        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(50px, -50px) rotate(90deg); }
            50% { transform: translate(-30px, 30px) rotate(180deg); }
            75% { transform: translate(-50px, -30px) rotate(270deg); }
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 3rem;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        
        .hero-text h1 {
            font-size: clamp(3rem, 7vw, 5.5rem);
            color: var(--light);
            line-height: 0.95;
            margin-bottom: 1.5rem;
            animation: slideUp 0.8s ease;
        }
        
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .hero-text .highlight {
            position: relative;
            display: inline-block;
        }
        
        .hero-text .highlight::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: -10px;
            right: -10px;
            height: 30%;
            background: var(--yellow);
            z-index: -1;
            transform: rotate(-2deg);
        }
        
        .hero-text p {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2.5rem;
            line-height: 1.6;
            animation: slideUp 0.8s ease 0.2s both;
        }
        
        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            animation: slideUp 0.8s ease 0.4s both;
        }
        
        .btn {
            padding: 1.2rem 2.5rem;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .btn-white {
            background: var(--light);
            color: var(--coral);
        }
        
        .btn-white:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        
        .btn-outline-white {
            background: transparent;
            color: var(--light);
            border: 2px solid var(--light);
        }
        
        .btn-outline-white:hover {
            background: var(--light);
            color: var(--coral);
        }
        
        .hero-image {
            position: relative;
            animation: slideUp 0.8s ease 0.6s both;
        }
        
        .hero-image-container {
            position: relative;
            transform: rotate(5deg);
        }
        
        .hero-image-frame {
            width: 100%;
            height: 500px;
            background: var(--light);
            border-radius: 30px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 30px 60px rgba(0,0,0,0.2);
        }
        
        .hero-image-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .hero-decoration {
            position: absolute;
            width: 150px;
            height: 150px;
            background: var(--yellow);
            border-radius: 30px;
            bottom: -30px;
            right: -30px;
            z-index: -1;
            transform: rotate(15deg);
        }
        
        /* About Section */
        .about {
            padding: 8rem 3rem;
            background: var(--bg-cream);
            position: relative;
        }
        
        .about-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }
        
        .about-images {
            position: relative;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        
        .about-img-1 {
            margin-top: 4rem;
        }
        
        .about-img-box {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .about-img-box:hover {
            transform: translateY(-10px);
        }
        
        .about-img-box img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }
        
        .about-badge {
            position: absolute;
            bottom: -30px;
            right: -30px;
            width: 120px;
            height: 120px;
            background: var(--coral);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--light);
            font-weight: 700;
            font-size: 1.5rem;
            animation: rotate 10s linear infinite;
        }
        
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        .about-content h2 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: var(--dark);
        }
        
        .about-content h2 span {
            color: var(--coral);
        }
        
        .about-content p {
            font-size: 1.15rem;
            line-height: 1.8;
            color: var(--gray);
            margin-bottom: 2rem;
        }
        
        .about-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .stat-box {
            text-align: center;
            padding: 1.5rem;
            background: var(--light);
            border-radius: 15px;
            transition: all 0.3s ease;
        }
        
        .stat-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--teal);
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            font-size: 0.9rem;
            color: var(--gray);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Services Section */
        .services {
            padding: 8rem 3rem;
            background: var(--light);
        }
        
        .services-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 4rem;
        }
        
        .services-header h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }
        
        .services-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }
        
        .service-card {
            padding: 2.5rem;
            background: var(--light);
            border-radius: 20px;
            border: 2px solid transparent;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--coral), var(--teal), var(--yellow));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }
        
        .service-card:hover::before {
            transform: scaleX(1);
        }
        
        .service-card:nth-child(1) { border-color: var(--coral); }
        .service-card:nth-child(2) { border-color: var(--teal); }
        .service-card:nth-child(3) { border-color: var(--yellow); }
        .service-card:nth-child(4) { border-color: var(--purple); }
        .service-card:nth-child(5) { border-color: var(--pink); }
        .service-card:nth-child(6) { border-color: var(--coral); }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        
        .service-icon {
            width: 70px;
            height: 70px;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            border-radius: 15px;
        }
        
        .service-card:nth-child(1) .service-icon { background: rgba(255, 107, 107, 0.1); color: var(--coral); }
        .service-card:nth-child(2) .service-icon { background: rgba(78, 205, 196, 0.1); color: var(--teal); }
        .service-card:nth-child(3) .service-icon { background: rgba(255, 230, 109, 0.1); color: var(--yellow); }
        .service-card:nth-child(4) .service-icon { background: rgba(108, 92, 231, 0.1); color: var(--purple); }
        .service-card:nth-child(5) .service-icon { background: rgba(253, 121, 168, 0.1); color: var(--pink); }
        .service-card:nth-child(6) .service-icon { background: rgba(255, 107, 107, 0.1); color: var(--coral); }
        
        .service-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }
        
        .service-desc {
            color: var(--gray);
            line-height: 1.6;
        }
        
        /* Portfolio Section */
        .portfolio {
            padding: 8rem 3rem;
            background: var(--bg-cream);
        }
        
        .portfolio-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 4rem;
        }
        
        .portfolio-header h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }
        
        .portfolio-filters {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 4rem;
            flex-wrap: wrap;
        }
        
        .filter-pill {
            padding: 0.75rem 1.5rem;
            background: var(--light);
            border: 2px solid var(--light);
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .filter-pill.active {
            background: var(--coral);
            color: var(--light);
            border-color: var(--coral);
        }
        
        .filter-pill:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .portfolio-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 2rem;
        }
        
        .portfolio-item {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            height: 400px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
        }
        
        .portfolio-item:hover {
            transform: scale(1.05);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }
        
        .portfolio-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        
        .portfolio-item:hover img {
            transform: scale(1.1);
        }
        
        .portfolio-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 2rem;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
            transform: translateY(100%);
            transition: transform 0.4s ease;
        }
        
        .portfolio-item:hover .portfolio-overlay {
            transform: translateY(0);
        }
        
        .portfolio-title {
            color: var(--light);
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }
        
        .portfolio-cat {
            color: var(--yellow);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        /* Process Section */
        .process {
            padding: 8rem 3rem;
            background: var(--light);
        }
        
        .process-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 4rem;
        }
        
        .process-header h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }
        
        .process-timeline {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }
        
        .process-timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--coral);
            transform: translateX(-50%);
        }
        
        .process-item {
            display: flex;
            align-items: center;
            margin-bottom: 4rem;
            position: relative;
        }
        
        .process-item:nth-child(even) {
            flex-direction: row-reverse;
        }
        
        .process-content {
            flex: 1;
            padding: 2rem 3rem;
            background: var(--bg-cream);
            border-radius: 20px;
            position: relative;
        }
        
        .process-item:nth-child(odd) .process-content {
            margin-right: 3rem;
            text-align: right;
        }
        
        .process-item:nth-child(even) .process-content {
            margin-left: 3rem;
        }
        
        .process-number {
            position: absolute;
            width: 60px;
            height: 60px;
            background: var(--coral);
            color: var(--light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1;
        }
        
        .process-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }
        
        .process-desc {
            color: var(--gray);
            line-height: 1.6;
        }
        
        /* Testimonials */
        .testimonials {
            padding: 8rem 3rem;
            background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
            position: relative;
            overflow: hidden;
        }
        
        .testimonials::before {
            content: '"';
            position: absolute;
            top: -50px;
            left: 50px;
            font-size: 20rem;
            color: rgba(255, 255, 255, 0.1);
            font-family: serif;
        }
        
        .testimonials-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 4rem;
        }
        
        .testimonials-header h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--light);
        }
        
        .testimonials-slider {
            max-width: 900px;
            margin: 0 auto;
            background: var(--light);
            border-radius: 30px;
            padding: 3rem;
            box-shadow: 0 30px 60px rgba(0,0,0,0.2);
        }
        
        .testimonial {
            text-align: center;
        }
        
        .testimonial-text {
            font-size: 1.5rem;
            line-height: 1.8;
            color: var(--dark);
            margin-bottom: 2rem;
            font-style: italic;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }
        
        .author-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--coral);
        }
        
        .author-info h4 {
            color: var(--dark);
            margin-bottom: 0.25rem;
        }
        
        .author-info p {
            color: var(--gray);
            font-size: 0.9rem;
        }
        
        /* Contact Section */
        .contact {
            padding: 8rem 3rem;
            background: var(--bg-cream);
        }
        
        .contact-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: start;
        }
        
        .contact-info h2 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: var(--dark);
        }
        
        .contact-info p {
            font-size: 1.15rem;
            color: var(--gray);
            margin-bottom: 3rem;
            line-height: 1.6;
        }
        
        .contact-cards {
            display: grid;
            gap: 1.5rem;
        }
        
        .contact-card {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            padding: 1.5rem;
            background: var(--light);
            border-radius: 15px;
            transition: all 0.3s ease;
        }
        
        .contact-card:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .contact-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--coral), var(--teal));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--light);
            font-size: 1.5rem;
        }
        
        .contact-details h4 {
            color: var(--dark);
            margin-bottom: 0.25rem;
        }
        
        .contact-details p {
            color: var(--gray);
            font-size: 0.95rem;
        }
        
        .contact-form {
            background: var(--light);
            padding: 3rem;
            border-radius: 30px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--dark);
        }
        
        .form-input {
            width: 100%;
            padding: 1rem 1.5rem;
            border: 2px solid var(--bg-cream);
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: var(--bg-cream);
        }
        
        .form-input:focus {
            outline: none;
            border-color: var(--coral);
            background: var(--light);
        }
        
        .form-textarea {
            resize: vertical;
            min-height: 150px;
        }
        
        .form-btn {
            width: 100%;
            padding: 1.25rem;
            background: linear-gradient(135deg, var(--coral), var(--teal));
            color: var(--light);
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .form-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        
        /* Footer */
        .footer {
            background: var(--dark);
            color: var(--light);
            padding: 4rem 3rem 2rem;
        }
        
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 3rem;
        }
        
        .footer-brand h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--coral), var(--teal));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .footer-brand p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            margin-bottom: 2rem;
        }
        
        .footer-socials {
            display: flex;
            gap: 1rem;
        }
        
        .social-icon {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--light);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background: var(--coral);
            transform: translateY(-5px);
        }
        
        .footer-column h4 {
            margin-bottom: 1.5rem;
            color: var(--light);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 1rem;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--coral);
        }
        
        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .hero-image {
                display: none;
            }
            
            .about-container {
                grid-template-columns: 1fr;
            }
            
            .process-timeline::before {
                left: 30px;
            }
            
            .process-item,
            .process-item:nth-child(even) {
                flex-direction: column;
                margin-left: 60px;
            }
            
            .process-item:nth-child(odd) .process-content,
            .process-item:nth-child(even) .process-content {
                margin: 0;
                text-align: left;
            }
            
            .process-number {
                left: 30px;
            }
            
            .contact-container {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                right: -100%;
                top: 0;
                flex-direction: column;
                background: var(--light);
                width: 100%;
                height: 100vh;
                padding: 5rem 2rem;
                transition: right 0.3s ease;
            }
            
            .nav-links.active {
                right: 0;
            }
            
            .nav-link {
                color: var(--dark) !important;
            }
            
            .burger {
                display: flex;
                z-index: 1001;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .portfolio-grid {
                grid-template-columns: 1fr;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .footer-socials {
                justify-content: center;
            }
        }
