/* =========================================================
   TONY NDYEBO STUDIO
   CLEAN MASTER STYLESHEET
   ========================================================= */


/* =========================================================
   GOOGLE FONTS
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');


/* =========================================================
   VARIABLES
   ========================================================= */

:root {
    --pink: #d89aaa;
    --soft-pink: #f4dce2;
    --rose: #b96f82;

    --dark: #151214;
    --black: #0d0c0d;
    --cream: #f8f4f1;
    --white: #ffffff;

    --gold: #c9a96e;

    --text-dark: #262024;
    --text-light: #e8e1e3;
    --muted: #8d8387;

    --border-dark: rgba(255,255,255,0.12);
    --border-light: rgba(0,0,0,0.10);

    --heading-font: "Cormorant Garamond", serif;
    --body-font: "Montserrat", sans-serif;

    --transition: 0.4s ease;
}


/* =========================================================
   RESET
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: var(--body-font);
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    display: block;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(13, 12, 13, 0.94);
    backdrop-filter: blur(15px);

    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-container {
    width: min(1200px, 92%);
    min-height: 82px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* LOGO */

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    flex-shrink: 0;
}

.logo-main {
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 2px;
}

.logo-sub {
    color: var(--pink);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 6px;
    margin-top: 5px;
    margin-left: 3px;
}


/* NAV LINKS */

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    position: relative;

    color: #d9d2d4;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    transition: color var(--transition);
}

.nav-links a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -8px;

    width: 0;
    height: 1px;

    background: var(--pink);

    transition: width var(--transition);
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a:hover::after {
    width: 100%;
}


/* NAV BOOK BUTTON */

.nav-book {
    position: relative;
    overflow: hidden;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 20px;

    color: var(--white);
    background: var(--rose);

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    transition:
        transform var(--transition),
        background var(--transition);
}

.nav-book:hover {
    background: var(--pink);
    transform: translateY(-2px);
}


/* HAMBURGER */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    border: 0;
    background: transparent;

    cursor: pointer;

    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.menu-toggle span {
    width: 24px;
    height: 1px;
    background: var(--white);

    transition:
        transform var(--transition),
        opacity var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    background-image: url("assets/images/hero.jpeg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    color: var(--white);
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(10,8,9,0.82) 0%,
            rgba(10,8,9,0.55) 45%,
            rgba(10,8,9,0.25) 100%
        ),
        linear-gradient(
            0deg,
            rgba(10,8,9,0.75) 0%,
            transparent 45%
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    width: min(1200px, 92%);
    margin: auto;

    padding-top: 100px;
}

.eyebrow {
    margin-bottom: 20px;

    color: var(--pink);

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
}

.hero h1 {
    max-width: 750px;

    font-family: var(--heading-font);
    font-size: clamp(65px, 9vw, 125px);
    font-weight: 500;
    line-height: 0.85;
    letter-spacing: -2px;
}

.hero h1 span {
    color: var(--pink);
    font-style: italic;
}

.hero-description {
    max-width: 480px;

    margin-top: 35px;

    color: #e3dcde;

    font-size: 14px;
    font-weight: 300;
    line-height: 1.9;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 15px;

    margin-top: 35px;
}


/* HERO BOTTOM */

.hero-bottom {
    position: absolute;
    z-index: 2;

    bottom: 0;
    left: 0;

    width: 100%;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-bottom div {
    padding: 20px 35px;

    border-right: 1px solid rgba(255,255,255,0.15);
}

.hero-bottom div:last-child {
    border-right: 0;
}

.hero-bottom span {
    display: block;

    margin-bottom: 3px;

    color: var(--pink);

    font-size: 8px;
    font-weight: 600;
    letter-spacing: 2px;
}

.hero-bottom strong {
    color: var(--white);

    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
}


/* =========================================================
   GENERAL SECTIONS
   ========================================================= */

.section {
    padding: 120px 0;
}

.section-container {
    width: min(1200px, 92%);
    margin: auto;
}


/* SECTION HEADINGS */

.section-heading {
    margin-bottom: 65px;
}

.section-heading.centered {
    text-align: center;
}

.section-number {
    margin-bottom: 14px;

    color: var(--rose);

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
}

.section-heading h2 {
    font-family: var(--heading-font);
    font-size: clamp(48px, 6vw, 75px);
    font-weight: 500;
    line-height: 0.95;
}

.section-heading h2 span {
    color: var(--rose);
    font-style: italic;
}

.section-intro {
    max-width: 550px;
    margin: 20px auto 0;

    color: var(--muted);

    font-size: 13px;
    font-weight: 300;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
    position: relative;
    overflow: hidden;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-height: 50px;
    padding: 0 25px;

    border: 1px solid transparent;

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        transform var(--transition),
        background var(--transition),
        border-color var(--transition),
        color var(--transition);
}

.btn-primary {
    background: var(--rose);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--pink);
    transform: translateY(-3px);
}

.btn-outline {
    border-color: rgba(255,255,255,0.45);
    color: var(--white);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
    transform: translateY(-3px);
}


/* =========================================================
   ABOUT
   ========================================================= */

.about-section {
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;

    align-items: center;
}

.about-image {
    position: relative;
    overflow: hidden;
}

.about-image img {
    height: 650px;
    object-fit: cover;

    transition:
        transform 0.8s ease,
        filter 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.04);
}

