* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --pink: #e85d91;
    --hot-pink: #f03f82;
    --rose: #b83b70;
    --purple: #8067c7;
    --lavender: #eee7ff;
    --cream: #fff8f5;
    --white: #ffffff;
    --gold: #d9a441;
    --dark: #342631;
    --muted: #756671;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: var(--cream);
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea {
    font: inherit;
}

::selection {
    background: var(--pink);
    color: white;
}

/* =========================
   NAVBAR
========================= */

.navbar {
    position: sticky;
    top: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 18px 7%;

    background: rgba(255, 248, 245, 0.88);
    backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(232, 93, 145, 0.15);
}

.logo {
    font-size: 1.65rem;
    font-weight: 900;
    letter-spacing: 4px;
    color: var(--rose);

    transition: 0.3s;
}

.logo span {
    color: var(--gold);
}

.logo:hover {
    transform: scale(1.05);
}

.navbar nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.navbar nav a {
    position: relative;
    font-size: 0.9rem;
    font-weight: 600;
    transition: 0.3s;
}

.navbar nav a::after {
    content: "";

    position: absolute;
    left: 50%;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: linear-gradient(90deg, var(--pink), var(--purple));

    transition: 0.3s;
    transform: translateX(-50%);
}

.navbar nav a:hover {
    color: var(--pink);
}

.navbar nav a:hover::after {
    width: 100%;
}

.menu-btn {
    display: none;

    border: none;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    color: white;

    width: 42px;
    height: 42px;

    border-radius: 13px;

    cursor: pointer;
}

/* =========================
   HERO
========================= */

