* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --grad1: #b9ded9;
    --grad2: #fee9f2;
    --grad3: #ce9dd9;
    --color-1: #cc7b9a;
    --color-2: #8c6097;
    --color-white: #ffffff;
    --color-black: #000000;
    --glass-bg: rgba(255, 255, 255, 0.2);
    --glass-border: rgba(255, 255, 255, 0.4)
}

body {
    font-family: Quicksand, sans-serif;
    color: #333;
    background: linear-gradient(135deg, #ebfbf8, #fff5f9, #f1e9f3, #ebfbf8);
    overflow-x: hidden
}

.logo,
h1,
h2,
h3 {
    font-family: "Playfair Display", serif
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999
}

#header {
    width: 90%;
    margin: auto;
    background: linear-gradient(to right, rgba(255, 255, 255, .75) 8%, rgba(255, 255, 255, .15) 92%);
    backdrop-filter: blur(10px);
    transition: background-color .3s ease;
    border-radius: 30px;
    margin-top: 20px
}

#header.scrolled {
    background-color: rgba(255, 255, 255, .36)
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 15px
}

.navbar .logo {
    font-size: 1.4rem;
    color: var(--color-2);
    transition: color .3s;
    display: flex;
    gap: .5rem;
    text-decoration: none
}

.navbar .logo:hover {
    color: var(--color-1)
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem
}

.nav-links a {
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    transition: color .3s
}

#header.scrolled .nav-links a {
    text-decoration: none;
    font-weight: 600;
    color: #555;
    transition: color .3s
}

.nav-links a:hover {
    color: var(--color-1)
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url(img/bg.jpg) no-repeat center/cover;
    padding: 0 1rem;
    filter: brightness(1.1) contrast(1.1)
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4));
    z-index: 1
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin-top: 80px;
    color: #fff
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease-in-out
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.5;
    animation: fadeInUp 1.5s ease-in-out
}

.cta-btn {
    position: relative;
    display: inline-block;
    color: #fff;
    background: var(--color-1);
    padding: .9rem 1.8rem;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    transition: all .3s ease;
    overflow: hidden;
    animation: fadeInUp 2s ease-in-out;
    font-size: 1.1em
}

.cta-btn:hover {
    background: var(--color-2);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .2)
}

.cta-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, .5), transparent);
    transform: skewX(-20deg);
    transition: all .5s ease
}

.cta-btn:hover::before {
    left: 200%
}

@keyframes fadeInUp {
    from {
        opacity: .2;
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.wave {
    position: relative;
    width: 100%;
    height: 80px;
    overflow: hidden
}

.wave svg {
    width: 100%;
    height: 100%;
    display: block
}

section {
    padding: 4rem 1rem;
    position: relative
}

.section-content,
.inscription-content {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center
}

.section-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-2);
    animation: fadeInUp 1s ease-in-out
}

.section-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 2rem auto;
    color: #555;
    animation: fadeInUp 1.5s ease-in-out
}

.about-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem
}

.glass-card {
    width: 320px;
    min-height: 220px;
    border-radius: 15px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 1.8rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .1);
    color: #333;
    transition: transform .3s ease, box-shadow .3s;
    animation: fadeInUp 1s ease-in-out
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .15)
}

.glass-card h3 {
    margin-bottom: .5rem;
    color: var(--color-1);
    font-size: 1.4rem
}

.glass-card p {
    font-size: 1rem;
    line-height: 1.5
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem
}

.service-card {
    width: 400px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .1);
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
    animation: fadeInUp 1s ease-in-out
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .15)
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover
}

.service-card h3 {
    margin: 1rem 0 .5rem;
    color: var(--color-1);
    font-size: 1.3rem
}

.service-card p {
    padding: 0 1.2rem 1.5rem;
    color: #555;
    font-size: 1rem;
    line-height: 1.5
}

.testimonials {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem
}

