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

html {
    scroll-behavior: smooth;
    scroll-snap-type: y proximity;
}

body {
    font-family: 'Playfair Display', Georgia, serif;
    overflow-x: hidden;
    background: #000;
    color: #fff;
    letter-spacing: 0.5px;
    overflow-y: scroll;
}

.fullscreen-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    scroll-snap-align: start;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.fullscreen-section.in-view {
    opacity: 1;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s;
    overflow-y: auto;
    padding: 2rem 0;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #fff;
    max-width: 600px;
    width: 90%;
    padding: 4rem 3rem;
    position: relative;
    transform: scale(0.8) translateY(50px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 2px solid #b8860b;
    margin: auto;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content iframe {
    border-radius: 8px;
    overflow: hidden;
}

/* Hide Google Calendar branding */
.modal-content iframe {
    margin-bottom: -80px;
    height: 680px !important;
}

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

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 2.5rem;
    color: #b8860b;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 300;
    line-height: 1;
}

.modal-close:hover {
    transform: rotate(90deg) scale(1.3);
    color: #000;
}

.modal h2 {
    font-size: 3rem;
    font-weight: 300;
    color: #b8860b;
    margin-bottom: 2rem;
    letter-spacing: 4px;
    font-family: 'Playfair Display', serif;
}

.modal p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 3rem;
    line-height: 1.8;
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    color: #111827;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: #111827;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b8860b;
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.2);
}

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

.form-submit {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: 1px solid #b8860b;
    color: #b8860b;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

.form-submit:hover {
    background: #b8860b;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(184, 134, 11, 0.4);
    letter-spacing: 5px;
}

/* Header */
.global-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2.5rem;
    font-weight: 300;
    color: #b8860b;
    text-decoration: none;
    letter-spacing: 8px;
    font-family: 'Cinzel', serif;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.text-white {
    color: #fff;
}

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

.logo img {
    height: 60px;
    width: auto;
}

/* Fullscreen Menu */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s;
}

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

.menu-close {
    position: absolute;
    top: 2rem;
    right: 4rem;
    font-size: 3rem;
    color: #b8860b;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 300;
}

.menu-close:hover {
    transform: rotate(90deg) scale(1.2);
}

.menu-content {
    text-align: center;
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

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

.menu-nav {
    list-style: none;
}

.menu-nav li {
    margin: 2rem 0;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fullscreen-menu.active .menu-nav li:nth-child(1) {
    transition-delay: 0.3s;
    opacity: 1;
    transform: translateX(0);
}

.fullscreen-menu.active .menu-nav li:nth-child(2) {
    transition-delay: 0.4s;
    opacity: 1;
    transform: translateX(0);
}

.fullscreen-menu.active .menu-nav li:nth-child(3) {
    transition-delay: 0.5s;
    opacity: 1;
    transform: translateX(0);
}

.fullscreen-menu.active .menu-nav li:nth-child(4) {
    transition-delay: 0.6s;
    opacity: 1;
    transform: translateX(0);
}

.fullscreen-menu.active .menu-nav li:nth-child(5) {
    transition-delay: 0.7s;
    opacity: 1;
    transform: translateX(0);
}

.fullscreen-menu.active .menu-nav li:nth-child(6) {
    transition-delay: 0.8s;
    opacity: 1;
    transform: translateX(0);
}

.menu-nav a {
    font-size: 4rem;
    color: #b8860b;
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 4px;
    font-family: 'Playfair Display', serif;
    transition: all 0.3s ease;
    display: inline-block;
}

.menu-nav a:hover {
    color: #fff;
    transform: translateX(20px);
}

/* Hero */
.hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/mes.jpg');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.hero-section::before,
.hero-section::after {
    display: none;
}

.butterfly {
    position: absolute;
    font-size: 80px;
    pointer-events: none;
    filter: drop-shadow(0 2px 8px rgba(184, 134, 11, 0.3)) sepia(100%) saturate(300%) hue-rotate(10deg) brightness(0.9);
    animation-timing-function: ease-in-out;
    width: 150px;
    height: auto;
}

.butterfly-container {
    position: absolute;
    pointer-events: none;
}

.butterfly-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.9), 0 0 4px rgba(0, 0, 0, 1), 2px 2px 4px rgba(0, 0, 0, 0.8);
    white-space: nowrap;
    background: rgba(0, 0, 0, 0.6);
    padding: 0.3rem 0.6rem;
    border-radius: 3px;
}

