/* ================================================================
   MAKADI SPAS — CREATIVE PREMIUM OVERRIDES v2
   Palette: Gold #B07D35 | Light Gold #D2B57B | Espresso #28231D | Cream #F9F6F0
   ================================================================ */

:root {
    --gold-gradient: linear-gradient(135deg, #D2B57B 0%, #B07D35 50%, #8C5E1E 100%);
    --gold-shine: linear-gradient(90deg, transparent, rgba(210, 181, 123, 0.55), transparent);
    --cream: #F9F6F0;
    --espresso: #28231D;
    --gold: #B07D35;
    --gold-light: #D2B57B;
}

/* ────────────────────────────────────────────────
   1. KILL ALL REMAINING GREENS — GLOBAL OVERRIDE
   ──────────────────────────────────────────────── */
:root {
    --green: #B07D35 !important;
    --green-dark: #28231D !important;
    --green-light: #F9F6F0 !important;
    --black: #28231D !important;
    --text: #28231D !important;
    --border: #E8E3DA !important;
}

/* Any stray green color class or inline reference */
[style*="color: #00aa6c"],
[style*="color:#00aa6c"],
[style*="color: #144540"],
[style*="color:#144540"],
[style*="background: #144540"],
[style*="background:#144540"],
[style*="background-color: #144540"],
[style*="background: linear-gradient(135deg, #144540"],
[style*="background: linear-gradient(135deg, rgba(0, 170"] {
    color: var(--gold) !important;
    background: var(--espresso) !important;
}

/* ────────────────────────────────────────────────
   2. HERO SECTION — CINEMATIC WARM TONE
   ──────────────────────────────────────────────── */
.hero-section .hero-grid {
    background: linear-gradient(160deg,
            rgba(40, 35, 29, 0.94) 0%,
            rgba(90, 60, 20, 0.62) 50%,
            rgba(40, 35, 29, 0.90) 100%) !important;
    background-image: none !important;
    z-index: 1 !important;
}

.hero-section::before {
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.48) 0%,
            rgba(0, 0, 0, 0.18) 50%,
            rgba(0, 0, 0, 0.68) 100%) !important;
}

.hero-section::after {
    background:
        radial-gradient(ellipse 60% 50% at 85% 15%, rgba(210, 181, 123, 0.20) 0%, transparent 65%),
        radial-gradient(ellipse 40% 60% at 15% 80%, rgba(176, 125, 53, 0.10) 0%, transparent 60%) !important;
    z-index: 2 !important;
}

/* Hero badge shimmer */
.hero-badge {
    position: relative;
    overflow: hidden;
    letter-spacing: 3px !important;
    text-transform: uppercase;
    font-size: 11px !important;
    background: rgba(176, 125, 53, 0.18) !important;
    border: 1px solid rgba(176, 125, 53, 0.5) !important;
    color: #D2B57B !important;
}

.hero-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-shine);
    animation: mkShine 3s ease-in-out infinite;
}

@keyframes mkShine {
    0% {
        left: -100%;
    }

    40% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.hero-title {
    font-size: clamp(1.6rem, 6vw, 4rem) !important;
    font-weight: 600 !important;
    letter-spacing: -0.02em !important;
    line-height: 1.1 !important;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5) !important;
}

.hero-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--gold-gradient);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Trust bar glassmorphism */
.hero-trust {
    background: rgba(255, 255, 255, 0.06) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 20px !important;
}

/* ────────────────────────────────────────────────
   3. SECTION SHAPES — DIAGONAL CLIP-PATHS
   ──────────────────────────────────────────────── */

/* About — slanted top edge (cream background) */
.home-about {
    background: var(--cream) !important;
    clip-path: polygon(0 60px, 100% 0, 100% calc(100% - 60px), 0 100%);
    padding: 140px 0 !important;
    position: relative;
    z-index: 2;
}

/* Features — reverse slant (white) */
.home-features {
    background: #ffffff !important;
    clip-path: polygon(0 0, 100% 60px, 100% 100%, 0 calc(100% - 60px));
    padding: 140px 0 !important;
    position: relative;
    z-index: 3;
    margin-top: -60px;
}

