/* ============================================================
   HDIGIT CREATOR — main.css (version améliorée)
   Couleurs de marque : #890185 (violet) · #fea106 (orange)
   ============================================================ */

/* ----------------------------------------------------------
   Fonts
---------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Questrial&family=Noto+Sans:wght@400;500;600&family=Roboto:wght@300;400;500&display=swap");

:root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", sans-serif;
    --heading-font: "Questrial", sans-serif;
    --nav-font: "Noto Sans", sans-serif;
}

/* ----------------------------------------------------------
   Couleurs globales
---------------------------------------------------------- */
:root {
    --background-color: #ffffff;
    --default-color: #0a0f14;
    --heading-color: #0f2943;
    --accent-color: #890185;
    --accent-orange: #fea106;
    --brand-gradient: linear-gradient(135deg, #890185 0%, #fea106 100%);
    --brand-gradient-soft: linear-gradient(
        135deg,
        rgba(137, 1, 133, 0.08) 0%,
        rgba(254, 161, 6, 0.08) 100%
    );
    --surface-color: #ffffff;
    --contrast-color: #ffffff;
    --border-light: rgba(137, 1, 133, 0.12);
}

/* ----------------------------------------------------------
   Navigation couleurs
---------------------------------------------------------- */
:root {
    --nav-color: #0a0f14;
    --nav-hover-color: #890185;
    --nav-mobile-background-color: #ffffff;
    --nav-dropdown-background-color: #ffffff;
    --nav-dropdown-color: #0a0f14;
    --nav-dropdown-hover-color: #fea106;
}

/* Presets */
.light-background {
    --background-color: #faf8ff;
    --surface-color: #ffffff;
}
.dark-background {
    --background-color: #0d0010;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #1e0a1e;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/* =============================================================
   GÉNÉRAL
============================================================= */
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}
a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

/* Texte dégradé utilitaire */
.text-gradient {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =============================================================
   PHP EMAIL FORM
============================================================= */
.php-email-form .error-message {
    display: none;
    background: var(--accent-color);
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
    border-radius: 8px;
}
.php-email-form .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
    border-radius: 8px;
}
.php-email-form .loading {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}
.php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--accent-color);
    border-top-color: var(--surface-color);
    animation: php-email-form-loading 1s linear infinite;
}
@keyframes php-email-form-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* =============================================================
   HEADER
============================================================= */
.header {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 16px 0;
    transition: all 0.5s;
    z-index: 997;
}

.header .header-container {
    background: var(--surface-color);
    border-radius: 50px;
    padding: 6px 28px;
    box-shadow: 0 2px 20px rgba(137, 1, 133, 0.1);
    border: 1px solid var(--border-light);
}

.header .logo {
    line-height: 1;
}
.header .logo img {
    max-height: 36px;
    margin-right: 8px;
}
.header .logo h1 {
    font-size: 22px;
    margin: 0;
    padding-left: 5px;
    font-weight: 500;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header .header-social-links {
    padding-right: 15px;
}
.header .header-social-links a {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    padding-left: 6px;
    display: inline-block;
    transition: 0.3s;
    font-size: 16px;
}
.header .header-social-links a:hover {
    color: var(--accent-color);
}
.header .header-social-links a i {
    line-height: 0px;
}

@media (max-width: 1200px) {
    .header {
        padding-top: 10px;
    }
    .header .header-container {
        margin-left: 10px;
        margin-right: 10px;
        padding: 10px 5px 10px 15px;
    }
    .header .logo {
        order: 1;
    }
    .header .header-social-links {
        order: 2;
    }
    .header .navmenu {
        order: 3;
    }
}

/* =============================================================
   NAVIGATION DESKTOP
============================================================= */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }
    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }
    .mobile-nav-toggle {
        display: none;
    }
    .navmenu li {
        position: relative;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        padding: 18px 15px;
        font-size: 15px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }
    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }
    .navmenu li:last-child a {
        padding-right: 0;
    }

    /* Lien Contact en pill dégradé */
    .navmenu li:last-child a {
        background: var(--brand-gradient);
        color: #fff !important;
        padding: 8px 20px;
        border-radius: 24px;
        font-size: 14px;
        font-weight: 500;
        margin-left: 8px;
        -webkit-text-fill-color: #fff;
    }
    .navmenu li:last-child a:hover {
        opacity: 0.88;
        transform: translateY(-1px);
    }

    .navmenu li:hover > a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-hover-color);
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 10px;
        z-index: 99;
        box-shadow: 0 8px 30px rgba(137, 1, 133, 0.15);
        border: 1px solid var(--border-light);
    }
    .navmenu .dropdown ul li {
        min-width: 200px;
    }
    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 14px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }
    .navmenu .dropdown ul a i {
        font-size: 12px;
    }
    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover > a {
        color: var(--nav-dropdown-hover-color);
    }
    .navmenu .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }
    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }
    .navmenu .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}