.butterfly-1 {
    animation: butterfly1 40s ease-in-out infinite, flutter 0.3s ease-in-out infinite;
}

.butterfly-2 {
    animation: butterfly2 45s ease-in-out infinite, flutter 0.35s ease-in-out infinite;
}

.butterfly-3 {
    animation: butterfly3 42s ease-in-out infinite, flutter 0.32s ease-in-out infinite;
}

.butterfly-4 {
    animation: butterfly4 48s ease-in-out infinite, flutter 0.28s ease-in-out infinite;
}


.hero-content {
    text-align: center;
    max-width: 1200px;
    padding: 4rem 2rem;
    position: relative;
    z-index: 1;
}

.hero-content::before {
    display: none;
}

.hero-content h1 {
    font-size: 6rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 3rem;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
    color: #b8860b;
    letter-spacing: 2px;
    font-family: 'Playfair Display', serif;
}

.hero-content .subheadline {
    font-size: 1.3rem;
    line-height: 2;
    color: #d1d5db;
    margin-bottom: 4rem;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.9s both;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-cta-group {
    display: flex;
    gap: 2rem;
    justify-content: center;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 1.3s both;
}

.btn {
    padding: 1.8rem 4rem;
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid #b8860b;
    color: #b8860b;
    transition: all 0.4s ease;
    display: inline-block;
    letter-spacing: 3px;
    background: transparent;
    position: relative;
    cursor: pointer;
}

.btn:hover {
    background: #b8860b;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(184, 134, 11, 0.3);
    letter-spacing: 4px;
}

.btn span {
    position: relative;
    z-index: 1;
}

/* Services */
.services-section {
    background: #ffffff;
}

.services-content {
    max-width: 1400px;
    padding: 6rem 2rem;
}

.section-heading {
    font-size: 4.5rem;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 6rem;
    text-align: center;
    color: #b8860b;
    letter-spacing: 8px;
    font-family: 'Playfair Display', serif;
    transition: all 0.6s ease;
}

.section-heading:hover {
    letter-spacing: 12px;
    transform: scale(1.05);
}

.services-section .section-heading {
    color: #111827;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.service-item {
    padding: 3rem 2rem;
    border: 1px solid transparent;
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-align: center;
    position: relative;
    background: #fff;
}

.service-item:hover {
    transform: translateY(-40px) scale(1.05);
    border-color: #e5e7eb;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.service-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    filter: brightness(0) saturate(100%) invert(10%) sepia(10%) saturate(500%) hue-rotate(180deg);
}

.service-item:hover .service-icon {
    transform: scale(1.3) rotate(360deg);
    filter: brightness(0) saturate(100%) invert(60%) sepia(50%) saturate(500%) hue-rotate(10deg);
}

.service-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    color: #111827;
    letter-spacing: 2px;
}

.service-item p {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 300;
}

/* How It Works */
.steps-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('img/howitworks.png');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.steps-content {
    max-width: 1400px;
    padding: 6rem 2rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 4rem;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #b8860b, transparent);
    z-index: 0;
}

.step-item {
    text-align: center;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    padding: 2rem 1.5rem;
    border: 1px solid transparent;
    position: relative;
    z-index: 1;
}

.step-item::before {
    content: '';
    position: absolute;
    top: 3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #b8860b;
    border-radius: 50%;
    box-shadow: 0 0 20px #b8860b;
    transition: all 0.6s ease;
}