/* Services — wave-like with both ends slanted */
.home-services {
    background: var(--espresso) !important;
    clip-path: polygon(0 60px, 100% 0, 100% calc(100% - 60px), 0 100%);
    padding: 150px 0 !important;
    position: relative;
    z-index: 4;
    margin-top: -60px;
}

/* All text in dark services section */
.home-services h1,
.home-services h2,
.home-services h3,
.home-services h4,
.home-services p,
.home-services span,
.home-services .chp-title,
.home-services .tg-section-label {
    color: #F9F6F0 !important;
}

.home-services .tg-section-label {
    color: #D2B57B !important;
}

.home-services .tg-divider,
.home-services .chp-divider {
    background: var(--gold-gradient) !important;
}

/* Packages — cream again */
.home-packages {
    background: var(--cream) !important;
    clip-path: polygon(0 0, 100% 60px, 100% 100%, 0 calc(100% - 60px));
    padding: 140px 0 !important;
    position: relative;
    z-index: 5;
    margin-top: -60px;
}

/* Testimonials — plain white */
.home-testimonials {
    background: #fff !important;
    clip-path: polygon(0 60px, 100% 0, 100% 100%, 0 100%);
    padding: 130px 0 80px !important;
    position: relative;
    z-index: 6;
    margin-top: -60px;
}

/* Generic section top accent line */
.home-about::before,
.home-features::before,
.home-packages::before {
    content: '';
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--gold-gradient);
    border-radius: 2px;
    z-index: 5;
}

/* ────────────────────────────────────────────────
   4. SECTION DIVIDERS & HEADINGS
   ──────────────────────────────────────────────── */
.tg-divider,
.chp-divider {
    width: 60px !important;
    height: 2px !important;
    background: var(--gold-gradient) !important;
    border-radius: 2px !important;
    margin: 14px 0 22px !important;
    position: relative;
    overflow: hidden;
}

.tg-divider::after,
.chp-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    animation: divShine 2.5s ease-in-out infinite 1s;
}

@keyframes divShine {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.tg-section-label {
    color: var(--gold) !important;
    letter-spacing: 3px !important;
    font-size: 10px !important;
}

/* ────────────────────────────────────────────────
   5. CARDS — GOLD HOVER REVEAL
   ──────────────────────────────────────────────── */
.trip-card,
.feature-card,
.tg-glass-card,
.tg-value-card,
.massage-grid .m-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px !important;
    transition: transform .4s cubic-bezier(.34, 1.56, .64, 1), box-shadow .4s ease !important;
}

.massage-grid .m-card {
    background: #fff !important;
    border-radius: 20px 4px 20px 4px !important;
    border: 1px solid rgba(176, 125, 53, 0.15) !important;
    box-shadow: 0 10px 30px rgba(40, 35, 29, 0.04) !important;
}

.trip-card::before,
.feature-card::before,
.tg-value-card::before,
.massage-grid .m-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s cubic-bezier(.34, 1.56, .64, 1);
    z-index: 5;
    border-radius: 16px 16px 0 0;
}

.massage-grid .m-card::before {
    border-radius: 20px 4px 0 0 !important;
}

.trip-card:hover::before,
.feature-card:hover::before,
.tg-value-card:hover::before,
.massage-grid .m-card:hover::before {
    transform: scaleX(1);
}

.trip-card:hover,
.feature-card:hover,
.massage-grid .m-card:hover {
    transform: translateY(-8px) scale(1.01) !important;
    box-shadow: 0 24px 60px rgba(176, 125, 53, 0.18) !important;
    border-color: rgba(176, 125, 53, 0.3) !important;
}

.massage-grid .m-card .m-card-icon {
    width: 56px !important;
    height: 56px !important;
    background: linear-gradient(135deg, rgba(210, 181, 123, 0.15), rgba(176, 125, 53, 0.06)) !important;
    border: 1px solid rgba(176, 125, 53, 0.25) !important;
    border-radius: 16px 4px 16px 4px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 24px !important;
    color: #B07D35 !important;
    transition: all 0.4s ease !important;
}