/* Navigation Mobile */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }
    .navmenu {
        padding: 0;
        z-index: 9997;
    }
    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 12px;
        background-color: var(--nav-mobile-background-color);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0 8px 30px rgba(137, 1, 133, 0.15);
        border: 1px solid var(--border-light);
    }
    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }
    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(
            in srgb,
            var(--accent-color),
            transparent 90%
        );
    }
    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }
    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }
    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }
    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        border: 1px solid
            color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        transition: all 0.5s ease-in-out;
    }
    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }
    .navmenu .dropdown > .dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }
    .mobile-nav-active {
        overflow: hidden;
    }
    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }
    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }
    .mobile-nav-active .navmenu > ul {
        display: block;
    }
}

/* =============================================================
   FOOTER
============================================================= */
.footer {
    background: var(--brand-gradient);
    color: #fff;
    font-size: 14px;
    padding: 36px 0;
    position: relative;
}
.footer .copyright p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
}
.footer .social-links {
    margin-top: 16px;
}
.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 5px;
    transition: 0.3s;
}
.footer .social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-color: #fff;
    transform: translateY(-2px);
}
.footer .credits {
    margin-top: 10px;
    font-size: 13px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* =============================================================
   SCROLL TOP
============================================================= */
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 20px;
    bottom: -15px;
    z-index: 99999;
    background: var(--brand-gradient);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: all 0.4s;
    box-shadow: 0 4px 15px rgba(137, 1, 133, 0.35);
}
.scroll-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}
.scroll-top:hover {
    opacity: 0.85;
    transform: translateY(-3px);
}
.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 20px;
}

/* Disable AOS delay on mobile */
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/* =============================================================
   PAGE TITLE & BREADCRUMBS
============================================================= */
.page-title {
    text-align: center;
    padding: 20px 0;
}
.page-title .breadcrumbs {
    margin-bottom: 1.5rem;
}
.page-title .breadcrumbs .breadcrumb {
    justify-content: center;
    margin: 0;
    padding: 0;
    background: none;
}
.page-title .breadcrumbs .breadcrumb .breadcrumb-item {
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.page-title .breadcrumbs .breadcrumb .breadcrumb-item.active {
    color: var(--accent-color);
}
.page-title .breadcrumbs .breadcrumb .breadcrumb-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}
.page-title .breadcrumbs .breadcrumb .breadcrumb-item a:hover {
    color: var(--accent-color);
}
.page-title
    .breadcrumbs
    .breadcrumb
    .breadcrumb-item
    + .breadcrumb-item::before {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}
.page-title .title-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem 0;
}
.page-title .title-wrapper h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--heading-color);
}
.page-title .title-wrapper p {
    font-size: 1.1rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin: 0;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .page-title .title-wrapper h1 {
        font-size: 2rem;
    }
    .page-title .title-wrapper p {
        font-size: 1rem;
    }
}
@media (max-width: 576px) {
    .page-title .title-wrapper h1 {
        font-size: 1.75rem;
    }
}

/* =============================================================
   SECTIONS GLOBALES
============================================================= */
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 70px 0;
    scroll-margin-top: 90px;
    overflow: clip;
}
@media (max-width: 1199px) {
    section,
    .section {
        scroll-margin-top: 66px;
    }
}

/* =============================================================
   TITRES DE SECTION
============================================================= */
.section-title {
    text-align: center;
    padding-bottom: 50px;
    position: relative;
}
.section-title h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 12px;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}
.section-title .title-shape {
    width: 200px;
    height: 20px;
    margin: 0 auto;
    color: var(--accent-color);
    opacity: 0.5;
}
.section-title .title-shape svg {
    width: 100%;
    height: 100%;
}
.section-title p {
    margin: 12px auto 0;
    font-size: 16px;
    max-width: 680px;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    line-height: 1.8;
}
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 30px;
    }
}

