/*!
Brand    : Ultra Graphix Design
Version  : 1.0.0
Updated  : 2026-03-21
*/

/* ===== Color Variables ===== */
:root {
    --ugd-primary: #ffffff;
    --ugd-secondary: #cccccc;
    --ugd-dark: #000000;
    --ugd-gradient: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    --ugd-gradient-hover: linear-gradient(135deg, #e0e0e0 0%, #cccccc 100%);
}

/* ===== Override Theme Colors ===== */
.ugd-body .bg-theme-grad {
    background: #000 !important;
}

.ugd-body .bg-theme {
    background: #000 !important;
}

.ugd-body .bg-theme-alt {
    background: #0a0a0a !important;
}

/* ===== Navigation Override ===== */
.ugd-body .header-main {
    background: rgba(0, 0, 0, 0.9) !important;
    backdrop-filter: blur(10px);
}

.ugd-body .is-shrink .header-main {
    background: rgba(0, 0, 0, 0.95) !important;
}

.ugd-body .menu-link:hover,
.ugd-body .menu-link:focus {
    color: var(--ugd-primary) !important;
}

.ugd-body .menu-item.active .menu-link,
.ugd-body .menu-link.active {
    color: var(--ugd-primary) !important;
}

/* Nav buttons */
.ugd-body .menu-btns .btn-ugd {
    background: #fff !important;
    color: #000 !important;
    border: none !important;
}

.ugd-body .menu-btns .btn-ugd-outline {
    background: transparent !important;
    color: #fff !important;
    border: 2px solid rgba(255,255,255,0.35) !important;
}

.ugd-body .menu-btns .btn-ugd-outline span {
    color: #fff !important;
}

.ugd-body .menu-btns .btn-ugd span {
    color: #000 !important;
}

/* ===== Hero ===== */
.ugd-hero {
    background: #000 !important;
    position: relative;
    overflow: hidden;
}

.ugd-hero .nk-ovm,
.ugd-hero .nk-ovm::before,
.ugd-hero .nk-ovm::after { display: none !important; }
.ugd-body .header-banner { background: #000 !important; }
.ugd-body .header-banner::before,
.ugd-body .header-banner::after { display: none !important; }
.ugd-body .nk-ovm { background: none !important; opacity: 0 !important; }

.ugd-hero-inner {
    position: relative;
    min-height: 100vh;
}

/* Animated subtle grid background */
.ugd-hero-grid {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridDrift 20s linear infinite;
}

@keyframes gridDrift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

/* Scan line — positioned by JS, no CSS animation */
.ugd-hero-scanline {
    position: absolute;
    top: -2px; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 30%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0.3) 70%, transparent 100%);
    box-shadow: 0 0 20px 4px rgba(255,255,255,0.1);
    z-index: 10;
    pointer-events: none;
}

.ugd-hero-scanline::after {
    content: '';
    position: absolute;
    top: -40px; left: 0; right: 0;
    height: 80px;
    background: radial-gradient(ellipse at 50% 50%, rgba(255,255,255,0.05) 0%, transparent 70%);
}

/* Logo */
.ugd-hero-logo {
    transition: transform 0.08s ease-out, filter 0.08s ease-out;
    will-change: transform, filter;
}

.ugd-hero-logo img {
    max-width: 600px;
    width: 95%;
    filter: invert(1);
    animation: logoReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

/* All hero reactors */
.ugd-hero-services,
.ugd-hero-cta,
.ugd-hero-line,
.ugd-scroll-indicator {
    transition: transform 0.08s ease-out, filter 0.08s ease-out;
    will-change: transform, filter;
}

/* Logo — with shine sweep effect */
.ugd-hero-logo {
    margin-bottom: 24px;
    overflow: hidden;
    position: relative;
}


@keyframes logoReveal {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
        filter: invert(1);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: invert(1);
    }
}

/* Divider line */
.ugd-hero-line {
    width: 120px;
    height: 1px;
    background: rgba(255,255,255,0.3);
    margin: 20px auto 24px;
}

/* Service words */
.ugd-hero-services {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    font-size: 1rem;
    letter-spacing: 2px;
    font-weight: 300;
}

.ugd-hero-word {
    color: rgba(255,255,255,0.6);
}

.ugd-hero-dot {
    color: rgba(255,255,255,0.2);
}