.hero {
    min-height: 90vh;

    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;

    gap: 40px;

    padding: 90px 8%;

    position: relative;
    overflow: hidden;

    background:
        radial-gradient(circle at 10% 10%, #ffd7e5 0, transparent 28%),
        radial-gradient(circle at 90% 15%, #e4d9ff 0, transparent 27%),
        radial-gradient(circle at 80% 90%, #ffe5c9 0, transparent 25%),
        var(--cream);
}

.hero::before {
    content: "";

    position: absolute;
    width: 500px;
    height: 500px;

    border: 1px solid rgba(232, 93, 145, 0.12);
    border-radius: 50%;

    left: -250px;
    bottom: -300px;
}

.hero-content {
    position: relative;
    z-index: 5;

    animation: heroIn 1s ease forwards;
}

.mini-badge {
    display: inline-flex;

    padding: 9px 18px;

    border-radius: 100px;

    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(232, 93, 145, 0.2);

    color: var(--rose);

    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2px;

    box-shadow: 0 10px 30px rgba(184, 59, 112, 0.08);
}

.hero h1 {
    font-size: clamp(3.2rem, 6vw, 6.4rem);
    line-height: 0.95;

    margin: 28px 0;

    letter-spacing: -3px;
}

.hero h1 span {
    display: block;

    background: linear-gradient(
        90deg,
        var(--hot-pink),
        var(--purple),
        var(--gold)
    );

    background-clip: text;
    color: transparent;
}

.hero-content > p {
    max-width: 610px;

    color: var(--muted);
    font-size: 1.05rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;

    margin-top: 34px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 24px;

    border-radius: 50px;

    font-weight: 800;

    border: none;

    cursor: pointer;

    transition: 0.35s;
}

.btn:hover {
    transform: translateY(-5px) scale(1.02);

    box-shadow:
        0 15px 35px rgba(184, 59, 112, 0.25);
}

.primary {
    color: white;

    background:
        linear-gradient(
            135deg,
            var(--hot-pink),
            var(--rose),
            var(--purple)
        );
}

.outline {
    color: var(--rose);

    background: rgba(255, 255, 255, 0.7);

    border: 1px solid rgba(184, 59, 112, 0.25);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-top: 35px;

    color: var(--muted);

    font-size: 0.82rem;
    font-weight: 700;
}

.hero-trust span {
    color: var(--pink);
}

/* HERO ART */

.hero-art {
    position: relative;

    min-height: 500px;

    display: grid;
    place-items: center;
}

.art-glow {
    position: absolute;

    width: 430px;
    height: 430px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(232, 93, 145, 0.3),
            rgba(128, 103, 199, 0.18),
            transparent 68%
        );

    filter: blur(8px);

    animation: pulse 5s infinite;
}

.art-circle {
    position: relative;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #ffe0eb,
            #f4eaff,
            #fff1d9
        );

    border: 2px solid rgba(255, 255, 255, 0.8);

    box-shadow:
        0 30px 70px rgba(184, 59, 112, 0.2),
        inset 0 0 50px rgba(255, 255, 255, 0.7);

    display: grid;
    place-items: center;

    animation: floating 5s ease-in-out infinite;
}

.art-circle::before {
    content: "";

    position: absolute;

    inset: 18px;

    border-radius: 50%;

    border: 1px dashed rgba(184, 59, 112, 0.3);

    animation: spin 20s linear infinite;
}

.art-inner {
    text-align: center;

    position: relative;
    z-index: 2;
}

.art-inner span {
    display: block;

    font-size: 4rem;

    color: var(--rose);
}

.art-inner strong {
    display: block;

    font-size: 5rem;

    line-height: 0.9;

    color: var(--rose);

    font-family: Georgia, serif;
}

.art-inner small {
    display: block;

    margin-top: 15px;

    letter-spacing: 5px;

    color: var(--gold);

    font-weight: 800;
}

.floating-card {
    position: absolute;

    padding: 14px 20px;

    border-radius: 20px;

    background: rgba(255, 255, 255, 0.8);

    backdrop-filter: blur(15px);

    border: 1px solid rgba(255, 255, 255, 0.9);

    box-shadow: 0 15px 35px rgba(80, 40, 60, 0.12);

    color: var(--rose);

    font-weight: 800;

    z-index: 5;

    display: flex;
    gap: 10px;
    align-items: center;
}

.card-top {
    top: 70px;
    right: 20px;

    animation: floating 4s ease-in-out infinite;
}

.card-bottom {
    bottom: 60px;
    left: 20px;

    animation: floating 4.5s ease-in-out infinite reverse;
}

.ribbon {
    position: absolute;

    right: -10px;
    bottom: 130px;

    padding: 9px 28px;

    background: var(--purple);

    color: white;

    font-size: 0.7rem;
    font-weight: 900;

    letter-spacing: 4px;

    transform: rotate(-8deg);

    box-shadow: 0 10px 25px rgba(128, 103, 199, 0.3);
}

/* DECORATIONS */

.hero-decoration {
    position: absolute;

    color: var(--pink);

    font-size: 2rem;

    z-index: 1;
}

.decoration-one {
    top: 22%;
    left: 5%;

    animation: sparkle 2s infinite;
}

.decoration-two {
    bottom: 15%;
    left: 48%;

    color: var(--purple);

    animation: floating 4s infinite;
}

.decoration-three {
    top: 20%;
    right: 45%;

    color: var(--gold);

    animation: sparkle 3s infinite;
}

/* =========================
   GENERAL SECTIONS
========================= */

.section {
    padding: 110px 8%;
}

.section-title {
    max-width: 700px;

    margin-bottom: 65px;
}

.section-title.center {
    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

.section-title > span,
.label {
    color: var(--rose);

    font-size: 0.72rem;
    font-weight: 900;

    letter-spacing: 3px;
}

.section-title h2,
.why-content h2,
.contact-content h2 {
    font-size: clamp(2.5rem, 5vw, 4.7rem);

    line-height: 1.05;

    margin-top: 15px;

    letter-spacing: -2px;
}

.section-title em,
.why-content em,
.contact-content em {
    color: var(--pink);

    font-family: Georgia, serif;

    font-weight: 500;
}

.section-title p {
    color: var(--muted);

    margin-top: 20px;
}

/* =========================
   ABOUT
========================= */

.about {
    background: white;
}

.about-grid {
    display: grid;

    grid-template-columns: 1.4fr 0.8fr 0.8fr;

    gap: 22px;
}

.about-main,
.about-small {
    border-radius: 32px;

    padding: 40px;

    transition: 0.35s;
}

.about-main {
    min-height: 330px;

    background:
        linear-gradient(
            145deg,
            #fff0f5,
            #f5efff
        );

    border: 1px solid #f2dce7;
}

.about-main:hover,
.about-small:hover {
    transform: translateY(-8px);

    box-shadow:
        0 20px 45px rgba(184, 59, 112, 0.12);
}

.big-number {
    font-size: 0.8rem;

    font-weight: 900;

    color: var(--gold);

    letter-spacing: 2px;
}

.about-main h3 {
    font-size: 2rem;

    margin: 35px 0 15px;
}

.about-main p {
    color: var(--muted);

    margin-bottom: 15px;
}

.about-small {
    min-height: 330px;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;
}

.about-small > span {
    font-size: 3rem;

    margin-bottom: auto;

    color: var(--rose);
}

.about-small h3 {
    font-size: 1.5rem;

    margin-bottom: 10px;
}

.about-small p {
    color: var(--muted);
}

.pink-card {
    background: #ffe8f0;
}

.purple-card {
    background: #eee8ff;
}

/* =========================
   SERVICES
========================= */

.services {
    background:
        radial-gradient(
            circle at 10% 20%,
            #ffe1eb,
            transparent 25%
        ),
        #fff8fa;
}

.service-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.service-card {
    position: relative;

    padding: 35px 28px;

    min-height: 360px;

    border-radius: 30px;

    background: white;

    border: 1px solid #f0dce5;

    overflow: hidden;

    transition: 0.4s;
}

.service-card::before {
    content: "";

    position: absolute;

    width: 130px;
    height: 130px;

    border-radius: 50%;

    background: #ffe4ed;

    right: -55px;
    top: -55px;

    transition: 0.4s;
}

.service-card:hover::before {
    transform: scale(1.5);
}

.service-card:hover {
    transform: translateY(-10px) rotate(-1deg);

    box-shadow:
        0 25px 50px rgba(184, 59, 112, 0.14);
}

.service-number {
    position: relative;

    color: var(--gold);

    font-weight: 900;

    font-size: 0.75rem;

    letter-spacing: 2px;
}

.service-icon {
    position: relative;

    width: 65px;
    height: 65px;

    margin: 35px 0 25px;

    display: grid;
    place-items: center;

    border-radius: 22px;

    background: linear-gradient(
        135deg,
        #ffe3ed,
        #eee5ff
    );

    color: var(--rose);

    font-size: 1.8rem;
}

.service-card h3 {
    position: relative;

    font-size: 1.3rem;

    margin-bottom: 12px;
}

.service-card p {
    position: relative;

    color: var(--muted);

    font-size: 0.92rem;
}

.service-card a {
    position: absolute;

    bottom: 28px;

    color: var(--rose);

    font-size: 0.85rem;

    font-weight: 900;
}

.featured-service {
    background:
        linear-gradient(
            145deg,
            #d95287,
            #a94b7a,
            #7662bd
        );

    color: white;

    border: none;

    transform: translateY(-12px);
}

.featured-service:hover {
    transform: translateY(-22px) rotate(1deg);
}

.featured-service::before {
    background: rgba(255, 255, 255, 0.12);
}

.featured-service .service-number,
.featured-service p,
.featured-service a {
    color: rgba(255, 255, 255, 0.85);
}

.featured-service .service-icon {
    background: rgba(255, 255, 255, 0.15);

    color: white;
}

/* =========================
   WHY US
========================= */

.why-us {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    align-items: center;

    gap: 90px;

    background: white;
}

.why-art {
    min-height: 500px;

    position: relative;

    display: grid;

    place-items: center;
}

.ring {
    position: absolute;

    border-radius: 50%;

    border: 1px dashed rgba(232, 93, 145, 0.4);
}

.ring-one {
    width: 400px;
    height: 400px;

    animation: spin 18s linear infinite;
}

.ring-two {
    width: 300px;
    height: 300px;

    border-color: rgba(128, 103, 199, 0.4);

    animation: spin 12s linear infinite reverse;
}

.why-center {
    width: 210px;
    height: 210px;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #ffe2ec,
            #ede4ff
        );

    box-shadow:
        0 25px 60px rgba(184, 59, 112, 0.15);

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;
}

.why-center span {
    color: var(--gold);

    font-size: 1.7rem;
}

.why-center strong {
    font-size: 2.5rem;

    color: var(--rose);

    letter-spacing: 3px;
}

.why-center small {
    color: var(--purple);

    letter-spacing: 4px;
}

.spark {
    position: absolute;

    font-size: 2rem;

    color: var(--pink);

    animation: sparkle 2.5s infinite;
}

.spark-one {
    top: 60px;
    right: 70px;
}

.spark-two {
    bottom: 80px;
    left: 50px;

    color: var(--purple);
}

.spark-three {
    top: 130px;
    left: 40px;

    color: var(--gold);
}

.why-content > p {
    color: var(--muted);

    margin: 25px 0 35px;

    max-width: 600px;
}

.feature-list {
    display: grid;

    gap: 20px;
}

.feature {
    display: flex;

    gap: 18px;

    padding: 18px;

    border-radius: 20px;

    transition: 0.3s;
}

.feature:hover {
    background: #fff2f6;

    transform: translateX(8px);
}

.feature > div {
    min-width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    border-radius: 15px;

    background: #ffe5ee;

    color: var(--rose);

    font-size: 1.3rem;
}

.feature h3 {
    font-size: 1.05rem;

    margin-bottom: 3px;
}

.feature p {
    color: var(--muted);

    font-size: 0.88rem;
}

/* =========================
   PROCESS
========================= */

.process {
    background:
        linear-gradient(
            135deg,
            #fff0f5,
            #f4efff
        );
}

.process-grid {
    display: grid;

    grid-template-columns: 1fr auto 1fr auto 1fr;

    align-items: center;

    gap: 20px;
}

.process-step {
    text-align: center;

    padding: 35px 20px;
}

.process-step > span {
    display: block;

    color: var(--gold);

    font-weight: 900;

    font-size: 0.75rem;
}

.process-step > div {
    width: 70px;
    height: 70px;

    margin: 20px auto;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: white;

    color: var(--rose);

    font-size: 1.7rem;

    box-shadow:
        0 12px 30px rgba(184, 59, 112, 0.12);
}

.process-step h3 {
    font-size: 1.3rem;

    margin-bottom: 8px;
}

.process-step p {
    color: var(--muted);

    font-size: 0.9rem;
}

.process-line {
    color: var(--pink);

    font-size: 1.5rem;
}

/* =========================
   TESTIMONIALS
========================= */

.testimonials {
    background: white;
}

.testimonial-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}

