@charset "UTF-8";
/*#region General Styles*/
/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

:root {
    /* Core Brand */
    --accent-color: #0b1ae9; /* Deep karate blue – authority & focus */
    --secondary-accent: #ff5252; /* Japanese red – energy & spirit */
}

:root {
    /* Backgrounds */
    --background-color: #0a192f; /* Night dojo blue */
    --surface-color: #172a45; /* Card / section background */
    --surface-alt: #1f3b63; /* Hover / elevated panels */
}

:root {
    /* Text */
    --heading-color: #ccd6f6; /* Clean, calm off-white */
    --default-color: #8892b0; /* Muted steel blue text */
    --muted-color: #6b7390; /* Subtle labels / meta text */
    --contrast-color: #ffffff; /* Maximum contrast text */
    --nav-color: #ffffff;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

    a:hover {
        color: color-mix(in srgb, var(--accent-color), transparent 25%);
        text-decoration: none;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: clamp(1.5rem, 4vw, 1.25rem);
    font-weight: 600;
    line-height: 1.2;
    background: linear-gradient(135deg, #000 0%, #0066ff 50%, #000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeIn 1s ease-out 0.5s both, gradientShift 8s ease infinite;
    background-size: 200% 200%;
    letter-spacing: -0.03em;
    text-align: center;
    margin-bottom: 1.5rem;
}

@keyframes btn-up-down {
    0% {
        transform: translateY(5px);
    }

    100% {
        transform: translateY(-5px);
    }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

section,
.section {
    color: var(--default-color);
    padding: 60px 0;
    scroll-margin-top: 87px;
    overflow: clip;
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 66px;
    }
}

.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

    .section-title h2 {
        font-size: 42px;
        font-weight: 800;
        color: var(--accent-color);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 20px;
        position: relative;
    }

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2.5rem;
    }
}

.section-title .subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    position: relative;
}

    .section-title .subtitle::after {
        content: "";
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 1px;
        background: var(--accent-color);
    }

.section-title p {
    font-size: 1.125rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    text-wrap: balance;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--default-color);
    overflow-x: hidden;
}

/* Floating Icons */
.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.float-icon {
    position: absolute;
    color: rgba(0, 102, 255, 0.15);
    font-size: 2rem;
    animation: floatIcon 15s infinite ease-in-out;
}

    .float-icon:nth-child(1) {
        top: 15%;
        left: 10%;
        animation-delay: 0s;
    }

    .float-icon:nth-child(2) {
        top: 25%;
        right: 15%;
        animation-delay: 2s;
    }

    .float-icon:nth-child(3) {
        bottom: 30%;
        left: 15%;
        animation-delay: 4s;
    }

    .float-icon:nth-child(4) {
        bottom: 20%;
        right: 20%;
        animation-delay: 6s;
    }

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.15;
    }

    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.3;
    }
}

/* Floating Icons */
.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1; /* Adjust based on your layout */
}

.float-icon {
    position: absolute;
    color: rgba(0, 102, 255, 0.15);
    font-size: 2rem;
    animation: floatIcon 15s infinite ease-in-out;
    user-select: none;
}

    /* Individual icon positioning */
    .float-icon:nth-child(1) {
        top: 15%;
        left: 10%;
        animation-delay: 0s;
    }

    .float-icon:nth-child(2) {
        top: 25%;
        right: 15%;
        animation-delay: 2s;
    }

    .float-icon:nth-child(3) {
        bottom: 30%;
        left: 15%;
        animation-delay: 4s;
    }

    .float-icon:nth-child(4) {
        bottom: 20%;
        right: 20%;
        animation-delay: 6s;
    }

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.15;
    }

    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.3;
    }
}

.btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

    .btn.btn-shop {
        background: linear-gradient(135deg, #0066ff, #00d4ff);
        color: var(--contrast-color);
        border: none;
    }

        .btn.btn-shop i {
            margin-left: 0.5rem;
            transition: transform 0.3s ease;
        }

        .btn.btn-shop:hover {
            background-color: color-mix(in srgb, var(--accent-color), #000 10%);
        }

            .btn.btn-shop:hover i {
                transform: translateX(5px);
            }

    .btn.btn-collection {
        background-color: transparent;
        color: var(--default-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
    }

        .btn.btn-collection:hover {
            background-color: color-mix(in srgb, var(--default-color), transparent 95%);
            border-color: var(--default-color);
        }

/*#endregion*/

/*#region Header*/
.header {
    color: var(--default-color);
    padding: 15px 0;
    transition: all 0.5s;
    z-index: 997;
    background-color: var(--contrast-color);
    border-radius: 30px;
    border: 1px solid rgba(0, 102, 255, 0.2);
}

    .header .logo {
        line-height: 1;
    }

        .header .logo img {
            max-height: 60px;
            margin-right: 14px;
            margin-top: 14px;
            box-shadow: var(--accent-color) 1px 1px 1px,var(--accent-color) -1px 1px 1px,var(--accent-color) 1px -1px 1px,var(--accent-color) -1px -1px 1px;
            border-radius: 50px;
        }

        .header .logo h1 {
            font-size: 26px;
            margin: 0;
            font-weight: 400;
            color: var(--contrast-color);
            text-transform: uppercase;
            font-weight: 900;
        }

@media (max-width: 1200px) {
    .header .logo {
        order: 1;
    }

    .header .header-social-links {
        order: 2;
    }

    .header .navmenu {
        order: 3;
    }
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
    --background-color: rgba(16, 26, 32, 0.9);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

        .navmenu ul {
            margin: 0;
            padding: 0;
            display: flex;
            list-style: none;
            align-items: center;
        }

        .navmenu li {
            position: relative;
        }

        .navmenu > ul > li {
            white-space: nowrap;
            padding: 15px 28px 15px 0;
        }

            .navmenu > ul > li:last-child {
                padding-right: 0;
            }

        .navmenu a,
        .navmenu a:focus {
            color: var(--default-color);
            font-size: 15px;
            padding: 0 2px;
            font-family: var(--nav-font);
            font-weight: 400;
            display: flex;
            align-items: center;
            justify-content: space-between;
            white-space: nowrap;
            transition: 0.3s;
            position: relative;
        }

            .navmenu a i,
            .navmenu a:focus i {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
                transition: 0.3s;
            }

        .navmenu > ul > li > a:before {
            content: "";
            position: absolute;
            height: 2px;
            bottom: -6px;
            left: 0;
            background-color: var(--contrast-color);
            visibility: hidden;
            width: 0px;
            transition: all 0.3s ease-in-out 0s;
        }

        .navmenu a:hover:before,
        .navmenu li:hover > a:before,
        .navmenu .active:before {
            visibility: visible;
            width: 25px;
        }

        .navmenu li:hover > a,
        .navmenu .active,
        .navmenu .active:focus {
            color: var(--accent-color);
        }

        .navmenu .dropdown ul {
            margin: 0;
            padding: 10px 0;
            background-color: var(--contrast-color);
            color: var(--default-color);
            display: block;
            position: absolute;
            visibility: hidden;
            left: -5px;
            top: 130%;
            opacity: 0;
            transition: 0.3s;
            border-radius: 4px;
            z-index: 99;
            box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
        }

            .navmenu .dropdown ul :before {
                content: "";
                position: absolute;
                height: 2px;
                bottom: -6px;
                left: 0;
                background-color: var(--contrast-color);
                visibility: hidden;
                width: 0px;
                transition: all 0.3s ease-in-out 0s;
            }

            .navmenu .dropdown ul li {
                min-width: 200px;
            }

            .navmenu .dropdown ul a {
                padding: 10px 20px;
                font-size: 15px;
                text-transform: none;
                color: var(--nav-dropdown-color);
            }

                .navmenu .dropdown ul a i {
                    font-size: 12px;
                }

                .navmenu .dropdown ul a:hover,
                .navmenu .dropdown ul .active:hover,
                .navmenu .dropdown ul li:hover > a {
                    color: var(--accent-color);
                }

        .navmenu .dropdown:hover > ul {
            opacity: 1;
            top: 100%;
            visibility: visible;
        }

        .navmenu .dropdown .dropdown ul {
            top: 0;
            left: -90%;
            visibility: hidden;
        }

        .navmenu .dropdown .dropdown:hover > ul {
            opacity: 1;
            top: 0;
            left: -100%;
            visibility: visible;
        }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--default-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

        .navmenu ul {
            display: none;
            list-style: none;
            position: absolute;
            inset: 60px 20px 20px 20px;
            padding: 10px 0;
            margin: 0;
            border-radius: 6px;
            background-color: var(--nav-mobile-background-color);
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
            box-shadow: none;
            overflow-y: auto;
            transition: 0.3s;
            z-index: 9998;
        }

        .navmenu a,
        .navmenu a:focus {
            color: var(--nav-dropdown-color);
            padding: 10px 20px;
            font-family: var(--nav-font);
            font-size: 17px;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: space-between;
            white-space: nowrap;
            transition: 0.3s;
        }

            .navmenu a i,
            .navmenu a:focus i {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
                width: 30px;
                height: 30px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                transition: 0.3s;
                background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
            }

                .navmenu a i:hover,
                .navmenu a:focus i:hover {
                    background-color: var(--accent-color);
                    color: var(--contrast-color);
                }

            .navmenu a:hover,
            .navmenu .active,
            .navmenu .active:focus {
                color: var(--nav-dropdown-hover-color);
            }

                .navmenu .active i,
                .navmenu .active:focus i {
                    background-color: var(--accent-color);
                    color: var(--contrast-color);
                    transform: rotate(180deg);
                }

        .navmenu .dropdown ul {
            position: static;
            display: none;
            z-index: 99;
            padding: 10px 0;
            margin: 10px 20px;
            background-color: var(--nav-dropdown-background-color);
            transition: all 0.5s ease-in-out;
        }

            .navmenu .dropdown ul ul {
                background-color: rgba(33, 37, 41, 0.1);
            }

        .navmenu .dropdown > .dropdown-active {
            display: block;
            background-color: rgba(33, 37, 41, 0.03);
        }

    .mobile-nav-active {
        overflow: hidden;
    }

        .mobile-nav-active .mobile-nav-toggle {
            color: #fff;
            position: absolute;
            font-size: 32px;
            top: 15px;
            right: 15px;
            margin-right: 0;
            z-index: 9999;
        }

        .mobile-nav-active .navmenu {
            position: fixed;
            overflow: hidden;
            inset: 0;
            background-color: rgba(17, 24, 39, 0.98);
            transition: 0.3s;
        }

            .mobile-nav-active .navmenu > ul {
                display: block;
            }

    .header .logo h1 {
        font-size: 0.9rem;
    }

    .header .header-social-links {
        display: none;
    }
}
/*#endregion*/

/*#region Footer Hero*/
.footer-hero {
    padding: 80px 0 40px 0;
    min-height: auto;
    position: relative;
    overflow: hidden;
}

    .footer-hero .grid-background {
        opacity: 0.3;
    }

    .footer-hero .particle {
        opacity: 0.2;
    }

    .footer-hero .float-icon {
        color: rgba(0, 102, 255, 0.1);
    }

    .footer-hero .geometric-shape {
        border-color: rgba(0, 102, 255, 0.1);
    }

.footer-content-wrapper {
    padding: 60px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.footer-hero .hero-title {
    font-size: clamp(1.5rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.footer-hero .hero-description {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: color-mix(in srgb, var(--default-color), transparent 2%);
}

/* Footer About */
.footer-hero .footer-about {
    padding-right: 40px;
}

.footer-hero .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 30px;
    position: relative;
}

.footer-hero .logo-wrapper {
    position: relative;
    margin-right: 20px;
}

.footer-hero .logo img {
    max-height: 80px;
    border-radius: 10px;
    border: 2px solid rgba(0, 102, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.footer-hero .logo .logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(10px);
    z-index: 1;
    animation: footerLogoGlow 3s ease-in-out infinite;
}

@keyframes footerLogoGlow {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.footer-hero .logo:hover img {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.5);
}

.footer-hero .logo h1 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #000 0%, #0066ff 50%, #000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeIn 1s ease-out 0.5s both, gradientShift 8s ease infinite;
    background-size: 200% 200%;
    letter-spacing: -0.03em;
    text-align: center;
}

.footer-hero .footer-about p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 2%);
    margin-bottom: 48px;
    max-width: 650px;
    margin-left: 0;
    margin-right: 0;
    animation: fadeIn 1s ease-out 0.7s both;
    text-align: left;
}

/* Social Links */
.footer-hero .social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.footer-hero .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(0, 102, 255, 0.2);
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 102, 255, 0.3);
}

    .footer-hero .social-icon:hover {
        background: linear-gradient(135deg, #0066ff, #00d4ff);
        color: #ffffff;
        transform: translateY(-5px) scale(1.1);
        box-shadow: 0 10px 30px rgba(0, 102, 255, 0.4);
        border-color: transparent;
    }

/* Footer Contact */
.footer-hero .footer-contact {
    padding-left: 40px;
}

    .footer-hero .footer-contact .hero-subtitle {
        font-size: clamp(1.5rem, 4vw, 1.5rem);
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 32px;
        background: linear-gradient(135deg, #000 0%, #0066ff 50%, #000 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: fadeIn 1s ease-out 0.5s both, gradientShift 8s ease infinite;
        background-size: 200% 200%;
        letter-spacing: -0.03em;
        text-align: center;
    }

.footer-hero .contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-hero .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(0, 102, 255, 0.2);
    transition: all 0.3s ease;
}

    .footer-hero .contact-item:hover {
        transform: translateX(5px);
        border-color: rgba(0, 212, 255, 0.4);
        box-shadow: 0 10px 30px rgba(0, 102, 255, 0.2);
    }

    .footer-hero .contact-item i {
        font-size: 20px;
        color: var(--accent-color);
        margin-top: 3px;
        flex-shrink: 0;
    }

    .footer-hero .contact-item p {
        margin: 0;
        font-size: 15px;
        line-height: 1.6;
        color: color-mix(in srgb, var(--default-color), transparent 2%);
    }

    .footer-hero .contact-item strong {
        color: #ffffff;
        font-weight: 600;
    }

/* Quick Links */
.footer-hero .footer-quick-links {
    padding-top: 40px;
    border-top: 1px solid rgba(0, 102, 255, 0.2);
}

    .footer-hero .footer-quick-links h5 {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 20px;
        color: #ffffff;
        background: linear-gradient(135deg, var(--accent-color), #00d4ff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .footer-hero .footer-quick-links ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .footer-hero .footer-quick-links ul li {
            margin-bottom: 10px;
        }

            .footer-hero .footer-quick-links ul li a {
                color: color-mix(in srgb, var(--default-color), transparent 2%);
                text-decoration: none;
                font-size: 0.95rem;
                transition: all 0.3s ease;
                position: relative;
                padding-left: 15px;
            }

                .footer-hero .footer-quick-links ul li a:before {
                    content: "›";
                    position: absolute;
                    left: 0;
                    color: var(--accent-color);
                    transition: transform 0.3s ease;
                }

                .footer-hero .footer-quick-links ul li a:hover {
                    color: #ffffff;
                    transform: translateX(5px);
                }

                    .footer-hero .footer-quick-links ul li a:hover:before {
                        transform: translateX(3px);
                    }

/* Copyright */
.footer-hero .footer-copyright {
    padding-top: 30px;
    border-top: 1px solid rgba(0, 102, 255, 0.2);
}

.footer-hero .copyright-content {
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, #0066ff, #00d4ff);
    border-radius: 15px;
    border: 1px solid rgba(0, 102, 255, 0.2);
}

    .footer-hero .copyright-content p {
        margin: 0;
        font-size: 0.9rem;
        color: #000;
    }

    .footer-hero .copyright-content .sitename {
        color: var(--accent-color);
        font-weight: 700;
    }

    .footer-hero .copyright-content span {
        color: #000;
    }

/* Responsive */
@media (max-width: 1200px) {
    .footer-content-wrapper {
        padding: 50px 40px;
    }

    .footer-hero .footer-about {
        padding-right: 20px;
    }

    .footer-hero .footer-contact {
        padding-left: 20px;
    }
}

@media (max-width: 992px) {
    .footer-content-wrapper {
        padding: 40px 30px;
    }

    .footer-hero .logo {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-hero .logo-wrapper {
        margin-right: 0;
    }

    .footer-hero .logo h1 {
        text-align: center;
    }

    .footer-hero .footer-about,
    .footer-hero .footer-contact {
        padding: 0;
        margin-bottom: 40px;
    }

        .footer-hero .footer-contact .hero-subtitle {
            text-align: center;
        }

    .footer-hero .social-links {
        justify-content: center;
    }

    .footer-hero .footer-quick-links .col-md-3 {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .footer-hero {
        padding: 60px 0 30px 0;
    }

    .footer-content-wrapper {
        padding: 30px 20px;
    }

    .footer-hero .hero-title {
        font-size: 2rem;
    }

    .footer-hero .hero-description {
        font-size: 1rem;
    }

    .footer-hero .footer-quick-links .col-6 {
        margin-bottom: 30px;
    }

    .footer-hero .footer-quick-links h5 {
        font-size: 1rem;
    }

    .footer-hero .footer-quick-links ul li a {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .footer-hero .logo img {
        max-height: 60px;
    }

    .footer-hero .social-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .footer-hero .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .footer-hero .footer-quick-links .row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-hero .footer-quick-links .col-6 {
        margin-bottom: 0;
    }
}
/*#endregion Footer Hero*/

/*#region Preloader*/

#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    transition: all 0.6s ease-out;
}

    #preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid #ffffff;
        border-color: var(--accent-color) transparent var(--accent-color) transparent;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        animation: animate-preloader 1.5s linear infinite;
    }

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/*#endregion Preloader*/

/*#region Scroll Top Button*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    bottom: 30px;
    right: 30px;
    z-index: 99999;
    background: linear-gradient(135deg, #0066ff, #00d4ff);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}

    .scroll-top i {
        font-size: 24px;
        color: var(--contrast-color);
        line-height: 0;
    }

    .scroll-top:hover {
        background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
        color: var(--contrast-color);
    }

    .scroll-top.active {
        visibility: visible;
        opacity: 1;
    }
/*#endregion Scroll Top Button*/

/*#region About Hero*/
.about-hero {
    padding: 100px 0;
}

.about-content-wrapper {
    padding: 60px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.about-hero .hero-title {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #000 0%, #0066ff 50%, #000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeIn 1s ease-out 0.5s both, gradientShift 8s ease infinite;
    background-size: 200% 200%;
    letter-spacing: -0.03em;
    text-align: center;
}

.about-hero .hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 2%);
    margin-bottom: 48px;
    max-width: 650px;
    margin-left: 0;
    margin-right: 0;
    animation: fadeIn 1s ease-out 0.7s both;
    text-align: left;
}

/* Content Wrapper */
.about-hero .content-wrapper {
    padding-right: 30px;
    width: 100%;
}

/* Statistics - Horizontal Layout */
.about-hero .hero-stats.horizontal-stats {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
    margin: 2rem 0;
    width: 100%;
    flex-wrap: wrap;
}

    .about-hero .hero-stats.horizontal-stats .stat-item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        text-align: left;
        position: relative;
        min-width: 140px;
    }

        .about-hero .hero-stats.horizontal-stats .stat-item:not(:last-child):after {
            content: '';
            position: absolute;
            top: 50%;
            right: -20px;
            transform: translateY(-50%);
            width: 1px;
            height: 40px;
            background: linear-gradient(to bottom, transparent 0%, rgba(0, 102, 255, 0.3) 50%, transparent 100%);
        }

    .about-hero .hero-stats.horizontal-stats .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        background: linear-gradient(135deg, #0066ff, #000);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 8px;
        line-height: 1;
        display: block;
    }

    .about-hero .hero-stats.horizontal-stats .stat-label {
        font-size: 0.9rem;
        color: color-mix(in srgb, var(--default-color), transparent 2%);
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 500;
        display: block;
    }

/* Responsive adjustments */
@media (max-width: 992px) {
    .about-hero .hero-stats.horizontal-stats {
        gap: 30px;
    }

        .about-hero .hero-stats.horizontal-stats .stat-number {
            font-size: 2.2rem;
        }

        .about-hero .hero-stats.horizontal-stats .stat-item {
            min-width: 120px;
        }

            .about-hero .hero-stats.horizontal-stats .stat-item:not(:last-child):after {
                right: -15px;
            }
}

@media (max-width: 768px) {
    .about-hero .content-wrapper {
        padding-right: 0;
    }

    .about-hero .hero-stats.horizontal-stats {
        justify-content: space-between;
        gap: 20px;
    }

        .about-hero .hero-stats.horizontal-stats .stat-item {
            min-width: auto;
            flex: 1;
            text-align: center;
            align-items: center;
        }

        .about-hero .hero-stats.horizontal-stats .stat-number {
            font-size: 2rem;
        }

        .about-hero .hero-stats.horizontal-stats .stat-label {
            font-size: 0.85rem;
        }

        .about-hero .hero-stats.horizontal-stats .stat-item:not(:last-child):after {
            display: none;
        }
}

@media (max-width: 480px) {
    .about-hero .hero-stats.horizontal-stats {
        flex-direction: column;
        gap: 25px;
        align-items: flex-start;
    }

        .about-hero .hero-stats.horizontal-stats .stat-item {
            width: 100%;
            text-align: center;
            align-items: center;
            padding-bottom: 15px;
            position: relative;
        }

            .about-hero .hero-stats.horizontal-stats .stat-item:not(:last-child):after {
                display: block;
                position: absolute;
                bottom: 0;
                left: 0;
                right: auto;
                top: auto;
                transform: none;
                width: 100%;
                height: 1px;
                background: linear-gradient(90deg, rgba(0, 102, 255, 0.3) 0%, rgba(0, 102, 255, 0.1) 50%, transparent 100%);
            }
}
/* Content Wrapper */

/* Feature Highlights */
.about-hero .feature-highlights {
    margin: 2.5rem 0;
}

.about-hero .highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
    padding: 12px 20px;
    background: rgba(0, 102, 255, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--accent-color);
    transition: all 0.3s ease;
}

    .about-hero .highlight-item:hover {
        background: rgba(0, 102, 255, 0.1);
        transform: translateX(5px);
    }

    .about-hero .highlight-item i {
        color: var(--accent-color);
        font-size: 1.2rem;
        flex-shrink: 0;
        text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
    }

    .about-hero .highlight-item span {
        color: color-mix(in srgb, var(--default-color), transparent 2%);
        font-size: 1.05rem;
        font-weight: 500;
    }

/* Contact Quick */
.about-hero .contact-quick {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 2rem;
    padding: 15px 20px;
    background: rgba(10, 14, 26, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(0, 102, 255, 0.3);
}

    .about-hero .contact-quick i {
        font-size: 1.5rem;
        color: var(--accent-color);
    }

    .about-hero .contact-quick .contact-text {
        display: flex;
        flex-direction: column;
    }

        .about-hero .contact-quick .contact-text span {
            font-size: 0.9rem;
            color: color-mix(in srgb, var(--default-color), transparent 2%);
        }

        .about-hero .contact-quick .contact-text a {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--accent-color);
            text-decoration: none;
            transition: all 0.3s ease;
        }

            .about-hero .contact-quick .contact-text a:hover {
                color: var(--accent-color);
            }

/* About Image */
.about-hero .about-image {
    position: relative;
}

.about-hero .image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.3);
}

