/* =========================================================
   ELITEWEBS
   Premium Maroon / White Design System
========================================================= */

:root {

    --primary: #641b2e;
    --primary-dark: #42101d;
    --primary-light: #f8edf0;
    --primary-soft: #fcf5f7;

    --white: #ffffff;
    --black: #171317;

    --heading: #242024;
    --text: #4f484d;
    --muted: #777078;

    --border: #ebe4e7;

    --shadow-sm:
        0 8px 25px rgba(35, 15, 22, .05);

    --shadow-md:
        0 18px 50px rgba(35, 15, 22, .08);

    --shadow-lg:
        0 30px 80px rgba(35, 15, 22, .12);

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;

    --transition:
        all .35s cubic-bezier(.22, 1, .36, 1);

}


/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}


body {

    margin: 0;

    font-family:
        'DM Sans',
        sans-serif;

    color: var(--text);

    background: var(--white);

    overflow-x: hidden;

    line-height: 1.6;

}


img {

    max-width: 100%;

    height: auto;

    display: block;

}


a {

    text-decoration: none;

}


button,
a {

    -webkit-tap-highlight-color: transparent;

}


h1,
h2,
h3,
h4,
h5,
h6 {

    font-family:
        'Plus Jakarta Sans',
        sans-serif;

    color: var(--heading);

}


p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   SELECTION
========================================================= */

::selection {

    background: var(--primary);

    color: var(--white);

}


/* =========================================================
   CONTAINER
========================================================= */

.container {

    width: 100%;

}


/* =========================================================
   PRELOADER
========================================================= */

#preloader {

    position: fixed;

    inset: 0;

    z-index: 99999;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--white);

    transition:
        opacity .6s ease,
        visibility .6s ease;

}


#preloader.loaded {

    opacity: 0;

    visibility: hidden;

}


.loader-wrapper {

    text-align: center;

}


.loader-logo {

    font-family:
        'Plus Jakarta Sans',
        sans-serif;

    font-size: 28px;

    font-weight: 800;

    color: var(--primary);

    margin-bottom: 20px;

    animation: loaderPulse 1.5s ease-in-out infinite;

}


.loader {

    width: 48px;

    height: 48px;

    border-radius: 50%;

    border: 4px solid var(--primary-light);

    border-top-color: var(--primary);

    animation:
        loaderSpin .8s linear infinite;

}


@keyframes loaderSpin {

    to {
        transform: rotate(360deg);
    }

}


@keyframes loaderPulse {

    0%,
    100% {
        opacity: .55;
        transform: scale(.96);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }

}


/* =========================================================
   NAVBAR
========================================================= */

.site-navbar {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 1000;

    background:
        rgba(255,255,255,.94);

    backdrop-filter:
        blur(14px);

    -webkit-backdrop-filter:
        blur(14px);

    border-bottom:
        1px solid transparent;

    transition: var(--transition);

}


.site-navbar.scrolled {

    background:
        rgba(255,255,255,.98);

    border-bottom-color:
        var(--border);

    box-shadow:
        0 10px 35px rgba(25,10,15,.06);

}


.navbar-brand {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    font-family:
        'Plus Jakarta Sans',
        sans-serif;

    font-size: 25px;

    font-weight: 800;

    color: var(--primary) !important;

    letter-spacing: -.5px;

}


.logo-mark {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--white);

    background:
        linear-gradient(
            135deg,
            var(--primary),
            #8c3049
        );

    border-radius: 11px;

    font-size: 19px;

    box-shadow:
        0 8px 20px rgba(100,27,46,.18);

}


.nav-link {

    position: relative;

    color: #332c31 !important;

    font-weight: 600;

    padding:
        28px 12px !important;

    transition: var(--transition);

}


.nav-link::after {

    content: "";

    position: absolute;

    left: 12px;

    right: 12px;

    bottom: 18px;

    height: 2px;

    border-radius: 5px;

    background: var(--primary);

    transform:
        scaleX(0);

    transform-origin:
        center;

    transition: var(--transition);

}


.nav-link:hover,
.nav-link.active {

    color: var(--primary) !important;

}


.nav-link:hover::after,
.nav-link.active::after {

    transform:
        scaleX(1);

}


.dropdown-menu {

    padding: 10px;

    border:
        1px solid var(--border) !important;

    border-radius: 14px;

    box-shadow:
        var(--shadow-md) !important;

    animation:
        dropdownReveal .25s ease both;

}


@keyframes dropdownReveal {

    from {

        opacity: 0;

        transform:
            translateY(8px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


.dropdown-item {

    padding:
        10px 13px;

    border-radius: 8px;

    font-weight: 600;

    color: var(--text);

    transition: var(--transition);

}


.dropdown-item:hover {

    background:
        var(--primary-light);

    color:
        var(--primary);

    transform:
        translateX(4px);

}


.navbar-toggler {

    border: none !important;

    box-shadow: none !important;

}


/* =========================================================
   BUTTONS
========================================================= */

.btn-main,
.btn-outline-main,
.btn-white {

    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    min-height: 50px;

    padding:
        13px 24px;

    border-radius:
        var(--radius-sm);

    font-weight: 700;

    transition: var(--transition);

    overflow: hidden;

}


.btn-main {

    color: var(--white);

    background:
        linear-gradient(
            135deg,
            var(--primary),
            #7e2940
        );

    border:
        1px solid var(--primary);

    box-shadow:
        0 10px 25px rgba(100,27,46,.15);

}


.btn-main::before,
.btn-white::before {

    content: "";

    position: absolute;

    top: 0;

    left: -110%;

    width: 80%;

    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.25),
            transparent
        );

    transform:
        skewX(-20deg);

    transition:
        left .65s ease;

}


.btn-main:hover::before,
.btn-white:hover::before {

    left: 130%;

}


.btn-main:hover {

    color: var(--white);

    transform:
        translateY(-4px);

    box-shadow:
        0 18px 35px rgba(100,27,46,.23);

}


.btn-outline-main {

    color: var(--primary);

    background: var(--white);

    border:
        1px solid var(--primary);

}


.btn-outline-main:hover {

    color: var(--white);

    background: var(--primary);

    transform:
        translateY(-4px);

}


.btn-white {

    color: var(--primary);

    background: var(--white);

    border: 1px solid var(--white);

}


.btn-white:hover {

    color: var(--primary);

    transform:
        translateY(-4px);

    box-shadow:
        0 15px 35px rgba(0,0,0,.16);

}


/* =========================================================
   HERO
========================================================= */

.hero-section {

    position: relative;

    min-height: 100vh;

    display: flex;

    align-items: center;

    padding:
        155px 0 100px;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 90% 20%,
            rgba(100,27,46,.12),
            transparent 27%
        ),

        radial-gradient(
            circle at 10% 80%,
            rgba(100,27,46,.06),
            transparent 25%
        ),

        linear-gradient(
            135deg,
            #ffffff 50%,
            #f9eef1
        );

}


.hero-section::before {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    border:
        1px solid rgba(100,27,46,.08);

    border-radius: 50%;

    right: -180px;

    top: -100px;

    animation:
        heroRotate 18s linear infinite;

}


.hero-section::after {

    content: "";

    position: absolute;

    width: 280px;

    height: 280px;

    border:
        1px solid rgba(100,27,46,.08);

    border-radius: 50%;

    left: -130px;

    bottom: -100px;

    animation:
        heroRotate 15s linear infinite reverse;

}


@keyframes heroRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding:
        8px 14px;

    border-radius:
        50px;

    color: var(--primary);

    background:
        var(--primary-light);

    border:
        1px solid rgba(100,27,46,.08);

    font-size: 13px;

    font-weight: 800;

    margin-bottom: 20px;

    animation:
        fadeUp .8s ease both;

}


.hero-badge i {

    animation:
        sparkle 1.7s ease-in-out infinite;

}


@keyframes sparkle {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }

    50% {
        transform: scale(1.2) rotate(12deg);
    }

}


.hero-title {

    max-width: 850px;

    margin-bottom: 25px;

    font-size:
        clamp(42px, 6vw, 76px);

    line-height: 1.07;

    font-weight: 800;

    letter-spacing: -3px;

    animation:
        fadeUp .9s .1s ease both;

}


.hero-title span {

    color: var(--primary);

    position: relative;

}


.hero-title span::after {

    content: "";

    position: absolute;

    left: 0;

    right: 0;

    bottom: -4px;

    height: 5px;

    background:
        var(--primary);

    border-radius: 10px;

    transform-origin: left;

    animation:
        lineGrow 1.2s .7s ease both;

}


@keyframes lineGrow {

    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }

}


.hero-description {

    max-width: 690px;

    color: var(--muted);

    font-size: 18px;

    line-height: 1.85;

    margin-bottom: 30px;

    animation:
        fadeUp .9s .2s ease both;

}


.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 13px;

    animation:
        fadeUp .9s .3s ease both;

}





/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {

    position: relative;

    min-height: 510px;

}


.hero-orbit {

    position: absolute;

    width: 440px;

    height: 440px;

    border:
        1px dashed rgba(100,27,46,.20);

    border-radius: 50%;

    top: 35px;

    left: 50%;

    transform:
        translateX(-50%);

    animation:
        orbitRotate 25s linear infinite;

}


@keyframes orbitRotate {

    from {
        transform:
            translateX(-50%)
            rotate(0);
    }

    to {
        transform:
            translateX(-50%)
            rotate(360deg);
    }

}


.floating-card {

    position: absolute;

    background: rgba(255,255,255,.94);

    backdrop-filter:
        blur(10px);

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-md);

    padding: 22px;

    box-shadow:
        var(--shadow-lg);

    z-index: 2;

}


.floating-card.one {

    width: 290px;

    top: 65px;

    right: 20px;

    animation:
        floatOne 5s ease-in-out infinite;

}


.floating-card.two {

    width: 245px;

    left: 5px;

    bottom: 70px;

    animation:
        floatTwo 5s 1s ease-in-out infinite;

}


.floating-card.three {

    width: 215px;

    right: 55px;

    bottom: 5px;

    animation:
        floatThree 5s 1.8s ease-in-out infinite;

}


@keyframes floatOne {

    0%,
    100% {
        transform:
            translateY(0)
            rotate(0);
    }

    50% {
        transform:
            translateY(-18px)
            rotate(1deg);
    }

}


@keyframes floatTwo {

    0%,
    100% {
        transform:
            translateY(0)
            rotate(0);
    }

    50% {
        transform:
            translateY(14px)
            rotate(-1deg);
    }

}


@keyframes floatThree {

    0%,
    100% {
        transform:
            translateY(0)
            rotate(0);
    }

    50% {
        transform:
            translateY(-12px)
            rotate(1deg);
    }

}


.card-icon {

    width: 52px;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--primary);

    background:
        var(--primary-light);

    border-radius:
        13px;

    font-size: 23px;

    margin-bottom: 15px;

}


.floating-card h5 {

    font-weight: 800;

    margin-bottom: 7px;

}


.floating-card p {

    color: var(--muted);

    font-size: 14px;

}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.section {

    padding:
        105px 0;

}


.section-light {

    background:
        #fcf9fa;

}


.section-label {

    display: inline-block;

    color: var(--primary);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;

}


.section-title {

    margin-top: 10px;

    margin-bottom: 20px;

    font-size:
        clamp(32px, 4vw, 46px);

    line-height: 1.2;

    font-weight: 800;

    letter-spacing: -1.5px;

}