/* CTA buttons */
.ugd-hero-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Bounce arrow */
.ugd-hero-cta .fa-arrow-down {
    animation: bounceArrow 1.5s ease-in-out 3.5s infinite;
}

@keyframes bounceArrow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

/* Scroll indicator — mouse icon below CTA */
.ugd-scroll-indicator {
    margin-top: 32px;
    display: flex;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    animation: fadeInSlow 1s ease 3s forwards;
}

@keyframes fadeInSlow {
    0% { opacity: 0; }
    100% { opacity: 0.4; }
}

.ugd-scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 12px;
    position: relative;
}

.ugd-scroll-wheel {
    width: 3px;
    height: 8px;
    background: rgba(255,255,255,0.5);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(12px); opacity: 0; }
}

/* ===== Parallax on scroll for hero ===== */
.ugd-hero-inner {
    transition: transform 0.1s linear;
}

.ugd-gradient-text {
    color: #fff;
}

.ugd-badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ===== Buttons ===== */
.btn-ugd {
    background: #fff !important;
    color: #000 !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(255,255,255,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-ugd:hover {
    background: #e0e0e0 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255,255,255,0.25);
}

.btn-ugd-outline {
    background: transparent !important;
    color: #fff !important;
    border: 2px solid rgba(255,255,255,0.3) !important;
    transition: all 0.3s ease;
}

.btn-ugd-outline:hover {
    background: #fff !important;
    color: #000 !important;
    transform: translateY(-2px);
}

/* ===== About Features ===== */
.ugd-about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ugd-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ugd-feature-item:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.ugd-feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.ugd-feature-item h6 {
    font-weight: 700;
    margin-bottom: 4px;
    color: #111;
}

.ugd-feature-item p {
    font-size: 13px;
    color: #777;
    margin: 0;
    line-height: 1.5;
}

/* Text reveal animation */
.ugd-reveal-text {
    overflow: hidden;
}

.ugd-reveal-text h2 {
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.in-view .ugd-reveal-text h2,
.ugd-reveal-text h2 {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Service Cards ===== */
.ugd-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.04);
    cursor: default;
}

.ugd-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.ugd-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    font-size: 26px;
    margin: 0 auto 22px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-radius 0.4s ease;
}

.ugd-card:hover .ugd-icon {
    transform: scale(1.1) rotate(-5deg);
    border-radius: 50%;
}

.ugd-card h5 {
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.ugd-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

.ugd-price {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.06);
    color: #333;
    margin-top: 12px;
}

/* ===== Process Steps ===== */
.ugd-process-step {
    position: relative;
    padding-left: 65px;
    margin-bottom: 35px;
}

.ugd-process-step:last-child {
    margin-bottom: 0;
}