.testimonial-grid article {
    padding: 35px;

    border-radius: 28px;

    background: #fff8fa;

    border: 1px solid #f2dce6;

    transition: 0.3s;
}

.testimonial-grid article:hover {
    transform: translateY(-7px);

    box-shadow:
        0 20px 40px rgba(184, 59, 112, 0.1);
}

.stars {
    color: var(--gold);

    letter-spacing: 3px;

    margin-bottom: 20px;
}

.testimonial-grid article p {
    color: var(--muted);

    margin-bottom: 25px;

    font-style: italic;
}

.testimonial-grid strong {
    display: block;

    color: var(--rose);
}

.testimonial-grid small {
    color: #988b91;
}

/* =========================
   CONTACT
========================= */

.contact {
    position: relative;

    display: grid;

    grid-template-columns: 1fr 0.85fr;

    gap: 70px;

    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 90% 20%,
            #e8ddff,
            transparent 25%
        ),
        radial-gradient(
            circle at 10% 80%,
            #ffd9e6,
            transparent 28%
        ),
        #fff8f5;
}

.contact-decoration {
    position: absolute;

    top: 20px;
    right: 7%;

    font-size: 5rem;

    color: rgba(232, 93, 145, 0.12);

    animation: spin 15s linear infinite;
}

.contact-content > p {
    color: var(--muted);

    max-width: 580px;

    margin: 25px 0 35px;
}