.section-description {

    color: var(--muted);

    line-height: 1.85;

}


/* =========================================================
   TECH SLIDER
========================================================= */

.tech-wrapper {

    position: relative;

    overflow: hidden;

    width: 100%;

}


.tech-wrapper::before,
.tech-wrapper::after {

    content: "";

    position: absolute;

    top: 0;

    bottom: 0;

    width: 100px;

    z-index: 2;

    pointer-events: none;

}


.tech-wrapper::before {

    left: 0;

    background:
        linear-gradient(
            to right,
            #fff,
            transparent
        );

}


.tech-wrapper::after {

    right: 0;

    background:
        linear-gradient(
            to left,
            #fff,
            transparent
        );

}


.tech-track {

    display: flex;

    width: max-content;

    gap: 18px;

    animation:
        techScroll 28s linear infinite;

}


.tech-track:hover {

    animation-play-state:
        paused;

}


.tech-item {

    min-width: 165px;

    padding:
        17px 25px;

    border:
        1px solid var(--border);

    border-radius: 12px;

    background: var(--white);

    text-align: center;

    font-weight: 700;

    box-shadow:
        var(--shadow-sm);

    transition: var(--transition);

}


.tech-item:hover {

    color: var(--white);

    background: var(--primary);

    border-color: var(--primary);

    transform:
        translateY(-5px);

}


@keyframes techScroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* =========================================================
   SERVICE CARDS
========================================================= */

.service-card {

    position: relative;

    height: 100%;

    padding: 30px;

    background: var(--white);

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-md);

    overflow: hidden;

    transition: var(--transition);

}


.service-card::before {

    content: "";

    position: absolute;

    width: 150px;

    height: 150px;

    border-radius: 50%;

    background:
        var(--primary-light);

    right: -80px;

    top: -80px;

    transition: .5s ease;

}


.service-card::after {

    content: "";

    position: absolute;

    width: 4px;

    height: 0;

    left: 0;

    bottom: 0;

    background: var(--primary);

    transition: .4s ease;

}


.service-card:hover {

    transform:
        translateY(-10px);

    border-color:
        #e3cbd2;

    box-shadow:
        var(--shadow-md);

}


.service-card:hover::before {

    transform:
        scale(1.7);

}


.service-card:hover::after {

    height: 100%;

}


.service-number {

    position: relative;

    z-index: 2;

    color: #c4abb3;

    font-size: 12px;

    font-weight: 800;

    margin-bottom: 18px;

}


.service-icon {

    position: relative;

    z-index: 2;

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        var(--primary-light);

    color:
        var(--primary);

    border-radius: 15px;

    font-size: 24px;

    margin-bottom: 20px;

    transition: var(--transition);

}


.service-card:hover .service-icon {

    color: var(--white);

    background: var(--primary);

    transform:
        rotate(-6deg)
        scale(1.08);

}


.service-card h4 {

    position: relative;

    z-index: 2;

    font-size: 20px;

    font-weight: 800;

}


.service-card p {

    position: relative;

    z-index: 2;

    color: var(--muted);

    line-height: 1.75;

}


.service-link {

    position: relative;

    z-index: 2;

    display: inline-flex;

    align-items: center;

    gap: 6px;

    color: var(--primary);

    font-weight: 800;

    margin-top: 8px;

    transition: var(--transition);

}


.service-link:hover {

    color: var(--primary-dark);

    gap: 11px;

}


/* =========================================================
   STATS
========================================================= */

.stats-section {

    position: relative;

    overflow: hidden;

    color: var(--white);

    background:
        linear-gradient(
            135deg,
            var(--primary-dark),
            var(--primary)
        );

}


.stats-section::before {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    border:
        1px solid rgba(255,255,255,.08);

    border-radius: 50%;

    right: -250px;

    top: -200px;

}


.stat-box {

    position: relative;

    text-align: center;

    padding: 20px;

}


.stat-number {

    font-family:
        'Plus Jakarta Sans',
        sans-serif;

    font-size:
        clamp(38px, 5vw, 54px);

    line-height: 1;

    font-weight: 800;

    margin-bottom: 12px;

}


.stat-label {

    color:
        rgba(255,255,255,.70);

    font-size: 14px;

}


/* =========================================================
   PROJECTS
========================================================= */

.project-card {

    height: 100%;

    overflow: hidden;

    background: var(--white);

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-md);

    transition: var(--transition);

}


.project-card:hover {

    transform:
        translateY(-9px);

    box-shadow:
        var(--shadow-md);

}


.project-image {

    position: relative;

    height: 245px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    color: var(--white);

    background:
        linear-gradient(
            135deg,
            var(--primary),
            #9c4159
        );

}


.project-image::before {

    content: "";

    position: absolute;

    width: 220px;

    height: 220px;

    border:
        1px solid rgba(255,255,255,.15);

    border-radius: 50%;

    animation:
        projectRotate 12s linear infinite;

}


.project-image i {

    position: relative;

    z-index: 2;

    font-size: 55px;

    transition: var(--transition);

}


.project-card:hover .project-image i {

    transform:
        scale(1.15)
        rotate(-5deg);

}


@keyframes projectRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


.project-content {

    padding: 26px;

}


.project-content h4 {

    font-size: 20px;

    font-weight: 800;

}


.project-content p {

    color: var(--muted);

    line-height: 1.7;

}


/* =========================================================
   PROCESS
========================================================= */

.process-card {

    position: relative;

    height: 100%;

    padding: 30px;

    background: var(--white);

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-md);

    transition: var(--transition);

}


.process-card:hover {

    transform:
        translateY(-8px);

    box-shadow:
        var(--shadow-md);

}


.process-number {

    width: 55px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--white);

    background:
        var(--primary);

    border-radius: 50%;

    font-weight: 800;

    margin-bottom: 20px;

    box-shadow:
        0 10px 25px rgba(100,27,46,.18);

}


.process-card h4 {

    font-weight: 800;

}


.process-card p {

    color: var(--muted);

}


/* =========================================================
   TESTIMONIAL SLIDER
========================================================= */

.testimonial-slider-wrapper {

    width: 100%;

    overflow: hidden;

    position: relative;

}


.testimonial-track {

    display: flex;

    width: max-content;

    gap: 20px;

    animation:
        testimonialScroll 34s linear infinite;

}


.testimonial-track:hover {

    animation-play-state:
        paused;

}


.testimonial-card {

    width: 370px;

    flex-shrink: 0;

    padding: 30px;

    background:
        var(--white);

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-md);

    box-shadow:
        var(--shadow-sm);

    transition: var(--transition);

}


.testimonial-card:hover {

    transform:
        translateY(-7px);

    box-shadow:
        var(--shadow-md);

}


.testimonial-stars {

    color: #c48b2c;

    letter-spacing: 3px;

    margin-bottom: 16px;

}


.testimonial-text {

    color: var(--muted);

    line-height: 1.8;

    min-height: 105px;

}


.testimonial-author {

    color: var(--heading);

    font-weight: 800;

}


.testimonial-role {

    color: #999;

    font-size: 13px;

}


@keyframes testimonialScroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* =========================================================
   CTA
========================================================= */

.cta-section {

    position: relative;

    overflow: hidden;

    padding:
        100px 20px;

    text-align: center;

    color: var(--white);

    background:
        linear-gradient(
            135deg,
            var(--primary-dark),
            var(--primary)
        );

}


.cta-section::before {

    content: "";

    position: absolute;

    width: 350px;

    height: 350px;

    border:
        1px solid rgba(255,255,255,.10);

    border-radius: 50%;

    left: -150px;

    top: -180px;

    animation:
        ctaRotate 15s linear infinite;

}


.cta-section::after {

    content: "";

    position: absolute;

    width: 250px;

    height: 250px;

    border:
        1px solid rgba(255,255,255,.10);

    border-radius: 50%;

    right: -100px;

    bottom: -130px;

    animation:
        ctaRotate 18s linear infinite reverse;

}


@keyframes ctaRotate {

    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }

}


.cta-section .container {

    position: relative;

    z-index: 2;

}


.cta-section h2 {

    color: var(--white);

    font-size:
        clamp(32px, 5vw, 48px);

    font-weight: 800;

}


.cta-section p {

    max-width: 650px;

    margin:
        15px auto 0;

    color:
        rgba(255,255,255,.72);

}


/* =========================================================
   PREMIUM FOOTER
========================================================= */

.site-footer {
    position: relative;
    padding: 75px 0 0;
    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(154, 48, 78, 0.18),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 20%,
            rgba(154, 48, 78, 0.10),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #260812 0%,
            #350d1a 50%,
            #21060f 100%
        );
    color: rgba(255, 255, 255, 0.82);
    overflow: hidden;
}


/* Top decorative line */

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.22),
        transparent
    );
}


/* =========================================================
   FOOTER BRAND
========================================================= */

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #ffffff !important;
    font-size: 1.45rem;
    font-weight: 800;
    text-decoration: none;
}

.footer-brand:hover {
    color: #ffffff !important;
}

.footer-brand .logo-mark {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(
        135deg,
        #8f2c49,
        #641b2e
    );
    color: #ffffff;
    font-size: 1rem;
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.22);
}


/* =========================================================
   DESCRIPTION
========================================================= */

.footer-description {
    max-width: 390px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    line-height: 1.8;
}


/* =========================================================
   FOOTER TITLES
========================================================= */

.footer-title {
    position: relative;
    display: inline-block;
    margin: 0 0 22px;
    color: #ffffff !important;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 28px;
    height: 2px;
    border-radius: 5px;
    background: #a93655;
}


/* =========================================================
   FOOTER LINKS
========================================================= */

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

.footer-links li {
    margin: 0 0 11px;
    padding: 0 !important;
    list-style: none !important;
}

.footer-links li::before {
    display: none !important;
    content: none !important;
}

.footer-links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.68) !important;
    font-size: 0.82rem;
    line-height: 1.5;
    text-decoration: none !important;
    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.footer-links a::before {
    content: "";
    width: 0;
    height: 1px;
    margin-right: 0;
    background: #c95b78;
    transition: all 0.25s ease;
}

.footer-links a:hover {
    color: #ffffff !important;
    transform: translateX(4px);
}

.footer-links a:hover::before {
    width: 9px;
    margin-right: 7px;
}


/* =========================================================
   SERVICE GRID
========================================================= */

.footer-service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 25px;
}


/* =========================================================
   CONTACT
========================================================= */

.footer-contact {
    margin: 0;
    padding: 0;
    list-style: none !important;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    padding: 0 !important;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    line-height: 1.5;
    list-style: none !important;
}

.footer-contact li::before {
    display: none !important;
    content: none !important;
}

.footer-contact-icon {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #d26480;
    font-size: 0.78rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.76) !important;
    text-decoration: none !important;
    word-break: break-word;
    transition: color 0.25s ease;
}

.footer-contact a:hover {
    color: #ffffff !important;
}


/* =========================================================
   SOCIAL
========================================================= */

.footer-social {
    display: flex;
    align-items: center;
    gap: 9px;
}

.footer-social a {
    width: 39px;
    height: 39px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.055);
    color: rgba(255, 255, 255, 0.72) !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: #ffffff !important;
    background: #641b2e;
    border-color: #8f2c49;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.20);
}


/* =========================================================
   FOOTER CTA
========================================================= */

.footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 11px 18px;
    border-radius: 10px;
    font-size: 0.82rem;
    text-decoration: none;
}

.footer-cta i {
    transition: transform 0.25s ease;
}