/* Badge "disponible" */
.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(137, 1, 133, 0.08);
    border: 1px solid rgba(137, 1, 133, 0.2);
    color: var(--accent-color);
    font-size: 12px;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 18px;
}
.availability-badge .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-color);
    animation: pulse-dot 1.8s infinite;
}
@keyframes pulse-dot {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

/* =============================================================
   HERO SECTION
============================================================= */
.hero {
    padding: 90px 0 70px;
    position: relative;
    overflow: hidden;
}

/* Décoration de fond */
.hero::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(137, 1, 133, 0.06) 0%,
        transparent 70%
    );
    pointer-events: none;
}
.hero::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(254, 161, 6, 0.07) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.hero .content h2 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1.2rem;
    color: var(--heading-color);
}
.hero .content h2 span {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
@media (max-width: 991px) {
    .hero .content h2 {
        font-size: 2.2rem;
    }
}
.hero .content .lead {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    line-height: 1.7;
}
.hero .cta-buttons {
    display: flex;
    gap: 14px;
    margin-bottom: 3rem;
}
@media (max-width: 576px) {
    .hero .cta-buttons {
        flex-direction: column;
    }
}

.hero .cta-buttons .btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.hero .cta-buttons .btn.btn-primary {
    background: var(--brand-gradient);
    border: none;
    color: #fff;
    box-shadow: 0 6px 20px rgba(137, 1, 133, 0.3);
}
.hero .cta-buttons .btn.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(137, 1, 133, 0.35);
}
.hero .cta-buttons .btn.btn-outline {
    border: 2px solid rgba(137, 1, 133, 0.4);
    color: var(--accent-color);
    background: transparent;
}
.hero .cta-buttons .btn.btn-outline:hover {
    background: var(--brand-gradient);
    border-color: transparent;
    color: #fff;
    transform: translateY(-3px);
}

.hero .hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 1.5rem;
}
@media (max-width: 576px) {
    .hero .hero-stats {
        flex-direction: column;
        gap: 1.2rem;
    }
}

.hero .hero-stats .stat-item .stat-number {
    display: block;
    font-size: 2.4rem;
    font-weight: 700;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.hero .hero-stats .stat-item .stat-label {
    font-size: 0.875rem;
    color: color-mix(in srgb, var(--default-color), transparent 35%);
    margin-top: 0.4rem;
    display: block;
}

/* Image hero avec animation */
.hero .hero-image {
    position: relative;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero .hero-image img {
    position: relative;
    z-index: 2;
    border-radius: 50%;
    box-shadow: 0 10px 40px rgba(137, 1, 133, 0.2);
}
.hero .hero-image .shape-1,
.hero .hero-image .shape-2 {
    position: absolute;
    border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
    z-index: 1;
}
.hero .hero-image .shape-1 {
    width: 320px;
    height: 320px;
    background: linear-gradient(
        135deg,
        rgba(137, 1, 133, 0.12),
        rgba(254, 161, 6, 0.08)
    );
    top: -20px;
    right: -20px;
    animation: morphShape 15s linear infinite;
}
.hero .hero-image .shape-2 {
    width: 210px;
    height: 210px;
    background: linear-gradient(
        135deg,
        rgba(254, 161, 6, 0.1),
        rgba(137, 1, 133, 0.06)
    );
    bottom: -20px;
    left: -20px;
    animation: morphShape 20s linear infinite reverse;
}
@media (max-width: 991px) {
    .hero {
        text-align: center;
        padding: 60px 0;
    }
    .hero .cta-buttons {
        justify-content: center;
    }
    .hero .hero-stats {
        justify-content: center;
    }
    .hero .hero-image {
        margin-top: 3rem;
    }
}
@keyframes morphShape {
    0% {
        border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
    }
    25% {
        border-radius: 58% 42% 75% 25%/76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67%/55% 27% 73% 45%;
    }
    75% {
        border-radius: 33% 67% 58% 42%/63% 68% 32% 37%;
    }
    100% {
        border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
    }
}

/* =============================================================
   ABOUT SECTION
============================================================= */
.about .about-image {
    position: relative;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(137, 1, 133, 0.2);
    border: 4px solid transparent;
    background: var(--brand-gradient) border-box;
}
.about .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.detail-images-gallery img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.about .about-content {
    padding-left: 2.5rem;
}
@media (max-width: 991.98px) {
    .about .about-content {
        padding-left: 0;
        margin-top: 2.5rem;
    }
}
.about .about-content .subtitle {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent-orange);
    margin-bottom: 0.8rem;
    display: block;
}
.about .about-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}
.about .about-content .lead {
    font-size: 1.05rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .personal-info {
    margin-top: 2rem;
    padding: 1.8rem;
    background: var(--brand-gradient-soft);
    border: 1px solid var(--border-light);
    border-radius: 14px;
}
.about .personal-info .info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.about .personal-info .info-item .label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: color-mix(in srgb, var(--default-color), transparent 45%);
}
.about .personal-info .info-item .value {
    font-weight: 600;
    color: var(--heading-color);
}