.ugd-process-step::after {
    content: '';
    position: absolute;
    left: 20px;
    top: 48px;
    bottom: -35px;
    width: 2px;
    background: linear-gradient(180deg, #ccc 0%, rgba(200,200,200,0.1) 100%);
}

.ugd-process-step:last-child::after {
    display: none;
}

.step-number {
    position: absolute;
    left: 0;
    top: 2px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.ugd-process-step h5 {
    font-weight: 600;
    margin-bottom: 6px;
    color: #1a1a2e;
}

.ugd-process-step p {
    color: #666;
    margin-bottom: 0;
    font-size: 14px;
}

/* ===== Info Boxes ===== */
.ugd-info-box {
    border-radius: 16px;
    padding: 28px;
    background: #f8f9fa;
    border: 1px solid rgba(0,0,0,0.04);
}

.ugd-info-box h5 {
    color: #1a1a2e;
    font-weight: 600;
}

.ugd-highlight-box {
    border-radius: 16px;
    padding: 28px;
    background: #000;
    color: #fff;
}

.ugd-highlight-box h5 {
    color: #fff;
}

.ugd-highlight-box p {
    color: rgba(255,255,255,0.8) !important;
}

.ugd-highlight-box strong {
    color: #fff;
}

/* ===== Section Titles ===== */
.ugd-body .section-head .title::after {
    background: var(--ugd-gradient) !important;
}

.ugd-body .title[title]::before {
    color: rgba(255, 107, 53, 0.06) !important;
}

/* ===== Footer ===== */
.ugd-body .nk-footer {
    background: #000 !important;
}

.ugd-body .social-icon:hover {
    color: #fff !important;
}

/* ===== Links ===== */
.ugd-body a:not(.btn):not(.menu-link):not(.social):hover {
    color: var(--ugd-primary) !important;
}

.ugd-link {
    color: #fff !important;
    font-weight: 600;
    text-decoration: underline;
}

.ugd-link:hover {
    color: #ccc !important;
}

/* ===== Scrollbar (Webkit) ===== */
.ugd-body::-webkit-scrollbar-thumb {
    background: var(--ugd-gradient);
}

/* ===== Floating CTA ===== */
.ugd-floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    background: #fff;
    color: #000 !important;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none !important;
    box-shadow: 0 4px 20px rgba(255,255,255,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ugd-floating-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255,255,255,0.35);
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .ugd-body .header-navbar {
        background: rgba(0, 0, 0, 0.98) !important;
    }
}

/* ===== Scroll-Driven Video Section ===== */

.scroll-video-section {
    height: 300vh;
    position: relative;
    background: #E1E1DF;
}

.scroll-video-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.scroll-video-inner {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Video container */
.van-video-container {
    background: #E1E1DF;
    position: relative;
}

.van-video-container video {
    width: 100%;
    height: auto;
    display: block;
}

.van-video-container::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    box-shadow: inset 0 -35px 50px 25px #E1E1DF, inset 0 0 25px 10px #E1E1DF;
}

/* Step texts */
.scroll-step {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
    padding: 0 20px;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.scroll-step.active {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.scroll-step-number {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 4px;
    color: rgba(0,0,0,0.25);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.scroll-step h3 {
    font-size: 32px;
    font-weight: 900;
    color: #000;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.scroll-step p {
    font-size: 15px;
    color: rgba(0,0,0,0.4);
    margin: 0;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* CTA step */
.scroll-step-cta {
    position: absolute;
    bottom: -100px;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    transform: translateX(-50%) translateY(10px);
}

.scroll-step-cta.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* Van container */
.van-animation-container {
    position: relative;
    margin: 0 auto;
}


/* Progress bar under van */
.wrap-progress {
    height: 4px;
    background: rgba(0,0,0,0.08);
    border-radius: 2px;
    margin-top: 24px;
    overflow: hidden;
}

.wrap-progress-bar {
    height: 100%;
    width: 0%;
    background: #000;
    border-radius: 2px;
    transition: width 0.05s linear;
}

.wrap-progress-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(0,0,0,0.3);
}

.wrap-progress-labels span:last-child {
    color: #000;
}

/* Responsive */
@media (max-width: 767px) {
    .scroll-video-section {
        height: 200vh;
    }
    .scroll-video-inner {
        padding: 0 10px;
    }
    .scroll-step {
        top: -75px;
    }
    .scroll-step h3 {
        font-size: 20px;
    }
    .scroll-step p {
        font-size: 13px;
        max-width: 300px;
    }
    .scroll-step-cta {
        display: none !important;
    }
    .scroll-step-cta .ms-3 {
        margin-left: 0 !important;
    }
    .scroll-step-cta .btn {
        width: 250px;
        text-align: center;
    }
    /* Hero */
    .ugd-hero-logo img {
        max-width: 280px !important;
    }
    .ugd-hero-services {
        font-size: 0.8rem !important;
        gap: 8px !important;
    }
    .ugd-hero-cta {
        gap: 10px !important;
        flex-direction: column;
        align-items: center;
    }
    .ugd-hero-cta .btn {
        font-size: 14px !important;
        padding: 10px 24px !important;
    }
    /* Cards — show all on mobile */
    .ugd-card,
    .ugd-timeline-item,
    .ugd-why-item,
    .ugd-big-stat-card {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .ugd-big-number {
        font-size: 3rem !important;
    }
    .ugd-big-stat-card {
        padding: 30px 20px !important;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .scroll-video-section {
        height: auto;
    }
    .scroll-video-sticky {
        position: relative;
        height: auto;
        padding: 80px 0;
    }
    .scroll-step {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        opacity: 1;
        margin-bottom: 20px;
    }
    .scroll-step-cta {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        opacity: 1;
        margin-top: 30px;
    }
    #wrapRect {
        x: 0;
    }
}

/* ===== Smooth scroll ===== */
html {
    scroll-behavior: smooth;
}

/* ===== Force all text white in dark sections ===== */
.ugd-body .tc-light p,
.ugd-body .tc-light .lead,
.ugd-body .cpn-text p {
    color: rgba(255,255,255,0.55) !important;
}


/* ===== Section transitions — fade in on scroll ===== */
.ugd-body .section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.ugd-body .section.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Cards stagger animation */
.ugd-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.ugd-card.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Process steps stagger */
.ugd-process-step {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.ugd-process-step.in-view {
    opacity: 1;
    transform: translateX(0);
}

/* Timeline items */
.ugd-timeline-item {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.ugd-timeline-item.in-view {
    opacity: 1;
    transform: translateX(0);
}

/* Why items */
.ugd-why-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.ugd-why-item.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Big stat card */
.ugd-big-stat-card {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.ugd-big-stat-card.in-view {
    opacity: 1;
    transform: scale(1);
}

/* ===== Timeline (processus) ===== */
.ugd-timeline {
    position: relative;
    padding-left: 60px;
}

.ugd-timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #ddd 0%, #eee 100%);
}

.ugd-timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 30px;
}

.ugd-timeline-item:last-child {
    margin-bottom: 0;
}

.ugd-timeline-number {
    position: absolute;
    left: -60px;
    top: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    font-weight: 900;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.ugd-timeline-content h5 {
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: #111;
}

.ugd-timeline-content p {
    color: #666;
    margin: 0;
    line-height: 1.7;
}

/* ===== Why lettering list ===== */
.ugd-why-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ugd-why-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ugd-why-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.ugd-why-item div {
    flex: 1;
}

.ugd-why-item strong {
    display: block;
    color: #fff;
    margin-bottom: 2px;
    font-size: 15px;
}

.ugd-why-item p {
    color: rgba(255,255,255,0.5) !important;
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
}

/* ===== Big stat card ===== */
.ugd-big-stat-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
}

.ugd-big-number {
    font-size: 4.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

.ugd-big-label {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.ugd-big-stat-card p {
    color: rgba(255,255,255,0.4) !important;
    font-size: 14px;
    margin: 0;
}

@media (max-width: 767px) {
    .ugd-big-number {
        font-size: 3rem;
    }
    .ugd-big-stat-card {
        padding: 35px 25px;
    }
    .ugd-timeline {
        padding-left: 50px;
    }
    .ugd-timeline-number {
        left: -50px;
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

/* ===== FAQ ===== */
.ugd-faq {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ugd-faq-item {
    border-bottom: 1px solid #eee;
}

.ugd-faq-item:first-child {
    border-top: 1px solid #eee;
}

.ugd-faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    color: #111;
    transition: color 0.2s ease;
}

.ugd-faq-q:hover {
    color: #555;
}

.ugd-faq-q em {
    font-size: 14px;
    color: #999;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.ugd-faq-item.open .ugd-faq-q em {
    transform: rotate(45deg);
}

.ugd-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    padding: 0 0 0 0;
}

.ugd-faq-item.open .ugd-faq-a {
    max-height: 200px;
    padding: 0 0 20px 0;
}

/* ===== Quick Quote Form ===== */
#devis-ugd input::placeholder {
    color: rgba(255,255,255,0.4);
}

#devis-ugd select {
    color: rgba(255,255,255,0.7) !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23fff' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

#devis-ugd select option {
    background: #1a1a1a;
    color: #fff;
}

#devis-ugd input:focus,
#devis-ugd select:focus {
    outline: none;
    border-color: rgba(255,255,255,0.4) !important;
    background: rgba(255,255,255,0.08) !important;
}

/* ===== Stats section ===== */
.ugd-stat {
    padding: 20px 10px;
}

.ugd-stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
    font-family: Arial, sans-serif;
}

.ugd-stat-label {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .ugd-stat-number {
        font-size: 2rem;
    }
    .ugd-stat-label {
        font-size: 11px;
    }
}

/* ===== General Animations ===== */
.animated {
    will-change: opacity, transform;
}

/* ===== Print ===== */
@media print {
    .ugd-floating-cta,
    .nk-header,
    .nk-footer,
    .preloader {
        display: none !important;
    }
}