.footer-cta:hover i {
    transform: translate(2px, -2px);
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    margin-top: 55px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.78rem;
}

.footer-bottom-link {
    color: rgba(255, 255, 255, 0.58) !important;
    font-size: 0.78rem;
    text-decoration: none !important;
    transition: color 0.25s ease;
}

.footer-bottom-link:hover {
    color: #ffffff !important;
}

.footer-separator {
    margin: 0 9px;
    color: rgba(255, 255, 255, 0.25);
}


/* =========================================================
   FOOTER RESPONSIVE
========================================================= */

@media (max-width: 1199.98px) {

    .footer-service-grid {
        column-gap: 18px;
    }

    .footer-links a {
        font-size: 0.78rem;
    }

}


@media (max-width: 991.98px) {

    .site-footer {
        padding-top: 60px;
    }

    .footer-service-grid {
        column-gap: 25px;
    }

    .footer-contact {
        max-width: 320px;
    }

}


@media (max-width: 767.98px) {

    .site-footer {
        padding-top: 50px;
    }

    .footer-service-grid {
        grid-template-columns: 1fr 1fr;
        column-gap: 20px;
    }

    .footer-bottom {
        margin-top: 35px;
    }

    .footer-bottom .text-md-end {
        text-align: left !important;
    }

}


@media (max-width: 575.98px) {

    .site-footer {
        padding-top: 45px;
    }

    .footer-service-grid {
        grid-template-columns: 1fr;
    }

    .footer-title {
        margin-bottom: 19px;
    }

    .footer-description {
        font-size: 0.84rem;
    }

    .footer-bottom {
        padding: 18px 0;
    }

    .footer-bottom p,
    .footer-bottom-link {
        font-size: 0.74rem;
    }

}


/* =========================================================
   BACK TO TOP
========================================================= */

#backToTop {

    position: fixed;

    right: 24px;

    bottom: 24px;

    width: 46px;

    height: 46px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: none;

    border-radius: 50%;

    color: var(--white);

    background: var(--primary);

    box-shadow:
        0 12px 30px rgba(100,27,46,.25);

    z-index: 999;

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(15px);

    transition: var(--transition);

}


#backToTop.show {

    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);

}


#backToTop:hover {

    background:
        var(--primary-dark);

    transform:
        translateY(-5px);

}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.reveal {

    opacity: 0;

    transform:
        translateY(45px);

    transition:
        opacity .8s ease,
        transform .8s cubic-bezier(.22,1,.36,1);

}


.reveal.show {

    opacity: 1;

    transform:
        translateY(0);

}


.reveal-left {

    opacity: 0;

    transform:
        translateX(-50px);

    transition:
        opacity .8s ease,
        transform .8s ease;

}


.reveal-left.show {

    opacity: 1;

    transform:
        translateX(0);

}


.reveal-right {

    opacity: 0;

    transform:
        translateX(50px);

    transition:
        opacity .8s ease,
        transform .8s ease;

}


.reveal-right.show {

    opacity: 1;

    transform:
        translateX(0);

}


.scale-reveal {

    opacity: 0;

    transform:
        scale(.90);

    transition:
        opacity .8s ease,
        transform .8s ease;

}


.scale-reveal.show {

    opacity: 1;

    transform:
        scale(1);

}


/* =========================================================
   STAGGER ANIMATION
========================================================= */

.stagger > *:nth-child(1) {
    transition-delay: .05s;
}

.stagger > *:nth-child(2) {
    transition-delay: .10s;
}

.stagger > *:nth-child(3) {
    transition-delay: .15s;
}

.stagger > *:nth-child(4) {
    transition-delay: .20s;
}

.stagger > *:nth-child(5) {
    transition-delay: .25s;
}

.stagger > *:nth-child(6) {
    transition-delay: .30s;
}

.stagger > *:nth-child(7) {
    transition-delay: .35s;
}

.stagger > *:nth-child(8) {
    transition-delay: .40s;
}


/* =========================================================
   INNER PAGE HERO
========================================================= */

.inner-hero {

    position: relative;

    padding:
        170px 0 90px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #fff,
            var(--primary-soft)
        );

}


.inner-hero h1 {

    font-size:
        clamp(40px, 5vw, 62px);

    font-weight: 800;

    letter-spacing: -2px;

}


.inner-hero h1 span {

    color: var(--primary);

}


.breadcrumb-custom {

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    align-items: center;

    color: var(--muted);

    font-size: 14px;

    margin-bottom: 20px;

}


.breadcrumb-custom a {

    color: var(--primary);

    font-weight: 700;

}


/* =========================================================
   SERVICE DETAIL
========================================================= */

.service-detail-icon {

    width: 105px;

    height: 105px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--white);

    background:
        linear-gradient(
            135deg,
            var(--primary),
            #8e354f
        );

    border-radius: 25px;

    font-size: 45px;

    margin-bottom: 28px;

    box-shadow:
        0 20px 45px rgba(100,27,46,.22);

    animation:
        serviceFloat 4s ease-in-out infinite;

}


@keyframes serviceFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-12px) rotate(2deg);
    }

}


/* =========================================================
   FORMS
========================================================= */

.form-control,
.form-select {

    min-height: 52px;

    border:
        1px solid var(--border);

    border-radius:
        10px;

    padding:
        12px 15px;

    box-shadow: none !important;

}


.form-control:focus,
.form-select:focus {

    border-color:
        var(--primary);

    box-shadow:
        0 0 0 4px rgba(100,27,46,.08) !important;

}


textarea.form-control {

    min-height: 150px;

    resize: vertical;

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991px) {

    .nav-link {

        padding:
            12px 0 !important;

    }


    .nav-link::after {

        display: none;

    }


    .navbar-collapse {

        padding:
            15px 0 20px;

    }


    .hero-visual {

        margin-top: 30px;

    }

}


@media (max-width: 768px) {

    .section {

        padding:
            75px 0;

    }


    .hero-section {

        min-height:
            auto;

        padding:
            135px 0 75px;

    }


    .hero-title {

        font-size:
            42px;

        letter-spacing:
            -1.5px;

    }


    .hero-description {

        font-size:
            16px;

    }


    .hero-visual {

        min-height:
            400px;

    }


    .hero-orbit {

        width:
            320px;

        height:
            320px;

        top:
            35px;

    }


    .floating-card.one {

        width:
            225px;

        right:
            0;

        top:
            35px;

    }


    .floating-card.two {

        width:
            190px;

        left:
            0;

        bottom:
            55px;

    }


    .floating-card.three {

        width:
            170px;

        right:
            20px;

        bottom:
            0;

    }


    .section-title {

        font-size:
            32px;

    }


    .testimonial-card {

        width:
            300px;

    }


    .tech-wrapper::before,
    .tech-wrapper::after {

        width:
            40px;

    }


    .cta-section {

        padding:
            75px 20px;

    }


    #backToTop {

        right:
            16px;

        bottom:
            16px;

    }

}


@media (max-width: 480px) {

    .hero-title {

        font-size:
            37px;

    }


    .hero-buttons {

        flex-direction:
            column;

    }


    .hero-buttons .btn-main,
    .hero-buttons .btn-outline-main {

        width:
            100%;

    }


    .floating-card.one {

        width:
            205px;

    }


    .floating-card.two {

        width:
            175px;

    }


    .floating-card.three {

        width:
            155px;

    }


    .service-card,
    .process-card {

        padding:
            24px;

    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }


    *,
    *::before,
    *::after {

        animation-duration:
            .01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            .01ms !important;

    }

}
/* =========================================================
   HERO TRUST STATS
========================================================= */

.hero-trust {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 26px;
    width: fit-content;
}

.hero-trust-item {
    display: flex;
    flex-direction: column;
    min-width: 100px;
}

.hero-trust-item strong {
    display: block;
    margin: 0;
    color: var(--primary);
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.2;
}

.hero-trust-item span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 500;
    line-height: 1.3;
}

.hero-trust-divider {
    width: 1px;
    height: 38px;
    margin: 0 24px;
    background: rgba(100, 27, 46, 0.18);
}


/* Hover */
.hero-trust-item {
    transition: transform 0.3s ease;
}

.hero-trust-item:hover {
    transform: translateY(-2px);
}


/* =========================================================
   HERO TRUST RESPONSIVE
========================================================= */

@media (max-width: 575.98px) {

    .hero-trust {
        width: 100%;
        justify-content: space-between;
    }

    .hero-trust-item {
        min-width: auto;
        flex: 1;
        text-align: center;
    }

    .hero-trust-item:first-child {
        text-align: left;
    }

    .hero-trust-item:last-child {
        text-align: right;
    }

    .hero-trust-divider {
        margin: 0 12px;
        height: 32px;
    }

    .hero-trust-item strong {
        font-size: 1.05rem;
    }

    .hero-trust-item span {
        font-size: 0.72rem;
    }
}

 /* =========================================================
    CONTACT PAGE
 ========================================================= */

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    margin-top: 16px;
    background: var(--white);
    border: 1px solid rgba(100, 27, 46, 0.08);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(36, 32, 36, 0.05);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-3px);
    border-color: rgba(100, 27, 46, 0.18);
    box-shadow: 0 15px 35px rgba(36, 32, 36, 0.08);
}

.contact-info-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: var(--light);
    color: var(--primary);
    font-size: 1.15rem;
}

.contact-info-card > div:last-child {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.contact-info-card span {
    display: block;
    margin-bottom: 3px;
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.contact-info-card strong,
.contact-info-card a {
    display: block;
    color: var(--heading);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none;
    word-break: break-word;
}

.contact-info-card a {
    transition: color 0.25s ease;
}

.contact-info-card a:hover {
    color: var(--primary);
}


/* =========================================================
   CONTACT SOCIAL
========================================================= */

.contact-social {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 8px;
}

.contact-social > span {
    color: var(--heading);
    font-size: 0.85rem;
    font-weight: 700;
}

.contact-social .footer-social {
    display: flex;
    align-items: center;
    gap: 9px;
}

.contact-social .footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--light);
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-social .footer-social a:hover {
    color: var(--white);
    background: var(--primary);
    transform: translateY(-3px);
}


/* =========================================================
   CONTACT FORM WRAPPER
========================================================= */

.contact-form-wrapper {
    position: relative;
    padding: 38px;
    background: var(--white);
    border: 1px solid rgba(100, 27, 46, 0.09);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(36, 32, 36, 0.07);
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--primary),
        var(--dark)
    );
}

.contact-form-wrapper::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    top: -100px;
    right: -90px;
    border-radius: 50%;
    background: rgba(100, 27, 46, 0.035);
    pointer-events: none;
}

.contact-form-wrapper > div {
    position: relative;
    z-index: 1;
}

.contact-form-wrapper h2 {
    margin: 7px 0 8px;
    color: var(--heading);
    font-size: 1.7rem;
    font-weight: 800;
    line-height: 1.25;
}

.contact-form-wrapper p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.7;
}


/* =========================================================
   FORM EYEBROW
========================================================= */

.form-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 50px;
    background: var(--light);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}


/* =========================================================
   FORM CONTROLS
========================================================= */

.contact-form-wrapper .form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--heading);
    font-size: 0.83rem;
    font-weight: 700;
}

.contact-form-wrapper .form-label span {
    color: var(--primary);
}