.about .signature {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.about .signature .signature-image {
    max-width: 150px;
}
.about .signature .signature-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}
.about .signature .signature-info p {
    font-size: 0.875rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin: 0;
}

/* =============================================================
   SKILLS SECTION
============================================================= */
.skills .skill-box {
    background-color: var(--surface-color);
    padding: 2rem;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(137, 1, 133, 0.08);
    border: 1px solid var(--border-light);
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}
.skills .skill-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(137, 1, 133, 0.14);
}
.skills .skill-box h3 {
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}
.skills .skill-box p {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    opacity: 0.65;
}
.skills .skill-box .progress {
    background: rgba(137, 1, 133, 0.1);
    border-radius: 50px;
    height: 6px;
    margin-top: 5px;
    overflow: hidden;
}
.skills .skill-box .progress .progress-bar {
    background: var(--brand-gradient);
    height: 100%;
    border-radius: 50px;
    transition: width 0.9s ease;
    width: 1px;
}

/* Services dans skills (compétences) */
.skills .service-item {
    background: var(--surface-color);
    padding: 1.8rem;
    border-radius: 14px;
    border: 1px solid var(--border-light);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.skills .service-item::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: var(--brand-gradient);
    opacity: 0.05;
    border-radius: 0 0 0 60px;
}
.skills .service-item:hover {
    border-color: rgba(137, 1, 133, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(137, 1, 133, 0.1);
}
.skills .service-item .bi {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 12px;
    display: block;
}
.skills .service-item h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.skills .service-item p {
    font-size: 0.875rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 0;
}

/* =============================================================
   RESUME SECTION
============================================================= */
.resume .resume-wrapper .resume-block {
    margin-bottom: 3.5rem;
}
.resume .resume-wrapper .resume-block:last-child {
    margin-bottom: 0;
}
.resume .resume-wrapper .resume-block h2 {
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
    font-weight: 700;
}
.resume .resume-wrapper .resume-block h2 span {
    color: var(--accent-color);
}
.resume .resume-wrapper .resume-block .lead {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 2.5rem;
}

/* Timeline */
.resume .resume-wrapper .timeline {
    position: relative;
}
.resume .resume-wrapper .timeline::before {
    content: "";
    position: absolute;
    left: 20%;
    top: 0;
    height: 100%;
    width: 2px;
    background: var(--brand-gradient);
    border-radius: 2px;
}
.resume .resume-wrapper .timeline .timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    position: relative;
}
.resume .resume-wrapper .timeline .timeline-item:last-child {
    margin-bottom: 0;
}

.resume .resume-wrapper .timeline .timeline-item .timeline-left {
    width: 20%;
    padding-right: 3rem;
}
.resume .resume-wrapper .timeline .timeline-item .timeline-left .company {
    color: var(--heading-color);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 4px;
}
.resume .resume-wrapper .timeline .timeline-item .timeline-left .period {
    color: var(--accent-orange);
    font-size: 0.85rem;
    font-weight: 500;
}

.resume .resume-wrapper .timeline .timeline-item .timeline-dot {
    position: absolute;
    left: calc(20% + 1px);
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    background: var(--brand-gradient);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(137, 1, 133, 0.15);
}

.resume .resume-wrapper .timeline .timeline-item .timeline-right {
    width: 70%;
    padding-left: 3rem;
    margin-top: -4px;
}
.resume .resume-wrapper .timeline .timeline-item .timeline-right .position {
    color: var(--heading-color);
    font-size: 1.1rem;
    margin-bottom: 6px;
    font-weight: 600;
}
.resume .resume-wrapper .timeline .timeline-item .timeline-right .description {
    color: color-mix(in srgb, var(--default-color), transparent 28%);
    line-height: 1.7;
}
.resume .resume-wrapper .timeline .timeline-item .timeline-right ul {
    padding-left: 15px;
}
.resume .resume-wrapper .timeline .timeline-item .timeline-right ul li {
    padding-bottom: 10px;
}