.contact-info {
    display: grid;

    gap: 15px;
}

.contact-info > div {
    display: flex;

    align-items: center;

    gap: 15px;
}

.contact-info > div > span {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border-radius: 15px;

    background: white;

    color: var(--rose);

    box-shadow:
        0 10px 25px rgba(184, 59, 112, 0.1);
}

.contact-info section {
    display: flex;

    flex-direction: column;
}

.contact-info small {
    color: var(--muted);
}

.contact-info strong {
    color: var(--rose);
}

.contact-form {
    padding: 35px;

    border-radius: 30px;

    background: rgba(255, 255, 255, 0.82);

    backdrop-filter: blur(15px);

    border: 1px solid rgba(255, 255, 255, 0.9);

    box-shadow:
        0 25px 60px rgba(80, 40, 60, 0.12);
}

.contact-form h3 {
    font-size: 1.5rem;

    margin-bottom: 25px;
}

.contact-form label {
    display: block;

    color: var(--rose);

    font-size: 0.8rem;

    font-weight: 800;

    margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
    display: block;

    width: 100%;

    margin-top: 7px;

    padding: 14px 16px;

    border: 1px solid #ead8df;

    border-radius: 15px;

    outline: none;

    background: white;

    color: var(--dark);

    transition: 0.3s;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--pink);

    box-shadow:
        0 0 0 4px rgba(232, 93, 145, 0.1);
}