.contact-form-wrapper .form-control,
.contact-form-wrapper .form-select {
    width: 100%;
    min-height: 50px;
    padding: 12px 15px;
    color: var(--heading);
    background-color: #fff;
    border: 1px solid rgba(36, 32, 36, 0.13);
    border-radius: 11px;
    font-size: 0.88rem;
    box-shadow: none;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease;
}

.contact-form-wrapper textarea.form-control {
    min-height: 145px;
    resize: vertical;
}

.contact-form-wrapper .form-control::placeholder {
    color: #aaa4a8;
}

.contact-form-wrapper .form-control:hover,
.contact-form-wrapper .form-select:hover {
    border-color: rgba(100, 27, 46, 0.25);
}

.contact-form-wrapper .form-control:focus,
.contact-form-wrapper .form-select:focus {
    color: var(--heading);
    background-color: var(--white);
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 4px rgba(100, 27, 46, 0.08);
}


/* =========================================================
   SELECT
========================================================= */

.contact-form-wrapper .form-select {
    cursor: pointer;
}

.contact-form-wrapper .form-select:invalid {
    color: #aaa4a8;
}


/* =========================================================
   CHECKBOX
========================================================= */

.contact-form-wrapper .form-check {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    min-height: auto;
    padding-left: 0;
}

.contact-form-wrapper .form-check-input {
    position: relative;
    float: none;
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
    border: 1px solid rgba(36, 32, 36, 0.2);
    border-radius: 5px;
    cursor: pointer;
    box-shadow: none;
}

.contact-form-wrapper .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.contact-form-wrapper .form-check-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(100, 27, 46, 0.08);
}

.contact-form-wrapper .form-check-label {
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.5;
    cursor: pointer;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.contact-form-wrapper #contactSubmit {
    min-height: 50px;
    padding: 12px 24px;
}


/* =========================================================
   SERVICE CARDS ON CONTACT PAGE
========================================================= */

.contact-form-wrapper + * {
    position: relative;
}


/* =========================================================
   CONTACT PAGE SERVICE LINK CARDS
========================================================= */

.section .service-card.text-decoration-none {
    color: inherit;
}

.section .service-card.text-decoration-none:hover {
    color: inherit;
}

.section .service-card.text-decoration-none h3 {
    color: var(--heading);
}

.section .service-card.text-decoration-none p {
    color: var(--muted);
}


/* =========================================================
   CONTACT PAGE RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

    .contact-form-wrapper {
        padding: 30px;
        border-radius: 20px;
    }

    .contact-form-wrapper h2 {
        font-size: 1.5rem;
    }

}


@media (max-width: 767.98px) {

    .contact-info-card {
        padding: 15px 16px;
        border-radius: 14px;
    }

    .contact-info-icon {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
        border-radius: 11px;
    }

    .contact-social {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .contact-form-wrapper {
        padding: 24px 20px;
        border-radius: 18px;
    }

    .contact-form-wrapper h2 {
        font-size: 1.35rem;
    }

}


@media (max-width: 575.98px) {

    .contact-info-card {
        gap: 12px;
        padding: 14px;
    }

    .contact-info-icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        font-size: 1rem;
    }

    .contact-info-card strong,
    .contact-info-card a {
        font-size: 0.88rem;
    }

    .contact-form-wrapper {
        padding: 22px 16px;
    }

    .contact-form-wrapper .row {
        --bs-gutter-x: 1rem;
        --bs-gutter-y: 1rem;
    }

    .contact-form-wrapper .form-control,
    .contact-form-wrapper .form-select {
        min-height: 47px;
        padding: 10px 13px;
    }

    .contact-form-wrapper textarea.form-control {
        min-height: 125px;
    }

    .contact-form-wrapper #contactSubmit {
        width: 100%;
    }

}
/* =========================================================
   ELITEWEBS - LEGAL PAGES
   TERMS & CONDITIONS + PRIVACY POLICY
========================================================= */

.legal-hero {
    position: relative;
    overflow: hidden;

    padding: 145px 0 95px;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(100, 27, 46, 0.10),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(100, 27, 46, 0.08),
            transparent 30%
        ),
        #fff;
}

.legal-hero::after {
    content: "";

    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(100, 27, 46, 0.20),
        transparent
    );
}

.legal-hero-content {
    position: relative;
    z-index: 2;

    max-width: 820px;
}

.legal-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 14px;

    border: 1px solid rgba(100, 27, 46, 0.13);
    border-radius: 50px;

    background: rgba(255, 255, 255, 0.75);

    color: var(--primary);

    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    box-shadow: 0 8px 25px rgba(66, 16, 29, 0.05);

    animation: legalBadgeIn 0.8s ease both;
}

.legal-eyebrow i {
    font-size: 0.9rem;
}

.legal-hero h1 {
    margin: 22px 0 18px;

    color: var(--heading);

    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 850;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.legal-hero h1 span {
    color: var(--primary);

    position: relative;
}

.legal-hero h1 span::after {
    content: "";

    position: absolute;
    left: 0;
    right: 0;
    bottom: -7px;

    height: 4px;

    border-radius: 10px;

    background: var(--primary);

    transform: scaleX(0);
    transform-origin: left;

    animation: legalUnderline 1s 0.5s ease forwards;
}

.legal-hero-content > p {
    max-width: 720px;

    margin: 0;

    color: var(--muted);

    font-size: 1.05rem;
    line-height: 1.8;
}

.legal-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 28px;

    margin-top: 28px;
}

.legal-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--muted);

    font-size: 0.82rem;
    font-weight: 600;
}

.legal-meta i {
    color: var(--primary);
}


/* Decorative Shapes */

.legal-hero-shape {
    position: absolute;

    border: 1px solid rgba(100, 27, 46, 0.12);

    border-radius: 50%;

    pointer-events: none;
}

.legal-hero-shape.shape-one {
    width: 380px;
    height: 380px;

    right: -150px;
    top: -160px;

    animation: legalOrbit 18s linear infinite;
}

.legal-hero-shape.shape-two {
    width: 220px;
    height: 220px;

    right: 100px;
    bottom: -160px;

    border-color: rgba(100, 27, 46, 0.08);

    animation: legalFloat 7s ease-in-out infinite;
}


/* =========================================================
   DOCUMENT
========================================================= */

.legal-page-section {
    background: #fff;
}

.legal-document {
    max-width: 900px;
}

.legal-block {
    position: relative;

    padding: 0 0 45px;
    margin-bottom: 45px;

    border-bottom: 1px solid rgba(100, 27, 46, 0.09);
}

.legal-block:last-child {
    margin-bottom: 0;
    border-bottom: 0;
}

.legal-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 28px;

    margin-bottom: 16px;

    border-radius: 50px;

    background: var(--light-maroon);

    color: var(--primary);

    font-size: 0.70rem;
    font-weight: 850;
    letter-spacing: 0.08em;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.legal-block:hover .legal-index {
    transform: translateY(-3px);
    background: rgba(100, 27, 46, 0.14);
}

.legal-block h2 {
    margin: 0 0 16px;

    color: var(--heading);

    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1.3;
}

.legal-block p {
    margin: 0 0 15px;

    color: var(--muted);

    font-size: 0.96rem;
    line-height: 1.9;
}

.legal-block p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   LIST
========================================================= */

.legal-list {
    margin: 20px 0 22px;
    padding: 0;

    list-style: none;
}

.legal-list li {
    position: relative;

    padding-left: 30px;
    margin-bottom: 12px;

    color: var(--muted);

    font-size: 0.94rem;
    line-height: 1.7;
}

.legal-list li::before {
    content: "\f26a";

    position: absolute;
    left: 0;
    top: 2px;

    font-family: "bootstrap-icons";

    color: var(--primary);

    font-size: 0.82rem;
}


/* =========================================================
   SERVICE GRID
========================================================= */

.legal-service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 10px;

    margin: 22px 0 25px;
}

.legal-service-grid span {
    display: flex;
    align-items: center;

    min-height: 45px;

    padding: 10px 14px;

    border: 1px solid rgba(100, 27, 46, 0.09);
    border-radius: 10px;

    background: #fff;

    color: var(--heading);

    font-size: 0.82rem;
    font-weight: 650;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.legal-service-grid span:hover {
    transform: translateY(-3px);

    border-color: rgba(100, 27, 46, 0.22);

    box-shadow: 0 10px 25px rgba(66, 16, 29, 0.07);
}


/* =========================================================
   CONTACT CARD
========================================================= */

.legal-contact-card {
    padding: 32px;

    border: 1px solid rgba(100, 27, 46, 0.12);
    border-radius: 22px;

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(100, 27, 46, 0.10),
            transparent 35%
        ),
        var(--light-maroon);

    box-shadow: 0 18px 50px rgba(66, 16, 29, 0.07);

    overflow: hidden;
}

.legal-contact-card::before {
    content: "";

    position: absolute;

    width: 130px;
    height: 130px;

    right: -55px;
    bottom: -65px;

    border: 1px solid rgba(100, 27, 46, 0.10);

    border-radius: 50%;

    animation: legalFloat 6s ease-in-out infinite;
}

.legal-contact-items {
    display: flex;
    flex-wrap: wrap;

    gap: 18px 35px;

    margin-top: 25px;
}

.legal-contact-items > div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.legal-contact-items > div > i {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border-radius: 12px;

    background: #fff;

    color: var(--primary);

    box-shadow: 0 8px 20px rgba(66, 16, 29, 0.06);
}

.legal-contact-items small {
    display: block;

    margin-bottom: 3px;

    color: var(--muted);

    font-size: 0.70rem;
    font-weight: 600;
}

.legal-contact-items strong {
    display: block;

    color: var(--heading);

    font-size: 0.88rem;
}


/* =========================================================
   SIDEBAR
========================================================= */

.legal-sidebar {
    position: sticky;
    top: 110px;
}

.legal-sidebar-card {
    position: relative;

    padding: 30px;

    border: 1px solid rgba(100, 27, 46, 0.10);
    border-radius: 20px;

    background: #fff;

    box-shadow: 0 18px 50px rgba(66, 16, 29, 0.07);

    overflow: hidden;
}

.legal-sidebar-card::before {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    top: -80px;
    right: -80px;

    border-radius: 50%;

    background: rgba(100, 27, 46, 0.05);
}

.legal-sidebar-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    margin-bottom: 20px;

    border-radius: 15px;

    background: var(--light-maroon);

    color: var(--primary);

    font-size: 1.35rem;

    animation: legalIconFloat 4s ease-in-out infinite;
}

.legal-sidebar-card h3 {
    margin: 0 0 10px;

    color: var(--heading);

    font-size: 1.25rem;
    font-weight: 800;
}

.legal-sidebar-card p {
    margin: 0;

    color: var(--muted);

    font-size: 0.88rem;
    line-height: 1.75;
}

.legal-sidebar-line {
    height: 1px;

    margin: 25px 0 10px;

    background: rgba(100, 27, 46, 0.10);
}

.legal-sidebar-card > a {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 13px 0;

    border-bottom: 1px solid rgba(100, 27, 46, 0.07);

    color: var(--heading);

    font-size: 0.88rem;
    font-weight: 650;

    text-decoration: none;

    transition:
        color 0.3s ease,
        padding-left 0.3s ease;
}

.legal-sidebar-card > a:last-child {
    border-bottom: 0;
}

.legal-sidebar-card > a i {
    color: var(--primary);

    transition: transform 0.3s ease;
}

.legal-sidebar-card > a:hover {
    padding-left: 6px;
    color: var(--primary);
}