.step-item:hover::before {
    width: 20px;
    height: 20px;
    box-shadow: 0 0 40px #b8860b;
}

.step-item:hover {
    transform: translateY(-30px) scale(1.05);
    border-color: rgba(184, 134, 11, 0.3);
    background: rgba(184, 134, 11, 0.05);
}

.step-number {
    font-size: 5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    margin-top: 3rem;
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    color: #b8860b;
    font-family: 'Cinzel', serif;
    position: relative;
    display: inline-block;
}

.step-number::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #b8860b;
    transition: all 0.6s ease;
}

.step-item:hover .step-number::after {
    width: 100%;
}

.step-item:hover .step-number {
    transform: scale(1.2);
}

.step-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    color: #b8860b;
    letter-spacing: 3px;
    transition: all 0.4s ease;
}

.step-item:hover h3 {
    letter-spacing: 5px;
    transform: translateY(-5px);
}

.step-item p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    transition: all 0.4s ease;
}

.step-item:hover p {
    color: #fff;
}

/* Pricing */
.pricing-section {
    background: #ffffff;
}

.pricing-content {
    max-width: 1400px;
    padding: 6rem 2rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin-top: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-section .section-heading {
    color: #111827;
}

.pricing-item {
    text-align: center;
    padding: 4rem 2rem;
    border: 1px solid #e5e7eb;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    background: #fff;
    position: relative;
    overflow: hidden;
}

.pricing-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(184, 134, 11, 0.1), transparent);
    transition: all 0.6s ease;
}

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

.pricing-item:hover {
    transform: scale(1.08) translateY(-20px);
    border-color: #b8860b;
    box-shadow: 0 30px 60px rgba(184, 134, 11, 0.3);
}

.pricing-item.featured {
    border-width: 2px;
}

.pricing-item h3 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    color: #111827;
    font-weight: 300;
    letter-spacing: 6px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.pricing-item:hover h3 {
    letter-spacing: 8px;
    color: #b8860b;
}

.price {
    font-size: 5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: #b8860b;
    font-family: 'Cinzel', serif;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.pricing-item:hover .price {
    transform: scale(1.1);
}

.price span {
    font-size: 1.5rem;
    color: #ccc;
}

.pricing-item ul {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
    position: relative;
    z-index: 1;
}

.pricing-item li {
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
    color: #4b5563;
    transition: all 0.3s ease;
}

.pricing-item:hover li {
    padding-left: 1rem;
    color: #111827;
}

/* About */
.about-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('img/mes.jpg');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 60vh;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: url('img/section/clients/bg03.jpg') repeat;
    background-size: 350px 350px;
    opacity: 0.3;
    animation: waveDiagonal 35s linear infinite;
    pointer-events: none;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -100%;
    width: 200%;
    height: 100%;
    background: url('img/section/clients/bg03.jpg') repeat;
    background-size: 250px 250px;
    opacity: 0.25;
    animation: waveDiagonal2 45s linear infinite;
    pointer-events: none;
    transform: rotate(180deg);
}

.about-content {
    max-width: 1000px;
    text-align: center;
    padding: 6rem 2rem;
    position: relative;
    z-index: 1;
}

.about-content p {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 300;
}

.values {
    display: flex;
    justify-content: center;
    gap: 3rem;
    font-size: 1.5rem;
    font-weight: 400;
    text-transform: uppercase;
}

.value-item {
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    color: #b8860b;
}

.value-item:hover {
    transform: scale(1.5) translateY(-20px);
    text-shadow: 0 0 40px rgba(184, 134, 11, 1);
    color: #b8860b;
}

/* Contact */
.contact-section {
    background-image: url('img/Cta.png');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 60vh;
    position: relative;
}

.contact-content {
    text-align: center;
    max-width: 1000px;
    padding: 6rem 2rem;
    position: relative;
    z-index: 1;
}

.contact-section .section-heading {
    color: #111827;
}