.about-hero .main-image {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-hero .image-wrapper:hover .main-image {
    transform: scale(1.05);
}

.about-hero .floating-card {
    position: absolute;
    background: var(--contrast-color);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(0, 102, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
    z-index: 2;
}

    .about-hero .floating-card.card-1 {
        top: 20px;
        right: 20px;
        animation: floatCard 3s ease-in-out infinite;
    }

    .about-hero .floating-card.card-2 {
        bottom: 20px;
        left: 20px;
        animation: floatCard 3s ease-in-out infinite 1.5s;
    }

    .about-hero .floating-card i {
        color: var(--accent-color);
        font-size: 1.2rem;
    }

    .about-hero .floating-card span {
        color: var(--accent-color);
        font-weight: 600;
        font-size: 0.9rem;
    }

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Featured Services */
.about-hero .featured-services-wrapper {
    margin-top: 5rem;
}

.about-hero .feature-card {
    background: linear-gradient(135deg, #0066ff, #00d4ff, 0.3);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(0, 102, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    backdrop-filter: blur(10px);
}

    .about-hero .feature-card:hover {
        transform: translateY(-10px);
        border-color: rgba(0, 212, 255, 0.4);
        box-shadow: 0 20px 60px rgba(0, 102, 255, 0.3);
    }

    .about-hero .feature-card .feature-icon {
        width: 70px;
        height: 70px;
        background: rgba(0, 102, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        transition: all 0.3s ease;
    }

    .about-hero .feature-card:hover .feature-icon {
        background: linear-gradient(135deg, #0066ff, #00d4ff);
        transform: scale(1.1);
    }

    .about-hero .feature-card .feature-icon i {
        font-size: 1.8rem;
        color: #ffffff;
    }

    .about-hero .feature-card h4 {
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 15px;
        color: #ffffff;
        background: linear-gradient(135deg, var(--accent-color), #00d4ff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .about-hero .feature-card p {
        color: color-mix(in srgb, var(--default-color), transparent 2%);
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 0;
    }

/* Responsive */
@media (max-width: 1200px) {
    .about-content-wrapper {
        padding: 50px 40px;
    }

    .about-hero .content-wrapper {
        padding-right: 0;
    }
}

@media (max-width: 992px) {
    .about-hero .hero-stats {
        justify-content: center;
        gap: 30px;
    }

    .about-hero .contact-quick {
        margin-top: 1rem;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .about-content-wrapper {
        padding: 40px 30px;
    }

    .about-hero .hero-title {
        font-size: 2rem;
    }

    .about-hero .hero-description {
        font-size: 1rem;
    }

    .about-hero .stat-item .stat-number {
        font-size: 2rem;
    }

    .about-hero .floating-card {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .about-content-wrapper {
        padding: 30px 20px;
    }

    .about-hero .feature-card {
        padding: 25px;
        margin-bottom: 20px;
    }

        .about-hero .feature-card .feature-icon {
            width: 60px;
            height: 60px;
        }

            .about-hero .feature-card .feature-icon i {
                font-size: 1.5rem;
            }
}

/* Alternative: Both items as full-width buttons */
.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 18px 24px;
        font-size: 1.1rem;
        font-weight: 600;
        text-align: center;
        background: linear-gradient(135deg, #0066ff, #00d4ff);
    }

    .hero-actions .contact-quick {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        padding: 18px 24px;
        border: 1px solid rgba(0, 102, 255, 0.5);
        text-decoration: none;
        color: #ffffff;
        transition: all 0.3s ease;
        width: 100%;
        backdrop-filter: blur(5px);
    }

        .hero-actions .contact-quick:hover {
            background: rgba(0, 102, 255, 0.1);
            border-color: rgba(0, 102, 255, 0.3);
            transform: translateY(-2px);
        }

        .hero-actions .contact-quick i {
            font-size: 1.5rem;
            color: #00d4ff;
            background: linear-gradient(135deg, #0066ff, #000);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

    .hero-actions .contact-text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

        .hero-actions .contact-text span {
            font-size: 0.85rem;
            color: color-mix(in srgb, var(--default-color), transparent 2%);
            margin-bottom: 4px;
        }

        .hero-actions .contact-text a {
            font-size: 1.1rem;
            font-weight: 600;
            color: #ffffff;
            text-decoration: none;
        }

@media (max-width: 768px) {
    .hero-actions .btn,
    .hero-actions .contact-quick {
        padding: 16px 20px;
    }
}

@media (max-width: 576px) {
    .hero-actions {
        gap: 12px;
    }

        .hero-actions .contact-quick {
            flex-direction: column;
            text-align: center;
            gap: 10px;
        }

        .hero-actions .contact-text {
            align-items: center;
        }
}

/*#endregion About Hero*/

/*#region Our Classes*/
/* Our Programs Section */
.our-classes.hero {
    padding: 80px 0;
}

.our-classes .about-content-wrapper {
    padding: 60px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.our-classes .hero-badge {
    margin-bottom: 40px;
}

.our-classes .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.our-classes .hero-title {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #000 0%, #0066ff 50%, #000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeIn 1s ease-out 0.5s both, gradientShift 8s ease infinite;
    background-size: 200% 200%;
    letter-spacing: -0.03em;
    text-align: center;
}

.our-classes .hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 2%);
    margin-bottom: 48px;
    margin-left: 0;
    margin-right: 0;
    animation: fadeIn 1s ease-out 0.7s both;
    text-align: center;
    max-width: 800px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(0, 102, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

    .service-card:hover {
        transform: translateY(-10px);
        border-color: rgba(0, 102, 255, 0.3);
        box-shadow: 0 15px 40px rgba(0, 102, 255, 0.2);
        background: rgba(0, 102, 255, 0.1);
    }

    .service-card.featured {
        background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
        border: 2px solid rgba(0, 102, 255, 0.3);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .service-card .service-number {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 3rem;
        font-weight: 700;
        color: rgba(0, 102, 255, 0.1);
        line-height: 1;
    }

.service-icon-wrapper {
    margin-bottom: 25px;
    text-align: center;
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    border-radius: 50%;
    border: 2px solid rgba(0, 102, 255, 0.2);
}

    .service-icon i {
        font-size: 2rem;
        color: #0066ff;
        background: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.service-content h4 {
    font-size: clamp(1.5rem, 4vw, 1.25rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #000 0%, #0066ff 50%, #000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeIn 1s ease-out 0.5s both, gradientShift 8s ease infinite;
    background-size: 200% 200%;
    letter-spacing: -0.03em;
    text-align: center;
}

}

.service-content h6 {
    color: var(--accent-color);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

    .service-list li {
        color: #000;
        padding: 5px 0;
        position: relative;
        padding-left: 20px;
    }

        .service-list li:before {
            content: "•";
            color: #0066ff;
            position: absolute;
            left: 0;
        }

.service-card.featured h4 {
    font-size: clamp(1.5rem, 4vw, 1.25rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #000 0%, #0066ff 50%, #000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeIn 1s ease-out 0.5s both, gradientShift 8s ease infinite;
    background-size: 200% 200%;
    letter-spacing: -0.03em;
    text-align: center;
}

}

.service-card.featured p {
    color: #000;
    text-align: center;
    margin-bottom: 25px;
}

@media (max-width: 992px) {
    .our-classes .about-content-wrapper {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .our-classes .about-content-wrapper {
        padding: 30px 20px;
    }

    .service-card {
        padding: 30px 20px;
    }
}

/*#endregion Our Classes*/

/*#region Our Goal & Values*/

/* Our Goal & Values Section */
.our-goal-values.hero {
    padding: 80px 0;
}

.our-goal-values .about-content-wrapper {
    animation: fadeInUp 1s ease-out 0.5s both;
    padding: 60px;
}

.our-goal-values .hero-badge {
    margin-bottom: 40px;
}

.our-goal-values .hero-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    text-align: left;
    margin-bottom: 1.5rem;
}

.our-goal-values .hero-description {
    text-align: left;
    color: color-mix(in srgb, var(--default-color), transparent 2%);
    margin-bottom: 2rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 102, 255, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(0, 102, 255, 0.3);
    font-size: 0.9rem;
    font-weight: 600;
    color: color-mix(in srgb, var(--default-color), transparent 2%);
}

    .section-badge i {
        color: var(--accent-color);
    }

.hero-visual img {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.2);
    transition: transform 0.5s ease;
    width: 100%;
    height: auto;
}

    .hero-visual img:hover {
        transform: scale(1.05);
    }

.goal-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 15px;
    border: 1px solid rgba(0, 102, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

    .goal-item:hover {
        background: rgba(0, 102, 255, 0.1);
        border-color: rgba(0, 102, 255, 0.3);
        transform: translateX(10px);
    }

.goal-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    border-radius: 50%;
    flex-shrink: 0;
    border: 1px solid rgba(0, 102, 255, 0.2);
}

    .goal-icon i {
        font-size: 1.25rem;
        color: #0066ff;
        background: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.goal-content h3 {
    color: color-mix(in srgb, var(--default-color), transparent 2%);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px 20px;
    border: 1px solid rgba(0, 102, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    backdrop-filter: blur(5px);
}

    .value-card:hover {
        transform: translateY(-10px);
        border-color: rgba(0, 102, 255, 0.3);
        box-shadow: 0 15px 40px rgba(0, 102, 255, 0.2);
        background: rgba(0, 102, 255, 0.1);
    }

.value-number {
    margin-bottom: 20px;
}

    .value-number span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
        border-radius: 50%;
        border: 2px solid rgba(0, 102, 255, 0.2);
    }

    .value-number i {
        font-size: 1.5rem;
        color: #0066ff;
        background: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.value-title {
    font-size: clamp(1.5rem, 4vw, 1.25rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #000 0%, #0066ff 50%, #000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeIn 1s ease-out 0.5s both, gradientShift 8s ease infinite;
    background-size: 200% 200%;
    letter-spacing: -0.03em;
    text-align: center;
}

.value-description {
    color: color-mix(in srgb, var(--default-color), transparent 2%);
    font-size: 1.25rem;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 992px) {
    .our-goal-values .about-content-wrapper {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .our-goal-values .about-content-wrapper {
        padding: 30px 20px;
    }

    .goal-item {
        padding: 15px;
    }

    .value-card {
        padding: 25px 15px;
    }
}

/*#endregion Our Goal & Values*/

/*#region Awards Hero*/
.awards-hero {
    padding: 100px 0;
}

.awards-content-wrapper {
    padding: 60px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

    .awards-content-wrapper img {
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 102, 255, 0.2);
        transition: transform 0.5s ease;
        width: 100%;
        height: auto;
    }

        .awards-content-wrapper img:hover {
            transform: scale(1.05);
        }

.awards-hero .hero-title {
    font-size: clamp(1.5rem, 4vw, 3rem);
    margin-bottom: 0.5rem;
}

.awards-hero .hero-description {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: color-mix(in srgb, var(--default-color), transparent 2%);
}

/* Achievements Highlight */
.awards-hero .achievements-highlight {
    padding: 20px;
}

.awards-hero .achievement-card {
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 102, 255, 0.1) 70%, transparent 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(0, 102, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .awards-hero .achievement-card:hover {
        transform: translateY(-10px);
        border-color: rgba(0, 212, 255, 0.4);
        box-shadow: 0 20px 60px rgba(0, 102, 255, 0.3);
    }

    .awards-hero .achievement-card .achievement-glow {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        color: color-mix(in srgb, var(--default-color), transparent 2%);
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 1;
    }

    .awards-hero .achievement-card:hover .achievement-glow {
        opacity: 1;
    }

    .awards-hero .achievement-card .achievement-icon {
        width: 80px;
        height: 80px;
        background: rgba(0, 102, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        transition: all 0.3s ease;
        position: relative;
        z-index: 2;
    }

    .awards-hero .achievement-card:hover .achievement-icon {
        background: linear-gradient(135deg, #0066ff, #00d4ff);
        transform: scale(1.1);
    }

    .awards-hero .achievement-card .achievement-icon i {
        font-size: 2rem;
        color: #ffffff;
    }

    .awards-hero .achievement-card .achievement-number {
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--contrast-color);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 10px;
        position: relative;
        z-index: 2;
    }

    .awards-hero .achievement-card h4 {
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 15px;
        color: #ffffff;
        background: linear-gradient(135deg, #000 0%, #0066ff 50%, #000 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        position: relative;
        z-index: 2;
    }

    .awards-hero .achievement-card h5 {
        font-size: clamp(1.5rem, 4vw, 1.3rem);
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 32px;
        background: linear-gradient(135deg, #000 0%, #0066ff 50%, #000 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: fadeIn 1s ease-out 0.5s both, gradientShift 8s ease infinite;
        background-size: 200% 200%;
        letter-spacing: -0.03em;
        text-align: center;
    }

    .awards-hero .achievement-card p {
        color: color-mix(in srgb, #000, transparent 20%);
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 0;
        position: relative;
        z-index: 2;
    }

/* Intro Content */
.awards-hero .intro-content {
    padding-right: 40px;
}

.awards-hero .hero-subtitle {
    font-size: clamp(1.5rem, 8vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #000 0%, #0066ff 50%, #000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeIn 1s ease-out 0.5s both, gradientShift 8s ease infinite;
    background-size: 200% 200%;
    letter-spacing: -0.03em;
    text-align: center;
}

.awards-hero .achievement-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 2%);
    margin-bottom: 10px;
    max-width: 650px;
    margin-left: 0;
    margin-right: 0;
    animation: fadeIn 1s ease-out 0.7s both;
    text-align: left;
}

/* Section Subtitles */
.awards-hero .section-subtitle {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 60px 0 40px;
    background: linear-gradient(135deg, #000 0%, #0066ff 50%, #000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeIn 1s ease-out 0.5s both, gradientShift 8s ease infinite;
    background-size: 200% 200%;
    letter-spacing: -0.03em;
    text-align: center;
}

/* Success Stories */
.awards-hero .success-stories-section {
    margin-top: 60px;
}

.awards-hero .success-card {
    display: flex;
    gap: 25px;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(0, 102, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    height: 100%;
    align-items: center;
}

    .awards-hero .success-card:hover {
        transform: translateY(-8px);
        border-color: rgba(0, 212, 255, 0.4);
        box-shadow: 0 15px 40px rgba(0, 102, 255, 0.2);
    }

    .awards-hero .success-card .success-number {
        font-size: 3rem;
        font-weight: 800;
        color: rgba(0, 102, 255, 0.3);
        line-height: 1;
        flex-shrink: 0;
    }

    .awards-hero .success-card .success-content {
        flex: 1;
    }

    .awards-hero .success-card h4 {
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 10px;
        color: #ffffff;
        background: linear-gradient(135deg, var(--accent-color), #000);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .awards-hero .success-card p {
        color: color-mix(in srgb, var(--default-color), transparent 2%);
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 0;
    }

/* CTA Section */
.awards-hero .awards-cta-section {
    margin-top: 60px;
}

.awards-hero .awards-cta-box {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2) 0%, rgba(0, 212, 255, 0.1) 100%);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid rgba(0, 102, 255, 0.3);
    backdrop-filter: blur(10px);
}

    .awards-hero .awards-cta-box::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230066ff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        opacity: 0.5;
        z-index: 1;
        border-radius: 20px;
    }

.awards-hero .cta-image {
    text-align: center;
    position: relative;
    z-index: 2;
}

    .awards-hero .cta-image img {
        width: 150px;
        height: 150px;
        object-fit: cover;
        border-radius: 50%;
        border: 3px solid rgba(0, 102, 255, 0.3);
        box-shadow: 0 15px 30px rgba(0, 102, 255, 0.3);
        transition: all 0.3s ease;
    }

        .awards-hero .cta-image img:hover {
            transform: scale(1.05);
            border-color: rgba(0, 212, 255, 0.6);
        }

.awards-hero .cta-content {
    position: relative;
    z-index: 2;
}

    .awards-hero .cta-content h3 {
        font-size: clamp(1.5rem, 8vw, 2.5rem);
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 32px;
        background: linear-gradient(135deg, #000 0%, #0066ff 20%, #000 70%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: fadeIn 1s ease-out 0.5s both, gradientShift 8s ease infinite;
        background-size: 200% 200%;
        letter-spacing: -0.03em;
        text-align: left !important;
    }

    .awards-hero .cta-content p {
        font-size: 1.7rem;
        line-height: 1.7;
        color: color-mix(in srgb, var(--default-color), transparent 2%);
        margin-bottom: 25px;
        text-align: left !important;
    }

/* Responsive */
@media (max-width: 1200px) {
    .awards-content-wrapper {
        padding: 50px 40px;
    }

    .awards-hero .intro-content {
        padding-right: 30px;
    }
}

@media (max-width: 992px) {
    .awards-hero .intro-content {
        padding-right: 0;
        padding-bottom: 40px;
    }

    .awards-hero .achievement-card {
        padding: 30px;
    }

    .awards-hero .success-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .awards-hero .awards-cta-box {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .awards-content-wrapper {
        padding: 40px 30px;
    }

    .awards-hero .hero-title {
        font-size: 2rem;
    }

    .awards-hero .hero-description {
        font-size: 1rem;
    }

    .awards-hero .section-subtitle {
        font-size: 1.8rem;
        margin: 40px 0 30px;
    }

    .awards-hero .achievement-card .achievement-icon {
        width: 70px;
        height: 70px;
    }

        .awards-hero .achievement-card .achievement-icon i {
            font-size: 1.8rem;
        }

    .awards-hero .awards-cta-box {
        padding: 30px;
    }

    .awards-hero .cta-content h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .awards-content-wrapper {
        padding: 30px 20px;
    }

    .awards-hero .hero-subtitle {
        font-size: 1.6rem;
    }

    .awards-hero .section-subtitle {
        font-size: 1.6rem;
    }

    .awards-hero .achievement-card {
        padding: 25px;
        margin-bottom: 20px;
    }

    .awards-hero .cta-image img {
        width: 120px;
        height: 120px;
        margin-bottom: 20px;
    }

    .awards-hero .awards-cta-box .row {
        flex-direction: column;
        text-align: center;
    }
}
/*#endregion Awards Hero*/

/*#region Why Choose Us*/

/* Why Choose Us Section */
.why-choose-us.hero {
    padding: 80px 0;
}

.why-choose-us .description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 2%);
    margin-bottom: 10px;
    margin-left: 0;
    margin-right: 0;
    animation: fadeIn 1s ease-out 0.7s both;
    text-align: left;
}

.why-choose-us .about-content-wrapper {
    padding: 60px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.why-choose-us .hero-badge {
    margin-bottom: 40px;
}

.why-choose-us .section-title {
    text-align: center;
}

.why-choose-us .hero-title {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #000 0%, #0066ff 50%, #000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeIn 1s ease-out 0.5s both, gradientShift 8s ease infinite;
    background-size: 200% 200%;
    letter-spacing: -0.03em;
    text-align: center;
}

.why-choose-us .hero-description {
    text-align: center;
    color: color-mix(in srgb, var(--default-color), transparent 2%);
    max-width: 800px;
    margin: 0 auto 1rem;
}

.services-headline {
    margin-bottom: 30px;
}

.services-subtitle {
    color: #00d4ff;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.services-title {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #000 0%, #0066ff 50%, #000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeIn 1s ease-out 0.5s both, gradientShift 8s ease infinite;
    background-size: 200% 200%;
    letter-spacing: -0.03em;
    text-align: center;
}

.services-description {
    color: color-mix(in srgb, var(--default-color), transparent 2%);
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.feature-highlights {
    margin-bottom: 40px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

    .highlight-item i {
        color: #00d4ff;
        font-size: 1.25rem;
        margin-top: 3px;
        flex-shrink: 0;
    }

    .highlight-item span {
        color: rgba(255, 255, 255, 0.9);
        font-size: 1rem;
        line-height: 1.5;
    }

.service-stats {
    background: rgba(0, 102, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 102, 255, 0.2);
    backdrop-filter: blur(5px);
}

    .service-stats h3 {
        color: var(--accent-color);
        font-size: 1.5rem;
        margin-bottom: 20px;
        text-align: center;
    }

    .service-stats .stat-item {
        text-align: center;
        padding: 10px;
    }

    .service-stats .stat-number .purecounter {
        display: block;
        font-size: 2.5rem;
        font-weight: 700;
        color: #ffffff;
        line-height: 1;
        margin-bottom: 5px;
        background: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .service-stats .stat-label {
        color: color-mix(in srgb, var(--default-color), transparent 2%);
        font-size: 0.9rem;
        font-weight: 500;
    }

.why-choose-us .service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px 25px;
    border: 1px solid rgba(0, 102, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    backdrop-filter: blur(5px);
}

    .why-choose-us .service-card:hover {
        transform: translateY(-10px);
        border-color: rgba(0, 102, 255, 0.3);
        box-shadow: 0 15px 40px rgba(0, 102, 255, 0.2);
        background: rgba(0, 102, 255, 0.1);
    }

.why-choose-us .service-content .service-icon {
    margin-bottom: 20px;
}

.why-choose-us .service-icon i {
    font-size: 3rem;
    color: #0066ff;
    background: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-choose-us .service-info h3 {
    color: var(--accent-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.why-choose-us .service-info p {
    color: color-mix(in srgb, var(--default-color), transparent 2%);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 992px) {
    .why-choose-us .about-content-wrapper {
        padding: 40px 30px;
    }

    .why-choose-us .service-stats .stat-number .purecounter {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .why-choose-us .about-content-wrapper {
        padding: 30px 20px;
    }

    .why-choose-us .service-card {
        padding: 25px 20px;
    }

    .service-stats {
        padding: 20px;
    }
}

/*#endregion Why Choose Us*/

/*#region Book Appointment Hero*/
.book-appointment-hero {
    padding: 80px 0;
}

.appointment-content-wrapper {
    background: linear-gradient(135deg, #0066ff, #00d4ff);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    padding: 40px;
    border: 1px solid rgba(0, 102, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease-out 0.5s both;
    margin-top: 20px;
}

/* Appointment Banner */
.book-appointment-hero .appointment-banner {
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

    .book-appointment-hero .appointment-banner::before {
        content: "";
        position: absolute;
        top: -50%;
        right: -20%;
        width: 300px;
        height: 300px;
        background: rgba(255, 255, 255);
        border-radius: 50%;
        filter: blur(40px);
    }

    .book-appointment-hero .appointment-banner::after {
        content: "";
        position: absolute;
        bottom: -40%;
        left: -15%;
        width: 200px;
        height: 200px;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 50%;
        filter: blur(30px);
    }

    /* Using CSS Grid for 70/30 layout */
    .book-appointment-hero .appointment-banner .banner-content {
        padding: 60px 50px;
        display: grid;
        grid-template-columns: 65% 35%;
        align-items: center;
        gap: 40px;
        position: relative;
        z-index: 2;
    }

    .book-appointment-hero .appointment-banner .banner-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .book-appointment-hero .appointment-banner .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin: 0;
        justify-content: center;
    }

        .book-appointment-hero .appointment-banner .hero-actions .btn {
            width: 100%;
            justify-content: center;
            padding: 16px 24px;
            font-size: 1.05rem;
            font-weight: 600;
            text-align: center;
        }

        .book-appointment-hero .appointment-banner .hero-actions .btn-trial {
            background: linear-gradient(135deg, #ffc107, #ff9800);
            color: #000;
            border: 2px solid #ffc107;
        }

            .book-appointment-hero .appointment-banner .hero-actions .btn-trial:hover {
                background: linear-gradient(135deg, #ff9800, #ffc107);
                transform: translateY(-3px);
                box-shadow: 0 15px 40px rgba(255, 193, 7, 0.4);
            }

    .book-appointment-hero .appointment-banner .banner-text .hero-subtitle {
        font-size: clamp(1.5rem, 3vw, 2.5rem);
        font-weight: 700;
        margin-bottom: 15px;
        background: linear-gradient(135deg, #ffffff 20%, #000 10%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-align: center !important;
    }

    .book-appointment-hero .appointment-banner .banner-text .hero-description {
        font-size: 1.125rem;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 25px;
        text-align: center !important;
    }

/* CTA Trial Offer */
.cta-trial-offer {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    margin-bottom: 0;
}

    .cta-trial-offer i {
        font-size: 2rem;
        color: #ffc107;
        flex-shrink: 0;
        animation: pulse 2s infinite;
    }

.cta-trial-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cta-trial-title {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.cta-trial-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffc107;
}
/* Responsive Design */
@media (max-width: 992px) {
    .book-appointment-hero .appointment-banner .banner-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        padding: 40px 30px;
    }

    .book-appointment-hero .appointment-banner .hero-actions {
        align-items: center;
    }

        .book-appointment-hero .appointment-banner .hero-actions .btn {
            max-width: 350px;
        }
}

@media (max-width: 768px) {
    .appointment-content-wrapper {
        padding: 30px 20px;
    }

    .book-appointment-hero .appointment-banner .banner-content {
        padding: 40px 25px;
        gap: 25px;
    }

    .book-appointment-hero .appointment-banner .banner-text .hero-subtitle {
        font-size: 1.75rem;
    }

    .book-appointment-hero .appointment-banner .hero-actions .btn {
        padding: 14px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .book-appointment-hero .appointment-banner .banner-content {
        padding: 30px 20px;
        gap: 20px;
    }

    .book-appointment-hero .appointment-banner .hero-actions {
        gap: 12px;
    }
}
/*#endregion Book Appointment Hero*/

/*#region Stats*/

/* Stats Section */
.stats.hero {
    padding: 80px 0;
}

.stats .about-content-wrapper {
    padding: 30px 20px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

    .stats .about-content-wrapper .stats-items {
        padding: 3px;
        border: 1px solid rgba(0, 102, 255, 0.3);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    }

.stats .hero-badge {
    margin-bottom: 40px;
}

.stats-icon-wrapper {
    margin-bottom: 20px;
}

    .stats-icon-wrapper i {
        font-size: 2rem;
        color: #0066ff;
        background: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.stats-item {
    text-align: center;
}

    .stats-item .purecounter {
        display: block;
        font-size: 3rem;
        font-weight: 700;
        color: #ffffff;
        line-height: 1;
        margin-bottom: 10px;
        background: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .stats-item p {
        color: color-mix(in srgb, var(--default-color), transparent 2%);
        font-size: 1rem;
        font-weight: 500;
        margin: 0;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

@media (max-width: 768px) {
    .stats .about-content-wrapper {
        padding: 40px 20px;
    }

    .stats-item .purecounter {
        font-size: 2.5rem;
    }
}

/*#endregion Stats*/

/*#region About Me Hero*/
.about-me-hero {
    padding: 100px 0;
}

.about-me-content-wrapper {
    padding: 60px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.about-me-hero .hero-title {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #000 0%, #0066ff 50%, #000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeIn 1s ease-out 0.5s both, gradientShift 8s ease infinite;
    background-size: 200% 200%;
    letter-spacing: -0.03em;
    text-align: center;
}

.about-me-hero .hero-description {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: color-mix(in srgb, var(--default-color), transparent 2%);
}

/* Profile Wrapper */
.about-me-hero .profile-wrapper {
    text-align: center;
    padding: 20px;
}

.about-me-hero .profile-image-container {
    position: relative;
    margin-bottom: 30px;
}

.about-me-hero .profile-image {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(0, 102, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.3);
    transition: all 0.3s ease;
}

.about-me-hero .profile-image-container:hover .profile-image {
    transform: scale(1.05);
    border-color: rgba(0, 212, 255, 0.6);
}

.about-me-hero .experience-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0066ff, #00d4ff);
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.4);
    z-index: 2;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

    .about-me-hero .experience-badge .years {
        display: block;
        font-size: 2rem;
        font-weight: 700;
        color: #ffffff;
        line-height: 1;
    }

    .about-me-hero .experience-badge .text {
        display: block;
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.9);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

/* Quick Facts */
.about-me-hero .quick-facts {
    margin-top: 30px;
}

.about-me-hero .fact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #0066ff, #00d4ff);
    border-radius: 12px;
    border: 1px solid rgba(0, 102, 255, 0.2);
    transition: all 0.3s ease;
}

    .about-me-hero .fact-item:hover {
        background: rgba(0, 102, 255, 0.1);
        transform: translateX(5px);
    }

    .about-me-hero .fact-item i {
        color: var(--accent-color);
        font-size: 1.2rem;
        width: 24px;
    }

    .about-me-hero .fact-item span {
        color: #ffffff;
        font-weight: 500;
        font-size: 0.95rem;
    }

/* About Content */
.about-me-hero .about-content {
    padding-left: 40px;
}

.about-me-hero .hero-subtitle {
    font-size: clamp(1.5rem, 4vw, 1.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #000 0%, #0066ff 50%, #000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeIn 1s ease-out 0.5s both, gradientShift 8s ease infinite;
    background-size: 200% 200%;
    letter-spacing: -0.03em;
    text-align: center;
}

.about-me-hero .intro-text p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 2%);
    margin-bottom: 10px;
    max-width: 650px;
    margin-left: 0;
    margin-right: 0;
    animation: fadeIn 1s ease-out 0.7s both;
    text-align: left;
}

/* Mission Values */
.about-me-hero .mission-values {
    margin: 30px 0;
}

.about-me-hero .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.about-me-hero .value-badge {
    background: linear-gradient(135deg, #0066ff, #00d4ff);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(0, 102, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

    .about-me-hero .value-badge:hover {
        background: rgba(0, 102, 255, 0.1);
        transform: translateY(-5px);
        border-color: rgba(0, 212, 255, 0.4);
        box-shadow: 0 10px 30px rgba(0, 102, 255, 0.2);
    }

    .about-me-hero .value-badge i {
        font-size: 2rem;
        color: var(--accent-color);
        margin-bottom: 10px;
        display: block;
    }

    .about-me-hero .value-badge span {
        color: var(--accent-color);
        font-weight: 600;
        font-size: 1.1rem;
        display: block;
    }

/* Motto Section */
.about-me-hero .motto-section {
    background: rgba(0, 102, 255, 0.1);
    border-radius: 20px;
    padding: 30px 40px;
    margin: 40px 0;
    border-left: 4px solid var(--accent-color);
    position: relative;
    backdrop-filter: blur(10px);
}

    .about-me-hero .motto-section i {
        position: absolute;
        top: -5px;
        left: 30px;
        font-size: 1rem;
        color: var(--accent-color);
        padding: 10px;
        border-radius: 50%;
    }

    .about-me-hero .motto-section p {
        color: color-mix(in srgb, var(--default-color), transparent 2%);
        font-size: 1.2rem;
        font-style: italic;
        line-height: 1.6;
        margin: 0;
        text-align: center;
        font-weight: 500;
    }

/* Responsive */
@media (max-width: 1200px) {
    .about-me-content-wrapper {
        padding: 50px 40px;
    }

    .about-me-hero .about-content {
        padding-left: 30px;
    }
}

@media (max-width: 992px) {
    .about-me-hero .about-content {
        padding-left: 0;
        padding-top: 40px;
    }

    .about-me-hero .profile-image {
        width: 200px;
        height: 200px;
    }

    .about-me-hero .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-me-content-wrapper {
        padding: 40px 30px;
    }

    .about-me-hero .hero-title {
        font-size: 2rem;
    }

    .about-me-hero .hero-description {
        font-size: 1rem;
    }

    .about-me-hero .profile-image {
        width: 180px;
        height: 180px;
    }

    .about-me-hero .motto-section {
        padding: 25px 30px;
    }

        .about-me-hero .motto-section p {
            font-size: 1.1rem;
        }
}

@media (max-width: 576px) {
    .about-me-content-wrapper {
        padding: 30px 20px;
    }

    .about-me-hero .values-grid {
        grid-template-columns: 1fr;
    }

    .about-me-hero .profile-image {
        width: 160px;
        height: 160px;
    }

    .about-me-hero .experience-badge {
        padding: 12px 20px;
    }

        .about-me-hero .experience-badge .years {
            font-size: 1.8rem;
        }
}
/*#endregion About Me Hero*/

/*#region Call to Action Hero*/
.cta-hero {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-content-wrapper {
    color: color-mix(in srgb, var(--default-color), transparent 2%);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    padding: 60px;
    border: 1px solid rgba(0, 102, 255, 0.3);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease-out 0.5s both;
    border-top: 2px solid rgba(0, 102, 255, 0.5);
    border-bottom: 2px solid rgba(0, 102, 255, 0.5);
}

/* CTA Title & Description */
.cta-hero .hero-title {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(135deg, #000 0%, #0066ff 50%, #000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeIn 1s ease-out 0.5s both, gradientShift 8s ease infinite;
    background-size: 200% 200%;
    letter-spacing: -0.03em;
    text-align: left;
    margin-bottom: 1.5rem;
}

.cta-hero .hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 2%);
    margin-bottom: 48px;
    max-width: 650px;
    margin-left: 0;
    margin-right: 0;
    animation: fadeIn 1s ease-out 0.7s both;
    text-align: left;
}


/* Make hero-actions fill the entire column width */
.cta-hero .col-lg-4 {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.cta-hero .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 350px; /* Optional: control max width */
}

    .cta-hero .hero-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
        background: linear-gradient(135deg, #0066ff, #00d4ff);
        color: color-mix(in srgb, var(--contrast-color), transparent 2%);
    }

/* For responsive adjustment */
@media (max-width: 991px) {
    .cta-hero .col-lg-4 {
        justify-content: flex-start;
    }

    .cta-hero .hero-actions {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .cta-hero .hero-actions {
        flex-direction: row;
    }

        .cta-hero .hero-actions .btn {
            flex: 1;
        }
}

@media (max-width: 576px) {
    .cta-hero .hero-actions {
        flex-direction: column;
    }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .cta-content-wrapper {
        padding: 50px 40px;
    }
}

@media (max-width: 768px) {
    .cta-content-wrapper {
        padding: 40px 30px;
    }

    .cta-hero .hero-title {
        font-size: 2rem;
    }

    .cta-hero .hero-description {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .cta-content-wrapper {
        padding: 30px 20px;
    }
}
/*#endregion Call to Action Hero*/

/*#region Gallery*/

/* Gallery Section */
.gallery.hero {
    padding: 80px 0;
}

.gallery .description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 2%);
    margin-bottom: 15px;
    max-width: 650px;
    margin-left: 0;
    margin-right: 0;
    animation: fadeIn 1s ease-out 0.7s both;
    text-align: left;
}

.gallery .image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.3);
}

.gallery .image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.3);
}

.gallery .main-image {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.gallery .image-wrapper:hover .main-image {
    transform: scale(1.05);
}


.gallery .hero-badge {
    margin-bottom: 40px;
}

.gallery .section-title {
    text-align: center;
}

.gallery .hero-title {
    font-size: clamp(3rem, 8vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #000 0%, #0066ff 50%, #000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeIn 1s ease-out 0.5s both, gradientShift 8s ease infinite;
    background-size: 200% 200%;
    letter-spacing: -0.03em;
    text-align: center;
}

.gallery .hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 2%);
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: 0;
    margin-right: 0;
    animation: fadeIn 1s ease-out 0.7s both;
    text-align: center;
}

.gallery-container {
    position: relative;
    padding: 20px 0 60px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 102, 255, 0.1);
}

    .gallery-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 102, 255, 0.3);
        border-color: rgba(0, 102, 255, 0.3);
    }

.gallery-img {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

    .gallery-img video {
        width: 100%;
        height: 300px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.gallery-item:hover .gallery-img video {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 4rem;
    color: #ffffff;
    background: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
}

.gallery-overlay:hover i {
    transform: scale(1.2);
}

.swiper {
    padding: 20px 0 60px;
}

.swiper-button-next,
.swiper-button-prev {
    color: #0066ff;
    background: rgba(0, 102, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(0, 102, 255, 0.2);
    backdrop-filter: blur(5px);
}

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 1.25rem;
    }

.swiper-pagination-bullet {
    background: linear-gradient(135deg, #000 100%, #0066ff 70%, #000 100%);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
}

@media (max-width: 768px) {
    .gallery-img video {
        height: 250px;
    }

    .gallery .hero-title {
        font-size: 2rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }
}

/*#endregion Gallery*/

/*#region Info Cards*/
.info-cards.hero {
    padding: 20px 0;
}

.info-cards .about-content-wrapper {
    padding: 50px 40px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.info-cards .hero-badge {
    margin-bottom: 40px;
}

.info-card {
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 102, 255, 0.05) 80%, transparent 100%);
    border-radius: 20px;
    padding: 30px 25px;
    border: 0.5px solid var(--accent-color);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
    backdrop-filter: blur(5px);
}

    .info-card:hover {
        transform: translateY(-10px);
        border-color: rgba(0, 102, 255, 0.3);
        box-shadow: 0 15px 40px rgba(0, 102, 255, 0.2);
        background: rgba(0, 102, 255, 0.1);
    }

    .info-card .icon-box {
        margin-bottom: 20px;
    }

        .info-card .icon-box i {
            font-size: clamp(1.5rem, 4vw, 3rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 32px;
            background: linear-gradient(135deg, #000 0%, #0066ff 50%, #000 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeIn 1s ease-out 0.5s both, gradientShift 8s ease infinite;
            background-size: 200% 200%;
            letter-spacing: -0.03em;
            text-align: center;
        }

    .info-card .info-title {
        font-size: clamp(1.5rem, 4vw, 1.25rem);
        font-weight: 700;
        line-height: 1.2;
        background: linear-gradient(135deg, #000 0%, #0066ff 50%, #000 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: fadeIn 1s ease-out 0.5s both, gradientShift 8s ease infinite;
        background-size: 200% 200%;
        letter-spacing: -0.03em;
        text-align: center;
        margin-bottom: 10px;
    }

    .info-card .info-text {
        color: var(--accent-color);
        font-size: 0.95rem;
        line-height: 1.5;
        margin: 0;
    }

@media (max-width: 768px) {
    .info-cards .about-content-wrapper {
        padding: 15px 10px;
    }

    .info-card {
        padding: 25px 20px;
    }
}
/*#endregion Info Cards*/

/*#region DESKTOP FOOTER FIXED RIGHT & MOBILE FOOTER FIXED BOTTOM*/
/* Floating Action Buttons with Hero Styling */
.floating-action-buttons {
    position: fixed;
    z-index: 9999;
}

.hero-floating-elements {
    pointer-events: none;
}

.floating-button-wrapper {
    pointer-events: auto;
    position: relative;
}
/* Desktop Floating Buttons */
.desktop-floating-buttons {
    bottom: 90px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
}
/* Mobile Floating Buttons */
.mobile-floating-buttons {
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
}

    .mobile-floating-buttons .mobile-buttons-container {
        display: flex;
        gap: 15px;
        background: rgba(20, 24, 36, 0.9);
        backdrop-filter: blur(15px);
        border-radius: 50px;
        padding: 15px 25px;
        border: 1px solid rgba(0, 102, 255, 0.3);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    }
/* Floating Particles */
.floating-particle {
    position: absolute;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatParticle 15s infinite ease-in-out;
}

.desktop-floating-buttons .floating-particle:nth-child(1) {
    width: 100px;
    height: 100px;
    top: -50px;
    right: -30px;
    animation-delay: 0s;
    animation-duration: 20s;
}

.desktop-floating-buttons .floating-particle:nth-child(2) {
    width: 80px;
    height: 80px;
    bottom: -40px;
    right: -20px;
    animation-delay: 5s;
    animation-duration: 25s;
}

.desktop-floating-buttons .floating-particle:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 50%;
    right: -10px;
    animation-delay: 10s;
    animation-duration: 15s;
}

.mobile-floating-buttons .floating-particle:nth-child(1) {
    width: 80px;
    height: 80px;
    top: -30px;
    left: 20%;
    animation-delay: 0s;
    animation-duration: 18s;
}

.mobile-floating-buttons .floating-particle:nth-child(2) {
    width: 60px;
    height: 60px;
    bottom: -20px;
    right: 20%;
    animation-delay: 3s;
    animation-duration: 22s;
}

.mobile-floating-buttons .floating-particle:nth-child(3) {
    width: 40px;
    height: 40px;
    top: -20px;
    right: 30%;
    animation-delay: 7s;
    animation-duration: 16s;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.2;
    }

    25% {
        transform: translate(10px, -15px) scale(1.1);
        opacity: 0.4;
    }

    50% {
        transform: translate(-5px, -25px) scale(0.9);
        opacity: 0.3;
    }

    75% {
        transform: translate(15px, -15px) scale(1.05);
        opacity: 0.5;
    }
}
/* Floating Button Base Styles */
.floating-btn {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 2;
    border: none;
    cursor: pointer;
}

.floating-btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}
/* Phone Button */
.floating-btn-phone {
    background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.4);
}

    .floating-btn-phone::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.6s;
    }

    .floating-btn-phone:hover::before {
        left: 100%;
    }

    .floating-btn-phone:hover .floating-btn-glow {
        opacity: 1;
    }
/* Email Button */
.floating-btn-email {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

    .floating-btn-email::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.6s;
    }

    .floating-btn-email:hover::before {
        left: 100%;
    }

    .floating-btn-email:hover .floating-btn-glow {
        opacity: 1;
    }
/* WhatsApp Button */
.floating-btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

    .floating-btn-whatsapp::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.6s;
    }

    .floating-btn-whatsapp:hover::before {
        left: 100%;
    }

    .floating-btn-whatsapp:hover .floating-btn-glow {
        opacity: 1;
    }
/* Hover Effects */
.floating-btn:hover {
    transform: translateY(-5px) scale(1.1);
}

.floating-btn-phone:hover {
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.6);
}

.floating-btn-email:hover {
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.6);
}

.floating-btn-whatsapp:hover {
    box-shadow: 0 20px 50px rgba(37, 211, 102, 0.6);
}

.floating-btn i {
    font-size: 24px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 3;
}

.floating-btn:hover i {
    transform: scale(1.2);
}
/* Desktop Tooltips */
.desktop-floating-buttons .floating-btn-tooltip {
    position: absolute;
    right: 70px;
    background: rgba(20, 24, 36, 0.95);
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    border: 1px solid rgba(0, 102, 255, 0.3);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

    .desktop-floating-buttons .floating-btn-tooltip::after {
        content: "";
        position: absolute;
        top: 50%;
        right: -6px;
        transform: translateY(-50%) rotate(45deg);
        width: 12px;
        height: 12px;
        background: rgba(20, 24, 36, 0.95);
        border-right: 1px solid rgba(0, 102, 255, 0.3);
        border-bottom: 1px solid rgba(0, 102, 255, 0.3);
    }

.desktop-floating-buttons .floating-btn:hover .floating-btn-tooltip {
    opacity: 1;
    transform: translateX(0);
}
/* Mobile Labels */
.mobile-floating-buttons .floating-btn-label {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    opacity: 0.8;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.mobile-floating-buttons .floating-btn:hover .floating-btn-label {
    opacity: 1;
    transform: translateX(-50%) translateY(-2px);
}
/* Mobile specific button sizing */
.mobile-floating-buttons .floating-btn {
    width: 50px;
    height: 50px;
}

    .mobile-floating-buttons .floating-btn i {
        font-size: 20px;
    }
/* Responsive adjustments */
@media (max-width: 768px) {
    .desktop-floating-buttons {
        display: none;
    }

    .mobile-floating-buttons {
        display: flex;
    }

        .mobile-floating-buttons .mobile-buttons-container {
            padding: 12px 20px;
        }

        .mobile-floating-buttons .floating-btn {
            width: 45px;
            height: 45px;
        }

            .mobile-floating-buttons .floating-btn i {
                font-size: 18px;
            }

        .mobile-floating-buttons .floating-btn-label {
            font-size: 11px;
            bottom: -22px;
        }
}

@media (min-width: 769px) {
    .mobile-floating-buttons {
        display: none;
    }

    .desktop-floating-buttons {
        display: flex;
    }
}
/* Accessibility and touch improvements */
.floating-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.5);
}

.floating-btn:active {
    transform: scale(0.95);
}
/* Animation delays for staggered appearance */
.desktop-floating-buttons .floating-button-wrapper:nth-child(2) {
    animation-delay: 200ms !important;
}

.desktop-floating-buttons .floating-button-wrapper:nth-child(3) {
    animation-delay: 300ms !important;
}

.mobile-floating-buttons .floating-button-wrapper:nth-child(2) {
    animation-delay: 150ms !important;
}

.mobile-floating-buttons .floating-button-wrapper:nth-child(3) {
    animation-delay: 200ms !important;
}

.mobile-bar-fixed-bottom {
    display: none; /* Hidden by default on desktop */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #2d2d2d;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000; /* High z-index to stay above other content */
    padding: 10px 0;
    justify-content: space-around;
    align-items: center;
}
/* Show only on mobile devices (screens smaller than 768px) */
@media (max-width: 767px) {
    .mobile-bar-fixed-bottom {
        display: flex !important;
    }

    .desktop-bar-fixed-right {
        display: none;
    }
}
/* Individual buttons */
.btn-phone-mobile-bar-fixed-bottom,
.btn-email-mobile-bar-fixed-bottom,
.btn-whatsapp-mobile-bar-fixed-bottom {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-decoration: none;
    color: #ffffff;
    font-size: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    background-color: var(--accent-color);
}


    .btn-phone-mobile-bar-fixed-bottom:hover, .btn-email-mobile-bar-fixed-bottom:hover, .btn-whatsapp-mobile-bar-fixed-bottom:hover {
        background-color: var(--accent-color);
        transform: scale(1.1);
    }
    /* Icon styling */
    .btn-phone-mobile-bar-fixed-bottom i,
    .btn-email-mobile-bar-fixed-bottom i,
    .btn-whatsapp-mobile-bar-fixed-bottom i {
        font-size: 24px;
    }
/* Add padding to body to prevent content from being hidden behind the fixed footer */
@media (max-width: 767px) {
    body {
        padding-bottom: 80px; /* Height of mobile bar + some spacing */
    }
}

@media (max-width: 767px) {
    .custom-chat-btn {
        bottom: 90px !important; /* Position above mobile footer */
    }

    .custom-chat-window {
        bottom: 90px !important; /* Position above mobile footer */
        height: calc(100vh - 170px) !important; /* Adjust height to fit above mobile footer */
    }
}
/*#endregion*/

/*#region Contact*/
/* Contact Hero Section */
.contact-hero {
    padding: 100px 0;
}

.contact-content-wrapper {
    padding: 60px;
    animation: fadeInUp 1s ease-out 0.5s both;
}
/* Contact Hero Title & Description */
.contact-hero .hero-title {
    font-size: clamp(1.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.contact-hero .hero-description {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #000 0%, #0066ff 50%, #000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeIn 1s ease-out 0.5s both, gradientShift 8s ease infinite;
    background-size: 200% 200%;
    letter-spacing: -0.03em;
}

/* Contact Info Section */
.contact-hero .contact-info-section {
    height: 100%;
}

    .contact-hero .contact-info-section .info-header {
        margin-bottom: 40px;
    }

        .contact-hero .contact-info-section .info-header p {
            font-size: 1.125rem;
            line-height: 1.7;
            color: color-mix(in srgb, var(--default-color), transparent 2%);
            margin-bottom: 0;
        }

    .contact-hero .contact-info-section .contact-info-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .contact-hero .contact-info-section .info-item {
        display: flex;
        align-items: center;
        gap: 20px;
        padding: 25px;
        border-radius: 15px;
        border: 1px solid rgba(0, 102, 255, 0.2);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(10px);
    }

        .contact-hero .contact-info-section .info-item:hover {
            transform: translateY(-5px) translateX(5px);
            border-color: rgba(0, 212, 255, 0.4);
            box-shadow: 0 15px 40px rgba(0, 102, 255, 0.3);
        }

            .contact-hero .contact-info-section .info-item:hover .info-icon {
                background: linear-gradient(135deg, #0066ff, #00d4ff);
                transform: scale(1.1);
            }

        .contact-hero .contact-info-section .info-item .info-icon {
            width: 60px;
            height: 60px;
            flex-shrink: 0;
            background: rgba(0, 102, 255, 0.6);
            border-radius: 12px;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s ease;
        }

            .contact-hero .contact-info-section .info-item .info-icon i {
                font-size: 24px;
                color: #ffffff;
                transition: all 0.3s ease;
            }

        .contact-hero .contact-info-section .info-item .info-content {
            flex: 1;
        }

            .contact-hero .contact-info-section .info-item .info-content h5 {
                font-size: 18px;
                font-weight: 600;
                margin-bottom: 8px;
                color: var(--accent-color);
            }

            .contact-hero .contact-info-section .info-item .info-content p {
                font-size: 15px;
                line-height: 1.6;
                margin-bottom: 0;
                color: color-mix(in srgb, var(--default-color), transparent 2%);
            }
    /* Social Contact */
    .contact-hero .contact-info-section .social-contact {
        padding: 30px;
        background: linear-gradient(135deg, #0066ff, #00d4ff);
        border-radius: 20px;
        text-align: center;
        border: 1px solid rgba(0, 102, 255, 0.2);
        backdrop-filter: blur(10px);
    }

        .contact-hero .contact-info-section .social-contact h5 {
            font-size: clamp(1.5rem, 4vw, 1rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 32px;
            background: linear-gradient(135deg, #000 0%, #0066ff 50%, #000 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeIn 1s ease-out 0.5s both, gradientShift 8s ease infinite;
            background-size: 200% 200%;
            letter-spacing: -0.03em;
            text-align: center;
        }

        .contact-hero .contact-info-section .social-contact .social-icons {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

            .contact-hero .contact-info-section .social-contact .social-icons .social-icon {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 45px;
                height: 45px;
                border-radius: 50%;
                background: rgba(0, 102, 255, 0.2);
                color: #ffffff;
                font-size: 18px;
                text-decoration: none;
                transition: all 0.3s ease;
                border: 1px solid rgba(0, 102, 255, 0.3);
            }

                .contact-hero .contact-info-section .social-contact .social-icons .social-icon:hover {
                    background: linear-gradient(135deg, #0066ff, #00d4ff);
                    color: #ffffff;
                    transform: translateY(-5px) scale(1.1);
                    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.4);
                    border-color: transparent;
                }
/* Contact Form Wrapper */
.contact-hero .contact-form-wrapper {
    border-radius: 20px;
    border: 1px solid rgba(0, 102, 255, 0.3);
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.2);
    backdrop-filter: blur(10px);
    height: 100%;
}

    .contact-hero .contact-form-wrapper .form-header {
        text-align: center;
        margin-bottom: 35px;
    }

        .contact-hero .contact-form-wrapper .form-header p {
            font-size: 1.125rem;
            line-height: 1.7;
            color: color-mix(in srgb, var(--default-color), transparent 2%);
            margin-bottom: 0;
        }
    /* Form Styling */
    .contact-hero .contact-form-wrapper .php-email-form .form-label {
        font-weight: 600;
        color: #ffffff;
        margin-bottom: 8px;
        font-size: 14px;
    }

    .contact-hero .contact-form-wrapper .php-email-form .form-control {
        height: 50px;
        padding: 12px 18px;
        border-radius: 12px;
        border: 2px solid rgba(0, 102, 255, 0.3);
        background: rgba(20, 24, 36, 0.8);
        color: #ffffff;
        font-size: 16px;
        transition: all 0.3s ease;
        backdrop-filter: blur(5px);
    }

        .contact-hero .contact-form-wrapper .php-email-form .form-control:focus {
            border-color: #00ff88;
            box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.2);
            background: rgba(20, 24, 36, 0.9);
            outline: none;
        }

        .contact-hero .contact-form-wrapper .php-email-form .form-control::placeholder {
            color: color-mix(in srgb, var(--default-color), transparent 2%);
        }

    .contact-hero .contact-form-wrapper .php-email-form .message-textarea {
        height: 120px;
        resize: vertical;
        font-family: inherit;
    }
    /* Submit Button - Enhanced Hero Button Style */
    .contact-hero .contact-form-wrapper .php-email-form .submit-btn {
        width: 100%;
        padding: 18px 30px;
        border-radius: 12px;
        font-weight: 600;
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        border: none;
        background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
        color: #ffffff;
        box-shadow: 0 10px 40px rgba(0, 102, 255, 0.3);
    }

        .contact-hero .contact-form-wrapper .php-email-form .submit-btn::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s;
        }

        .contact-hero .contact-form-wrapper .php-email-form .submit-btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 60px rgba(0, 102, 255, 0.5);
        }

            .contact-hero .contact-form-wrapper .php-email-form .submit-btn:hover::before {
                left: 100%;
            }

            .contact-hero .contact-form-wrapper .php-email-form .submit-btn:hover i {
                transform: translateX(4px);
            }

        .contact-hero .contact-form-wrapper .php-email-form .submit-btn span {
            position: relative;
            z-index: 1;
        }

        .contact-hero .contact-form-wrapper .php-email-form .submit-btn i {
            font-size: 18px;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            z-index: 1;
        }
/* Responsive adjustments */
@media (max-width: 1200px) {
    .contact-content-wrapper {
        padding: 50px 40px;
    }
}

@media (max-width: 992px) {
    .contact-hero .contact-info-section {
        margin-bottom: 40px;
    }

        .contact-hero .contact-info-section .contact-info-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
}

@media (max-width: 768px) {
    .contact-content-wrapper {
        padding: 40px 30px;
    }

    .contact-hero .hero-title {
        font-size: 2.5rem;
    }

    .contact-hero .hero-description {
        font-size: 1rem;
    }

    .contact-hero .contact-info-section .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero .contact-info-section .info-item {
        padding: 20px;
    }

        .contact-hero .contact-info-section .info-item:hover {
            transform: translateY(-5px);
        }

    .contact-hero .contact-form-wrapper {
        padding: 30px 25px;
    }

        .contact-hero .contact-form-wrapper .form-header h3 {
            font-size: 1.75rem;
        }
}

@media (max-width: 576px) {
    .contact-content-wrapper {
        padding: 30px 20px;
    }

    .contact-hero .hero-title {
        font-size: 2rem;
    }

    .contact-hero .contact-info-section .info-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

        .contact-hero .contact-info-section .info-item .info-icon {
            width: 70px;
            height: 70px;
        }

    .contact-hero .contact-info-section .social-contact .social-icons {
        flex-wrap: wrap;
        gap: 10px;
    }
}

/*#endregion Contact*/

/*#region Membership & Fees*/
.membership-hero {
    padding: 100px 0;
}

.membership-content-wrapper {
    padding: 60px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.membership-hero .hero-title {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #000 0%, #0066ff 50%, #000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeIn 1s ease-out 0.5s both, gradientShift 8s ease infinite;
    background-size: 200% 200%;
    letter-spacing: -0.03em;
    text-align: center;
}

.membership-hero .hero-description {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    text-align: center;
}

/* Pricing Cards */
.membership-hero .pricing-card {
    border-radius: 20px;
    border: 1px solid rgba(0, 102, 255, 0.2);
    padding: 0;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

    .membership-hero .pricing-card:hover {
        transform: translateY(-10px);
        border-color: rgba(0, 212, 255, 0.4);
        box-shadow: 0 20px 50px rgba(0, 102, 255, 0.3);
    }

    .membership-hero .pricing-card.highlight {
        border: 2px solid rgba(0, 102, 255, 0.5);
        box-shadow: 0 15px 40px rgba(0, 102, 255, 0.2);
    }

.membership-hero .popular-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #0066ff, #00d4ff);
    color: #ffffff;
    padding: 8px 45px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.4);
    z-index: 1;
}

/* Card Header */
.membership-hero .card-header {
    background: linear-gradient(135deg, #0066ff, #00d4ff);
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 102, 255, 0.2);
}

    .membership-hero .card-header i {
        font-size: 3rem;
        color: #ffffff;
        margin-bottom: 15px;
        display: block;
    }

    .membership-hero .card-header h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: #ffffff;
        margin: 0;
    }

/* Card Body */
.membership-hero .card-body {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.membership-hero .card-intro {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 0.95rem;
    margin-bottom: 25px;
    text-align: center;
}

/* Price Items */
.membership-hero .price-items {
    margin-bottom: 25px;
}

.membership-hero .price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    margin-bottom: 10px;
    background: rgba(0, 102, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 102, 255, 0.1);
    transition: all 0.3s ease;
}

    .membership-hero .price-item:hover {
        background: rgba(0, 102, 255, 0.1);
        transform: translateX(5px);
    }

    .membership-hero .price-item .item-name {
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        font-size: 0.95rem;
        font-weight: 500;
    }

    .membership-hero .price-item .item-price {
        color: var(--accent-color);
        font-size: 1.1rem;
        font-weight: 700;
    }

/* Total Price */
.membership-hero .total-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15), rgba(0, 212, 255, 0.1));
    border-radius: 15px;
    margin-bottom: 25px;
    border: 2px solid rgba(0, 102, 255, 0.3);
}

    .membership-hero .total-price span {
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        font-size: 1.1rem;
        font-weight: 600;
    }

    .membership-hero .total-price strong {
        color: var(--accent-color);
        font-size: 2rem;
        font-weight: 700;
    }

/* Renewal Info */
.membership-hero .renewal-info {
    margin-top: auto;
}

.membership-hero .info-badge {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 12px;
    border-left: 4px solid #ffc107;
}

    .membership-hero .info-badge i {
        color: #ffc107;
        font-size: 1.5rem;
        flex-shrink: 0;
    }

    .membership-hero .info-badge strong {
        display: block;
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        font-size: 1rem;
        margin-bottom: 5px;
    }

    .membership-hero .info-badge p {
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        font-size: 0.85rem;
        margin: 5px 0;
    }

    .membership-hero .info-badge .renewal-fee {
        display: inline-block;
        color: #ffc107;
        font-weight: 700;
        font-size: 0.95rem;
        margin-top: 5px;
    }

/* Feature List */
.membership-hero .feature-list {
    margin-bottom: 25px;
}

.membership-hero .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    margin-bottom: 12px;
    background: rgba(0, 102, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 102, 255, 0.1);
    transition: all 0.3s ease;
}

    .membership-hero .feature-item:hover {
        background: rgba(0, 102, 255, 0.1);
        transform: translateX(5px);
    }

    .membership-hero .feature-item.bonus {
        background: rgba(76, 175, 80, 0.1);
        border-color: rgba(76, 175, 80, 0.3);
    }

    .membership-hero .feature-item i {
        color: var(--accent-color);
        font-size: 1.2rem;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .membership-hero .feature-item.bonus i {
        color: #4caf50;
    }

    .membership-hero .feature-item span {
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .membership-hero .feature-item strong {
        color: var(--accent-color);
        font-weight: 700;
    }

/* Payment Highlight */
.membership-hero .payment-highlight {
    margin-top: auto;
    padding-top: 20px;
}

.membership-hero .payment-box {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(0, 212, 255, 0.15));
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(0, 102, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.2);
}

.membership-hero .payment-label {
    display: block;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.membership-hero .payment-detail {
    display: block;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.membership-hero .payment-amount {
    display: block;
    color: var(--accent-color);
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(0, 102, 255, 0.5);
}

/* Schedule List */
.membership-hero .schedule-list {
    margin-bottom: 25px;
}

.membership-hero .schedule-item {
    padding: 20px;
    margin-bottom: 15px;
    background: rgba(0, 102, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 102, 255, 0.2);
    transition: all 0.3s ease;
}

    .membership-hero .schedule-item:hover {
        background: rgba(0, 102, 255, 0.1);
        transform: translateX(5px);
        border-color: rgba(0, 212, 255, 0.4);
    }

.membership-hero .day-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

    .membership-hero .day-badge i {
        color: var(--accent-color);
        font-size: 1.2rem;
    }

    .membership-hero .day-badge span {
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        font-size: 1.1rem;
        font-weight: 700;
    }

.membership-hero .time-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 10px;
}

    .membership-hero .time-info i {
        color: rgba(0, 212, 255, 0.7);
        font-size: 1rem;
    }

    .membership-hero .time-info span {
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        font-size: 1rem;
        font-weight: 500;
    }

/* Schedule Note */
.membership-hero .schedule-note {
    display: flex;
    gap: 12px;
    padding: 20px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    margin-top: auto;
}

    .membership-hero .schedule-note i {
        color: var(--accent-color);
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    .membership-hero .schedule-note p {
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        font-size: 0.9rem;
        margin: 0;
        line-height: 1.6;
    }


/* ========================================== */
/* TRIAL OFFER CARD - NEW STYLES */
/* ========================================== */

.trial-offer-card {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 212, 255, 0.05));
    border: 2px solid rgba(0, 102, 255, 0.3);
    border-radius: 30px;
    padding: 50px 40px;
    overflow: hidden;
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.2);
    transition: all 0.4s ease;
}

    .trial-offer-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 30px 80px rgba(0, 102, 255, 0.3);
        border-color: rgba(0, 212, 255, 0.5);
    }

    .trial-offer-card::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(0, 212, 255, 0.15), transparent);
        border-radius: 50%;
        pointer-events: none;
    }

/* Trial Badge */
.trial-badge {
    position: absolute;
    top: 30px;
    right: 40px;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: #000;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
    animation: pulse 2s infinite;
}

    .trial-badge i {
        font-size: 1rem;
    }

/* Trial Content */
.trial-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px;
}

.trial-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #0066ff, #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.4);
    animation: float 6s ease-in-out infinite;
}

    .trial-icon i {
        font-size: 3.5rem;
        color: #ffffff;
    }

.trial-info {
    padding-right: 100px;
}

.trial-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
    line-height: 1.2;
}

.trial-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 700;
    background: linear-gradient(135deg, #0066ff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.3;
}

.trial-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 30px;
}

/* Trial Features */
.trial-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.trial-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(0, 102, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 102, 255, 0.2);
    transition: all 0.3s ease;
}

    .trial-feature:hover {
        background: rgba(0, 102, 255, 0.1);
        transform: translateX(5px);
        border-color: rgba(0, 212, 255, 0.4);
    }

    .trial-feature i {
        color: #4caf50;
        font-size: 1.3rem;
        flex-shrink: 0;
    }

    .trial-feature span {
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        font-size: 0.95rem;
        font-weight: 500;
        line-height: 1.5;
    }

/* Trial Pricing */
.trial-pricing {
    margin-top: 35px;
}

.trial-price-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(0, 212, 255, 0.1));
    border-radius: 20px;
    border: 2px solid rgba(0, 102, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.3);
}

.trial-price-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trial-price-amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    text-shadow: 0 0 30px rgba(0, 102, 255, 0.5);
}

.trial-price-note {
    font-size: 0.95rem;
    color: #4caf50;
    font-weight: 600;
}

/* Trial Actions */
.trial-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.btn-trial-primary {
    padding: 18px 40px;
    background: linear-gradient(135deg, #0066ff, #00d4ff);
    color: #ffffff;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.3);
    position: relative;
    overflow: hidden;
}

    .btn-trial-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.6s;
    }

    .btn-trial-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 20px 50px rgba(0, 102, 255, 0.5);
    }

        .btn-trial-primary:hover::before {
            left: 100%;
        }

.btn-trial-secondary {
    padding: 18px 40px;
    background: transparent;
    color: var(--accent-color);
    border: 2px solid rgba(0, 102, 255, 0.5);
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

    .btn-trial-secondary:hover {
        background: rgba(0, 102, 255, 0.1);
        border-color: var(--accent-color);
        transform: translateY(-3px);
    }

/* Trial Footer */
.trial-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 15px;
    border-left: 4px solid #ffc107;
}

    .trial-footer i {
        color: #ffc107;
        font-size: 1.5rem;
        flex-shrink: 0;
    }

    .trial-footer p {
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        font-size: 1rem;
        margin: 0;
        font-weight: 500;
        line-height: 1.6;
    }
/*#endregion Membership & Fees*/

/*#region Term Dates Hero*/
.term-dates-hero {
    padding: 100px 0;
}

.term-dates-content-wrapper {
    padding: 60px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.term-dates-hero .hero-title {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #000 0%, #0066ff 50%, #000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeIn 1s ease-out 0.5s both, gradientShift 8s ease infinite;
    background-size: 200% 200%;
    letter-spacing: -0.03em;
    text-align: center;
}

.term-dates-hero .hero-description {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: color-mix(in srgb, var(--default-color), transparent 2%);
}

/* Term Cards */
.term-dates-hero .term-card {
    border-radius: 20px;
    border: 1px solid rgba(0, 102, 255, 0.2);
    padding: 0;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    overflow: hidden;
    position: relative;
}

    .term-dates-hero .term-card:hover {
        transform: translateY(-10px);
        border-color: rgba(0, 212, 255, 0.4);
        box-shadow: 0 20px 50px rgba(0, 102, 255, 0.3);
    }

/* Term Badge */
.term-dates-hero .term-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0066ff, #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.5);
    z-index: 2;
    border: 3px solid rgba(20, 24, 36, 0.9);
}

    .term-dates-hero .term-badge .term-number {
        color: #ffffff;
        font-size: 1.8rem;
        font-weight: 700;
    }

/* Card Header */
.term-dates-hero .card-header {
    background: linear-gradient(135deg, #0066ff, #00d4ff);
    padding: 35px 30px 30px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 102, 255, 0.2);
}

    .term-dates-hero .card-header i {
        font-size: 2.5rem;
        color: var(--accent-color);
        margin-bottom: 15px;
        display: block;
    }

    .term-dates-hero .card-header h3 {
        font-size: clamp(1.5rem, 4vw, 1.6rem);
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 32px;
        background: linear-gradient(135deg, #000 50%, #fff 0%, #000 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: fadeIn 1s ease-out 0.5s both, gradientShift 8s ease infinite;
        background-size: 200% 200%;
        letter-spacing: -0.03em;
        text-align: center;
    }
/* Card Body */
.term-dates-hero .card-body {
    padding: 40px 30px 30px;
}

/* Date Blocks */
.term-dates-hero .date-block {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(0, 102, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 102, 255, 0.2);
    transition: all 0.3s ease;
}

    .term-dates-hero .date-block:hover {
        background: rgba(0, 102, 255, 0.1);
        transform: translateX(5px);
        border-color: rgba(0, 212, 255, 0.4);
    }

    .term-dates-hero .date-block.start-date .date-icon {
        background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(76, 175, 80, 0.1));
        border: 2px solid rgba(76, 175, 80, 0.4);
    }

        .term-dates-hero .date-block.start-date .date-icon i {
            color: #4caf50;
        }

    .term-dates-hero .date-block.end-date .date-icon {
        background: linear-gradient(135deg, rgba(255, 152, 0, 0.2), rgba(255, 152, 0, 0.1));
        border: 2px solid rgba(255, 152, 0, 0.4);
    }

        .term-dates-hero .date-block.end-date .date-icon i {
            color: #ff9800;
        }

.term-dates-hero .date-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .term-dates-hero .date-icon i {
        font-size: 1.5rem;
    }

.term-dates-hero .date-info {
    flex: 1;
}

.term-dates-hero .date-label {
    display: block;
    color: color-mix(in srgb, var(--default-color), transparent 2%);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.term-dates-hero .date-display {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

    .term-dates-hero .date-display .day {
        color: color-mix(in srgb, var(--default-color), transparent 2%);
        font-size: 1.1rem;
        font-weight: 700;
    }

    .term-dates-hero .date-display .date {
        font-size: clamp(1.5rem, 4vw, 1.3rem);
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 32px;
        background: linear-gradient(135deg, #000 0%, #0066ff 50%, #000 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: fadeIn 1s ease-out 0.5s both, gradientShift 8s ease infinite;
        background-size: 200% 200%;
        letter-spacing: -0.03em;
    }

/* Date Separator */
.term-dates-hero .date-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 25px 0;
    gap: 15px;
}

    .term-dates-hero .date-separator .separator-line {
        flex: 1;
        height: 2px;
        background: linear-gradient(to right, transparent, rgba(0, 102, 255, 0.3), transparent);
    }

    .term-dates-hero .date-separator i {
        color: var(--accent-color);
        font-size: 1.5rem;
        animation: bounce 2s infinite;
    }

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

/* Term Footer */
.term-dates-hero .term-footer {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 102, 255, 0.2);
    display: flex;
    justify-content: center;
}

.term-dates-hero .duration-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(0, 212, 255, 0.1));
    border-radius: 25px;
    border: 2px solid rgba(0, 102, 255, 0.3);
}

    .term-dates-hero .duration-badge i {
        color: var(--accent-color);
        font-size: 1.2rem;
    }

    .term-dates-hero .duration-badge span {
        color: color-mix(in srgb, var(--default-color), transparent 2%);
        font-size: 1.1rem;
        font-weight: 700;
    }

/* Term Info Box */
.term-dates-hero .term-info-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 40px;
    margin: 40px auto 0;
    max-width: 800px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 20px;
    border-left: 4px solid var(--accent-color);
    backdrop-filter: blur(10px);
}

    .term-dates-hero .term-info-box i {
        color: var(--accent-color);
        font-size: 2rem;
        flex-shrink: 0;
    }

    .term-dates-hero .term-info-box p {
        color: color-mix(in srgb, var(--default-color), transparent 2%);
        font-size: 1.05rem;
        line-height: 1.7;
        margin: 0;
    }

/* Hero Actions */
.term-dates-hero .hero-actions {
    margin-top: 40px;
    text-align: center;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1200px) {
    .term-dates-content-wrapper {
        padding: 50px 40px;
    }
}

@media (max-width: 992px) {
    .term-dates-hero .term-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .term-dates-content-wrapper {
        padding: 40px 30px;
    }

    .term-dates-hero .hero-title {
        font-size: 2rem;
    }

    .term-dates-hero .term-badge {
        width: 50px;
        height: 50px;
        right: 20px;
    }

        .term-dates-hero .term-badge .term-number {
            font-size: 1.5rem;
        }

    .term-dates-hero .card-body {
        padding: 30px 20px 25px;
    }

    .term-dates-hero .date-block {
        padding: 20px;
        gap: 15px;
    }

    .term-dates-hero .date-icon {
        width: 50px;
        height: 50px;
    }

        .term-dates-hero .date-icon i {
            font-size: 1.2rem;
        }

    .term-dates-hero .date-display .date {
        font-size: 1.1rem;
    }

    .term-dates-hero .term-info-box {
        padding: 25px 30px;
        flex-direction: column;
        text-align: center;
    }

        .term-dates-hero .term-info-box p {
            font-size: 1rem;
        }
}

@media (max-width: 576px) {
    .term-dates-content-wrapper {
        padding: 30px 20px;
    }

    .term-dates-hero .card-header {
        padding: 30px 20px 25px;
    }

    .term-dates-hero .date-block {
        flex-direction: column;
        text-align: center;
    }

    .term-dates-hero .date-display {
        align-items: center;
    }

    .term-dates-hero .term-info-box {
        padding: 20px;
    }

    .term-dates-hero .hero-actions {
        flex-direction: column;
    }

        .term-dates-hero .hero-actions .btn {
            width: 100%;
        }
}
/*#endregion Term Dates Hero*/

/*#region Hero*/
.hero {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

    .hero .content-col {
        position: relative;
        z-index: 2;
    }

        .hero .content-col .content {
            padding-right: 2rem;
        }

            .hero .content-col .content .promo-badge {
                display: inline-block;
                background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
                color: var(--accent-color);
                font-size: 0.875rem;
                font-weight: 600;
                padding: 0.5rem 1rem;
                border-radius: 2rem;
                margin-bottom: 1.5rem;
            }

            .hero .content-col .content h1 {
                font-size: clamp(1.5rem, 4vw, 3rem);
                font-weight: 700;
                line-height: 1.2;
                margin-bottom: 32px;
                background: linear-gradient(135deg, #000 0%, #0066ff 50%, #000 100%);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
                animation: fadeIn 1s ease-out 0.5s both, gradientShift 8s ease infinite;
                background-size: 200% 200%;
                letter-spacing: -0.03em;
                text-align: left;
            }

            .hero .content-col .content h2 {
                font-size: clamp(1.5rem, 4vw, 1.2rem);
                font-weight: 800;
                line-height: 1.2;
                margin-bottom: 32px;
                background: linear-gradient(135deg, #000 0%, #0066ff 50%, #000 100%);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
                animation: fadeIn 1s ease-out 0.5s both, gradientShift 8s ease infinite;
                background-size: 200% 200%;
                letter-spacing: -0.03em;
                text-align: left;
            }

            .hero .content-col .content p {
                font-size: clamp(1rem, 2vw, 1.25rem);
                line-height: 1.8;
                color: color-mix(in srgb, var(--default-color), transparent 2%);
                margin-bottom: 48px;
                max-width: 650px;
                margin-left: 0;
                margin-right: 0;
                animation: fadeIn 1s ease-out 0.7s both;
                text-align: left;
            }

/* Hero Trial Badge */
.hero-trial-badge {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15), rgba(0, 212, 255, 0.1));
    border: 2px solid rgba(0, 102, 255, 0.3);
    border-radius: 20px;
    padding: 20px 25px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.2);
    animation: fadeInUp 1s ease-out 0.8s both;
}

.trial-badge-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

    .trial-badge-content i {
        font-size: 2.5rem;
        color: #ffc107;
        flex-shrink: 0;
        animation: pulse 2s infinite;
    }

.trial-badge-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.trial-badge-title {
    font-size: 1rem;
    font-weight: 600;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.trial-badge-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-color);
}

.trial-badge-note {
    font-size: 0.85rem;
    color: #4caf50;
    font-weight: 500;
}

            .hero .content-col .content .hero-cta {
                display: flex;
                gap: 1rem;
                margin-bottom: 2.5rem;
            }

                .hero .content-col .content .hero-cta .btn {
                    padding: 0.75rem 1.5rem;
                    font-weight: 600;
                    border-radius: 0.375rem;
                    transition: all 0.3s ease;
                }

                    .hero .content-col .content .hero-cta .btn.btn-shop {
                        background: linear-gradient(135deg, #0066ff, #00d4ff);
                        color: var(--contrast-color);
                        border: none;
                    }

                        .hero .content-col .content .hero-cta .btn.btn-shop i {
                            margin-left: 0.5rem;
                            transition: transform 0.3s ease;
                        }

                        .hero .content-col .content .hero-cta .btn.btn-shop:hover {
                            background-color: color-mix(in srgb, var(--accent-color), #000 10%);
                        }

                            .hero .content-col .content .hero-cta .btn.btn-shop:hover i {
                                transform: translateX(5px);
                            }

                    .hero .content-col .content .hero-cta .btn.btn-collection {
                        background-color: transparent;
                        color: var(--default-color);
                        border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
                    }

                        .hero .content-col .content .hero-cta .btn.btn-collection:hover {
                            background-color: color-mix(in srgb, var(--default-color), transparent 95%);
                            border-color: var(--default-color);
                        }

            .hero .content-col .content .hero-features {
                display: flex;
                gap: 2rem;
            }

                .hero .content-col .content .hero-features .feature-item {
                    display: flex;
                    align-items: center;
                    gap: 0.5rem;
                }

                    .hero .content-col .content .hero-features .feature-item i {
                        font-size: 1.25rem;
                        color: var(--accent-color);
                    }

                    .hero .content-col .content .hero-features .feature-item span {
                        font-size: 0.875rem;
                        font-weight: 500;
                        color: var(--accent-color);
                    }

    .hero .image-col {
        position: relative;
    }

        .hero .image-col .hero-image {
            position: relative;
            display: flex;
            justify-content: center;
        }

            .hero .image-col .hero-image .main-product {
                max-width: 100%;
                height: auto;
                z-index: 1;
                padding: 5px;
                position: relative;
                border-radius: 50px;
            }

                .hero .image-col .hero-image .main-product::after {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    z-index: 1;
                    border-radius: 12px;
                    pointer-events: none;
                }

            .hero .image-col .hero-image .floating-product {
                position: absolute;
                background-color: var(--contrast-color);
                border-radius: 0.75rem;
                padding: 0.75rem;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
                display: flex;
                align-items: center;
                gap: 0.75rem;
                z-index: 2;
            }

                .hero .image-col .hero-image .floating-product img {
                    width: 3.5rem;
                    height: 3.5rem;
                    object-fit: contain;
                    border-radius: 15px;
                }

                .hero .image-col .hero-image .floating-product .product-info h4 {
                    font-size: 0.875rem;
                    margin-bottom: 0.25rem;
                    font-weight: 600;
                }

                .hero .image-col .hero-image .floating-product .product-info .price {
                    font-size: 0.875rem;
                    font-weight: 700;
                    color: var(--accent-color);
                }

                .hero .image-col .hero-image .floating-product.product-1 {
                    top: 1%;
                    left: 0;
                }

                .hero .image-col .hero-image .floating-product.product-2 {
                    bottom: 2%;
                    right: 0;
                }

            .hero .image-col .hero-image .discount-badge {
                position: absolute;
                top: 6%;
                right: 10%;
                background-color: var(--accent-color);
                color: var(--contrast-color);
                width: 4.5rem;
                height: 4.5rem;
                border-radius: 50%;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                z-index: 2;
            }

                .hero .image-col .hero-image .discount-badge .percent {
                    font-size: 1.5rem;
                    font-weight: 700;
                    line-height: 1;
                }

                .hero .image-col .hero-image .discount-badge .text {
                    font-size: 0.875rem;
                    font-weight: 600;
                }

/* Responsive styles */
@media (max-width: 991.98px) {
    .hero {
        padding: 80px 0;
    }

        .hero .content-col .content {
            padding-right: 0;
            margin-bottom: 3rem;
            text-align: center;
        }

            .hero .content-col .content h1 {
                font-size: 2.75rem;
            }

            .hero .content-col .content .hero-cta {
                justify-content: center;
            }

            .hero .content-col .content .hero-features {
                justify-content: center;
            }

        .hero .image-col .hero-image .floating-product.product-1 {
            top: 10%;
            left: 5%;
        }

        .hero .image-col .hero-image .floating-product.product-2 {
            bottom: 10%;
            right: 5%;
        }
}

@media (max-width: 767.98px) {
    .hero {
        padding: 60px 0;
    }

        .hero .content-col .content h1 {
            font-size: 2.25rem;
        }

        .hero .content-col .content .hero-cta {
            flex-direction: column;
        }

            .hero .content-col .content .hero-cta .btn {
                width: 100%;
            }

        .hero .content-col .content .hero-features {
            flex-direction: column;
            gap: 1rem;
            align-items: center;
        }

        .hero .image-col .hero-image .floating-product {
            padding: 0.5rem;
        }

            .hero .image-col .hero-image .floating-product img {
                width: 2.5rem;
                height: 2.5rem;
            }

            .hero .image-col .hero-image .floating-product .product-info h4 {
                font-size: 0.75rem;
            }

            .hero .image-col .hero-image .floating-product .product-info .price {
                font-size: 0.75rem;
            }

        .hero .image-col .hero-image .discount-badge {
            width: 3.5rem;
            height: 3.5rem;
        }

            .hero .image-col .hero-image .discount-badge .percent {
                font-size: 1.25rem;
            }

            .hero .image-col .hero-image .discount-badge .text {
                font-size: 0.75rem;
            }

        .hero .content-col .content h2 {
            text-align: center;
        }
}

/* Add these animation styles to your existing CSS */

/* Fade In Up Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Glow Animation */
@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 102, 255, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(0, 102, 255, 0.6);
    }
}

/* Button Hover Animation */
@keyframes btnHover {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Text Gradient Shift */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Scroll Indicator Animation */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

/* Add these animation classes */

/* Hero Content Animations */
.hero .content-col .content {
    animation: fadeInUp 1s ease-out;
}

    .hero .content-col .content h1 {
        animation: fadeInUp 1s ease-out 0.2s both;
    }

    .hero .content-col .content p {
        animation: fadeInUp 1s ease-out 0.4s both;
    }

    .hero .content-col .content .hero-cta {
        animation: fadeInUp 1s ease-out 0.6s both;
    }

    .hero .content-col .content .hero-features {
        animation: fadeInUp 1s ease-out 0.8s both;
    }

/* Floating Products Animation */
.hero .image-col .hero-image .floating-product {
    animation: float 6s ease-in-out infinite;
}

    .hero .image-col .hero-image .floating-product.product-1 {
        animation-delay: 0.5s;
    }

    .hero .image-col .hero-image .floating-product.product-2 {
        animation-delay: 1s;
    }

/* Discount Badge Animation */
.hero .image-col .hero-image .discount-badge {
    animation: pulse 2s ease-in-out infinite, glow 3s ease-in-out infinite;
}

/* Promo Badge Animation */
.hero .content-col .content .promo-badge {
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    overflow: hidden;
}

    .hero .content-col .content .promo-badge::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        animation: shine 2s infinite;
    }

@keyframes shine {
    100% {
        left: 100%;
    }
}

/* Hero CTA Button Hover Effects */
.hero .content-col .content .hero-cta .btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

    .hero .content-col .content .hero-cta .btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s;
    }

    .hero .content-col .content .hero-cta .btn:hover::before {
        left: 100%;
    }

    .hero .content-col .content .hero-cta .btn:hover {
        animation: btnHover 0.6s ease;
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0, 102, 255, 0.3);
    }

/* Feature Items Animation */
.hero .content-col .content .hero-features .feature-item {
    transition: all 0.3s ease;
}

    .hero .content-col .content .hero-features .feature-item:hover {
        transform: translateY(-5px);
    }

    .hero .content-col .content .hero-features .feature-item i {
        transition: all 0.3s ease;
    }

    .hero .content-col .content .hero-features .feature-item:hover i {
        transform: scale(1.2);
        color: #00d4ff;
    }

/* Hero Image Animations */
.hero .image-col .hero-image .main-product {
    animation: fadeInUp 1s ease-out 0.3s both;
    transition: transform 0.5s ease;
}

.hero .image-col .hero-image:hover .main-product {
    transform: scale(1.02);
}

/* Add parallax effect to the hero section */
.hero {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

    /* Add a subtle gradient animation to the hero background */
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-size: 200% 200%;
        animation: gradientShift 15s ease infinite;
        z-index: 1;
    }

    .hero .container {
        position: relative;
        z-index: 2;
    }

/* Floating particles in background */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-particle {
    position: absolute;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 50%;
    animation: floatParticle 20s infinite linear;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) translateX(0);
    }

    100% {
        transform: translateY(-100px) translateX(var(--move-x, 100px));
    }
}

/* Add responsive animation adjustments */
@media (max-width: 991.98px) {
    .hero .image-col .hero-image .floating-product {
        animation: float 8s ease-in-out infinite;
    }
}

@media (max-width: 767.98px) {
    .hero .image-col .hero-image .floating-product {
        animation: float 10s ease-in-out infinite;
    }

    /* Reduce animation intensity on mobile */
    .hero::before {
        animation: gradientShift 25s ease infinite;
    }
}

/* Add scroll indicator animation */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    z-index: 2;
}

    .scroll-indicator::before {
        content: '';
        position: absolute;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
        width: 4px;
        height: 8px;
        background: var(--accent-color);
        border-radius: 2px;
        animation: bounce 2s infinite;
    }

/* Add these animations to specific elements in your HTML */
.hero .content-col .content h1 span {
    background: linear-gradient(135deg, #0066ff, #000, #0066ff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
}


/* Light Blue Overlay for Main Product Image */
.hero .image-col .hero-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

    .hero .image-col .hero-image .main-product {
        position: relative;
        max-width: 100%;
        height: auto;
        z-index: 1;
    }


/* OPTION 4: Container with Light Blue Gradient */
.hero .image-col .hero-image {
    position: relative;
    border-radius: 15px;
    padding: 15px;
}

    .hero .image-col .hero-image .main-product {
        border-radius: 20px;
    }

    /* Ensure floating products stay above everything */
    .hero .image-col .hero-image .floating-product {
        z-index: 10 !important;
    }

    .hero .image-col .hero-image .discount-badge {
        z-index: 10 !important;
    }

/* Hero Swiper */
.hero .hero-swiper {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

    .hero .hero-swiper .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: center;
        border: 2px solid rgba(0, 102, 255, 0.3);
    }

    .hero .hero-swiper .main-product {
        width: 100%;
        height: auto;
        border-radius: 20px;
        animation: fadeInUp 1s ease-out 0.3s both;
    }

    /* Swiper navigation inside hero */
    .hero .hero-swiper .swiper-button-prev,
    .hero .hero-swiper .swiper-button-next {
        color: var(--accent-color);
    }

    .hero .hero-swiper .swiper-pagination-bullet {
        background: rgba(0, 0, 0, 0.3);
    }

    .hero .hero-swiper .swiper-pagination-bullet-active {
        background: var(--accent-color);
    }

/*#endregion Hero*/

/*#region Policy Page Styles*/

/* Common Hero Section - Applied to all policy pages */
.policy-hero,
.safety-hero,
.policies-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: rgba(0, 102, 255, 0.2);
}

    .policy-hero .hero-title,
    .safety-hero .hero-title,
    .policies-hero .hero-title {
        font-size: clamp(1.5rem, 4vw, 3rem);
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 32px;
        background: linear-gradient(135deg, #000 0%, #0066ff 50%, #000 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: fadeIn 1s ease-out 0.5s both, gradientShift 8s ease infinite;
        background-size: 200% 200%;
        letter-spacing: -0.03em;
    }
/**/
/* Common Card Styles */
.policy-card,
.safety-card,
.policy-item-card {
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(0, 102, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

    .policy-card:hover,
    .safety-card:hover,
    .policy-item-card:hover {
        transform: translateY(-5px);
        border-color: rgba(0, 102, 255, 0.4);
        box-shadow: 0 20px 50px rgba(0, 102, 255, 0.2);
    }
/* Policy Item Card Specific Styles */
.policy-item-card {
    position: relative;
}

.policy-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0066ff, #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}
/* Common Icon Styles */
.policy-icon,
.safety-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border: 2px solid rgba(0, 102, 255, 0.3);
}

    .policy-icon i,
    .safety-icon i {
        font-size: 2rem;
        color: #0066ff;
        background: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
/* Common List Styles */
.policy-list,
.safety-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

    .policy-list li,
    .safety-list li {
        padding: 10px 0;
        color: color-mix(in srgb, var(--default-color), transparent 2%);
        position: relative;
        padding-left: 30px;
        margin-bottom: 8px;
    }

        .policy-list li:before {
            content: "•";
            position: absolute;
            left: 0;
            color: #00d4ff;
            font-weight: bold;
            font-size: 1.5rem;
        }

        .safety-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #00d4ff;
            font-weight: bold;
            font-size: 1.2rem;
        }
/* Sub Policy List (for nested lists) */
.sub-policy-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 10px 30px;
}

    .sub-policy-list li {
        padding: 5px 0;
        color: color-mix(in srgb, var(--default-color), transparent 2%);
        position: relative;
        padding-left: 20px;
        font-size: 0.9rem;
    }

        .sub-policy-list li:before {
            content: "›";
            position: absolute;
            left: 0;
            color: #0066ff;
            font-size: 1rem;
        }
/* Common Highlight/Note Styles */
.policy-highlight,
.safety-highlight {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
    border-left: 4px solid #0066ff;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
}

.policy-note {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 193, 7, 0.05) 100%);
    border-left: 4px solid #ffc107;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    color: color-mix(in srgb, var(--default-color), transparent 2%);
}

    .policy-note i {
        color: #ffc107;
        margin-right: 10px;
    }
/* Quick Links (Common) */
.quick-links {
    position: sticky;
    top: 100px;
}

.quick-link-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    margin-bottom: 10px;
    background: rgba(0, 102, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 102, 255, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

    .quick-link-item:hover {
        background: rgba(0, 102, 255, 0.1);
        transform: translateX(5px);
        text-decoration: none;
        color: #ffffff;
    }

    .quick-link-item i {
        color: #0066ff;
        font-size: 1.2rem;
    }
/* Download Button (Common) */
.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
    color: #ffffff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
    border: none;
}

    .download-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0, 102, 255, 0.4);
        color: #ffffff;
        text-decoration: none;
    }
/* Section Divider (Common) */
.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.3), transparent);
    margin: 50px 0;
}
/* Badge Styles */
/*.safety-hero
.badge-official*/
.safety-hero .badge {
    background: linear-gradient(135deg, #00d4ff 0%, #0066ff 100%);
    color: white;
    padding: 8px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.badge-digital,
.badge-official {
    background: linear-gradient(135deg, #00d4ff 0%, #0066ff 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.badge-official {
    background: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
}
/* Policy Index */
.policy-index {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 30px 0;
}

.index-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

    .index-item:hover {
        background: rgba(0, 102, 255, 0.2);
        transform: translateY(-2px);
    }

.index-number {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #0066ff, #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
}
/* Responsive Styles */
@media (max-width: 768px) {
    .policy-card,
    .safety-card,
    .policy-item-card {
        padding: 25px 20px;
    }

    .quick-links {
        position: static;
        margin-bottom: 40px;
    }

    .policy-index {
        flex-direction: column;
    }
}
/*#endregion Policy Page Styles*/

/*#region Your Safety Comes First*/

.safety-comes-first {
    padding: 80px 0;
}

.safety-comes-first-content-wrapper {
    background: linear-gradient(135deg, #0066ff, #00d4ff);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    padding: 40px;
    border: 1px solid rgba(0, 102, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease-out 0.5s both;
    margin-top: 20px;
}
/* Banner */
.safety-comes-first .safety-comes-first-banner {
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

    .safety-comes-first .safety-comes-first-banner::before {
        content: "";
        position: absolute;
        top: -50%;
        right: -20%;
        width: 300px;
        height: 300px;
        background: rgba(255, 255, 255);
        border-radius: 50%;
        filter: blur(40px);
    }

    .safety-comes-first .safety-comes-first-banner::after {
        content: "";
        position: absolute;
        bottom: -40%;
        left: -15%;
        width: 200px;
        height: 200px;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 50%;
        filter: blur(30px);
    }
    /* Using CSS Grid for 70/30 layout */
    .safety-comes-first .safety-comes-first-banner .banner-content {
        padding: 60px 50px;
        display: grid;
        grid-template-columns: 70% 30%;
        align-items: center;
        gap: 40px;
        position: relative;
        z-index: 2;
    }

    .safety-comes-first .safety-comes-first-banner .banner-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .safety-comes-first .safety-comes-first-banner .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin: 0;
        justify-content: center;
    }

        .safety-comes-first .safety-comes-first-banner .hero-actions .btn {
            width: 100%;
            justify-content: center;
            padding: 16px 24px;
            font-size: 1.1rem;
            font-weight: 600;
            text-align: center;
        }

    .safety-comes-first .safety-comes-first-banner .banner-text .hero-subtitle {
        font-size: clamp(1.5rem, 3vw, 2.5rem);
        font-weight: 700;
        margin-bottom: 15px;
        background: linear-gradient(135deg, #00d4ff 20%, #000 10%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-align: center !important;
    }

    .safety-comes-first .safety-comes-first-banner .banner-text .hero-description {
        font-size: 1.125rem;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.9);
        margin: 0;
        text-align: center !important;
    }
/* Responsive Design */
@media (max-width: 992px) {
    .safety-comes-first .safety-comes-first-banner .banner-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        padding: 40px 30px;
    }

    .safety-comes-first .safety-comes-first-banner .hero-actions {
        align-items: center;
    }

        .safety-comes-first .safety-comes-first-banner .hero-actions .btn {
            max-width: 350px;
        }
}

@media (max-width: 768px) {
    .safety-comes-first-content-wrapper {
        padding: 30px 20px;
    }

    .safety-comes-first .safety-comes-first-banner .banner-content {
        padding: 40px 25px;
        gap: 25px;
    }

    .safety-comes-first .safety-comes-first-banner .banner-text .hero-subtitle {
        font-size: 1.75rem;
    }

    .safety-comes-first .safety-comes-first-banner .hero-actions .btn {
        padding: 14px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .safety-comes-first .safety-comes-first-banner .banner-content {
        padding: 30px 20px;
        gap: 20px;
    }

    .safety-comes-first .safety-comes-first-banner .hero-actions {
        gap: 12px;
    }
}
/*#endregion Your Safety Comes First*/

/*#region Karate Club Section */
/*.karate-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

    .karate-section::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(45, 134, 137, 0.1) 0%, transparent 70%);
        z-index: 1;
    }*/

.karate-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.kanji {
    font-size: 3rem;
    font-weight: 900;
    color: #1a1a1a;
    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic Pro', Meiryo, sans-serif;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.karate-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.karate-section .image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.3);
}

.karate-section .main-image {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.karate-section .image-wrapper:hover .main-image {
    transform: scale(1.05);
}

.karate-info {
    flex: 1;
}

    .karate-info h3 {
        font-size: 1.8rem;
        color: #1a1a1a;
        margin-bottom: 20px;
        font-weight: 700;
    }

    .karate-info p {
        font-size: clamp(1rem, 2vw, 1.25rem);
        line-height: 1.8;
        color: color-mix(in srgb, var(--default-color), transparent 2%);
        margin-bottom: 48px;
        margin-left: 0;
        margin-right: 0;
        animation: fadeIn 1s ease-out 0.7s both;
        text-align: left;
    }

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.5) 20%, rgba(0, 212, 255, 0.5) 100%);
    border-radius: 10px;
    transition: all 0.3s ease;
}

    .feature:hover {
        background: #e9ecef;
        transform: translateY(-2px);
    }

.feature-icon {
    font-size: 1.5rem;
}

.feature span {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 1rem;
}


.btn-outline {
    background: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
}

    .btn-outline:hover {
        background: linear-gradient(135deg, rgba(0, 102, 255, 0.5) 20%, rgba(0, 212, 255, 0.5) 100%);
        color: white;
        transform: translateY(-3px);
    }

.karate-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
}

.badge {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

    .badge::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    }

    .badge:hover {
        background: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
        color: white;
        transform: translateY(-3px);
    }

.badge-kanji {
    font-size: 4rem;
    font-weight: 900;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.badge-text {
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
}
/* Responsive Design */
@media (max-width: 992px) {
    .karate-card {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-buttons {
        justify-content: center;
    }

    .karate-visual {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .karate-section {
        padding: 60px 0;
    }

    .kanji {
        font-size: 2.5rem;
    }

    .karate-info h3 {
        font-size: 1.5rem;
    }

    .badge {
        width: 150px;
        height: 150px;
    }

    .badge-kanji {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .karate-card {
        padding: 25px;
    }

    .kanji {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}
/*#endregion Karate Club Section */

/*#region Dark Mode Variables */
:root[data-theme="dark"] {
    /* Core Brand - Dark Mode Adjusted */
    --accent-color: #0b1ae9;
    --secondary-accent: #ff5252;
    /* Backgrounds - Dark Mode */
    --background-color: #0a0e1a;
    --surface-color: #111827;
    --surface-alt: #1a2332;
    /* Text - Dark Mode */
    --heading-color: #e5e9f0;
    --default-color: #9ca3af;
    --muted-color: #6b7280;
    --contrast-color: #ffffff;
    --nav-color: #f3f4f6;
}

/* Dark Mode Body */
body[data-theme="dark"] {
    background-color: var(--background-color);
    color: var(--default-color);
}

    /* Dark Mode Header */
    body[data-theme="dark"] .header {
        background-color: rgba(17, 24, 39, 0.95);
        border-color: rgba(0, 102, 255, 0.3);
    }

        body[data-theme="dark"] .header .logo h1 {
            background: linear-gradient(135deg, #fff 0%, #0066ff 50%, #fff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

    /* Dark Mode Navigation */
    body[data-theme="dark"] .navmenu a,
    body[data-theme="dark"] .navmenu a:focus {
        color: var(--nav-color);
    }

    body[data-theme="dark"] .navmenu > ul > li > a:before {
        background-color: var(--accent-color);
    }

    body[data-theme="dark"] .navmenu .dropdown ul {
        background-color: rgba(17, 24, 39, 0.98);
        color: var(--default-color);
    }

    /* Dark Mode Cards */
    body[data-theme="dark"] .service-card,
    body[data-theme="dark"] .value-card,
    body[data-theme="dark"] .info-card,
    body[data-theme="dark"] .policy-card,
    body[data-theme="dark"] .safety-card,
    body[data-theme="dark"] .policy-item-card,
    body[data-theme="dark"] .term-card,
    body[data-theme="dark"] .karate-card {
        background: rgba(17, 24, 39, 0.8);
        border-color: rgba(0, 102, 255, 0.3);
    }

        body[data-theme="dark"] .service-card:hover,
        body[data-theme="dark"] .value-card:hover,
        body[data-theme="dark"] .info-card:hover,
        body[data-theme="dark"] .policy-card:hover,
        body[data-theme="dark"] .term-card:hover {
            background: rgba(0, 102, 255, 0.15);
            box-shadow: 0 20px 50px rgba(0, 102, 255, 0.4);
        }

    /* Dark Mode Headings */
    body[data-theme="dark"] h1,
    body[data-theme="dark"] h2,
    body[data-theme="dark"] h3,
    body[data-theme="dark"] h4,
    body[data-theme="dark"] h5,
    body[data-theme="dark"] h6 {
        background: linear-gradient(135deg, #fff 0%, #0066ff 50%, #fff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    /* Dark Mode Hero Titles */
    body[data-theme="dark"] .hero-title,
    body[data-theme="dark"] .hero-subtitle {
        background: linear-gradient(135deg, #fff 0%, #0066ff 50%, #fff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    /* Dark Mode Descriptions */
    body[data-theme="dark"] .hero-description,
    body[data-theme="dark"] .description,
    body[data-theme="dark"] .achievement-description {
        color: rgba(229, 233, 240, 0.9);
    }

    /* Dark Mode Contact Form */
    body[data-theme="dark"] .php-email-form .form-control {
        background: rgba(17, 24, 39, 0.9);
        border-color: rgba(0, 102, 255, 0.4);
        color: var(--contrast-color);
    }

        body[data-theme="dark"] .php-email-form .form-control:focus {
            background: rgba(17, 24, 39, 0.95);
            border-color: #0066ff;
        }

    body[data-theme="dark"] .php-email-form .form-label {
        color: var(--heading-color);
    }

    /* Dark Mode Info Items */
    body[data-theme="dark"] .contact-item,
    body[data-theme="dark"] .info-item,
    body[data-theme="dark"] .goal-item,
    body[data-theme="dark"] .feature-item {
        background: rgba(17, 24, 39, 0.6);
        border-color: rgba(0, 102, 255, 0.3);
    }

        body[data-theme="dark"] .contact-item:hover,
        body[data-theme="dark"] .info-item:hover,
        body[data-theme="dark"] .goal-item:hover,
        body[data-theme="dark"] .feature-item:hover {
            background: rgba(0, 102, 255, 0.15);
        }

    /* Dark Mode Stats */
    body[data-theme="dark"] .stats-item p {
        color: rgba(229, 233, 240, 0.9);
    }

    /* Dark Mode Achievement Cards */
    body[data-theme="dark"] .achievement-card,
    body[data-theme="dark"] .success-card {
        background: rgba(17, 24, 39, 0.7);
        border-color: rgba(0, 102, 255, 0.3);
    }

        body[data-theme="dark"] .achievement-card h4,
        body[data-theme="dark"] .success-card h4 {
            background: linear-gradient(135deg, #fff 0%, #0066ff 50%, #fff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

    /* Dark Mode Pricing Cards */
    body[data-theme="dark"] .pricing-card {
        background: rgba(17, 24, 39, 0.8);
        border-color: rgba(0, 102, 255, 0.3);
    }

        body[data-theme="dark"] .pricing-card.highlight {
            border-color: rgba(0, 102, 255, 0.6);
            box-shadow: 0 20px 50px rgba(0, 102, 255, 0.3);
        }

    body[data-theme="dark"] .price-item {
        background: rgba(0, 102, 255, 0.1);
        border-color: rgba(0, 102, 255, 0.2);
    }

    body[data-theme="dark"] .total-price {
        background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(0, 212, 255, 0.15));
        border-color: rgba(0, 102, 255, 0.4);
    }

    /* Dark Mode Schedule Items */
    body[data-theme="dark"] .schedule-item {
        background: rgba(0, 102, 255, 0.1);
        border-color: rgba(0, 102, 255, 0.3);
    }

    /* Dark Mode Date Blocks */
    body[data-theme="dark"] .date-block {
        background: rgba(0, 102, 255, 0.1);
        border-color: rgba(0, 102, 255, 0.3);
    }

    /* Dark Mode Gallery */
    body[data-theme="dark"] .gallery-item {
        background: rgba(17, 24, 39, 0.8);
        border-color: rgba(0, 102, 255, 0.2);
    }

        body[data-theme="dark"] .gallery-item:hover {
            border-color: rgba(0, 102, 255, 0.4);
        }

    /* Dark Mode Footer */
    body[data-theme="dark"] .footer-hero {
        background: rgba(10, 14, 26, 0.95);
    }

    body[data-theme="dark"] .footer-about p,
    body[data-theme="dark"] .contact-item p {
        color: rgba(229, 233, 240, 0.9);
    }

    body[data-theme="dark"] .footer-quick-links ul li a {
        color: rgba(229, 233, 240, 0.9);
    }

        body[data-theme="dark"] .footer-quick-links ul li a:hover {
            color: var(--contrast-color);
        }

    body[data-theme="dark"] .copyright-content {
        background: linear-gradient(135deg, rgba(0, 102, 255, 0.3), rgba(0, 212, 255, 0.2));
    }

        body[data-theme="dark"] .copyright-content p,
        body[data-theme="dark"] .copyright-content span {
            color: rgba(229, 233, 240, 0.9);
        }

    /* Dark Mode Floating Buttons */
    body[data-theme="dark"] .floating-btn {
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    }

    body[data-theme="dark"] .floating-btn-tooltip {
        background: rgba(17, 24, 39, 0.98);
        border-color: rgba(0, 102, 255, 0.4);
    }

    body[data-theme="dark"] .mobile-buttons-container {
        background: rgba(17, 24, 39, 0.95);
        border-color: rgba(0, 102, 255, 0.4);
    }

    /* Dark Mode Scroll Top Button */
    body[data-theme="dark"] .scroll-top {
        background: linear-gradient(135deg, #0066ff, #00d4ff);
    }

    /* Dark Mode Policy Lists */
    body[data-theme="dark"] .policy-list li,
    body[data-theme="dark"] .safety-list li,
    body[data-theme="dark"] .sub-policy-list li {
        color: rgba(229, 233, 240, 0.9);
    }

    /* Dark Mode Highlights */
    body[data-theme="dark"] .policy-highlight,
    body[data-theme="dark"] .safety-highlight {
        background: linear-gradient(135deg, rgba(0, 102, 255, 0.15), rgba(0, 212, 255, 0.1));
    }

    body[data-theme="dark"] .policy-note {
        background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), rgba(255, 193, 7, 0.1));
    }

    /* Dark Mode Quick Links */
    body[data-theme="dark"] .quick-link-item {
        background: rgba(0, 102, 255, 0.1);
        border-color: rgba(0, 102, 255, 0.2);
    }

        body[data-theme="dark"] .quick-link-item:hover {
            background: rgba(0, 102, 255, 0.2);
            color: var(--contrast-color);
        }

    /* Dark Mode Swiper */
    body[data-theme="dark"] .swiper-button-next,
    body[data-theme="dark"] .swiper-button-prev {
        background: rgba(0, 102, 255, 0.2);
        border-color: rgba(0, 102, 255, 0.3);
    }

/* Dark Mode Mobile Navigation */
@media (max-width: 1199px) {
    body[data-theme="dark"] .navmenu ul {
        background-color: rgba(17, 24, 39, 0.98);
        border-color: rgba(0, 102, 255, 0.3);
    }
}

/* Dark Mode CTA Sections */
body[data-theme="dark"] .cta-content-wrapper,
body[data-theme="dark"] .appointment-content-wrapper,
body[data-theme="dark"] .safety-comes-first-content-wrapper {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.3), rgba(0, 212, 255, 0.2));
    border-color: rgba(0, 102, 255, 0.4);
}

/* Dark Mode Banners */
body[data-theme="dark"] .appointment-banner,
body[data-theme="dark"] .safety-comes-first-banner {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(0, 212, 255, 0.15));
}

/* Dark Mode Karate Section */
body[data-theme="dark"] .karate-card {
    background: rgba(17, 24, 39, 0.9);
    border-color: rgba(0, 102, 255, 0.3);
}

body[data-theme="dark"] .karate-info h3 {
    color: var(--heading-color);
}

body[data-theme="dark"] .feature {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15), rgba(0, 212, 255, 0.1));
}

    body[data-theme="dark"] .feature span {
        color: rgba(229, 233, 240, 0.9);
    }

/* Dark Mode Preloader */
body[data-theme="dark"] #preloader {
    background: rgba(10, 14, 26, 0.98);
}

/* Dark Mode Value Badges */
body[data-theme="dark"] .value-badge {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(0, 212, 255, 0.15));
}

/* Dark Mode Info Badges */
body[data-theme="dark"] .info-badge {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), rgba(255, 193, 7, 0.1));
}

/* Dark Mode Motto Section */
body[data-theme="dark"] .motto-section {
    background: rgba(0, 102, 255, 0.15);
    border-left-color: var(--accent-color);
}

    body[data-theme="dark"] .motto-section p {
        color: rgba(229, 233, 240, 0.9);
    }


body[data-theme="dark"] .info-card .info-text,
body[data-theme="dark"] .hero .content-col .content p,
body[data-theme="dark"] .hero .content-col .content .hero-features .feature-item span,
body[data-theme="dark"] .about-hero .hero-stats.horizontal-stats .stat-label,
body[data-theme="dark"] .about-hero .highlight-item span,
body[data-theme="dark"] .about-hero .contact-quick .contact-text span,
body[data-theme="dark"] .about-hero .contact-quick .contact-text a,
body[data-theme="dark"] .about-hero .feature-card p,
body[data-theme="dark"] .service-list li,
body[data-theme="dark"] .service-card .service-number,
body[data-theme="dark"] .service-card .service-content p,
body[data-theme="dark"] .karate-info p,
body[data-theme="dark"] .why-choose-us .about-content-wrapper .services-description,
body[data-theme="dark"] .about-me-hero .intro-text p,
body[data-theme="dark"] .about-me-hero .value-badge span,
body[data-theme="dark"] .value-description,
body[data-theme="dark"] .membership-hero .card-intro,
body[data-theme="dark"] .membership-hero .feature-item span,
body[data-theme="dark"] .membership-hero .day-badge span,
body[data-theme="dark"] .membership-hero .time-info span,
body[data-theme="dark"] .membership-hero .total-price span,
body[data-theme="dark"] .membership-hero .info-badge strong,
body[data-theme="dark"] .membership-hero .info-badge p,
body[data-theme="dark"] .membership-hero .payment-label,
body[data-theme="dark"] .membership-hero .payment-detail,
body[data-theme="dark"] .membership-hero .schedule-note p,
body[data-theme="dark"] .term-dates-hero .date-label,
body[data-theme="dark"] .term-dates-hero .date-display .day,
body[data-theme="dark"] .term-dates-hero .duration-badge span,
body[data-theme="dark"] .term-dates-hero .term-info-box p,
body[data-theme="dark"] .awards-hero .achievement-card p,
body[data-theme="dark"] .awards-hero .success-card p,
body[data-theme="dark"] .contact-hero .contact-info-section .info-header p,
body[data-theme="dark"] .contact-hero .contact-info-section .info-item .info-content p,
body[data-theme="dark"] .contact-hero .contact-form-wrapper .form-header p,
body[data-theme="dark"] .form-label,
body[data-theme="dark"] .quick-link-item,
body[data-theme="dark"] .index-item,
body[data-theme="dark"] .policy-note,
body[data-theme="dark"] .membership-hero .price-item .item-name {
    color: rgba(229, 233, 240, 0.9);
}

body[data-theme="dark"] .price-item .item-price,
body[data-theme="dark"] .feature-list .feature-item .fas,
body[data-theme="dark"] .membership-hero .feature-item strong,
body[data-theme="dark"] .membership-hero .day-badge .fas,
body[data-theme="dark"] .membership-hero .payment-amoun,
body[data-theme="dark"] .membership-hero .schedule-note .fas,
body[data-theme="dark"] .membership-hero .payment-amount,
body[data-theme="dark"] .total-price strong {
    color: rgba(0, 212, 255, 0.7);
}

body[data-theme="dark"] .membership-hero .card-header h3 {
    background: linear-gradient(135deg, #000 0%, #0066ff 50%, #000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body[data-theme="dark"] .hero .content-col .content h1,
body[data-theme="dark"] .hero-actions .contact-quick i,
body[data-theme="dark"] .about-hero .highlight-item i,
body[data-theme="dark"] .book-appointment-hero .appointment-banner .banner-text .hero-subtitle,
body[data-theme="dark"] .safety-comes-first .safety-comes-first-banner .banner-text .hero-subtitle,
body[data-theme="dark"] .about-hero .hero-stats.horizontal-stats .stat-number {
    background: linear-gradient(135deg, #ffffff 0%, #0066ff 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
/*#endregion Dark Mode Variables */

/*#region Dark Mode Toggle Button */
.dark-mode-toggle {
    background: transparent;
    border: 2px solid rgba(0, 102, 255, 0.3);
    color: var(--default-color);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
}

    .dark-mode-toggle:hover {
        background: rgba(0, 102, 255, 0.1);
        border-color: var(--accent-color);
        transform: scale(1.1);
    }

    .dark-mode-toggle i {
        font-size: 20px;
        transition: all 0.3s ease;
    }

body[data-theme="dark"] .dark-mode-toggle {
    border-color: rgba(0, 212, 255, 0.4);
    color: var(--contrast-color);
}

    body[data-theme="dark"] .dark-mode-toggle:hover {
        background: rgba(0, 212, 255, 0.2);
    }
/* Add smooth transition for theme changes */
body {
    transition: background-color 0.3s ease, color 0.3s ease;
}

* {
    transition: background-color 0.3s ease, border-color 0.3s ease;
}
/*#endregion Dark Mode Toggle Button */

/*#region RESPONSIVE STYLES */

@media (max-width: 1200px) {
    .membership-content-wrapper {
        padding: 50px 40px;
    }

    .trial-info {
        padding-right: 50px;
    }

    .trial-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .membership-hero .pricing-card {
        margin-bottom: 25px;
    }

    .trial-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .trial-icon {
        margin: 0 auto;
    }

    .trial-info {
        padding-right: 0;
    }

    .trial-features {
        grid-template-columns: 1fr;
    }

    .trial-actions {
        flex-direction: column;
    }

        .trial-actions a {
            width: 100%;
        }

    .book-appointment-hero .appointment-banner .banner-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        padding: 40px 30px;
    }

    .book-appointment-hero .appointment-banner .hero-actions {
        align-items: center;
    }

        .book-appointment-hero .appointment-banner .hero-actions .btn {
            max-width: 350px;
        }

    .hero .content-col .content .hero-features {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .membership-content-wrapper {
        padding: 40px 30px;
    }

    .membership-hero .hero-title {
        font-size: 2rem;
    }

    .membership-hero .payment-amount {
        font-size: 2rem;
    }

    .membership-hero .total-price strong {
        font-size: 1.8rem;
    }

    .trial-offer-card {
        padding: 40px 30px;
    }

    .trial-badge {
        top: 20px;
        right: 20px;
        padding: 10px 20px;
        font-size: 0.65rem;
    }

    .trial-icon {
        width: 100px;
        height: 100px;
    }

        .trial-icon i {
            font-size: 3rem;
        }

    .trial-price-amount {
        font-size: 3rem;
    }

    .hero-trial-badge {
        padding: 18px 20px;
    }

    .trial-badge-content i {
        font-size: 2rem;
    }

    .trial-badge-price {
        font-size: 1.1rem;
    }

    .hero .content-col .content {
        padding-right: 0;
        margin-bottom: 3rem;
        text-align: center;
    }

        .hero .content-col .content h1,
        .hero .content-col .content h2,
        .hero .content-col .content p {
            text-align: center;
        }

        .hero .content-col .content .hero-cta {
            justify-content: center;
        }

    .appointment-content-wrapper {
        padding: 30px 20px;
    }

    .book-appointment-hero .appointment-banner .banner-content {
        padding: 40px 25px;
        gap: 25px;
    }

    .book-appointment-hero .appointment-banner .banner-text .hero-subtitle {
        font-size: 1.75rem;
    }

    .book-appointment-hero .appointment-banner .hero-actions .btn {
        padding: 14px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .membership-content-wrapper {
        padding: 30px 20px;
    }

    .membership-hero .card-header {
        padding: 25px 20px;
    }

    .membership-hero .card-body {
        padding: 25px 20px;
    }

    .membership-hero .popular-badge {
        font-size: 0.65rem;
        padding: 6px 40px;
    }

    .membership-hero .hero-actions {
        flex-direction: column;
    }

        .membership-hero .hero-actions .btn {
            width: 100%;
        }

    .trial-offer-card {
        padding: 30px 20px;
    }

    .trial-badge {
        position: static;
        margin: 0 auto 20px;
        width: fit-content;
    }

    .trial-icon {
        width: 80px;
        height: 80px;
    }

        .trial-icon i {
            font-size: 2.5rem;
        }

    .trial-title {
        font-size: 1.5rem;
    }

    .trial-subtitle {
        font-size: 1.3rem;
    }

    .trial-description {
        font-size: 1rem;
    }

    .trial-price-amount {
        font-size: 2.5rem;
    }

    .btn-trial-primary,
    .btn-trial-secondary {
        padding: 16px 30px;
        font-size: 1rem;
    }

    .hero-trial-badge {
        padding: 15px 18px;
    }

    .trial-badge-content {
        gap: 15px;
    }

        .trial-badge-content i {
            font-size: 1.8rem;
        }

    .trial-badge-title {
        font-size: 0.9rem;
    }

    .trial-badge-price {
        font-size: 1rem;
    }

    .trial-badge-note {
        font-size: 0.75rem;
    }

    .hero .content-col .content .hero-cta {
        flex-direction: column;
    }

        .hero .content-col .content .hero-cta .btn {
            width: 100%;
        }

    .hero .content-col .content .hero-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .cta-trial-offer {
        flex-direction: column;
        text-align: center;
        padding: 18px 20px;
    }

        .cta-trial-offer i {
            font-size: 1.8rem;
        }

    .book-appointment-hero .appointment-banner .banner-content {
        padding: 30px 20px;
        gap: 20px;
    }

    .book-appointment-hero .appointment-banner .hero-actions {
        gap: 12px;
    }
}

/*#endregion RESPONSIVE STYLES */

/*#region ANIMATIONS */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}
/*#endregion ANIMATIONS */