.legal-sidebar-card > a:hover i {
    transform: translateX(4px);
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes legalBadgeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes legalUnderline {
    to {
        transform: scaleX(1);
    }
}

@keyframes legalFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes legalIconFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes legalOrbit {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

    .legal-hero {
        padding: 125px 0 75px;
    }

    .legal-sidebar {
        position: relative;
        top: auto;
    }

    .legal-sidebar-card {
        max-width: 700px;
    }
}


@media (max-width: 767.98px) {

    .legal-hero {
        padding: 110px 0 65px;
    }

    .legal-hero h1 {
        font-size: 2.55rem;
    }

    .legal-hero-content > p {
        font-size: 0.94rem;
        line-height: 1.7;
    }

    .legal-meta {
        gap: 10px 18px;
    }

    .legal-meta span {
        font-size: 0.76rem;
    }

    .legal-block {
        padding-bottom: 35px;
        margin-bottom: 35px;
    }

    .legal-block h2 {
        font-size: 1.28rem;
    }

    .legal-block p,
    .legal-list li {
        font-size: 0.90rem;
        line-height: 1.8;
    }

    .legal-service-grid {
        grid-template-columns: 1fr;
    }

    .legal-contact-card {
        padding: 24px 20px;
        border-radius: 18px;
    }

    .legal-contact-items {
        flex-direction: column;
        gap: 14px;
    }

    .legal-sidebar-card {
        padding: 24px 20px;
    }

    .legal-hero-shape.shape-one {
        width: 250px;
        height: 250px;

        right: -130px;
        top: -100px;
    }

    .legal-hero-shape.shape-two {
        width: 150px;
        height: 150px;

        right: 30px;
        bottom: -100px;
    }
}


@media (max-width: 480px) {

    .legal-hero {
        padding: 100px 0 55px;
    }

    .legal-eyebrow {
        font-size: 0.68rem;
    }

    .legal-hero h1 {
        font-size: 2.15rem;
    }

    .legal-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .legal-index {
        width: 38px;
        height: 26px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .legal-eyebrow,
    .legal-hero-shape,
    .legal-sidebar-icon,
    .legal-contact-card::before {
        animation: none !important;
    }

    .legal-hero h1 span::after {
        animation: none !important;
        transform: scaleX(1);
    }
}
/* =========================================================
   ELITEWEBS BLOG PAGE
========================================================= */

.blog-hero {
    position: relative;
    overflow: hidden;
    padding: 150px 0 100px;
    background:
        radial-gradient(
            circle at 15% 30%,
            rgba(100, 27, 46, 0.10),
            transparent 32%
        ),
        radial-gradient(
            circle at 90% 70%,
            rgba(100, 27, 46, 0.08),
            transparent 30%
        ),
        #fff;
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.blog-hero h1 {
    margin: 22px 0 18px;
    color: var(--heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 850;
    line-height: 1.06;
    letter-spacing: -0.04em;
}

.blog-hero h1 span {
    display: block;
    color: var(--primary);
}

.blog-hero-content p {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.blog-orbit {
    position: absolute;
    border: 1px solid rgba(100, 27, 46, 0.10);
    border-radius: 50%;
    pointer-events: none;
}

.blog-orbit-one {
    width: 420px;
    height: 420px;
    right: -180px;
    top: -170px;
    animation: blogRotate 18s linear infinite;
}

.blog-orbit-two {
    width: 230px;
    height: 230px;
    right: 90px;
    bottom: -160px;
    animation: blogFloat 7s ease-in-out infinite;
}


/* =========================================================
   FEATURED ARTICLE
========================================================= */

.blog-featured-section {
    padding-top: 70px;
}

.blog-featured {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    min-height: 430px;
    overflow: hidden;
    border-radius: 28px;
    background:
        linear-gradient(
            135deg,
            #fff 0%,
            #f8edf0 100%
        );
    border: 1px solid rgba(100, 27, 46, 0.10);
    box-shadow: 0 25px 70px rgba(66, 16, 29, 0.08);
}

.blog-featured-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 55px;
}

.blog-category {
    width: fit-content;
    padding: 7px 12px;
    border-radius: 50px;
    background: rgba(100, 27, 46, 0.09);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.blog-featured-content h2 {
    max-width: 680px;
    margin: 18px 0 15px;
    color: var(--heading);
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    font-weight: 800;
    line-height: 1.2;
}

.blog-featured-content p {
    max-width: 650px;
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-meta i {
    color: var(--primary);
}


/* =========================================================
   FEATURED VISUAL
========================================================= */

.blog-featured-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 430px;
    padding: 35px;
    background:
        radial-gradient(
            circle at center,
            rgba(100, 27, 46, 0.12),
            transparent 65%
        );
}

.blog-browser {
    width: 100%;
    max-width: 420px;
    overflow: hidden;
    border: 1px solid rgba(100, 27, 46, 0.13);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 25px 60px rgba(66, 16, 29, 0.14);
    transform: rotate(2deg);
    animation: blogBrowserFloat 5s ease-in-out infinite;
}

.browser-top {
    display: flex;
    gap: 6px;
    padding: 13px 15px;
    background: #faf7f8;
    border-bottom: 1px solid rgba(100, 27, 46, 0.08);
}

.browser-top span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(100, 27, 46, 0.25);
}

.browser-body {
    padding: 35px 28px 30px;
}

.browser-line {
    width: 75%;
    height: 8px;
    margin-bottom: 10px;
    border-radius: 20px;
    background: rgba(100, 27, 46, 0.10);
}

.browser-line.large {
    width: 90%;
    height: 15px;
    background: rgba(100, 27, 46, 0.18);
}

.browser-line.short {
    width: 45%;
}

.browser-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 30px;
}

.browser-cards div {
    height: 100px;
    border-radius: 10px;
    background: #f8edf0;
}


/* =========================================================
   CATEGORIES
========================================================= */

.blog-category-section {
    padding: 30px 0;
}

.blog-categories {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.category-title {
    margin-right: 8px;
    color: var(--heading);
    font-size: 0.82rem;
    font-weight: 800;
}

.blog-categories a {
    display: inline-flex;
    padding: 8px 14px;
    border: 1px solid rgba(100, 27, 46, 0.10);
    border-radius: 50px;
    color: var(--muted);
    background: #fff;
    font-size: 0.78rem;
    font-weight: 650;
    text-decoration: none;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.blog-categories a:hover {
    transform: translateY(-2px);
    background: var(--light-maroon);
    color: var(--primary);
}


/* =========================================================
   BLOG LIST
========================================================= */

.blog-list-section {
    background: #fff;
}

.blog-list-section .section-heading {
    max-width: 800px;
    margin: 0 auto;
}

.blog-list-section .section-title {
    color: var(--heading);
}

.blog-list-section .section-title span {
    color: var(--primary);
}

.blog-list-section .section-description {
    color: var(--muted);
}


/* =========================================================
   BLOG CARDS
========================================================= */

.blog-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(100, 27, 46, 0.09);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(66, 16, 29, 0.05);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(100, 27, 46, 0.18);
    box-shadow: 0 25px 55px rgba(66, 16, 29, 0.11);
}

.blog-card-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 210px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at center,
            rgba(100, 27, 46, 0.12),
            transparent 60%
        ),
        #f8edf0;
}

.blog-card-image::before {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    border: 1px solid rgba(100, 27, 46, 0.12);
    border-radius: 50%;
    animation: blogRotate 15s linear infinite;
}

.blog-image-icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: #fff;
    color: var(--primary);
    font-size: 1.6rem;
    box-shadow: 0 15px 35px rgba(66, 16, 29, 0.12);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.blog-card:hover .blog-image-icon {
    transform: scale(1.08) rotate(-4deg);
    box-shadow: 0 20px 40px rgba(66, 16, 29, 0.17);
}

.blog-card-image > span {
    position: absolute;
    left: 15px;
    bottom: 15px;
    padding: 6px 10px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary);
    font-size: 0.68rem;
    font-weight: 800;
}

.blog-card-content {
    padding: 25px;
}

.blog-small-meta {
    margin-bottom: 10px;
}

.blog-small-meta span {
    color: var(--muted);
    font-size: 0.74rem;
}

.blog-small-meta i {
    margin-right: 4px;
    color: var(--primary);
}

.blog-card-content h3 {
    margin: 0 0 12px;
    color: var(--heading);
    font-size: 1.18rem;
    font-weight: 800;
    line-height: 1.4;
}

.blog-card-content p {
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.75;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 750;
    text-decoration: none;
}

.blog-read-more i {
    transition: transform 0.25s ease;
}

.blog-read-more:hover i {
    transform: translateX(5px);
}


/* =========================================================
   CTA
========================================================= */

.blog-cta-section {
    padding-top: 40px;
}

.blog-cta {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 50px;
    border-radius: 25px;
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(255, 255, 255, 0.12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--dark-maroon),
            var(--primary)
        );
    box-shadow: 0 25px 60px rgba(66, 16, 29, 0.18);
}

.blog-cta .section-label {
    color: #fff;
}

.blog-cta h2 {
    max-width: 700px;
    margin: 12px 0;
    color: #fff;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    line-height: 1.2;
}

.blog-cta p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.7;
}

.blog-cta .btn-white {
    color: var(--primary);
    background: #fff;
    border-color: #fff;
}

.blog-cta .btn-white:hover {
    color: var(--dark-maroon);
    background: #f8edf0;
    border-color: #f8edf0;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes blogRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}

@keyframes blogFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

}

@keyframes blogBrowserFloat {

    0%,
    100% {
        transform: rotate(2deg) translateY(0);
    }

    50% {
        transform: rotate(2deg) translateY(-10px);
    }

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

    .blog-hero {
        padding: 125px 0 75px;
    }

    .blog-featured {
        grid-template-columns: 1fr;
    }

    .blog-featured-visual {
        min-height: 350px;
    }

    .blog-cta {
        flex-direction: column;
        align-items: flex-start;
    }

}


@media (max-width: 767.98px) {

    .blog-hero {
        padding: 110px 0 60px;
    }

    .blog-hero h1 {
        font-size: 2.45rem;
    }

    .blog-hero-content p {
        font-size: 0.92rem;
    }

    .blog-featured-content {
        padding: 32px 24px;
    }

    .blog-featured-content h2 {
        font-size: 1.7rem;
    }

    .blog-featured-visual {
        min-height: 280px;
        padding: 25px;
    }

    .blog-browser {
        max-width: 330px;
    }

    .blog-card-image {
        height: 190px;
    }

    .blog-cta {
        padding: 35px 25px;
        border-radius: 20px;
    }

}