.about-content {
    max-width: 480px;
}

.large-text {
    margin-bottom: 25px;

    font-family: var(--heading-font);
    font-size: 29px;
    line-height: 1.25;
}

.about-content > p:not(.large-text) {
    margin-bottom: 18px;

    color: #766c70;

    font-size: 13px;
    font-weight: 300;
}


/* TEXT LINKS */

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-top: 20px;

    color: var(--text-dark);

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    transition: color var(--transition);
}

.text-link span {
    font-size: 18px;
    font-weight: 300;

    transition: transform var(--transition);
}

.text-link:hover {
    color: var(--rose);
}

.text-link:hover span {
    transform: translateX(6px);
}


/* =========================================================
   SERVICES
   ========================================================= */

.services-section {
    background: var(--dark);
    color: var(--white);
}

.services-section .section-number {
    color: var(--pink);
}

.services-section .section-heading h2 {
    color: var(--white);
}

.services-section .section-intro {
    color: #aaa1a5;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    overflow: hidden;

    border: 1px solid var(--border-dark);

    background: #1a1819;

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);

    border-color: var(--gold);

    box-shadow: 0 20px 45px rgba(0,0,0,0.28);
}

.service-image {
    position: relative;
    overflow: hidden;

    height: 390px;
}

.service-image img {
    height: 100%;
    object-fit: cover;

    transition: transform 0.8s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.06);
}

.service-content {
    padding: 30px;
}

.service-number {
    margin-bottom: 8px;

    color: var(--pink);

    font-size: 9px;
    letter-spacing: 2px;
}

.service-content h3 {
    margin-bottom: 12px;

    font-family: var(--heading-font);
    font-size: 34px;
    font-weight: 500;
}

.service-content p:not(.service-number) {
    color: #aaa1a5;

    font-size: 12px;
    font-weight: 300;
}

.service-content .text-link {
    color: var(--white);
}

.service-content .text-link:hover {
    color: var(--pink);
}


/* =========================================================
   PRICING
   ========================================================= */