.contact-form .btn {
    width: 100%;

    margin-top: 5px;
}

#formMessage {
    text-align: center;

    margin-top: 15px;

    color: var(--rose);

    font-weight: 800;
}

/* =========================
   FOOTER
========================= */

footer {
    padding: 55px 20px;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            #382531,
            #493042,
            #332b49
        );

    color: white;
}

.footer-decoration {
    color: #eaa4bd;

    letter-spacing: 8px;

    margin-bottom: 18px;
}

.footer-logo {
    font-size: 2rem;

    font-weight: 900;

    letter-spacing: 6px;
}

footer p {
    color: #e0cbd4;

    margin: 8px 0 25px;
}

.footer-links {
    display: flex;

    justify-content: center;

    gap: 25px;

    flex-wrap: wrap;

    margin-bottom: 25px;
}

.footer-links a {
    color: #e9dce2;

    font-size: 0.85rem;

    transition: 0.3s;
}

.footer-links a:hover {
    color: #ff9fc0;

    transform: translateY(-2px);
}

footer small {
    color: #bdaab3;
}

/* =========================
   ANIMATIONS
========================= */

@keyframes floating {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(0.95);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

@keyframes spin {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes sparkle {
    0%,
    100% {
        transform: scale(1) rotate(0);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.35) rotate(20deg);
        opacity: 1;
    }
}

@keyframes heroIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-main {
        grid-column: span 2;
    }

    .process-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .process-line {
        display: none;
    }
}

@media (max-width: 850px) {

    .navbar nav {
        display: none;

        position: absolute;

        top: 78px;
        left: 5%;
        right: 5%;

        padding: 25px;

        border-radius: 25px;

        background: white;

        box-shadow:
            0 20px 45px rgba(80, 40, 60, 0.15);

        flex-direction: column;

        gap: 20px;
    }

    .navbar nav.active {
        display: flex;
    }

    .menu-btn {
        display: block;
    }

    .hero {
        grid-template-columns: 1fr;

        text-align: center;

        padding-top: 70px;
    }

    .hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons,
    .hero-trust {
        justify-content: center;
    }

    .hero-art {
        min-height: 420px;
    }

    .why-us,
    .contact {
        grid-template-columns: 1fr;
    }

    .why-art {
        min-height: 400px;
    }

    .contact {
        gap: 45px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {

    .navbar {
        padding: 16px 5%;
    }

    .section {
        padding: 80px 5%;
    }

    .hero {
        padding: 65px 5%;
    }

    .hero h1 {
        font-size: 3.4rem;

        letter-spacing: -2px;
    }

    .hero-art {
        transform: scale(0.75);

        margin-top: -30px;
    }

    .about-grid,
    .service-grid {
        grid-template-columns: 1fr;
    }

    .about-main {
        grid-column: auto;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        padding: 25px;
    }

    .ring-one {
        width: 320px;
        height: 320px;
    }

    .ring-two {
        width: 240px;
        height: 240px;
    }

    .contact-form {
        padding: 25px;
    }

    .hero-trust {
        flex-wrap: wrap;
    }
}