@media (max-width: 575.98px) {

    .blog-hero h1 {
        font-size: 2.1rem;
    }

    .category-title {
        width: 100%;
        margin-bottom: 3px;
    }

    .blog-meta {
        gap: 12px;
        flex-direction: column;
    }

    .blog-featured-visual {
        min-height: 240px;
    }

    .blog-browser {
        max-width: 280px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .blog-orbit,
    .blog-card-image::before,
    .blog-browser {
        animation: none !important;
    }

}
/* =========================================================
   ELITEWEBS BLOG PAGE
   PREMIUM MEHRUM WHITE THEME
========================================================= */


/* =========================================================
   BLOG HERO
========================================================= */

.blog-hero {
    position: relative;
    overflow: hidden;
    padding: 145px 0 110px;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(100, 27, 46, 0.10),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #fbf5f7 55%,
            #f8edf0 100%
        );
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.blog-hero h1 {
    margin: 22px 0;
    color: #242024;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -2px;
}

.blog-hero h1 span {
    display: block;
    color: #641b2e;
}

.blog-hero p {
    max-width: 720px;
    margin: 0;
    color: #777078;
    font-size: 18px;
    line-height: 1.8;
}


/* =========================================================
   HERO ORBITS
========================================================= */

.blog-orbit {
    position: absolute;
    border: 1px solid rgba(100, 27, 46, 0.13);
    border-radius: 50%;
    pointer-events: none;
}

.blog-orbit-one {
    width: 430px;
    height: 430px;
    right: -160px;
    top: -120px;
    animation: blogOrbitRotate 18s linear infinite;
}

.blog-orbit-two {
    width: 260px;
    height: 260px;
    right: 30px;
    top: 80px;
    border-style: dashed;
    animation: blogOrbitRotateReverse 12s linear infinite;
}

.blog-orbit-one::before,
.blog-orbit-two::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: #641b2e;
    border-radius: 50%;
    box-shadow: 0 0 0 7px rgba(100, 27, 46, 0.08);
}

.blog-orbit-one::before {
    top: 55px;
    left: 80px;
}

.blog-orbit-two::before {
    right: 20px;
    bottom: 40px;
}


/* =========================================================
   FEATURED ARTICLE
========================================================= */

.blog-featured-section {
    padding-top: 90px;
}

.blog-featured {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 55px;
    align-items: center;

    overflow: hidden;

    padding: 65px;

    border: 1px solid rgba(100, 27, 46, 0.10);
    border-radius: 28px;

    background:
        linear-gradient(
            135deg,
            #f8edf0 0%,
            #fdf8f9 100%
        );

    box-shadow:
        0 25px 70px rgba(66, 16, 29, 0.08);
}

.blog-featured::before {
    content: "";
    position: absolute;

    width: 280px;
    height: 280px;

    right: -120px;
    top: -120px;

    border-radius: 50%;

    background: rgba(100, 27, 46, 0.06);
}

.blog-featured-content {
    position: relative;
    z-index: 2;
}

.blog-category {
    display: inline-flex;
    align-items: center;

    padding: 8px 15px;

    border-radius: 50px;

    background: rgba(100, 27, 46, 0.09);

    color: #641b2e;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.blog-featured h2 {
    margin: 20px 0;

    color: #242024;

    font-size: clamp(30px, 3vw, 46px);
    line-height: 1.15;

    font-weight: 800;
    letter-spacing: -1px;
}

.blog-featured p {
    max-width: 680px;
    margin: 0;

    color: #777078;

    font-size: 16px;
    line-height: 1.8;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;

    margin-top: 25px;
}

.blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #777078;

    font-size: 14px;
    font-weight: 600;
}

.blog-meta i {
    color: #641b2e;
}


/* =========================================================
   FEATURED BROWSER
========================================================= */

.blog-featured-visual {
    position: relative;
    z-index: 2;

    display: flex;
    justify-content: center;
}

.blog-browser {
    width: min(100%, 470px);

    overflow: hidden;

    border: 1px solid rgba(100, 27, 46, 0.12);
    border-radius: 20px;

    background: #ffffff;

    box-shadow:
        0 30px 70px rgba(66, 16, 29, 0.15);

    transform: rotate(2deg);

    animation:
        browserFloat 4s ease-in-out infinite;
}

.browser-top {
    display: flex;
    align-items: center;
    gap: 7px;

    height: 44px;
    padding: 0 16px;

    background: #f3e6ea;

    border-bottom:
        1px solid rgba(66, 16, 29, 0.07);
}

.browser-top span {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #c9b3ba;
}

.browser-body {
    padding: 35px;
}

.browser-line {
    width: 80%;
    height: 12px;

    margin-bottom: 15px;

    border-radius: 20px;

    background: #eadde1;
}

.browser-line.large {
    width: 92%;
    height: 20px;

    background: #641b2e;

    opacity: 0.85;
}

.browser-line.short {
    width: 55%;
}

.browser-cards {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 12px;

    margin-top: 35px;
}

.browser-cards div {
    height: 100px;

    border-radius: 13px;

    background:
        linear-gradient(
            145deg,
            #f8edf0,
            #ead9df
        );

    border:
        1px solid rgba(100, 27, 46, 0.07);
}


/* =========================================================
   CATEGORY BAR
========================================================= */

.blog-category-section {
    padding: 30px 0;

    background: #ffffff;

    border-bottom:
        1px solid rgba(66, 16, 29, 0.07);
}

.blog-categories {
    display: flex;

    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 10px;
}

.category-title {
    margin-right: 8px;

    color: #242024;

    font-size: 14px;
    font-weight: 800;
}

.blog-categories a {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 40px;

    padding: 8px 17px;

    border:
        1px solid rgba(100, 27, 46, 0.12);

    border-radius: 50px;

    background: #f8edf0;

    color: #242024;

    text-decoration: none;

    font-size: 13px;
    font-weight: 600;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.blog-categories a:hover {
    color: #ffffff;

    background: #641b2e;

    border-color: #641b2e;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(100, 27, 46, 0.15);
}


/* =========================================================
   BLOG LIST
========================================================= */

.blog-list-section {
    background: #ffffff;
}

.blog-list-section .section-heading {
    max-width: 780px;

    margin-left: auto;
    margin-right: auto;
}

.blog-list-section .section-description {
    max-width: 700px;

    margin-left: auto;
    margin-right: auto;

    color: #777078;
}


/* =========================================================
   BLOG CARD
   NOT WHITE
========================================================= */

.blog-card {
    height: 100%;

    overflow: hidden;

    border:
        1px solid rgba(100, 27, 46, 0.12);

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            #f8edf0 0%,
            #fdf8f9 100%
        );

    box-shadow:
        0 12px 40px rgba(66, 16, 29, 0.07);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-9px);

    border-color:
        rgba(100, 27, 46, 0.25);

    box-shadow:
        0 25px 60px rgba(66, 16, 29, 0.14);
}


/* =========================================================
   BLOG CARD IMAGE
========================================================= */

.blog-card-image {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    height: 205px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 30% 20%,
            rgba(100, 27, 46, 0.13),
            transparent 40%
        ),
        linear-gradient(
            135deg,
            #ead9df,
            #f8edf0
        );
}

.blog-card-image::before {
    content: "";

    position: absolute;

    width: 170px;
    height: 170px;

    border:
        1px solid rgba(100, 27, 46, 0.13);

    border-radius: 50%;

    animation:
        cardRing 8s linear infinite;
}

.blog-card-image::after {
    content: "";

    position: absolute;

    width: 100px;
    height: 100px;

    border:
        1px dashed rgba(100, 27, 46, 0.16);

    border-radius: 50%;

    animation:
        cardRingReverse 6s linear infinite;
}

.blog-image-icon {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 76px;
    height: 76px;

    border-radius: 22px;

    background: #ffffff;

    color: #641b2e;

    font-size: 32px;

    box-shadow:
        0 15px 35px rgba(66, 16, 29, 0.12);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.blog-card:hover .blog-image-icon {
    transform:
        scale(1.08)
        rotate(-4deg);

    box-shadow:
        0 20px 45px rgba(66, 16, 29, 0.18);
}

.blog-card-image > span {
    position: absolute;
    z-index: 3;

    left: 16px;
    bottom: 15px;

    padding: 7px 12px;

    border-radius: 50px;

    background: rgba(255, 255, 255, 0.94);

    color: #641b2e;

    font-size: 11px;
    font-weight: 800;

    backdrop-filter: blur(8px);
}


/* =========================================================
   BLOG CARD CONTENT
========================================================= */

.blog-card-content {
    display: flex;

    flex-direction: column;

    height: calc(100% - 205px);

    padding: 28px;
}

.blog-small-meta {
    margin-bottom: 12px;
}

.blog-small-meta span {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #777078;

    font-size: 12px;
    font-weight: 600;
}

.blog-small-meta i {
    color: #641b2e;
}

.blog-card h3 {
    margin: 0 0 14px;

    color: #242024;

    font-size: 21px;

    line-height: 1.35;

    font-weight: 750;

    letter-spacing: -0.3px;
}

.blog-card p {
    margin: 0;

    color: #777078;

    font-size: 14px;

    line-height: 1.75;
}

.blog-read-more {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    width: fit-content;

    margin-top: auto;

    padding-top: 22px;

    color: #641b2e;

    text-decoration: none;

    font-size: 14px;

    font-weight: 800;

    transition:
        gap 0.3s ease,
        color 0.3s ease;
}

.blog-read-more:hover {
    gap: 13px;

    color: #42101d;
}


/* =========================================================
   BLOG CTA
========================================================= */

.blog-cta-section {
    padding-top: 30px;

    padding-bottom: 100px;

    background: #ffffff;
}

.blog-cta {
    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    overflow: hidden;

    padding: 55px 60px;

    border-radius: 28px;

    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(255, 255, 255, 0.12),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #42101d,
            #641b2e
        );

    box-shadow:
        0 25px 70px rgba(66, 16, 29, 0.18);
}

.blog-cta::before {
    content: "";

    position: absolute;

    width: 240px;
    height: 240px;

    right: -100px;
    bottom: -130px;

    border:
        1px solid rgba(255, 255, 255, 0.13);

    border-radius: 50%;

    animation:
        ctaRotate 12s linear infinite;
}

.blog-cta .section-label {
    color: rgba(255, 255, 255, 0.75);
}

.blog-cta h2 {
    position: relative;
    z-index: 2;

    max-width: 720px;

    margin: 15px 0;

    color: #ffffff;

    font-size: clamp(28px, 3vw, 42px);

    line-height: 1.2;

    font-weight: 800;
}

.blog-cta p {
    position: relative;
    z-index: 2;

    max-width: 680px;

    margin: 0;

    color: rgba(255, 255, 255, 0.72);

    font-size: 15px;

    line-height: 1.75;
}

.blog-cta > div:last-child {
    position: relative;

    z-index: 3;

    flex-shrink: 0;
}


/* =========================================================
   BUTTON
========================================================= */

.blog-featured .btn-main {
    background: #641b2e;

    border-color: #641b2e;

    color: #ffffff;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.blog-featured .btn-main:hover {
    background: #42101d;

    border-color: #42101d;

    color: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 12px 30px rgba(66, 16, 29, 0.20);
}

.blog-cta .btn-white {
    background: #ffffff;

    border: 1px solid #ffffff;

    color: #242024;

    font-weight: 700;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.blog-cta .btn-white:hover {
    color: #242024;

    transform: translateY(-3px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.18);
}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.blog-hero-content.reveal,
.blog-featured.reveal,
.blog-categories.reveal,
.blog-list-section .section-heading.reveal,
.blog-card.reveal,
.blog-cta.reveal {

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(35px);

    transition:
        opacity 0.75s ease,
        transform 0.75s ease,
        visibility 0.75s ease;
}

.blog-hero-content.reveal.active,
.blog-featured.reveal.active,
.blog-categories.reveal.active,
.blog-list-section .section-heading.reveal.active,
.blog-card.reveal.active,
.blog-cta.reveal.active {

    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);
}


/* =========================================================
   CARD STAGGER
========================================================= */

.blog-list-section .row > div:nth-child(1) .blog-card {
    transition-delay: 0.05s;
}

.blog-list-section .row > div:nth-child(2) .blog-card {
    transition-delay: 0.12s;
}