.testimonial {
    width: 320px;
    background: rgba(255, 255, 255, .9);
    border-radius: 15px;
    padding: 1.8rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .1);
    transition: transform .3s ease;
    animation: fadeInUp 1s ease-in-out
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .15)
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #666;
    font-size: 1.1rem
}

.testimonial span {
    display: block;
    text-align: right;
    font-weight: 700;
    color: var(--color-1);
    font-size: 1rem
}

.contact-form {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: fadeInUp 1s ease-in-out
}

.form-group label {
    display: block;
    margin-bottom: .4rem;
    font-weight: 600;
    color: var(--color-2)
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color .3s
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-1);
    outline: 0
}

.send-btn {
    background: var(--color-2);
    color: #fff;
    border: none;
    padding: 1rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background .3s ease, transform .2s ease
}

.send-btn:hover {
    background: var(--color-1);
    transform: scale(1.05)
}

footer {
    background: var(--color-2);
    color: #fff;
    padding: 2rem 1rem;
    text-align: center
}

footer p {
    margin: .3rem 0
}

.social-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 .5rem;
    transition: opacity .3s
}

.social-links a:hover {
    opacity: .8
}

@media (max-width:768px) {
    .hero-content h1 {
        font-size: 2.5rem
    }

    .glass-card,
    .service-card,
    .testimonial {
        width: 90%
    }
}

.menu-icon {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    height: 24px;
    width: 30px;
    cursor: pointer
}

.menu-line {
    height: 3px;
    width: 100%;
    background-color: var(--color-2);
    transition: all .3s ease
}

@media (max-width:768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        flex-direction: column;
        width: 100%;
        background-color: rgba(255, 255, 255, .9);
        display: none;
        padding: 1rem;
        border-radius: 30px
    }

    .nav-links a {
        padding: 1rem;
        text-align: center;
        color: var(--color-1)
    }

    .menu-icon {
        display: flex
    }

    .nav-links.active {
        display: flex;
        color: var(--color-1)
    }
}

#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--color-1);
    z-index: 9999
}

.why-mysti {
    background: var(--glass-bg);
    padding: 2rem 3rem 0;
    border-radius: 20px;
    text-align: center;
}

.why-mysti h3 {
    font-size: 2rem;
    color: var(--color-2);
    margin-bottom: 1.5rem;
}

.why-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap
}

.why-item {
    width: 280px;
    padding: 1.5rem;
    border-radius: 15px;
    background: var(--grad1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    transition: transform .3s ease, box-shadow .3s ease
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .15)
}

.why-item h4 {
    font-size: 1.4rem;
    color: var(--color-1);
    margin-top: 1rem
}

.why-item p {
    font-size: 1rem;
    color: #444;
    line-height: 1.6
}

.why-item svg {
    width: 40px;
    height: 40px;
    color: var(--color-2)
}

.why-item {
    width: 280px;
    padding: 1.8rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    transition: transform .3s ease, box-shadow .3s ease;
    text-align: center;
    color: #333
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12)
}

.why-item h4 {
    font-size: 1.5rem;
    color: var(--color-2);
    margin-top: 1rem;
    font-weight: 700
}

.why-item p {
    font-size: 1rem;
    color: #444;
    line-height: 1.6
}

.why-item svg {
    width: 45px;
    height: 45px;
    color: var(--color-1);
    background: rgba(255, 255, 255, .2);
    padding: 10px;
    border-radius: 50%
}

#inscription {
    text-align: center
}

.inscription-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-2);
    animation: fadeInUp 1s ease-in-out;
}

.highlight {
    color: var(--color-1);
    font-weight: 700
}

.inscription-content p {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 2rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto
}

.inscription-steps {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap
}

.step {
    background: rgba(255, 255, 255, .3);
    backdrop-filter: blur(12px);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    text-align: center;
    width: 250px;
    transition: transform .3s ease, box-shadow .3s ease
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12)
}

.step p {
    font-size: 1.1rem;
    color: #444;
    margin-top: .8rem
}