@media (max-width: 992px) {
    .resume .resume-wrapper .resume-block h2 {
        font-size: 1.6rem;
    }
    .resume .resume-wrapper .timeline::before {
        left: 1rem;
    }
    .resume .resume-wrapper .timeline .timeline-item {
        flex-direction: column;
        margin-bottom: 20px;
    }
    .resume .resume-wrapper .timeline .timeline-item .timeline-left {
        width: 100%;
        text-align: left;
        padding-right: 0;
        padding-left: 2.5rem;
        margin-bottom: 1.4rem;
        margin-top: -4px;
    }
    .resume .resume-wrapper .timeline .timeline-item .timeline-dot {
        left: calc(1rem + 1px);
    }
    .resume .resume-wrapper .timeline .timeline-item .timeline-right {
        width: 100%;
        padding-left: 2.5rem;
    }
}

/* =============================================================
   PORTFOLIO SECTION
============================================================= */
.portfolio .portfolio-filters-container {
    margin-bottom: 40px;
}
.portfolio .portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
}
.portfolio .portfolio-filters li {
    font-size: 14px;
    font-weight: 500;
    padding: 8px 22px;
    cursor: pointer;
    border-radius: 30px;
    background: color-mix(in srgb, var(--surface-color), transparent 50%);
    border: 1px solid var(--border-light);
    color: var(--default-color);
    transition: all 0.3s ease-in-out;
}
.portfolio .portfolio-filters li:hover {
    background: rgba(137, 1, 133, 0.08);
    color: var(--accent-color);
    border-color: rgba(137, 1, 133, 0.25);
    transform: translateY(-2px);
}
.portfolio .portfolio-filters li.filter-active {
    background: var(--brand-gradient);
    border-color: transparent;
    color: #fff;
}

.portfolio .portfolio-card {
    background: var(--surface-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-light);
    transition: all 0.35s ease-in-out;
}
.portfolio .portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(137, 1, 133, 0.15);
    border-color: rgba(137, 1, 133, 0.2);
}
.portfolio .portfolio-card:hover .portfolio-overlay {
    opacity: 1;
    visibility: visible;
}
.portfolio .portfolio-card:hover .portfolio-overlay .portfolio-actions {
    transform: translateY(0);
}
.portfolio .portfolio-card .portfolio-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}
.portfolio .portfolio-card .portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease-in-out;
}
.portfolio .portfolio-card:hover .portfolio-image img {
    transform: scale(1.05);
}
.portfolio .portfolio-card .portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(137, 1, 133, 0.75), transparent);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}
.portfolio .portfolio-card .portfolio-overlay .portfolio-actions {
    transform: translateY(20px);
    transition: all 0.4s ease-in-out;
    display: flex;
    gap: 12px;
}
.portfolio .portfolio-card .portfolio-overlay .portfolio-actions a {
    width: 42px;
    height: 42px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 18px;
    transition: all 0.3s ease;
}
.portfolio .portfolio-card .portfolio-overlay .portfolio-actions a:hover {
    background: var(--brand-gradient);
    color: #fff;
    transform: scale(1.1);
}
.portfolio .portfolio-card .portfolio-content {
    padding: 22px;
}
.portfolio .portfolio-card .portfolio-content .category {
    font-size: 11px;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}
.portfolio .portfolio-card .portfolio-content h3 {
    font-size: 18px;
    margin: 0 0 12px;
    font-weight: 600;
    transition: color 0.3s ease;
}
.portfolio .portfolio-card .portfolio-content h3:hover {
    color: var(--accent-color);
}
.portfolio .portfolio-card .portfolio-content p {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 32%);
    margin: 0;
    line-height: 1.6;
}

/* =============================================================
   TESTIMONIALS SECTION
============================================================= */
.testimonials .testimonials-slider {
    width: 100%;
    position: relative;
    padding-bottom: 60px;
}
.testimonials .swiper-wrapper {
    height: auto;
}
.testimonials .testimonial-item {
    background: var(--surface-color);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 20px rgba(137, 1, 133, 0.06);
}
@media (max-width: 575px) {
    .testimonials .testimonial-item {
        padding: 20px;
    }
}
.testimonials .testimonial-item h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 18px;
}
.testimonials .testimonial-item p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 28px;
    font-style: italic;
}
.testimonials .testimonial-item .profile {
    gap: 14px;
}
.testimonials .testimonial-item .profile .profile-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(137, 1, 133, 0.2);
}
.testimonials .testimonial-item .profile .profile-info h3 {
    font-size: 17px;
    margin: 0;
    font-weight: 600;
}
.testimonials .testimonial-item .profile .profile-info span {
    font-size: 13px;
    color: color-mix(in srgb, var(--default-color) 70%, transparent);
}
.testimonials .testimonial-item .featured-img-wrapper {
    min-height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
}
.testimonials .testimonial-item .featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.testimonials .swiper-navigation {
    position: absolute;
    bottom: 0;
    gap: 10px;
}
.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    margin: 0;
    width: 44px;
    height: 44px;
    background: var(--surface-color);
    border-radius: 50%;
    border: 1px solid var(--border-light);
    transition: 0.3s;
}
.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
    font-size: 18px;
    color: var(--default-color);
}
.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
    background: var(--brand-gradient);
    border-color: transparent;
}
.testimonials .swiper-button-prev:hover::after,
.testimonials .swiper-button-next:hover::after {
    color: #fff;
}