.blog-list-section .row > div:nth-child(3) .blog-card {
    transition-delay: 0.19s;
}

.blog-list-section .row > div:nth-child(4) .blog-card {
    transition-delay: 0.26s;
}

.blog-list-section .row > div:nth-child(5) .blog-card {
    transition-delay: 0.33s;
}

.blog-list-section .row > div:nth-child(6) .blog-card {
    transition-delay: 0.40s;
}

.blog-list-section .row > div:nth-child(7) .blog-card {
    transition-delay: 0.47s;
}

.blog-list-section .row > div:nth-child(8) .blog-card {
    transition-delay: 0.54s;
}

.blog-list-section .row > div:nth-child(9) .blog-card {
    transition-delay: 0.61s;
}

.blog-list-section .row > div:nth-child(10) .blog-card {
    transition-delay: 0.68s;
}


/* =========================================================
   KEYFRAMES
========================================================= */

@keyframes blogOrbitRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}

@keyframes blogOrbitRotateReverse {

    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }

}

@keyframes browserFloat {

    0%,
    100% {
        transform:
            translateY(0)
            rotate(2deg);
    }

    50% {
        transform:
            translateY(-12px)
            rotate(2deg);
    }

}

@keyframes cardRing {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}

@keyframes cardRingReverse {

    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }

}

@keyframes ctaRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .blog-hero {
        padding: 120px 0 90px;
    }

    .blog-featured {
        grid-template-columns: 1fr;

        padding: 45px;
    }

    .blog-featured-visual {
        margin-top: 10px;
    }

    .blog-cta {
        align-items: flex-start;

        flex-direction: column;

        padding: 45px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .blog-hero {
        padding: 105px 0 75px;
    }

    .blog-hero h1 {
        font-size: 42px;

        letter-spacing: -1.2px;
    }

    .blog-hero p {
        font-size: 16px;

        line-height: 1.7;
    }

    .blog-orbit-one {
        width: 280px;
        height: 280px;

        right: -160px;
        top: -50px;
    }

    .blog-orbit-two {
        width: 170px;
        height: 170px;

        right: -30px;
        top: 90px;
    }

    .blog-featured {
        padding: 30px 24px;

        border-radius: 22px;

        gap: 35px;
    }

    .blog-featured h2 {
        font-size: 30px;
    }

    .blog-featured p {
        font-size: 15px;
    }

    .blog-meta {
        gap: 12px;

        flex-direction: column;
    }

    .blog-browser {
        transform: rotate(0deg);
    }

    .blog-categories {
        justify-content: flex-start;

        overflow-x: auto;

        flex-wrap: nowrap;

        padding-bottom: 5px;

        scrollbar-width: none;
    }

    .blog-categories::-webkit-scrollbar {
        display: none;
    }

    .category-title {
        flex-shrink: 0;
    }

    .blog-categories a {
        flex-shrink: 0;
    }

    .blog-card-content {
        padding: 24px;
    }

    .blog-card h3 {
        font-size: 20px;
    }

    .blog-cta {
        padding: 35px 25px;

        border-radius: 22px;
    }

    .blog-cta h2 {
        font-size: 30px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .blog-hero h1 {
        font-size: 36px;
    }

    .blog-featured h2 {
        font-size: 27px;
    }

    .browser-body {
        padding: 24px;
    }

    .browser-cards div {
        height: 75px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .blog-orbit-one,
    .blog-orbit-two,
    .blog-browser,
    .blog-card-image::before,
    .blog-card-image::after,
    .blog-cta::before {

        animation: none !important;
    }

    .blog-hero-content.reveal,
    .blog-featured.reveal,
    .blog-categories.reveal,
    .blog-list-section .section-heading.reveal,
    .blog-card.reveal,
    .blog-cta.reveal {

        opacity: 1;

        visibility: visible;

        transform: none;

        transition: none;
    }

}
/* =========================================================
   ELITEWEBS
   BLOG ARTICLE / DETAIL PAGE
   PREMIUM MEHRUM WHITE THEME
========================================================= */


/* =========================================================
   ARTICLE HERO
========================================================= */

.article-hero {
    position: relative;
    overflow: hidden;
    padding: 145px 0 105px;

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(100, 27, 46, 0.12),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #fbf5f7 55%,
            #f8edf0 100%
        );
}

.article-hero-content {
    position: relative;
    z-index: 5;
    max-width: 900px;
}


/* =========================================================
   ARTICLE HERO ORBITS
========================================================= */

.article-hero-orbit {
    position: absolute;

    border-radius: 50%;

    border:
        1px solid rgba(100, 27, 46, 0.13);

    pointer-events: none;
}

.article-orbit-one {
    width: 460px;
    height: 460px;

    right: -180px;
    top: -150px;

    animation:
        articleOrbitRotate 18s linear infinite;
}

.article-orbit-two {
    width: 270px;
    height: 270px;

    right: 45px;
    top: 65px;

    border-style: dashed;

    animation:
        articleOrbitRotateReverse 12s linear infinite;
}

.article-orbit-one::before,
.article-orbit-two::before {
    content: "";

    position: absolute;

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #641b2e;

    box-shadow:
        0 0 0 7px rgba(100, 27, 46, 0.08);
}

.article-orbit-one::before {
    top: 65px;
    left: 90px;
}

.article-orbit-two::before {
    right: 15px;
    bottom: 45px;
}


/* =========================================================
   BACK TO BLOG
========================================================= */

.article-back {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 25px;

    color: #641b2e;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    transition:
        gap 0.3s ease,
        color 0.3s ease;
}

.article-back i {
    font-size: 15px;
}

.article-back:hover {
    gap: 13px;

    color: #42101d;
}


/* =========================================================
   ARTICLE CATEGORY
========================================================= */

.article-category {
    display: inline-flex;

    align-items: center;

    padding: 8px 15px;

    border-radius: 50px;

    background: rgba(100, 27, 46, 0.09);

    color: #641b2e;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 0.2px;
}


/* =========================================================
   ARTICLE HERO HEADING
========================================================= */

.article-hero h1 {
    max-width: 900px;

    margin: 22px 0;

    color: #242024;

    font-size: clamp(
        40px,
        5vw,
        68px
    );

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -1.8px;
}

.article-intro {
    max-width: 780px;

    margin: 0;

    color: #777078;

    font-size: 18px;

    line-height: 1.8;
}


/* =========================================================
   ARTICLE META
========================================================= */

.article-meta {
    display: flex;

    flex-wrap: wrap;

    gap: 25px;

    margin-top: 28px;
}

.article-meta span {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #777078;

    font-size: 13px;

    font-weight: 600;
}

.article-meta i {
    color: #641b2e;

    font-size: 15px;
}


/* =========================================================
   ARTICLE MAIN SECTION
========================================================= */

.article-section {
    padding-top: 90px;

    background: #ffffff;
}

.article-content {
    max-width: 850px;
}


/* =========================================================
   ARTICLE BLOCK
========================================================= */

.article-block {
    margin-bottom: 65px;
}

.article-block:last-child {
    margin-bottom: 0;
}

.article-block h2 {
    margin: 0 0 22px;

    color: #242024;

    font-size: clamp(
        28px,
        3vw,
        38px
    );

    line-height: 1.2;

    font-weight: 800;

    letter-spacing: -0.7px;
}

.article-block h3 {
    margin: 30px 0 15px;

    color: #242024;

    font-size: 22px;

    line-height: 1.35;

    font-weight: 750;
}

.article-block p {
    margin: 0 0 18px;

    color: #777078;

    font-size: 16px;

    line-height: 1.9;
}

.article-block p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   ARTICLE LEAD
========================================================= */

.article-lead {
    color: #242024 !important;

    font-size: 20px !important;

    line-height: 1.8 !important;

    font-weight: 600;
}


/* =========================================================
   ARTICLE LIST
========================================================= */

.article-block ul {
    margin: 20px 0 0;

    padding: 0;

    list-style: none;
}

.article-block li {
    position: relative;

    margin-bottom: 13px;

    padding-left: 30px;

    color: #777078;

    font-size: 15px;

    line-height: 1.7;
}

.article-block li::before {
    content: "";

    position: absolute;

    left: 0;

    top: 9px;

    width: 8px;

    height: 8px;

    border-radius: 50%;

    background: #641b2e;

    box-shadow:
        0 0 0 5px rgba(100, 27, 46, 0.08);
}


/* =========================================================
   ARTICLE VISUAL
========================================================= */

.article-visual {
    margin: 10px 0 70px;
}


/* =========================================================
   SPEED CARD
========================================================= */

.article-speed-card {
    position: relative;

    overflow: hidden;

    padding: 35px;

    border:
        1px solid rgba(100, 27, 46, 0.12);

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            #f8edf0 0%,
            #fdf8f9 100%
        );

    box-shadow:
        0 20px 55px rgba(66, 16, 29, 0.08);
}

.article-speed-card::before {
    content: "";

    position: absolute;

    width: 230px;
    height: 230px;

    right: -100px;
    top: -100px;

    border-radius: 50%;

    border:
        1px solid rgba(100, 27, 46, 0.10);

    animation:
        speedCardRotate 12s linear infinite;
}

.speed-card-header {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 30px;
}

.speed-card-header > span {
    width: 12px;
    height: 12px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #641b2e;

    box-shadow:
        0 0 0 6px rgba(100, 27, 46, 0.09);
}

.speed-card-header strong {
    color: #242024;

    font-size: 16px;

    font-weight: 800;
}


/* =========================================================
   SPEED BARS
========================================================= */

.speed-bars {
    position: relative;
    z-index: 2;
}

.speed-bar {
    margin-bottom: 22px;
}

.speed-bar:last-child {
    margin-bottom: 0;
}

.speed-bar small {
    display: block;

    margin-bottom: 8px;

    color: #777078;

    font-size: 12px;

    font-weight: 700;
}

.speed-bar > span {
    position: relative;

    display: block;

    height: 10px;

    overflow: hidden;

    border-radius: 50px;

    background:
        #eadde1;
}

.speed-bar > span::after {
    content: "";

    position: absolute;

    inset: 0;

    width: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            #42101d,
            #641b2e
        );

    transform-origin: left;

    animation:
        speedBarFill 1.5s ease forwards;
}


/* =========================================================
   ARTICLE NOTE
========================================================= */

.article-note {
    display: flex;

    align-items: flex-start;

    gap: 18px;

    margin-top: 30px;

    padding: 25px;

    border:
        1px solid rgba(100, 27, 46, 0.12);

    border-left:
        4px solid #641b2e;

    border-radius: 16px;

    background:
        #f8edf0;
}

.article-note > i {
    flex-shrink: 0;

    color: #641b2e;

    font-size: 24px;
}

.article-note strong {
    display: block;

    margin-bottom: 8px;

    color: #242024;

    font-size: 15px;

    font-weight: 800;
}

.article-note p {
    margin: 0;

    color: #777078;

    font-size: 14px;

    line-height: 1.75;
}


/* =========================================================
   CHECKLIST
========================================================= */

.article-checklist {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 14px;

    margin-top: 25px;
}

.article-checklist > div {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    padding: 17px 18px;

    border:
        1px solid rgba(100, 27, 46, 0.10);

    border-radius: 14px;

    background:
        #f8edf0;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.article-checklist > div:hover {
    transform: translateY(-4px);

    border-color:
        rgba(100, 27, 46, 0.22);

    box-shadow:
        0 12px 28px rgba(66, 16, 29, 0.08);
}