.pricing-section {
    background: #f1ece8;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.price-category {
    padding: 35px;

    background: rgba(255,255,255,0.55);

    border: 1px solid var(--border-light);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.price-category:hover {
    transform: translateY(-7px);

    border-color: var(--gold);

    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.price-heading {
    display: flex;
    align-items: baseline;
    gap: 15px;

    margin-bottom: 25px;
}

.price-heading span {
    color: var(--rose);

    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;
}

.price-heading h3 {
    font-family: var(--heading-font);
    font-size: 35px;
    font-weight: 500;
}

.price-list {
    display: flex;
    flex-direction: column;
}

.price-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding: 13px 0;

    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.price-item:first-child {
    border-top: 1px solid rgba(0,0,0,0.08);
}

.price-item span {
    color: #655b5f;

    font-size: 12px;
    font-weight: 400;
}

.price-item strong {
    color: var(--rose);

    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.price-note {
    margin-top: 18px;

    color: var(--muted);

    font-size: 9px;
    font-style: italic;
}


/* =========================================================
   GALLERY
   ========================================================= */

.gallery-section {
    background: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;

    aspect-ratio: 1 / 1;

    background: #ddd;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(5),
.gallery-item:nth-child(9) {
    aspect-ratio: 1 / 1.25;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition:
        transform 0.8s cubic-bezier(.2,.7,.2,1),
        filter 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.07);
    filter: brightness(0.88);
}


/* =========================================================
   BOOKING
   ========================================================= */

.booking-section {
    padding-top: 80px;
    padding-bottom: 80px;

    background: var(--dark);
    color: var(--white);
}

.booking-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;

    padding: 70px;

    border: 1px solid var(--border-dark);

    background:
        linear-gradient(
            135deg,
            rgba(216,154,170,0.10),
            rgba(255,255,255,0.02)
        );
}

.booking-box h2 {
    max-width: 650px;

    margin-bottom: 18px;

    font-family: var(--heading-font);
    font-size: clamp(45px, 5vw, 65px);
    font-weight: 500;
    line-height: 0.95;
}

.booking-box h2 span {
    color: var(--pink);
    font-style: italic;
}

.booking-box p:not(.section-number) {
    max-width: 500px;

    color: #aaa1a5;

    font-size: 13px;
    font-weight: 300;
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact-section {
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid var(--border-light);
}

.contact-item {
    min-height: 180px;
    padding: 30px;

    border-right: 1px solid var(--border-light);
}

.contact-item:last-child {
    border-right: 0;
}

.contact-label {
    display: block;

    margin-bottom: 18px;

    color: var(--rose);

    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;
}

.contact-item a {
    color: var(--text-dark);

    font-family: var(--heading-font);
    font-size: 22px;
    line-height: 1.3;

    transition: color var(--transition);
}

.contact-item a:hover {
    color: var(--rose);
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
    background: var(--black);
    color: var(--white);
}

.footer-container {
    width: min(1200px, 92%);
    margin: auto;

    padding: 70px 0;

    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
}

.footer-brand p {
    margin-top: 18px;

    color: #82797c;

    font-size: 11px;
}

.footer-links,
.footer-socials {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-socials a {
    width: fit-content;

    color: #aaa1a5;

    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;

    transition: color var(--transition);
}

.footer-links a:hover,
.footer-socials a:hover {
    color: var(--pink);
}

.footer-bottom {
    width: min(1200px, 92%);
    margin: auto;

    padding: 20px 0;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    border-top: 1px solid rgba(255,255,255,0.08);

    color: #665f62;

    font-size: 9px;
    letter-spacing: 0.5px;
}


/* =========================================================
   FLOATING WHATSAPP
   ========================================================= */

.floating-whatsapp {
    position: fixed;
    right: 25px;
    bottom: 25px;

    z-index: 900;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #25D366;
    color: var(--white);

    box-shadow: 0 10px 30px rgba(0,0,0,0.25);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.floating-whatsapp span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.floating-whatsapp:hover {
    transform: translateY(-5px) scale(1.05);

    box-shadow: 0 15px 35px rgba(0,0,0,0.35);
}


/* =========================================================
   LUXURY HOVER EFFECT
   ========================================================= */

.service-image::after,
.gallery-item::after,
.about-image::after {
    content: "";

    position: absolute;
    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.18),
            transparent
        );

    transform: skewX(-20deg);

    pointer-events: none;
}

.service-card:hover .service-image::after,
.gallery-item:hover::after,
.about-image:hover::after {
    left: 140%;

    transition: left 0.8s ease;
}


/* =========================================================
   BUTTON SHINE
   ========================================================= */

.btn::before,
.nav-book::before {
    content: "";

    position: absolute;
    top: 0;
    left: -100%;

    width: 100%;
    height: 100%;

    background: rgba(255,255,255,0.12);

    transition: left 0.4s ease;

    pointer-events: none;
}

.btn:hover::before,
.nav-book:hover::before {
    left: 100%;
}

.btn,
.nav-book {
    isolation: isolate;
}

.btn > *,
.nav-book > * {
    position: relative;
    z-index: 2;
}


/* =========================================================
   SCROLL REVEAL
   ========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
    border-radius: 2px;
}

.menu-toggle:focus-visible {
    outline: 2px solid var(--pink);
    outline-offset: 4px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .nav-links {
        gap: 18px;
    }

    .nav-links a {
        font-size: 9px;
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 45px;
    }

    .about-image img {
        height: 550px;
    }

    .services-grid {
        gap: 15px;
    }

    .service-image {
        height: 330px;
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-item:nth-child(2) {
        border-right: 0;
    }

    .contact-item:nth-child(-n+2) {
        border-bottom: 1px solid var(--border-light);
    }

    .footer-container {
        grid-template-columns: 1fr 1fr 1fr;
    }

}


/* =========================================================
   MOBILE NAVIGATION
   ========================================================= */

@media (max-width: 768px) {

    .nav-container {
        min-height: 72px;
    }

    .menu-toggle {
        display: flex;
        margin-left: auto;
    }

    .nav-links {
        position: absolute;

        top: 72px;
        left: 0;

        width: 100%;

        padding: 25px;

        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;

        background: rgba(13,12,13,0.98);

        border-top: 1px solid rgba(255,255,255,0.08);

        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);

        transition:
            opacity 0.3s ease,
            visibility 0.3s ease,
            transform 0.3s ease;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links a {
        font-size: 11px;
    }

    .nav-book {
        display: none;
    }


    /* HERO */

    .hero {
        min-height: 850px;
        background-attachment: scroll;
    }

    .hero-content {
        padding-top: 80px;
    }

    .hero h1 {
        font-size: clamp(55px, 15vw, 90px);
    }

    .hero-description {
        font-size: 13px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-bottom {
        grid-template-columns: 1fr;
    }

    .hero-bottom div {
        padding: 12px 25px;

        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,0.10);
    }

    .hero-bottom div:last-child {
        display: none;
    }


    /* SECTIONS */

    .section {
        padding: 85px 0;
    }

    .section-heading {
        margin-bottom: 45px;
    }


    /* ABOUT */

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image img {
        height: 500px;
    }

    .about-content {
        max-width: none;
    }


    /* SERVICES */

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-image {
        height: 420px;
    }


    /* PRICING */

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .price-category {
        padding: 28px;
    }


    /* GALLERY */

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(5),
    .gallery-item:nth-child(9) {
        aspect-ratio: 1 / 1;
    }


    /* BOOKING */

    .booking-box {
        flex-direction: column;
        align-items: flex-start;

        padding: 45px 30px;
    }


    /* CONTACT */

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-item,
    .contact-item:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid var(--border-light);
    }

    .contact-item:last-child {
        border-bottom: 0;
    }


    /* FOOTER */

    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;

        padding: 55px 0;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .nav-container,
    .section-container,
    .footer-container,
    .footer-bottom {
        width: 88%;
    }

    .logo-main {
        font-size: 21px;
    }

    .hero {
        min-height: 780px;
    }

    .hero h1 {
        font-size: 57px;
    }

    .hero-description {
        max-width: 330px;
    }

    .btn {
        width: 100%;
    }

    .hero-buttons {
        width: 100%;
        max-width: 320px;
    }

    .hero-bottom strong {
        font-size: 10px;
    }

    .section-heading h2 {
        font-size: 50px;
    }

    .about-image img {
        height: 430px;
    }

    .large-text {
        font-size: 25px;
    }

    .service-image {
        height: 350px;
    }

    .service-content {
        padding: 25px;
    }

    .service-content h3 {
        font-size: 30px;
    }

    .price-category {
        padding: 23px;
    }

    .price-heading h3 {
        font-size: 30px;
    }

    .price-item span {
        font-size: 11px;
    }

    .price-item strong {
        font-size: 11px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .booking-box h2 {
        font-size: 45px;
    }

    .contact-item {
        padding: 25px 0;
    }

    .floating-whatsapp {
        right: 18px;
        bottom: 18px;

        width: 52px;
        height: 52px;
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .service-image::after,
    .gallery-item::after,
    .about-image::after {
        display: none;
    }

}