/* =============================================================
   SERVICES SECTION
============================================================= */
.services {
    padding: 80px 0;
}
.services .servies-title {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.services .btn-outline-primary {
    color: var(--accent-color);
    border-color: var(--accent-color);
    padding: 10px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.services .btn-outline-primary:hover {
    background: var(--brand-gradient);
    border-color: transparent;
    color: #fff;
}

.services .service-item {
    background: var(--surface-color);
    padding: 28px;
    border-radius: 14px;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}
.services .service-item::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: var(--brand-gradient);
    opacity: 0.05;
    border-radius: 0 0 0 80px;
    transition: opacity 0.3s;
}
.services .service-item:hover {
    transform: translateY(-6px);
    border-color: rgba(137, 1, 133, 0.25);
    box-shadow: 0 10px 30px rgba(137, 1, 133, 0.12);
}
.services .service-item:hover::after {
    opacity: 0.1;
}
.services .service-item i {
    font-size: 2.2rem;
    color: var(--accent-color);
    display: inline-block;
    margin-bottom: 14px;
}
.services .service-item h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    font-weight: 600;
}
.services .service-item h3 a {
    color: var(--heading-color);
}
.services .service-item h3 a:hover {
    color: var(--accent-color);
}
.services .service-item p {
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 28%);
}

/* Numéros de service */
.services .service-item .svc-num {
    display: block;
    font-size: 11px;
    color: var(--accent-orange);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

@media (max-width: 991px) {
    .services h2 {
        font-size: 1.8rem;
    }
}

/* =============================================================
   FAQ SECTION
============================================================= */
.faq .faq-container .faq-item {
    background: var(--surface-color);
    position: relative;
    padding: 20px;
    margin-bottom: 12px;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.3s;
}
.faq .faq-container .faq-item:last-child {
    margin-bottom: 0;
}
.faq .faq-container .faq-item h3 {
    font-weight: 600;
    font-size: 15px;
    line-height: 24px;
    margin: 0 30px 0 0;
    transition: 0.3s;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.faq .faq-container .faq-item h3 .num {
    color: var(--accent-orange);
    padding-right: 6px;
}
.faq .faq-container .faq-item h3:hover {
    color: var(--accent-color);
}
.faq .faq-container .faq-item .faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
}
.faq .faq-container .faq-item .faq-content p {
    margin-bottom: 0;
    overflow: hidden;
}
.faq .faq-container .faq-item .faq-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 16px;
    line-height: 0;
    transition: 0.3s;
    cursor: pointer;
}
.faq .faq-container .faq-item .faq-toggle:hover {
    color: var(--accent-color);
}
.faq .faq-container .faq-active {
    background: rgba(137, 1, 133, 0.03);
    border-color: rgba(137, 1, 133, 0.25);
}
.faq .faq-container .faq-active h3 {
    color: var(--accent-color);
}
.faq .faq-container .faq-active .faq-content {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    padding-top: 10px;
}
.faq .faq-container .faq-active .faq-toggle {
    transform: rotate(90deg);
    color: var(--accent-color);
}

/* =============================================================
   CONTACT SECTION
============================================================= */

/* ── Variables ── */
:root {
    --acc: #890185;
    --ora: #fea106;
    --grad: linear-gradient(135deg, #890185 0%, #fea106 100%);
    --border-c: rgba(137, 1, 133, 0.15);
    --soft: rgba(137, 1, 133, 0.07);
}

/* ── Section ── */
#contact {
    background: #faf8ff;
    padding: 80px 0;
}

/* ── Header ── */
.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header .badge-dispo {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(137, 1, 133, 0.08);
    border: 1px solid rgba(137, 1, 133, 0.2);
    color: #890185;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 16px;
    border-radius: 30px;
    margin-bottom: 1rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.contact-header .badge-dispo .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #890185;
    animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

.contact-header h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0f2943;
    margin-bottom: 0.7rem;
}