.massage-grid .m-card:hover .m-card-icon {
    background: linear-gradient(135deg, #D2B57B, #B07D35) !important;
    color: #fff !important;
    transform: rotate(5deg) scale(1.05) !important;
}

.massage-grid .m-card .m-card-title {
    font-size: 18px !important;
    font-weight: 800 !important;
    letter-spacing: -0.3px !important;
}

.massage-grid .m-card .m-card-book-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    width: 100% !important;
    background: linear-gradient(135deg, #D2B57B 0%, #B07D35 100%) !important;
    color: #fff !important;
    padding: 12px 20px !important;
    border-radius: 50px !important;
    font-weight: 800 !important;
    font-size: 14px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(176, 125, 53, 0.3) !important;
    border: none !important;
    margin-top: 10px !important;
}

.massage-grid .m-card .m-card-book-btn:hover {
    background: linear-gradient(135deg, #B07D35 0%, #8C5E1E 100%) !important;
    box-shadow: 0 8px 25px rgba(176, 125, 53, 0.4) !important;
    transform: translateY(-2px) !important;
}


/* ────────────────────────────────────────────────
   6. BUTTONS — GOLD GRADIENT
   ──────────────────────────────────────────────── */
.btn-book {
    background: var(--gold-gradient) !important;
    border-color: transparent !important;
    color: #fff !important;
    box-shadow: 0 4px 20px rgba(176, 125, 53, 0.35) !important;
    font-weight: 800 !important;
    letter-spacing: .5px !important;
}

.btn-book:hover {
    background: linear-gradient(135deg, #B07D35 0%, #8C5E1E 100%) !important;
    box-shadow: 0 8px 30px rgba(176, 125, 53, 0.45) !important;
    transform: translateY(-3px) !important;
    color: #fff !important;
}

/* ────────────────────────────────────────────────
   7. HEADER — WARM GLASS PILL
   ──────────────────────────────────────────────── */
.spa-header {
    direction: ltr !important;
    /* Force LTR even if translated to Arabic */
    background: rgba(252, 250, 247, 0.92) !important;
    border: 1px solid rgba(176, 125, 53, 0.15) !important;
    box-shadow: 0 8px 40px rgba(40, 35, 29, 0.08), 0 2px 0 rgba(176, 125, 53, 0.10) !important;
}

.spa-header.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    border-bottom: 2px solid rgba(176, 125, 53, 0.12) !important;
    box-shadow: 0 4px 24px rgba(40, 35, 29, 0.08) !important;
}

.main-navigation a {
    position: relative;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width .3s ease;
}

.main-navigation a:hover::after,
.main-navigation .current-menu-item>a::after {
    width: 70%;
}

/* ────────────────────────────────────────────────
   8. ABOUT IMAGE — ASYMMETRIC LUXURY FRAME
   ──────────────────────────────────────────────── */
.about-image img {
    border-radius: 20px 4px 20px 4px !important;
    box-shadow: 0 30px 70px rgba(40, 35, 29, 0.25), 0 0 0 6px rgba(176, 125, 53, 0.12) !important;
}

.experience-badge {
    background: var(--gold-gradient) !important;
    border-radius: 16px 4px 16px 4px !important;
    box-shadow: 0 20px 50px rgba(176, 125, 53, 0.4) !important;
}

/* ────────────────────────────────────────────────
   9. ICON BOXES — WARM GOLD TONE
   ──────────────────────────────────────────────── */
.af-icon,
.tg-value-icon,
.tg-contact-info-card .icon,
.feature-icon {
    background: linear-gradient(135deg, rgba(210, 181, 123, .15) 0%, rgba(176, 125, 53, .06) 100%) !important;
    border: 1px solid rgba(176, 125, 53, .2) !important;
    color: var(--gold) !important;
    border-radius: 12px !important;
    transition: background .3s ease, transform .3s ease !important;
}

/* ────────────────────────────────────────────────
   10. PAGE HERO — WARM CREAM
   ──────────────────────────────────────────────── */
.tg-page-hero {
    background: linear-gradient(135deg, #FDF9F3 0%, #F5EFE3 50%, #FDF9F3 100%) !important;
    border-bottom: 1px solid rgba(176, 125, 53, .12) !important;
}

.tg-page-hero::before {
    background:
        radial-gradient(ellipse 70% 60% at 10% 50%, rgba(176, 125, 53, .07) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 90% 30%, rgba(210, 181, 123, .05) 0%, transparent 70%) !important;
}

.tg-page-hero::after {
    background-image: radial-gradient(circle, rgba(176, 125, 53, .06) 1px, transparent 1px) !important;
}

.tg-page-hero h1,
.tg-page-hero h2 {
    color: #28231D !important;
    text-shadow: none !important;
}

.tg-page-hero p,
.tg-page-hero span:not(.tg-badge),
.tg-page-hero .breadcrumb,
.tg-page-hero .breadcrumb a {
    color: rgba(40, 35, 29, 0.7) !important;
}

.tg-page-hero .breadcrumb .current,
.tg-page-hero .breadcrumb a:hover {
    color: #B07D35 !important;
}

/* Filter buttons */
.tg-filter-btn.active,
.tg-filter-btn:hover {
    background: var(--gold-gradient) !important;
    color: #fff !important;
    border-color: transparent !important;
    box-shadow: 0 4px 16px rgba(176, 125, 53, .3) !important;
}

/* ────────────────────────────────────────────────
   11. FOOTER & CTA — PREMIUM ESPRESSO
   ──────────────────────────────────────────────── */
.footer-cta-premium {
    background: linear-gradient(135deg, rgba(28, 24, 20, 0.96), rgba(40, 35, 29, 0.99)), url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z" fill="rgba(210,181,123,0.03)" fill-rule="evenodd"/></svg>');
    padding: 90px 20px;
    text-align: center;
    border-top: 1px solid rgba(176, 125, 53, 0.15);
    border-bottom: 2px solid rgba(176, 125, 53, 0.3);
    position: relative;
    z-index: 10;
}

.footer-cta-premium .cta-premium-content {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-cta-premium .cta-title {
    color: #fff !important;
    font-size: clamp(32px, 5vw, 48px) !important;
    font-weight: 900 !important;
    margin-bottom: 20px !important;
    line-height: 1.15 !important;
    letter-spacing: -1px;
}

.footer-cta-premium .cta-desc {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 18px !important;
    margin-bottom: 40px !important;
}

.footer-cta-premium .btn-book {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 18px 42px !important;
    font-size: 17px !important;
    border-radius: 50px !important;
}

.site-footer {
    background: linear-gradient(160deg, #1C1814 0%, #28231D 60%, #1C1814 100%) !important;
    position: relative;
    overflow: hidden;
    padding-top: 80px !important;
    direction: ltr !important;
    text-align: left !important;
}

.site-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: var(--gold-gradient);
    border-radius: 0 0 2px 2px;
}

.footer-container {
    display: grid !important;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr !important;
    gap: 40px !important;
    padding-bottom: 60px !important;
    direction: ltr !important;
}

.footer-logo img {
    filter: brightness(0) invert(1) !important;
    opacity: 0.9;
}

.footer-about-text {
    color: rgba(255, 255, 255, 0.6) !important;
    line-height: 1.8 !important;
    margin-bottom: 25px !important;
}

.footer-title {
    color: var(--gold) !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    margin-bottom: 25px !important;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 12px;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold-gradient);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px !important;
}

.footer-links a,
.footer-links.contact-info li {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 15px !important;
    text-decoration: none;
}

.footer-links.contact-info i {
    color: var(--gold) !important;
    width: 20px;
    text-align: center;
    margin-right: 10px;
}

.footer-links a {
    position: relative;
    transition: color .3s ease, padding-left .3s ease !important;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 1px;
    background: var(--gold-gradient);
    transition: width .3s ease;
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-links a:hover {
    color: #D2B57B !important;
    padding-left: 4px !important;
}

.footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-social a {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 38px !important;
    height: 38px !important;
    border-radius: 8px !important;
    border: 1px solid rgba(176, 125, 53, .3) !important;
    background: rgba(176, 125, 53, .05) !important;
    color: var(--gold-light) !important;
    transition: all .3s cubic-bezier(.34, 1.56, .64, 1) !important;
}

.footer-social a:hover {
    background: var(--gold-gradient) !important;
    border-color: transparent !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 20px rgba(176, 125, 53, .3) !important;
    color: #fff !important;
}

.footer-bottom {
    border-top: 1px solid rgba(176, 125, 53, .15) !important;
    background: rgba(0, 0, 0, .2) !important;
    direction: ltr !important;
    text-align: left !important;
}

.footer-bottom .container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 20px 15px !important;
    flex-wrap: wrap;
    gap: 15px;
    direction: ltr !important;
}

.footer-bottom p {
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 14px !important;
}

.footer-bottom a {
    color: var(--gold-light) !important;
    text-decoration: none;
}

@media (max-width: 991px) {
    .footer-container {
        grid-template-columns: 1fr 1fr !important;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links.contact-info i {
        margin-right: 5px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom .container {
        flex-direction: column !important;
        justify-content: center !important;
        text-align: center !important;
    }
}

/* ────────────────────────────────────────────────
   12. FORM INPUTS — WARM FOCUS
   ──────────────────────────────────────────────── */
.tg-form-group input:focus,
.tg-form-group select:focus,
.tg-form-group textarea:focus {
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 4px rgba(176, 125, 53, .10) !important;
    background: #FFFDF9 !important;
}

.tg-form-group label span.required {
    color: var(--gold) !important;
}

/* ────────────────────────────────────────────────
   13. TIMELINE YEAR BADGE
   ──────────────────────────────────────────────── */
.tg-timeline-year {
    background: var(--gold-gradient) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 6px 20px rgba(176, 125, 53, .3) !important;
}

/* ────────────────────────────────────────────────
   14. SCROLL INDICATOR
   ──────────────────────────────────────────────── */
.hero-scroll-indicator .scroll-wheel {
    background-color: var(--gold) !important;
}

.hero-scroll-indicator a:hover .scroll-mouse {
    border-color: var(--gold) !important;
}

/* ────────────────────────────────────────────────
   15. MOBILE
   ──────────────────────────────────────────────── */
@media (max-width: 768px) {

    .home-about,
    .home-features,
    .home-services,
    .home-packages,
    .home-testimonials {
        clip-path: polygon(0 30px, 100% 0, 100% calc(100% - 30px), 0 100%) !important;
        margin-top: -30px;
        padding: 100px 0 !important;
    }
}

/* ────────────────────────────────────────────────
   16. CUSTOM SCROLLBAR & PROGRESS
   ──────────────────────────────────────────────── */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #1C1814;
    border-left: 1px solid rgba(176, 125, 53, 0.15);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #D2B57B 0%, #B07D35 50%, #8C5E1E 100%);
    border-radius: 12px;
    border: 3px solid #1C1814;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #D2B57B 0%, #B07D35 100%);
    border: 2px solid #1C1814;
}

.mk-scroll-progress {
    position: fixed;
    right: 25px;
    bottom: 95px;
    width: 54px;
    height: 54px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(40, 35, 29, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(176, 125, 53, 0.2);
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mk-scroll-progress.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
}

.mk-scroll-progress:hover {
    box-shadow: 0 12px 40px rgba(176, 125, 53, 0.25), 0 0 0 1px rgba(176, 125, 53, 0.4);
    transform: translateY(-4px) scale(1.05);
}

.mk-progress-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.mk-progress-bg {
    fill: none;
    stroke: rgba(176, 125, 53, 0.15);
    stroke-width: 4;
}

.mk-progress-bar {
    fill: none;
    stroke: url(#gold-grad);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 289;
    /* 2 * pi * r (r=46 -> 289) */
    stroke-dashoffset: 289;
    transition: stroke-dashoffset 0.1s linear;
}

.mk-progress-text {
    font-size: 12px;
    font-weight: 800;
    color: #D2B57B;
    font-family: 'Alexandria', sans-serif;
    letter-spacing: 0px;
    margin-top: 2px;
}

/* Hide original scroll button */
#scroll-to-top.btn-scroll {
    display: none !important;
}