.inscription-steps svg {
    width: 45px;
    height: 45px;
    color: var(--color-1)
}

.bonus-list {
    list-style: none;
    padding: 0;
    font-size: 1.2rem;
    color: var(--color-2);
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem
}

.bonus-list li {
    display: flex;
    align-items: center;
    gap: 1rem
}

.bonus-list svg {
    width: 30px;
    height: 30px;
    color: var(--color-1)
}

.inscription-form {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, .45);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08)
}

.form-group {
    margin-bottom: 1.5rem
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--color-2);
    margin-bottom: .5rem;
    font-size: 1.1rem
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgb(230 230 230);
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255, 255, 255, .3);
    color: #333
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--color-2)
}

.form-checkbox input {
    width: 18px;
    height: 18px
}

.cta-btn {
    display: inline-block;
    color: #fff;
    background: var(--color-1);
    padding: 1rem 2rem;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    transition: all .3s ease;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    margin-top: 1rem
}

.cta-btn:hover {
    background: var(--color-2);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .2)
}

.offer-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, .2), rgba(255, 255, 255, .3));
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, .1);
    text-align: center;
    max-width: 700px;
    margin: 2rem auto;
    border: 1px solid rgba(255, 255, 255, .3)
}

.offer-box h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-2);
    margin-bottom: 1rem
}

.bonus-list {
    list-style: none;
    padding: 0;
    font-size: 1.2rem;
    color: var(--color-2);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin: 1.5rem auto;
    max-width: 500px
}

.bonus-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    background: rgba(255, 255, 255, .2);
    border-radius: 12px;
    padding: 1rem;
    transition: all .3s ease
}

.bonus-list li:hover {
    background: rgba(255, 255, 255, .35);
    transform: translateX(5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .08)
}

.bonus-list svg {
    width: 32px;
    height: 32px;
    color: var(--color-1)
}

footer {
    background: linear-gradient(135deg, #160d21, #44275a, #523962);
    color: #fff;
    padding: 40px 20px;
    text-align: center
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto
}

.footer-column {
    width: 30%;
    min-width: 250px;
    text-align: left
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-transform: uppercase
}

.footer-column p,
.footer-column ul {
    font-size: .9rem
}

.footer-column ul {
    list-style: none;
    padding: 0
}

.footer-column ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color .3s
}

.footer-column ul li a:hover {
    color: #ffb6c1
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, .2);
    color: #fff
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #bdd1d1;
}

.contact-form textarea {
    height: 80px
}

.contact-form button {
    background: #cc7b9a;
    border: none;
    padding: 10px;
    color: #fff;
    cursor: pointer;
    transition: .3s;
    border-radius: 5px
}

.contact-form button:hover {
    background: #a85f80
}

.footer-bottom {
    margin-top: 30px;
    font-size: .8rem
}

@media (max-width:768px) {
    .footer-container {
        flex-direction: column;
        text-align: center
    }

    .footer-column {
        width: 100%;
        margin-bottom: 20px
    }

    .contact-form form {
        align-items: center
    }

    .contact-form button,
    .contact-form input,
    .contact-form textarea {
        max-width: 90%
    }
}

.footer-links {
    list-style: none;
    padding: 0;
    text-align: left
}

.footer-links li {
    margin-bottom: 8px
}

.footer-links a {
    text-decoration: none;
    color: #fff;
    font-size: .9rem;
    transition: color .3s ease, transform .2s ease;
    display: inline-block
}

.footer-links a:hover {
    color: #ffb6c1;
    transform: translateX(4px)
}

.logo {
    font-family: Rowdies, sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #e0c3fc;
    letter-spacing: 1.5px;
    display: inline-block;
    transition: transform .3s ease-in-out;
    font-family: Rowdies, serif;
    font-weight: 700;
    font-style: normal
}

.logo .highlight {
    color: #d4a5ff
}

.logo:hover {
    transform: scale(1.05)
}