.article-checklist i {
    flex-shrink: 0;

    color: #641b2e;

    font-size: 18px;
}

.article-checklist span {
    color: #242024;

    font-size: 14px;

    line-height: 1.5;

    font-weight: 600;
}


/* =========================================================
   CONCLUSION
========================================================= */

.article-conclusion {
    position: relative;

    margin-top: 70px;

    padding: 40px;

    border:
        1px solid rgba(100, 27, 46, 0.12);

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            #f8edf0,
            #fdf8f9
        );
}

.conclusion-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 58px;
    height: 58px;

    margin-bottom: 22px;

    border-radius: 17px;

    background: #641b2e;

    color: #ffffff;

    font-size: 24px;

    box-shadow:
        0 12px 28px rgba(66, 16, 29, 0.16);
}

.article-conclusion h2 {
    margin: 0 0 18px;

    color: #242024;

    font-size: 30px;

    font-weight: 800;
}

.article-conclusion p {
    margin: 0 0 16px;

    color: #777078;

    font-size: 15px;

    line-height: 1.85;
}

.article-conclusion p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   ARTICLE CTA
========================================================= */

.article-cta {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    margin-top: 55px;

    padding: 35px 40px;

    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            #42101d,
            #641b2e
        );

    box-shadow:
        0 20px 50px rgba(66, 16, 29, 0.16);
}

.article-cta > div {
    position: relative;

    z-index: 2;
}

.article-cta > div > span {
    display: block;

    margin-bottom: 8px;

    color:
        rgba(255, 255, 255, 0.68);

    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.8px;
}

.article-cta h3 {
    margin: 0 0 8px;

    color: #ffffff;

    font-size: 24px;

    line-height: 1.3;

    font-weight: 800;
}

.article-cta p {
    margin: 0;

    color:
        rgba(255, 255, 255, 0.70);

    font-size: 14px;

    line-height: 1.7;
}

.article-cta .btn-main {
    flex-shrink: 0;

    background: #ffffff;

    border:
        1px solid #ffffff;

    color: #242024;

    font-weight: 800;

    white-space: nowrap;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.article-cta .btn-main:hover {
    background: #ffffff;

    border-color: #ffffff;

    color: #242024;

    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.18);
}


/* =========================================================
   SIDEBAR
========================================================= */

.article-sidebar {
    position: sticky;

    top: 110px;
}

.article-sidebar-card {
    margin-bottom: 20px;

    padding: 28px;

    border:
        1px solid rgba(100, 27, 46, 0.11);

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            #f8edf0,
            #fdf8f9
        );

    box-shadow:
        0 15px 40px rgba(66, 16, 29, 0.06);
}

.sidebar-label {
    display: block;

    margin-bottom: 18px;

    color: #242024;

    font-size: 14px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.6px;
}


/* =========================================================
   TABLE OF CONTENTS
========================================================= */

.article-toc {
    display: flex;

    flex-direction: column;

    gap: 0;
}

.article-toc a {
    position: relative;

    display: block;

    padding: 12px 0 12px 18px;

    border-bottom:
        1px solid rgba(100, 27, 46, 0.08);

    color: #777078;

    text-decoration: none;

    font-size: 13px;

    line-height: 1.5;

    transition:
        color 0.3s ease,
        padding-left 0.3s ease;
}

.article-toc a:last-child {
    border-bottom: 0;
}

.article-toc a::before {
    content: "";

    position: absolute;

    left: 0;

    top: 18px;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #cdb7be;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.article-toc a:hover {
    padding-left: 23px;

    color: #641b2e;
}

.article-toc a:hover::before {
    background: #641b2e;

    transform: scale(1.3);
}


/* =========================================================
   SIDEBAR CONTACT
========================================================= */

.sidebar-contact-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 52px;
    height: 52px;

    margin-bottom: 20px;

    border-radius: 15px;

    background: #641b2e;

    color: #ffffff;

    font-size: 21px;

    box-shadow:
        0 10px 25px rgba(66, 16, 29, 0.15);
}

.sidebar-contact h3 {
    margin: 0 0 12px;

    color: #242024;

    font-size: 21px;

    font-weight: 800;
}

.sidebar-contact p {
    margin: 0 0 20px;

    color: #777078;

    font-size: 14px;

    line-height: 1.75;
}

.sidebar-contact > a {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #641b2e;

    text-decoration: none;

    font-size: 14px;

    font-weight: 800;

    transition:
        gap 0.3s ease,
        color 0.3s ease;
}

.sidebar-contact > a:hover {
    gap: 13px;

    color: #42101d;
}


/* =========================================================
   RELATED ARTICLES
========================================================= */

.related-blog-section {
    padding-top: 100px;

    padding-bottom: 100px;

    background: #ffffff;
}

.related-blog-section .section-heading {
    max-width: 700px;
}

.related-blog-section .section-title {
    color: #242024;
}

.related-blog-section .section-title span {
    color: #641b2e;
}

.related-blog-card {
    position: relative;

    display: flex;

    flex-direction: column;

    height: 100%;

    min-height: 230px;

    padding: 28px;

    overflow: hidden;

    border:
        1px solid rgba(100, 27, 46, 0.11);

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            #f8edf0,
            #fdf8f9
        );

    text-decoration: none;

    box-shadow:
        0 12px 35px rgba(66, 16, 29, 0.06);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.related-blog-card::before {
    content: "";

    position: absolute;

    width: 120px;
    height: 120px;

    right: -60px;
    top: -60px;

    border-radius: 50%;

    border:
        1px solid rgba(100, 27, 46, 0.10);

    transition:
        transform 0.5s ease;
}

.related-blog-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(100, 27, 46, 0.22);

    box-shadow:
        0 25px 55px rgba(66, 16, 29, 0.12);
}

.related-blog-card:hover::before {
    transform: scale(1.25);
}

.related-blog-card > span {
    position: relative;

    z-index: 2;

    display: inline-flex;

    width: fit-content;

    padding: 7px 12px;

    margin-bottom: 18px;

    border-radius: 50px;

    background:
        rgba(100, 27, 46, 0.09);

    color: #641b2e;

    font-size: 11px;

    font-weight: 800;
}

.related-blog-card h3 {
    position: relative;

    z-index: 2;

    margin: 0;

    color: #242024;

    font-size: 20px;

    line-height: 1.4;

    font-weight: 800;
}

.related-blog-card > div {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 8px;

    margin-top: auto;

    padding-top: 25px;

    color: #641b2e;

    font-size: 13px;

    font-weight: 800;

    transition:
        gap 0.3s ease;
}

.related-blog-card:hover > div {
    gap: 13px;
}


/* =========================================================
   REVEAL ANIMATION
========================================================= */

.article-hero-content.reveal,
.article-block.reveal,
.article-visual.reveal,
.article-conclusion.reveal,
.article-cta.reveal,
.article-sidebar-card.reveal-right,
.related-blog-section .section-heading.reveal,
.related-blog-card.reveal {

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(35px);

    transition:
        opacity 0.75s ease,
        transform 0.75s ease,
        visibility 0.75s ease;
}


/* =========================================================
   REVEAL RIGHT
========================================================= */

.article-sidebar-card.reveal-right {
    transform:
        translateX(40px);
}

.article-hero-content.reveal.active,
.article-block.reveal.active,
.article-visual.reveal.active,
.article-conclusion.reveal.active,
.article-cta.reveal.active,
.article-sidebar-card.reveal-right.active,
.related-blog-section .section-heading.reveal.active,
.related-blog-card.reveal.active {

    opacity: 1;

    visibility: visible;

    transform:
        translateY(0)
        translateX(0);
}


/* =========================================================
   RELATED CARD STAGGER
========================================================= */

.related-blog-section .row > div:nth-child(1)
.related-blog-card {
    transition-delay: 0.08s;
}

.related-blog-section .row > div:nth-child(2)
.related-blog-card {
    transition-delay: 0.16s;
}

.related-blog-section .row > div:nth-child(3)
.related-blog-card {
    transition-delay: 0.24s;
}


/* =========================================================
   ARTICLE BLOCK STAGGER
========================================================= */

.article-content .article-block:nth-child(1) {
    transition-delay: 0.05s;
}

.article-content .article-block:nth-child(2) {
    transition-delay: 0.10s;
}

.article-content .article-visual {
    transition-delay: 0.15s;
}

.article-content .article-block:nth-child(4) {
    transition-delay: 0.10s;
}

.article-content .article-block:nth-child(5) {
    transition-delay: 0.15s;
}

.article-content .article-block:nth-child(6) {
    transition-delay: 0.20s;
}

.article-content .article-block:nth-child(7) {
    transition-delay: 0.25s;
}


/* =========================================================
   KEYFRAMES
========================================================= */

@keyframes articleOrbitRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}

@keyframes articleOrbitRotateReverse {

    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }

}

@keyframes speedCardRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}

@keyframes speedBarFill {

    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .article-hero {
        padding: 120px 0 90px;
    }

    .article-section {
        padding-top: 70px;
    }

    .article-content {
        max-width: 100%;
    }

    .article-sidebar {
        position: static;

        margin-top: 20px;
    }

    .article-cta {
        align-items: flex-start;

        flex-direction: column;
    }

    .article-checklist {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .article-hero {
        padding: 105px 0 75px;
    }

    .article-hero h1 {
        font-size: 40px;

        letter-spacing: -1.1px;
    }

    .article-intro {
        font-size: 16px;

        line-height: 1.75;
    }

    .article-meta {
        flex-direction: column;

        gap: 12px;
    }

    .article-orbit-one {
        width: 280px;
        height: 280px;

        right: -160px;
        top: -60px;
    }

    .article-orbit-two {
        width: 170px;
        height: 170px;

        right: -35px;
        top: 80px;
    }

    .article-block {
        margin-bottom: 50px;
    }

    .article-block h2 {
        font-size: 29px;
    }

    .article-block h3 {
        font-size: 21px;
    }

    .article-block p {
        font-size: 15px;

        line-height: 1.8;
    }

    .article-lead {
        font-size: 18px !important;
    }

    .article-speed-card {
        padding: 25px 20px;
    }

    .article-note {
        padding: 20px;

        gap: 14px;
    }

    .article-conclusion {
        padding: 28px 22px;

        border-radius: 20px;
    }

    .article-conclusion h2 {
        font-size: 27px;
    }

    .article-cta {
        padding: 28px 22px;

        border-radius: 20px;
    }

    .article-cta h3 {
        font-size: 21px;
    }

    .article-cta .btn-main {
        width: 100%;

        justify-content: center;
    }

    .article-sidebar-card {
        padding: 24px;
    }

    .related-blog-section {
        padding-top: 75px;

        padding-bottom: 75px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .article-hero h1 {
        font-size: 34px;
    }

    .article-back {
        margin-bottom: 20px;
    }

    .article-category {
        font-size: 12px;
    }

    .article-checklist > div {
        padding: 15px;
    }

    .related-blog-card {
        min-height: 210px;

        padding: 24px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .article-hero-orbit,
    .article-speed-card::before,
    .speed-bar > span::after {

        animation: none !important;
    }

    .article-hero-content.reveal,
    .article-block.reveal,
    .article-visual.reveal,
    .article-conclusion.reveal,
    .article-cta.reveal,
    .article-sidebar-card.reveal-right,
    .related-blog-section .section-heading.reveal,
    .related-blog-card.reveal {

        opacity: 1;

        visibility: visible;

        transform: none;

        transition: none;
    }

}