.contact-header h1 span {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-header p {
    color: #666;
    font-size: 0.95rem;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Info cards ── */
.icard {
    background: #fff;
    border: 1px solid var(--border-c);
    border-radius: 14px;
    padding: 1.2rem 1.4rem;
    margin-bottom: 1rem;
    transition:
        transform 0.25s,
        box-shadow 0.25s;
}

.icard:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(137, 1, 133, 0.09);
}

.icard .ic-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.45rem;
}

.icard .ic-ico {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--soft);
}

.icard .ic-ico svg {
    width: 17px;
    height: 17px;
}

.icard .ic-lbl {
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fea106;
    font-weight: 700;
}

.icard .ic-val {
    font-size: 0.9rem;
    color: #0f2943;
    font-weight: 500;
    padding-left: 50px;
}

.icard .ic-val a {
    color: #0f2943;
    text-decoration: none;
}

.icard .ic-val a:hover {
    color: #890185;
}

/* ── Réseaux sociaux ── */
.socials {
    display: flex;
    gap: 9px;
    padding-left: 50px;
}

.socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-c);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #890185;
    text-decoration: none;
    transition: all 0.25s;
    font-size: 14px;
}

.socials a:hover {
    background: var(--grad);
    border-color: transparent;
    color: #fff;
    transform: translateY(-2px);
}

/* ── Formulaire ── */
.fpanel {
    background: #ffffff;
    border: 1.5px solid rgba(137, 1, 133, 0.18);
    border-radius: 18px;
    padding: 2rem 2.2rem;
    box-shadow: 0 4px 28px rgba(137, 1, 133, 0.07);
    height: 100%;
}

.fpanel h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f2943;
    margin-bottom: 1.6rem;
    padding-bottom: 0.8rem;
    border-bottom: 1.5px solid rgba(137, 1, 133, 0.1);
}

.fg {
    margin-bottom: 0.9rem;
}

.fg label {
    display: block;
    font-size: 11.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #890185;
    margin-bottom: 0.35rem;
}

.fg .form-control {
    background: #f9f6ff !important;
    border: 1.5px solid #e8dff5 !important;
    border-radius: 10px !important;
    color: #1a1a2e !important;
    font-size: 0.92rem;
    padding: 0.7rem 1rem;
    -webkit-text-fill-color: #1a1a2e !important;
    transition:
        border-color 0.2s,
        box-shadow 0.2s,
        background 0.2s;
}

.fg .form-control::placeholder {
    color: #b0a0c0 !important;
    opacity: 1;
    -webkit-text-fill-color: #b0a0c0 !important;
}

.fg .form-control:focus {
    background: #ffffff !important;
    border-color: #890185 !important;
    box-shadow: 0 0 0 3.5px rgba(137, 1, 133, 0.1) !important;
    -webkit-text-fill-color: #1a1a2e !important;
}

.fg .form-control.is-invalid {
    border-color: #dc3545 !important;
}

.fg textarea.form-control {
    min-height: 130px;
    resize: none;
}

/* ── Bouton ── */
.btn-send {
    width: 100%;
    padding: 0.85rem;
    margin-top: 0.4rem;
    border: none;
    border-radius: 10px;
    background: var(--grad);
    color: #fff;
    font-size: 0.98rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.4px;
    box-shadow: 0 6px 18px rgba(137, 1, 133, 0.28);
    transition:
        opacity 0.25s,
        transform 0.25s,
        box-shadow 0.25s;
}

.btn-send:hover {
    opacity: 0.93;
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(137, 1, 133, 0.35);
}

.btn-send:active {
    transform: translateY(0);
}

@media (max-width: 991px) {
    .contact-header h1 {
        font-size: 1.8rem;
    }

    .fpanel {
        margin-top: 2rem;
    }
}

@media (max-width: 575px) {
    .fpanel {
        padding: 1.4rem 1.2rem;
    }
}