#guides-exception {
    padding: 4rem 1rem;
    text-align: center
}

#guides-exception .section-content h2 {
    font-size: 2.5rem;
    color: var(--color-2);
    margin-bottom: 1rem
}

#guides-exception .section-content p {
    color: #555;
    max-width: 700px;
    margin: 0 auto 2rem auto
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem
}

.service-card {
    width: 400px;
    border-radius: 15px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 1.8rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .1);
    text-align: center;
    transition: transform .3s ease, box-shadow .3s ease
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .15)
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--color-1);
    margin-bottom: .5rem
}

.service-card .expert-title {
    font-size: 1rem;
    color: var(--color-2);
    font-weight: 600;
    margin-bottom: .8rem
}

.service-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6
}

.service-card blockquote {
    font-style: italic;
    color: var(--color-1);
    margin-top: 1rem;
    font-size: 1.1rem;
    font-weight: 700
}

@media (max-width:768px) {
    .services-cards {
        flex-direction: column;
        align-items: center
    }

    .service-card {
        width: 90%
    }

    .nav-links a {
        color: #261f28 !important
    }
}

.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: all .8s ease
}

.nav-links a {
    position: relative;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    transition: color .3s ease
}

.nav-links a.active {
    color: #fff;
    font-weight: 700
}

.nav-links a.active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 50%;
    height: 3px;
    background: var(--color-1);
    transition: width .3s ease, left .3s ease;
    transform: translateX(-50%);
    border-radius: 2px
}

.carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 1200px;
    margin: auto
}

.carousel-wrapper {
    overflow: hidden;
    width: 100%
}

.carousel {
    display: flex;
    transition: transform .5s ease-in-out
}

.service-card {
    flex: 0 0 calc(100% / 3);
    padding: 1rem;
    text-align: center
}

.carousel-next,
.carousel-prev {
    background: rgba(255, 255, 255, .6);
    border: none;
    cursor: pointer;
    font-size: 24px;
    padding: 10px 15px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10
}

.carousel-prev {
    left: -40px
}

.carousel-next {
    right: -40px
}

@media (max-width:1024px) {
    .service-card {
        flex: 0 0 50%
    }
}

@media (max-width:768px) {
    .service-card {
        flex: 0 0 100%
    }

    .carousel-next,
    .carousel-prev {
        top: 60%
    }
}

.service-card h3 {
    margin-bottom: 0 !important
}

.service-card .expert-title {
    margin-bottom: 0 !important
}

.service-card p {
    margin-bottom: 0 !important
}

.service-card blockquote {
    margin-top: 0 !important
}

@keyframes waveMove {
    0% {
        transform: translateX(0)
    }

    50% {
        transform: translateX(15px)
    }

    100% {
        transform: translateX(0)
    }
}

.animated-wave {
    position: relative;
    width: 100%;
    height: auto
}

.wave1 {
    animation: waveMove 6s infinite ease-in-out
}

.wave2 {
    animation: waveMove 8s infinite ease-in-out reverse;
    opacity: .6
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s ease-out, transform .8s ease-out;
    will-change: opacity, transform
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0)
}

@keyframes zoomGlow {
    0% {
        opacity: 0;
        transform: scale(.8);
        text-shadow: 0 0 0 rgba(255, 255, 255, .2)
    }

    50% {
        opacity: .5;
        transform: scale(1.05);
        text-shadow: 0 0 10px rgba(255, 255, 255, .3)
    }

    100% {
        opacity: 1;
        transform: scale(1);
        text-shadow: 0 0 20px rgba(255, 255, 255, .6)
    }
}

.hero-content h1 {
    opacity: 0;
    transform: scale(.8);
    animation: zoomGlow 1.5s ease-out forwards .5s
}

.offer-box {
    background: linear-gradient(135deg, #160d21, #44275a, #523962);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, .1);
    text-align: center;
    max-width: 700px;
    margin: 2rem auto;
    border: 1px solid rgba(255, 255, 255, .3);
    color: #fff;
    position: relative
}

.offer-box h3,
.offer-box li,
.offer-box p {
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, .6)
}