.contact-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #b8860b;
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
}

.contact-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 300;
    color: #2d2d2d;
}

.contact-section .btn {
    border-color: #b8860b;
    color: #fff;
    background: #b8860b;
}

.contact-section .btn:hover {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
}

/* Portfolio Images */
.portfolio-section {
    background: #000;
}

.portfolio-content {
    max-width: 1400px;
    padding: 6rem 2rem;
}

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

.portfolio-item {
    position: relative;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.portfolio-item:hover img {
    transform: scale(1.3) rotate(5deg);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: #b8860b;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.5s ease;
}

.portfolio-item:hover .portfolio-overlay {
    background: linear-gradient(to top, rgba(184, 134, 11, 0.9), transparent);
    color: #fff;
}

.footer {
    background: #000;
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(184, 134, 11, 0.3);
    opacity: 1;
    transform: none;
}

/* Clients Section */
.clients-section {
    background: #ffffff;
}

.clients-content {
    max-width: 1400px;
    padding: 6rem 2rem;
}

.testimonial-container {
    max-width: 900px;
    margin: 0 auto 6rem;
    text-align: center;
}

.clients-section .section-heading {
    color: #111827;
}

.testimonial-quote {
    font-size: 2rem;
    line-height: 1.8;
    font-style: italic;
    color: #4b5563;
    margin-bottom: 3rem;
    font-weight: 300;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 6rem;
    color: #b8860b;
    position: absolute;
    top: -2rem;
    left: -3rem;
    opacity: 0.3;
}

.testimonial-author {
    font-size: 1.3rem;
    color: #b8860b;
    font-weight: 300;
    letter-spacing: 2px;
}

.testimonial-role {
    font-size: 1rem;
    color: #9ca3af;
    margin-top: 0.5rem;
    letter-spacing: 1px;
}

.client-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    align-items: center;
    margin-top: 4rem;
}

.client-logo {
    text-align: center;
    font-size: 1.5rem;
    color: #4b5563;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    padding: 2rem;
    border: 1px solid #e5e7eb;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.client-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(184, 134, 11, 0.1), transparent);
    transition: all 0.5s ease;
}

.client-logo:hover::before {
    left: 100%;
}

.client-logo:hover {
    color: #b8860b;
    transform: translateY(-15px) scale(1.05);
    border-color: #b8860b;
    box-shadow: 0 20px 40px rgba(184, 134, 11, 0.2);
    letter-spacing: 5px;
}

/* Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(80px) scale(0.95);
    }

    60% {
        transform: translateY(-5px) scale(1.01);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes butterfly1 {
    0% {
        left: -10%;
        top: 15%;
        transform: scale(1) rotate(0deg) translateY(0);
        opacity: 0;
    }

    5% {
        opacity: 0.7;
    }

    12% {
        transform: scale(1.05) rotate(5deg) translateY(-15px);
    }

    25% {
        left: 20%;
        top: 35%;
        transform: scale(1.1) rotate(10deg) translateY(0);
    }

    37% {
        transform: scale(1) rotate(8deg) translateY(-20px);
    }

    50% {
        left: 45%;
        top: 20%;
        transform: scale(0.9) rotate(-8deg) translateY(0);
    }

    62% {
        transform: scale(0.95) rotate(-5deg) translateY(-18px);
    }

    75% {
        left: 70%;
        top: 40%;
        transform: scale(1.05) rotate(12deg) translateY(0);
    }

    87% {
        transform: scale(1.08) rotate(10deg) translateY(-15px);
    }

    95% {
        opacity: 0.7;
    }

    100% {
        left: 110%;
        top: 25%;
        transform: scale(1) rotate(0deg) translateY(0);
        opacity: 0;
    }
}

@keyframes butterfly2 {
    0% {
        right: -10%;
        top: 70%;
        transform: scale(1) rotate(0deg) translateY(0);
        opacity: 0;
    }

    5% {
        opacity: 0.65;
    }

    15% {
        transform: scale(0.9) rotate(-8deg) translateY(-18px);
    }

    25% {
        right: 25%;
        top: 55%;
        transform: scale(0.85) rotate(-15deg) translateY(0);
    }

    35% {
        transform: scale(0.9) rotate(-12deg) translateY(-22px);
    }

    50% {
        right: 55%;
        top: 75%;
        transform: scale(1.2) rotate(10deg) translateY(0);
    }

    65% {
        transform: scale(1.15) rotate(8deg) translateY(-16px);
    }

    75% {
        right: 80%;
        top: 60%;
        transform: scale(1) rotate(-12deg) translateY(0);
    }

    85% {
        transform: scale(1.05) rotate(-10deg) translateY(-20px);
    }

    95% {
        opacity: 0.65;
    }

    100% {
        right: 110%;
        top: 70%;
        transform: scale(1) rotate(0deg) translateY(0);
        opacity: 0;
    }
}

@keyframes butterfly3 {
    0% {
        left: 50%;
        top: -10%;
        transform: scale(1) rotate(0deg) translateY(0);
        opacity: 0;
    }

    5% {
        opacity: 0.7;
    }

    18% {
        transform: scale(1.1) rotate(-8deg) translateY(-15px);
    }

    25% {
        left: 35%;
        top: 25%;
        transform: scale(1.15) rotate(-12deg) translateY(0);
    }

    38% {
        transform: scale(1.12) rotate(-10deg) translateY(-20px);
    }

    50% {
        left: 65%;
        top: 45%;
        transform: scale(0.95) rotate(8deg) translateY(0);
    }

    63% {
        transform: scale(1) rotate(6deg) translateY(-17px);
    }

    75% {
        left: 45%;
        top: 65%;
        transform: scale(1.08) rotate(-10deg) translateY(0);
    }

    88% {
        transform: scale(1.05) rotate(-8deg) translateY(-19px);
    }

    95% {
        opacity: 0.7;
    }

    100% {
        left: 50%;
        top: 110%;
        transform: scale(1) rotate(0deg) translateY(0);
        opacity: 0;
    }
}

@keyframes butterfly4 {
    0% {
        left: -10%;
        top: 80%;
        transform: scale(1) rotate(0deg) translateY(0);
        opacity: 0;
    }

    5% {
        opacity: 0.75;
    }

    14% {
        transform: scale(1.03) rotate(-5deg) translateY(-16px);
    }

    25% {
        left: 30%;
        top: 60%;
        transform: scale(1.05) rotate(-10deg) translateY(0);
    }

    39% {
        transform: scale(1.08) rotate(-8deg) translateY(-21px);
    }

    50% {
        left: 60%;
        top: 80%;
        transform: scale(0.95) rotate(12deg) translateY(0);
    }

    64% {
        transform: scale(0.98) rotate(10deg) translateY(-18px);
    }

    75% {
        left: 85%;
        top: 65%;
        transform: scale(1.1) rotate(-8deg) translateY(0);
    }

    86% {
        transform: scale(1.12) rotate(-6deg) translateY(-17px);
    }

    95% {
        opacity: 0.75;
    }

    100% {
        left: 110%;
        top: 75%;
        transform: scale(1) rotate(0deg) translateY(0);
        opacity: 0;
    }
}

@keyframes bombDrop1 {
    0% {
        left: -10%;
        top: 15%;
        opacity: 0;
    }

    5% {
        opacity: 0.7;
    }

    12% {
        left: 5%;
        top: 25%;
        opacity: 0.7;
    }

    25% {
        left: 20%;
        top: 35%;
        opacity: 1;
    }

    26% {
        left: 20%;
        top: 36%;
        opacity: 1;
    }

    50% {
        left: 20%;
        top: 85%;
        opacity: 1;
    }

    51% {
        opacity: 0;
        transform: scale(0);
    }

    100% {
        left: 20%;
        top: 85%;
        opacity: 0;
    }
}

@keyframes bombDrop2 {
    0% {
        right: -10%;
        top: 70%;
        opacity: 0;
    }

    5% {
        opacity: 0.65;
    }

    15% {
        right: 5%;
        top: 65%;
        opacity: 0.65;
    }

    25% {
        right: 25%;
        top: 55%;
        opacity: 1;
    }

    26% {
        right: 25%;
        top: 56%;
        opacity: 1;
    }

    50% {
        right: 25%;
        top: 90%;
        opacity: 1;
    }

    51% {
        opacity: 0;
        transform: scale(0);
    }

    100% {
        right: 25%;
        top: 90%;
        opacity: 0;
    }
}

@keyframes bombDrop3 {
    0% {
        left: 50%;
        top: -10%;
        opacity: 0;
    }

    5% {
        opacity: 0.7;
    }

    18% {
        left: 42%;
        top: 8%;
        opacity: 0.7;
    }

    25% {
        left: 35%;
        top: 25%;
        opacity: 1;
    }

    26% {
        left: 35%;
        top: 26%;
        opacity: 1;
    }

    50% {
        left: 35%;
        top: 80%;
        opacity: 1;
    }

    51% {
        opacity: 0;
        transform: scale(0);
    }

    100% {
        left: 35%;
        top: 80%;
        opacity: 0;
    }
}

@keyframes bombDrop4 {
    0% {
        left: -10%;
        top: 80%;
        opacity: 0;
    }

    5% {
        opacity: 0.75;
    }

    14% {
        left: 10%;
        top: 70%;
        opacity: 0.75;
    }

    25% {
        left: 30%;
        top: 60%;
        opacity: 1;
    }

    26% {
        left: 30%;
        top: 61%;
        opacity: 1;
    }

    50% {
        left: 30%;
        top: 95%;
        opacity: 1;
    }

    51% {
        opacity: 0;
        transform: scale(0);
    }

    100% {
        left: 30%;
        top: 95%;
        opacity: 0;
    }
}

@keyframes spark1 {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(1);
    }

    10% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(0, -80px) scale(0.3);
        box-shadow: 0 0 10px #ffd700;
    }
}

@keyframes spark2 {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(1);
    }

    10% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(60px, -60px) scale(0.3);
        box-shadow: 0 0 10px #ffd700;
    }
}

@keyframes spark3 {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(1);
    }

    10% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(80px, 0) scale(0.3);
        box-shadow: 0 0 10px #ffd700;
    }
}

@keyframes spark4 {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(1);
    }

    10% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(60px, 60px) scale(0.3);
        box-shadow: 0 0 10px #ffd700;
    }
}

@keyframes spark5 {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(1);
    }

    10% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(0, 80px) scale(0.3);
        box-shadow: 0 0 10px #ffd700;
    }
}

@keyframes spark6 {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(1);
    }

    10% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(-60px, 60px) scale(0.3);
        box-shadow: 0 0 10px #ffd700;
    }
}

@keyframes spark7 {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(1);
    }

    10% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(-80px, 0) scale(0.3);
        box-shadow: 0 0 10px #ffd700;
    }
}

@keyframes spark8 {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(1);
    }

    10% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(-60px, -60px) scale(0.3);
        box-shadow: 0 0 10px #ffd700;
    }
}

@keyframes flutter {

    0%,
    100% {
        transform: scaleX(1);
    }

    50% {
        transform: scaleX(0.85);
    }
}

@keyframes flapWingLeft {

    0%,
    100% {
        transform: rotateY(0deg);
    }

    50% {
        transform: rotateY(-75deg);
    }
}

@keyframes flapWingRight {

    0%,
    100% {
        transform: rotateY(0deg);
    }

    50% {
        transform: rotateY(75deg);
    }
}

@keyframes flapLeft {

    0%,
    100% {
        transform: rotateY(0deg);
    }

    50% {
        transform: rotateY(-65deg);
    }
}

@keyframes flapRight {

    0%,
    100% {
        transform: rotateY(0deg);
    }

    50% {
        transform: rotateY(65deg);
    }
}

@keyframes wingFlap1 {

    0%,
    100% {
        transform: scaleX(1) scaleY(1);
    }

    25% {
        transform: scaleX(0.75) scaleY(1.05);
    }

    50% {
        transform: scaleX(0.6) scaleY(1.1);
    }

    75% {
        transform: scaleX(0.75) scaleY(1.05);
    }
}

@keyframes wingFlap2 {

    0%,
    100% {
        transform: scaleX(1) scaleY(1);
    }

    30% {
        transform: scaleX(0.7) scaleY(1.08);
    }

    50% {
        transform: scaleX(0.55) scaleY(1.12);
    }

    70% {
        transform: scaleX(0.7) scaleY(1.08);
    }
}

@keyframes wingFlap3 {

    0%,
    100% {
        transform: scaleX(1) scaleY(1);
    }

    20% {
        transform: scaleX(0.8) scaleY(1.06);
    }

    50% {
        transform: scaleX(0.65) scaleY(1.1);
    }

    80% {
        transform: scaleX(0.8) scaleY(1.06);
    }
}

@keyframes rotatePattern {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes floatPattern1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1.05);
    }

    25% {
        transform: translate(3%, -2%) scale(1.08);
    }

    50% {
        transform: translate(-2%, 2%) scale(1.05);
    }

    75% {
        transform: translate(2%, 3%) scale(1.07);
    }
}

@keyframes floatPattern2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1.08);
    }

    33% {
        transform: translate(-3%, 2%) scale(1.1);
    }

    66% {
        transform: translate(2%, -2%) scale(1.08);
    }
}

@keyframes waveDiagonal {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50%, 0);
    }
}

@keyframes waveDiagonal2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-50%, 0);
    }
}

.animate {
    opacity: 0;
    transform: translateY(40px);
}

.animate.show {
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate.show.service-item,
.animate.show.step-item,
.animate.show.pricing-item,
.animate.show.client-logo {
    animation: fadeInUpScale 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeInUpScale {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.9);
    }

    60% {
        transform: translateY(-10px) scale(1.02);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

html {
    scroll-behavior: smooth;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .global-header {
        padding: 1.5rem 2rem;
    }

    .logo img {
        height: 40px;
    }

    .menu-close {
        top: 1.5rem;
        right: 2rem;
        font-size: 2.5rem;
    }

    .menu-nav li {
        margin: 1.5rem 0;
    }

    .menu-nav a {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .hero-content h1 {
        font-size: 3rem;
        margin-bottom: 2rem;
    }

    .hero-content .subheadline {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        padding: 1.2rem 2rem;
        font-size: 0.8rem;
    }

    .section-heading {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }

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

    .service-icon {
        width: 80px;
        height: 80px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .steps-grid::before {
        display: none;
    }

    .step-item::before {
        display: none;
    }

    .step-number {
        font-size: 4rem;
    }

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

    .price {
        font-size: 3.5rem;
    }

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

    .portfolio-item {
        height: 300px;
    }

    .values {
        flex-direction: column;
        gap: 2rem;
    }

    .testimonial-quote {
        font-size: 1.5rem;
    }

    .testimonial-quote::before {
        font-size: 4rem;
        left: -1rem;
    }

    .client-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .client-logo {
        font-size: 1.2rem;
        padding: 1.5rem;
    }

    .contact-content h2 {
        font-size: 2.5rem;
    }

    .modal-content {
        width: 95%;
        padding: 3rem 2rem;
    }

    .modal h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .modal p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .modal-close {
        top: 1rem;
        right: 1.5rem;
        font-size: 2rem;
    }

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

    .form-group input,
    .form-group textarea {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .form-submit {
        padding: 1.2rem;
        font-size: 0.85rem;
    }
}