/* =============================================================
   PORTFOLIO DETAILS
============================================================= */
.portfolio-details .portfolio-info h3 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 18px;
    position: relative;
}
.portfolio-details .portfolio-info h3:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--brand-gradient);
    left: 0;
    bottom: 0;
    border-radius: 2px;
}
.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 14px;
}
.portfolio-details .portfolio-info ul li {
    display: flex;
    flex-direction: column;
    padding-bottom: 14px;
}
.portfolio-details .portfolio-info ul strong {
    text-transform: uppercase;
    font-weight: 400;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 13px;
}
.portfolio-details .portfolio-info .btn-visit {
    padding: 8px 38px;
    background: var(--brand-gradient);
    color: #fff;
    border-radius: 50px;
    transition: 0.3s;
}
.portfolio-details .portfolio-info .btn-visit:hover {
    opacity: 0.85;
}
.portfolio-details .portfolio-description h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
}
.portfolio-details .portfolio-description p {
    padding: 0;
}
.portfolio-details .portfolio-description .testimonial-item {
    padding: 28px 28px 0;
    background: rgba(137, 1, 133, 0.03);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    margin-bottom: 40px;
}
.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
    width: 80px;
    border-radius: 50px;
    border: 6px solid var(--background-color);
    float: left;
    margin: 0 10px 0 0;
}
.portfolio-details .portfolio-description .testimonial-item h3 {
    font-size: 17px;
    font-weight: bold;
    margin: 15px 0 5px 0;
    padding-top: 20px;
}
.portfolio-details .portfolio-description .testimonial-item h4 {
    font-size: 13px;
    color: #6c757d;
    margin: 0;
}
.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
    color: color-mix(in srgb, var(--accent-color), transparent 50%);
    font-size: 26px;
    line-height: 0;
}
.portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
}
.portfolio-details .portfolio-description .testimonial-item p {
    font-style: italic;
    margin: 0 0 15px 0;
    padding: 0;
}

/* =============================================================
   SERVICE DETAILS
============================================================= */
.service-details .service-details-slider {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    z-index: 1;
}
.service-details .service-details-slider .swiper-wrapper {
    height: auto !important;
}
.service-details .service-details-slider .swiper-pagination {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    z-index: 2;
}
.service-details
    .service-details-slider
    .swiper-pagination
    .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #fff;
    opacity: 0.5;
    transition: 0.3s;
}
.service-details
    .service-details-slider
    .swiper-pagination
    .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
    width: 20px;
    border-radius: 5px;
}
.service-details .content h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 18px;
}
.service-details .content p {
    color: color-mix(in srgb, var(--default-color), transparent 22%);
    margin-bottom: 14px;
}
.service-details .content .features .feature-box {
    padding: 20px;
    background: var(--surface-color);
    border-radius: 12px;
    border: 1px solid var(--border-light);
    height: 100%;
    transition: 0.3s;
}
.service-details .content .features .feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(137, 1, 133, 0.1);
}
.service-details .content .features .feature-box i {
    font-size: 22px;
    color: var(--accent-color);
    margin-right: 14px;
}
.service-details .content .features .feature-box h4 {
    font-size: 17px;
    font-weight: 600;
    margin: 0;
}
.service-details .service-info {
    background: var(--surface-color);
    padding: 28px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 20px rgba(137, 1, 133, 0.06);
}
.service-details .service-info h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 2px solid rgba(137, 1, 133, 0.15);
}
.service-details .service-info .info-item {
    margin-bottom: 22px;
}
.service-details .service-info .info-item:last-child {
    margin-bottom: 0;
}
.service-details .service-info .info-item i {
    font-size: 22px;
    color: var(--accent-color);
    margin-bottom: 8px;
}
.service-details .service-info .info-item h5 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}
.service-details .service-info .info-item p {
    color: color-mix(in srgb, var(--default-color), transparent 22%);
    margin: 0;
}
.service-details .related-services {
    background: var(--surface-color);
    padding: 28px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 20px rgba(137, 1, 133, 0.06);
}
.service-details .related-services h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 2px solid rgba(137, 1, 133, 0.15);
}
.service-details .related-services .service-item {
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid
        color-mix(in srgb, var(--default-color), transparent 90%);
}
.service-details .related-services .service-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.service-details .related-services .service-item i {
    font-size: 22px;
    color: var(--accent-color);
    margin-bottom: 8px;
}
.service-details .related-services .service-item h5 {
    font-size: 17px;
    margin-bottom: 8px;
}
.service-details .related-services .service-item h5 a {
    color: var(--heading-color);
    transition: 0.3s;
}
.service-details .related-services .service-item h5 a:hover {
    color: var(--accent-color);
}
.service-details .related-services .service-item p {
    color: color-mix(in srgb, var(--default-color), transparent 22%);
    margin: 0;
    font-size: 13px;
}
@media (max-width: 991px) {
    .service-details .service-info,
    .service-details .related-services {
        margin-top: 28px;
    }
}