.offer-box h3 {
    color: #fff !important;
    text-shadow: none !important;
    opacity: 1 !important;
    filter: none !important;
    mix-blend-mode: normal !important
}

.offer-box ul li {
    background: rgba(0, 0, 0, .4);
    border-radius: 12px;
    padding: 1rem;
    transition: all .3s ease;
    backdrop-filter: blur(6px)
}

.star {
    position: fixed;
    width: 10px;
    height: 10px;
    clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: twinkle .8s ease-out;
    pointer-events: none;
    z-index: 10000
}

@keyframes twinkle {
    0% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .8;
        transform: scale(1.2)
    }

    100% {
        opacity: 0;
        transform: scale(.8)
    }
}

.logo-text {
    font-size: 1.7rem;
    color: var(--color-2);
    font-family: Italianno, cursive;
    font-weight: 700
}

.service-card {
    width: 350px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    transition: transform .3s ease, box-shadow .3s ease, opacity .3s ease;
    text-align: center;
    opacity: .9
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .2);
    opacity: 1
}




/* Styles spécifiques pour le popup */
.popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    /* Fond semi-transparent */
    overflow: auto;
    /*display: flex;*/
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    /* Flou d'arrière-plan pour les navigateurs le supportant */
}

.popup-content {
    background: linear-gradient(135deg, #ebfbf8, #fff5f9, #f1e9f3, #ebfbf8);
    /* Fond légèrement transparent */
    margin: 20px auto;

    border-radius: 10px;

    max-width: 700px;
    /* Largeur maximale du popup */
    box-shadow: 0 0 24px #000000;
    transform: scale(0.95);
    /* Légèrement plus petit pour l'animation */
    transition: transform 0.3s, opacity 0.3s;
    /* Douce transition pour l'apparition */
    color: black;
}

#popupContent {
    padding: 2rem;
    width: 96%;
    margin: auto;
}

.close {
    color: var(--color-1);
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: var(--color-2);
    /* Couleur plus sombre au survol */
    text-decoration: none;
    cursor: pointer;
}

/* Styles pour les titres, textes et boutons du popup */
.popup h2 {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    color: #bb5b80;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.6);
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-in-out;
}

.popup h3 {
    color: #63306f;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

@keyframes glow {
    from {
        text-shadow:
            3px 3px 5px rgba(0, 0, 0, 0.7),
            0 0 15px rgba(255, 255, 255, 0.5);
    }

    to {
        text-shadow:
            5px 5px 10px rgba(0, 0, 0, 0.9),
            0 0 20px rgba(255, 255, 255, 1);
    }
}

.popup p {
    color: var(--color-black);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.popup button {
    background: linear-gradient(135deg, var(--color-1), var(--color-2));
    /* Utilisez la couleur principale de votre site */
    color: white;
    border: none;
    padding: 0.8rem 1.6rem;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.popup button:hover {
    background: var(--color-2);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .2)
        /* Assombrir le bouton au survol */
}

/* Réactivité */
@media (max-width: 768px) {
    .popup-content {
        width: 95%;
        padding: 1.5rem;
    }

    .close {
        right: 0.5rem;
        top: 0.5rem;
    }
}

/* Animation d'ouverture/fermeture du popup */
@keyframes popup-in {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes popup-out {
    from {
        transform: scale(1);
        opacity: 1;
    }

    to {
        transform: scale(0.95);
        opacity: 0;
    }
}

/* Ajouter ces styles lorsque le popup est ouvert/fermé pour animer */
.popup.open .popup-content {
    animation: popup-in 0.3s forwards;
}

.popup.close .popup-content {
    animation: popup-out 0.3s forwards;
}

.popup-content ul {
    margin-left: 3rem;
    margin-bottom: 2rem;
}