/**
 * JUCELEC Main Stylesheet - V3 Design
 * Équilibré : Tons neutres + Bleu électrique en accent subtil
 * Rouge #DD003B pour CTA uniquement
 */

:root {
    /* Couleur Principale - Bleu électrique (utilisé avec parcimonie) */
    --electric: #0077CC;
    --electric-light: #2196F3;
    --electric-soft: #4BA3E3;
    --electric-glow: rgba(0, 119, 204, 0.3);

    /* Couleur Accent - Rouge (CTA uniquement) */
    --accent: #DD003B;
    --accent-light: #FF1A53;
    --accent-dark: #B80031;

    /* Tons neutres - Base du design */
    --dark: #1A1D23;
    --dark-soft: #242830;
    --gray-700: #374151;
    --gray-600: #4B5563;
    --gray-500: #6B7280;
    --gray-400: #9CA3AF;
    --gray-300: #D1D5DB;
    --gray-200: #E5E7EB;
    --gray-100: #F3F4F6;
    --white: #FFFFFF;

    /* Overlays */
    --overlay: rgba(26, 29, 35, 0.88);
    --overlay-light: rgba(26, 29, 35, 0.65);

    /* Typography */
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Jost', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    /* Border Radius - Modern rounded corners */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --radius-full: 50px;

    /* Box Shadows - Elegant subtle shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.10);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.15);
    --shadow-electric: 0 8px 32px rgba(0, 119, 204, 0.25);
    --shadow-accent: 0 8px 32px rgba(221, 0, 59, 0.25);

    /* Header */
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    padding-top: var(--header-height);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1.75rem;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.btn--primary {
    background: var(--electric);
    color: var(--white);
}

.btn--primary:hover {
    background: var(--electric-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-electric);
}

.btn--cta {
    background: var(--accent);
    color: var(--white);
}

.btn--cta:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-accent);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: none;
}

.btn--outline:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--outline-dark {
    background: transparent;
    color: var(--dark);
    border: 1px solid var(--gray-300);
    box-shadow: none;
}

.btn--outline-dark:hover {
    border-color: var(--electric);
    color: var(--electric);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

.btn__icon {
    width: 16px;
    height: 16px;
    transition: var(--transition-fast);
}

.btn:hover .btn__icon {
    transform: translateX(4px);
}

/* ============================================
   HEADER V3
============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    background: transparent;
    transition: var(--transition-smooth);
}

.header--scrolled {
    background: var(--dark);
    padding: 0.875rem 0;
    box-shadow: var(--shadow-lg);
}

.header__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header__logo img {
    height: 38px;
    width: auto;
}

.header__nav {
    display: none;
    align-items: center;
}

@media (min-width: 1024px) {
    .header__nav {
        display: flex;
    }
}

.header__nav-item {
    position: relative;
}

.header__nav-link {
    display: block;
    padding: 0.75rem 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.header__nav-link:hover {
    color: var(--white);
}

/* Dropdown */
.header__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    background: var(--dark);
    border-top: 2px solid var(--electric);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.header__nav-item:hover .header__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header__dropdown-link {
    display: block;
    padding: 0.875rem 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition-fast);
}

.header__dropdown-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    padding-left: 1.5rem;
}

/* Header CTA */
.header__cta {
    display: none;
    margin-left: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--electric);
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.header__cta:hover {
    background: var(--electric-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-electric);
}

@media (min-width: 1024px) {
    .header__cta {
        display: block;
    }
}

/* Mobile Menu Toggle */
.header__toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

@media (min-width: 1024px) {
    .header__toggle {
        display: none;
    }
}

/* ============================================
   PREMIUM BURGER BUTTON
============================================ */
.burger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002;
    -webkit-tap-highlight-color: transparent;
}

@media (min-width: 1024px) {
    .burger {
        display: none;
    }
}

.burger__inner {
    position: relative;
    width: 26px;
    height: 18px;
}

.burger__line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
                opacity 0.2s ease,
                background 0.3s ease;
}

.burger__line--1 {
    top: 0;
    transform-origin: center center;
}

.burger__line--2 {
    top: 50%;
    transform: translateY(-50%);
}

.burger__line--3 {
    bottom: 0;
    transform-origin: center center;
}

/* Burger Active State - X transformation */
.burger.is-active .burger__line--1 {
    transform: translateY(8px) rotate(45deg);
}

.burger.is-active .burger__line--2 {
    opacity: 0;
    transform: translateY(-50%) scaleX(0);
}

.burger.is-active .burger__line--3 {
    transform: translateY(-8px) rotate(-45deg);
}

.burger.is-active .burger__line {
    background: var(--white);
}

/* ============================================
   MOBILE OVERLAY
============================================ */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 12, 16, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 998;
}

.mobile-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   MOBILE PANEL - Premium Slide-in Navigation
============================================ */
.mobile-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: min(380px, 85vw);
    height: 100%;
    background: linear-gradient(165deg, #1e2229 0%, var(--dark) 100%);
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
}

.mobile-panel.is-open {
    transform: translateX(0);
}

.mobile-panel__inner {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 100px 32px 40px;
}

/* Brand in mobile panel */
.mobile-panel__brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 48px;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    transition-delay: 0.15s;
}

.mobile-panel.is-open .mobile-panel__brand {
    opacity: 1;
    transform: translateX(0);
}

.mobile-panel__brand img {
    height: 36px;
    width: auto;
    object-fit: contain;
    object-position: left;
}

.mobile-panel__slogan {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    letter-spacing: 0.02em;
}

/* Navigation List */
.mobile-panel__nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-panel__item {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.mobile-panel.is-open .mobile-panel__item {
    opacity: 1;
    transform: translateX(0);
    transition-delay: calc(0.2s + (var(--i) * 0.07s));
}

/* Nav Links */
.mobile-panel__link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 0;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s ease;
    min-height: 56px;
}

.mobile-panel__link:hover,
.mobile-panel__link:focus {
    color: var(--electric);
    outline: none;
}

.mobile-panel__link-text {
    position: relative;
    z-index: 1;
}

/* Animated underline */
.mobile-panel__link-line {
    position: absolute;
    bottom: 12px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--electric), var(--accent));
    transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.mobile-panel__link:hover .mobile-panel__link-line,
.mobile-panel__link:focus .mobile-panel__link-line {
    width: 100%;
}

/* Toggle icon for expandable items */
.mobile-panel__link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease, transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.mobile-panel__link-icon svg {
    width: 16px;
    height: 16px;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.mobile-panel__link--toggle[aria-expanded="true"] .mobile-panel__link-icon {
    background: var(--electric);
}

.mobile-panel__link--toggle[aria-expanded="true"] .mobile-panel__link-icon svg {
    transform: rotate(45deg);
}

/* Submenu */
.mobile-panel__submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.mobile-panel__submenu li {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-panel__link--toggle[aria-expanded="true"] + .mobile-panel__submenu li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-panel__submenu li:nth-child(1) { transition-delay: 0.05s; }
.mobile-panel__submenu li:nth-child(2) { transition-delay: 0.1s; }
.mobile-panel__submenu li:nth-child(3) { transition-delay: 0.15s; }
.mobile-panel__submenu li:nth-child(4) { transition-delay: 0.2s; }

.mobile-panel__submenu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0 14px 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    min-height: 48px;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
}

.mobile-panel__submenu a:hover {
    color: var(--electric);
    padding-left: 24px;
    border-left-color: var(--electric);
}

/* Sub-marker dot */
.mobile-panel__sub-marker {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: background 0.3s ease, transform 0.3s ease;
}

.mobile-panel__submenu a:hover .mobile-panel__sub-marker {
    background: var(--electric);
    transform: scale(1.3);
}

/* CTA Button */
.mobile-panel__cta-wrap {
    margin-top: auto;
    padding-top: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.mobile-panel.is-open .mobile-panel__cta-wrap {
    opacity: 1;
    transform: translateY(0);
    transition-delay: calc(0.3s + (var(--i) * 0.07s));
}

.mobile-panel__cta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 32px;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white);
    text-decoration: none;
    background: transparent;
    border: 2px solid var(--electric);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: color 0.4s ease, border-color 0.4s ease;
}

.mobile-panel__cta-bg {
    position: absolute;
    inset: 0;
    background: var(--electric);
    transform: translateX(-101%);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 0;
}

.mobile-panel__cta:hover .mobile-panel__cta-bg,
.mobile-panel__cta:focus .mobile-panel__cta-bg {
    transform: translateX(0);
}

.mobile-panel__cta-text {
    position: relative;
    z-index: 1;
}

.mobile-panel__cta-arrow {
    position: relative;
    z-index: 1;
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.mobile-panel__cta:hover .mobile-panel__cta-arrow {
    transform: translateX(4px);
}

/* Contact Info */
.mobile-panel__contact {
    margin-top: 32px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.mobile-panel.is-open .mobile-panel__contact {
    opacity: 1;
    transform: translateY(0);
    transition-delay: calc(0.35s + (var(--i) * 0.07s));
}

.mobile-panel__phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-panel__phone:hover {
    color: var(--electric);
}

.mobile-panel__phone svg {
    width: 18px;
    height: 18px;
}

/* Circuit Decoration */
.mobile-panel__circuit {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    pointer-events: none;
    opacity: 0.06;
    overflow: hidden;
}

.mobile-panel__circuit svg {
    width: 100%;
    height: 100%;
}

.circuit-path {
    fill: none;
    stroke: var(--electric);
    stroke-width: 1;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 2s ease;
}

.mobile-panel.is-open .circuit-path {
    stroke-dashoffset: 0;
}

.circuit-path--2 {
    stroke: var(--accent);
    transition-delay: 0.5s;
}

/* Body scroll lock when menu is open */
body.menu-open {
    overflow: hidden;
}

/* ============================================
   FOOTER V3
============================================ */

.footer {
    background: var(--dark);
    color: var(--white);
}

.footer__top-bar {
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__top-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer__top-container {
        justify-content: space-between;
    }
}

.footer__contact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer__contact-item:hover {
    color: var(--white);
}

.footer__contact-item svg {
    width: 18px;
    height: 18px;
    color: var(--electric);
    flex-shrink: 0;
}

.footer__main {
    padding: var(--space-lg) 0;
}

.footer__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .footer__container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer__container {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer__brand {
    max-width: 350px;
}

.footer__logo {
    margin-bottom: 1.25rem;
}

.footer__logo img {
    height: 40px;
    width: auto;
}

.footer__description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer__social {
    display: flex;
    gap: 0.75rem;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    color: var(--white);
    transition: var(--transition-fast);
}

.footer__social-link:hover {
    background: var(--electric);
    transform: translateY(-3px);
    box-shadow: var(--shadow-electric);
}

.footer__social-link svg {
    width: 18px;
    height: 18px;
}

.footer__column-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.footer__links li {
    margin-bottom: 0.75rem;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    display: inline-block;
}

.footer__links a:hover {
    color: var(--electric);
    transform: translateX(4px);
}

.footer__bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer__bottom-container {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer__copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin: 0;
}

.footer__tagline {
    color: var(--electric);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 500;
    margin: 0;
}

.footer__legal {
    display: flex;
    gap: 1.5rem;
}

.footer__legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.footer__legal a:hover {
    color: var(--electric);
}

.footer__certifications {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.footer__cert {
    padding: 0.35rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--electric);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   HEADER (Legacy - jucelec-header)
============================================ */

.jucelec-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    background: var(--dark);
    transition: var(--transition-smooth);
}

.jucelec-header.scrolled {
    padding: 0.875rem 0;
    box-shadow: var(--shadow-lg);
}

.jucelec-header__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.jucelec-header__logo img {
    height: 38px;
    width: auto;
}

.jucelec-header__nav {
    display: none;
    align-items: center;
}

@media (min-width: 1024px) {
    .jucelec-header__nav {
        display: flex;
    }
}

.jucelec-header__nav-item {
    position: relative;
}

.jucelec-header__nav-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.75rem 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.jucelec-header__nav-link:hover {
    color: var(--white);
}

.jucelec-header__nav-icon {
    width: 12px;
    height: 12px;
    transition: var(--transition-fast);
}

.jucelec-header__nav-item:hover .jucelec-header__nav-icon {
    transform: rotate(180deg);
}

/* Dropdown */
.jucelec-header__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    background: var(--dark);
    border-top: 2px solid var(--electric);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.jucelec-header__nav-item:hover .jucelec-header__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.jucelec-header__dropdown-link {
    display: block;
    padding: 0.875rem 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition-fast);
}

.jucelec-header__dropdown-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    padding-left: 1.5rem;
}

/* Header CTA - BLEU */
.jucelec-header__cta {
    display: none;
    margin-left: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--electric);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.jucelec-header__cta:hover {
    background: var(--electric-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-electric);
}

@media (min-width: 1024px) {
    .jucelec-header__cta {
        display: block;
    }
}

/* Mobile Toggle */
.jucelec-header__toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

@media (min-width: 1024px) {
    .jucelec-header__toggle {
        display: none;
    }
}

.jucelec-header__toggle-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-fast);
}

.jucelec-header__toggle.active .jucelec-header__toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.jucelec-header__toggle.active .jucelec-header__toggle-line:nth-child(2) {
    opacity: 0;
}

.jucelec-header__toggle.active .jucelec-header__toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.jucelec-header__mobile-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark);
    transform: translateX(100%);
    transition: var(--transition-smooth);
    overflow-y: auto;
    z-index: 999;
}

.jucelec-header__mobile-menu.active {
    transform: translateX(0);
}

.jucelec-header__mobile-nav {
    padding: var(--space-sm) var(--space-md);
}

.jucelec-header__mobile-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.jucelec-header__mobile-link {
    display: block;
    padding: var(--space-sm) 0;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
}

.jucelec-header__mobile-item.has-children {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.jucelec-header__mobile-item.has-children .jucelec-header__mobile-link {
    flex: 1;
}

.jucelec-header__mobile-toggle {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
}

.jucelec-header__mobile-icon {
    width: 20px;
    height: 20px;
    transition: var(--transition-fast);
}

.jucelec-header__mobile-toggle.active .jucelec-header__mobile-icon {
    transform: rotate(180deg);
}

.jucelec-header__mobile-submenu {
    width: 100%;
    display: none;
    padding-left: var(--space-sm);
    padding-bottom: var(--space-sm);
}

.jucelec-header__mobile-submenu.active {
    display: block;
}

.jucelec-header__mobile-sublink {
    display: block;
    padding: 0.5rem 0;
    color: var(--gray-400);
    font-size: 0.95rem;
}

.jucelec-header__mobile-sublink:hover {
    color: var(--electric-light);
}

.jucelec-header__mobile-cta {
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

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

.jucelec-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--dark);
    overflow: hidden;
    margin-top: calc(var(--header-height) * -1);
}

.jucelec-hero__slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.jucelec-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.jucelec-hero__slide.active {
    opacity: 1;
}

.jucelec-hero__image {
    position: absolute;
    inset: 0;
}

.jucelec-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
}

.jucelec-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 29, 35, 0.95) 0%,
        rgba(26, 29, 35, 0.75) 50%,
        rgba(26, 29, 35, 0.85) 100%
    );
}

/* Ambient glow effects */
.jucelec-hero__ambient {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
}

.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: ambientFloat 8s ease-in-out infinite;
}

.ambient-glow--1 {
    width: 400px;
    height: 400px;
    background: var(--electric);
    top: 10%;
    right: 20%;
}

.ambient-glow--2 {
    width: 300px;
    height: 300px;
    background: var(--electric-soft);
    bottom: 20%;
    left: 10%;
    animation-delay: 2s;
}

@keyframes ambientFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.1); }
}

.jucelec-hero__content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    padding-top: calc(var(--header-height) + 50px);
}

.jucelec-hero__label {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
    animation: fadeInUp 0.8s ease-out;
}

.jucelec-hero__label::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--electric);
    border-radius: 50%;
}

.jucelec-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.12;
    color: var(--white);
    margin-bottom: var(--space-md);
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.jucelec-hero__title span {
    color: var(--electric-soft);
}

.jucelec-hero__subtitle {
    max-width: 560px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.jucelec-hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

/* Hero Stats */
.jucelec-hero__stats {
    display: flex;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

.jucelec-hero__stat {
    text-align: left;
}

.jucelec-hero__stat-value {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.jucelec-hero__stat-value span {
    color: var(--electric-soft);
}

.jucelec-hero__stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Hero Dots */
.jucelec-hero__dots {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 20;
}

.jucelec-hero__dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-fast);
}

.jucelec-hero__dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.jucelec-hero__dot.active {
    background: var(--electric);
    width: 28px;
    box-shadow: var(--shadow-electric);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   SERVICES SECTION
============================================ */

.jucelec-services {
    padding: var(--space-xl) 0;
    background: var(--white);
}

.jucelec-services__header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.jucelec-services__subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--electric);
    margin-bottom: 0.75rem;
    padding: 0.35rem 1rem;
    background: rgba(0, 119, 204, 0.08);
    border-radius: var(--radius-full);
}

.jucelec-services__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--dark);
}

.jucelec-services__title span {
    color: var(--electric);
}

.jucelec-services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .jucelec-services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Service Card - Style moderne avec coins arrondis */
.jucelec-services__pole {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.jucelec-services__pole:hover {
    border-color: var(--electric);
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.jucelec-services__pole-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--electric);
    color: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-electric);
}

.jucelec-services__pole-icon svg {
    width: 26px;
    height: 26px;
}

.jucelec-services__pole-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.6rem;
}

.jucelec-services__pole-description {
    color: var(--gray-600);
    margin-bottom: var(--space-md);
    line-height: 1.7;
    font-size: 0.95rem;
}

.jucelec-services__list {
    margin-bottom: var(--space-md);
}

.jucelec-services__list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.55rem 0;
    font-size: 0.92rem;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}

.jucelec-services__list li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--electric);
    flex-shrink: 0;
}

.jucelec-services__pole-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--electric);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition-fast);
}

.jucelec-services__pole-link:hover {
    gap: 0.9rem;
}

.jucelec-services__pole-link svg {
    width: 14px;
    height: 14px;
}

/* ============================================
   FEATURES SECTION
============================================ */

.jucelec-features {
    padding: var(--space-xl) 0;
    background: var(--gray-100);
}

.jucelec-features__header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.jucelec-features__subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--electric);
    margin-bottom: 0.75rem;
    padding: 0.35rem 1rem;
    background: rgba(0, 119, 204, 0.08);
    border-radius: var(--radius-full);
}

.jucelec-features__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--dark);
}

.jucelec-features__title span {
    color: var(--electric);
}

.jucelec-features__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

@media (min-width: 1024px) {
    .jucelec-features__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.jucelec-features__item {
    text-align: center;
    padding: var(--space-md);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.jucelec-features__item:hover {
    border-color: var(--electric);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.jucelec-features__item-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--electric);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.jucelec-features__item-title {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.4rem;
}

.jucelec-features__item-description {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.5;
    margin: 0;
}

/* ============================================
   CTA SECTION - ROUGE accent
============================================ */

.jucelec-cta {
    padding: var(--space-lg) 0;
    background: var(--accent);
}

.jucelec-cta__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    text-align: center;
}

.jucelec-cta__title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.jucelec-cta__text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-md);
}

.jucelec-cta__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.jucelec-cta .btn--outline {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.jucelec-cta .btn--outline:hover {
    background: var(--white);
    color: var(--accent);
    border-color: var(--white);
}

/* ============================================
   REALISATIONS SECTION
============================================ */

.jucelec-realisations {
    padding: var(--space-xl) 0;
    background: var(--white);
}

.jucelec-realisations__header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.jucelec-realisations__subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--electric);
    margin-bottom: 0.75rem;
    padding: 0.35rem 1rem;
    background: rgba(0, 119, 204, 0.08);
    border-radius: var(--radius-full);
}

.jucelec-realisations__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--dark);
}

.jucelec-realisations__grid {
    display: grid;
    gap: var(--space-md);
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 1024px) {
    .jucelec-realisations__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.jucelec-realisations__item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: pointer;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.jucelec-realisations__item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.jucelec-realisations__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.jucelec-realisations__item:hover img {
    transform: scale(1.08);
}

.jucelec-realisations__item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 29, 35, 0.9) 0%, transparent 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-md);
    opacity: 0;
    transition: var(--transition-smooth);
}

.jucelec-realisations__item:hover .jucelec-realisations__item-overlay {
    opacity: 1;
}

.jucelec-realisations__item-category {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--electric);
    margin-bottom: 0.5rem;
}

.jucelec-realisations__item-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.jucelec-realisations__item-location {
    font-size: 0.85rem;
    color: var(--gray-400);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.jucelec-realisations__item-location svg {
    width: 14px;
    height: 14px;
}

.jucelec-realisations__footer {
    text-align: center;
    margin-top: var(--space-lg);
}

/* ============================================
   PARTENAIRES SECTION
============================================ */

.jucelec-partenaires {
    padding: var(--space-lg) 0;
    background: var(--gray-100);
}

.jucelec-partenaires__header {
    text-align: center;
    margin-bottom: var(--space-md);
}

.jucelec-partenaires__title {
    font-size: 1.5rem;
    color: var(--gray-600);
    font-weight: 500;
}

.jucelec-partenaires__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
}

.jucelec-partenaires__item {
    opacity: 0.5;
    transition: var(--transition-smooth);
    filter: grayscale(100%);
    padding: 1rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
}

.jucelec-partenaires__item:hover {
    opacity: 1;
    filter: grayscale(0%);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.jucelec-partenaires__item img {
    max-height: 45px;
    width: auto;
}

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

.jucelec-footer {
    background: var(--dark);
    color: var(--white);
}

.jucelec-footer__top-bar {
    background: var(--dark-soft);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.jucelec-footer__top-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.jucelec-footer__contact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.jucelec-footer__contact-item:hover {
    color: var(--white);
}

.jucelec-footer__contact-icon {
    width: 16px;
    height: 16px;
    color: var(--electric);
}

.jucelec-footer__main {
    padding: var(--space-lg) 0;
}

.jucelec-footer__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .jucelec-footer__container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .jucelec-footer__container {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.jucelec-footer__brand {
    padding-right: var(--space-md);
}

.jucelec-footer__logo {
    margin-bottom: var(--space-md);
}

.jucelec-footer__logo img {
    height: 40px;
    width: auto;
}

.jucelec-footer__description {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    margin-bottom: var(--space-md);
    font-size: 0.92rem;
}

.jucelec-footer__social {
    display: flex;
    gap: 0.6rem;
}

.jucelec-footer__social-link {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-fast);
}

.jucelec-footer__social-link:hover {
    background: var(--electric);
    border-color: var(--electric);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-electric);
}

.jucelec-footer__social-link svg {
    width: 16px;
    height: 16px;
}

.jucelec-footer__column-title {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
    color: var(--white);
}

.jucelec-footer__links li {
    margin-bottom: 0.6rem;
}

.jucelec-footer__links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.jucelec-footer__links a:hover {
    color: var(--white);
}

.jucelec-footer__certifications {
    display: flex;
    gap: 0.5rem;
    margin-top: var(--space-md);
}

.jucelec-footer__cert {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    color: var(--dark);
    box-shadow: var(--shadow-sm);
}

.jucelec-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--space-sm) 0;
}

.jucelec-footer__bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.jucelec-footer__copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    margin: 0;
}

.jucelec-footer__legal {
    display: flex;
    gap: var(--space-md);
}

.jucelec-footer__legal a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    transition: var(--transition-fast);
}

.jucelec-footer__legal a:hover {
    color: var(--white);
}

/* ============================================
   PAGE HEADER
============================================ */

.jucelec-page-header {
    position: relative;
    padding: var(--space-xl) 0 var(--space-lg);
    background: var(--dark);
    margin-top: calc(var(--header-height) * -1);
    overflow: hidden;
}

.jucelec-page-header__background {
    position: absolute;
    inset: 0;
}

.jucelec-page-header__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.jucelec-page-header__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 29, 35, 0.95) 0%, rgba(26, 29, 35, 0.8) 100%);
}

.jucelec-page-header__content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    padding-top: var(--header-height);
}

.jucelec-page-header__breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: var(--space-md);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.jucelec-page-header__breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition-fast);
}

.jucelec-page-header__breadcrumb a:hover {
    color: var(--electric-light);
}

.jucelec-page-header__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.jucelec-page-header__subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    line-height: 1.7;
}

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

.jucelec-service-detail {
    padding: var(--space-lg) 0;
}

.jucelec-service-detail__grid {
    display: grid;
    gap: var(--space-lg);
}

@media (min-width: 1024px) {
    .jucelec-service-detail__grid {
        grid-template-columns: 2fr 1fr;
    }
}

.jucelec-service-detail__content h2 {
    font-size: 2rem;
    margin-bottom: var(--space-md);
}

.jucelec-service-detail__content h3 {
    font-size: 1.5rem;
    margin-top: var(--space-md);
    margin-bottom: var(--space-sm);
}

.jucelec-service-detail__content p {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: var(--space-sm);
}

.jucelec-service-detail__features {
    margin: var(--space-md) 0;
}

.jucelec-service-detail__features-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.jucelec-service-detail__feature {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-sm);
    background: var(--gray-100);
    border-left: 3px solid var(--electric);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    transition: var(--transition-fast);
}

.jucelec-service-detail__feature:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.jucelec-service-detail__feature-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--electric);
}

.jucelec-service-detail__feature-text {
    font-size: 0.95rem;
    color: var(--gray-700);
    margin: 0;
    line-height: 1.6;
}

/* Sidebar */
.jucelec-service-detail__sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.jucelec-service-detail__cta-box {
    padding: var(--space-md);
    background: var(--dark);
    color: var(--white);
    text-align: center;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.jucelec-service-detail__cta-box h4 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.jucelec-service-detail__cta-box p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-md);
}

.jucelec-service-detail__other-services {
    padding: var(--space-md);
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.jucelec-service-detail__other-services h4 {
    font-size: 1rem;
    margin-bottom: var(--space-sm);
}

.jucelec-service-detail__other-services ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.jucelec-service-detail__other-services a {
    display: block;
    padding: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray-700);
    transition: var(--transition-fast);
}

.jucelec-service-detail__other-services a:hover {
    background: var(--white);
    color: var(--electric);
    padding-left: 1rem;
}

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

.jucelec-contact {
    padding: var(--space-xl) 0;
}

.jucelec-contact__grid {
    display: grid;
    gap: var(--space-lg);
}

@media (min-width: 1024px) {
    .jucelec-contact__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.jucelec-contact__info {
    padding: var(--space-lg);
    background: var(--dark);
    color: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.jucelec-contact__info-title {
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.jucelec-contact__info-text {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-md);
}

.jucelec-contact__details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.jucelec-contact__detail {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.jucelec-contact__detail-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 119, 204, 0.2);
    color: var(--electric);
    border-radius: var(--radius-md);
}

.jucelec-contact__detail-icon svg {
    width: 20px;
    height: 20px;
}

.jucelec-contact__detail-content h4 {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.25rem;
}

.jucelec-contact__detail-content p,
.jucelec-contact__detail-content a {
    font-size: 0.95rem;
    color: var(--white);
    margin: 0;
}

.jucelec-contact__detail-content a:hover {
    color: var(--electric-light);
}

.jucelec-contact__hours {
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
}

.jucelec-contact__hours h4 {
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.jucelec-contact__hours li {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    padding: 0.4rem 0;
}

.jucelec-contact__form-wrapper {
    padding: var(--space-lg);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.jucelec-contact__form-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.jucelec-contact__form-text {
    color: var(--gray-600);
    margin-bottom: var(--space-md);
}

.jucelec-contact__form {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.jucelec-contact__form-row {
    display: grid;
    gap: var(--space-sm);
}

@media (min-width: 640px) {
    .jucelec-contact__form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.jucelec-contact__form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.jucelec-contact__form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-700);
}

.jucelec-contact__form-group input,
.jucelec-contact__form-group select,
.jucelec-contact__form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--dark);
    background: var(--gray-100);
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.jucelec-contact__form-group input:focus,
.jucelec-contact__form-group select:focus,
.jucelec-contact__form-group textarea:focus {
    outline: none;
    background: var(--white);
    border-color: var(--electric);
    box-shadow: 0 0 0 3px rgba(0, 119, 204, 0.1);
}

.jucelec-contact__form-group textarea {
    min-height: 120px;
    resize: vertical;
    border-radius: var(--radius-lg);
}

.jucelec-contact__form-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.jucelec-contact__form-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--electric);
}

.jucelec-contact__form-consent label {
    font-size: 0.85rem;
    color: var(--gray-600);
}

.jucelec-contact__form-submit {
    margin-top: var(--space-sm);
}

/* ============================================
   RESPONSIVE - GLOBAL
============================================ */

/* ---- TABLET (max 1024px) ---- */
@media (max-width: 1024px) {
    /* Spacing adjustments */
    :root {
        --space-lg: 3rem;
        --space-xl: 5rem;
    }

    /* Header nav hidden */
    .header__nav {
        display: none;
    }

    .header__cta {
        display: none;
    }

    /* Service grids - single column */
    .services-grid,
    .services__grid {
        grid-template-columns: 1fr;
    }

    /* Service rows - stack */
    .service-row {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .service-row:nth-child(even) .service-row__content,
    .service-row:nth-child(even) .service-row__image {
        order: unset;
    }

    .service-row__content {
        order: 1;
    }

    .service-row__image {
        order: 2;
    }

    /* Features grid - 2 columns */
    .features-grid,
    .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer - 2 columns */
    .footer__container {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Certifications */
    .certifications {
        gap: var(--space-sm);
    }

    .cert-item__icon {
        width: 70px;
        height: 70px;
    }

    /* Page headers */
    .page-header {
        padding: 140px 0 80px;
    }

    .page-header__title {
        font-size: clamp(2rem, 4vw, 3rem);
    }

    /* Pole grids */
    .pole-grid {
        grid-template-columns: 1fr;
    }

    /* Stats row */
    .stats-row,
    .hero__stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-md);
    }

    .stats-row .stat-item,
    .hero__stat {
        min-width: 150px;
        text-align: center;
    }

    /* Realizations grid */
    .realisations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Contact layout */
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ---- MOBILE (max 768px) ---- */
@media (max-width: 768px) {
    /* Spacing adjustments */
    :root {
        --header-height: 70px;
        --space-md: 1.5rem;
        --space-lg: 2.5rem;
        --space-xl: 4rem;
    }

    /* Typography adjustments */
    .section-title,
    .intro__title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .page-header__title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .page-header__subtitle {
        font-size: 1rem;
    }

    /* Page headers */
    .page-header {
        padding: 120px 0 60px;
    }

    /* Features grid - single column */
    .features-grid,
    .features__grid {
        grid-template-columns: 1fr;
    }

    .feature-item {
        padding: var(--space-sm);
    }

    /* Footer - single column */
    .footer__container {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .footer__brand {
        max-width: 100%;
        text-align: center;
    }

    .footer__social {
        justify-content: center;
    }

    .footer__column {
        text-align: center;
    }

    .footer__links a:hover {
        transform: none;
    }

    .footer__top-container {
        flex-direction: column;
        text-align: center;
    }

    .footer__bottom-container {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
    }

    .footer__legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-sm);
    }

    .footer__certifications {
        justify-content: center;
    }

    /* Hero sections */
    .hero__stats,
    .jucelec-hero__stats {
        flex-direction: column;
        gap: var(--space-md);
        align-items: flex-start;
    }

    .hero__stat,
    .jucelec-hero__stat {
        text-align: left;
    }

    .hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }

    /* Buttons - full width on mobile */
    .cta__buttons {
        flex-direction: column;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }

    .cta__buttons .btn {
        width: 100%;
        justify-content: center;
    }

    /* Service rows */
    .service-row__image {
        aspect-ratio: 16/9;
    }

    .service-row__title {
        font-size: 1.5rem;
    }

    .service-row__description {
        font-size: 0.95rem;
    }

    /* Certifications - stack */
    .certifications {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .cert-item {
        flex: 0 0 auto;
        min-width: 100px;
    }

    .cert-item__icon {
        width: 60px;
        height: 60px;
        font-size: 0.8rem;
    }

    /* Realizations grid - single column */
    .realisations-grid {
        grid-template-columns: 1fr;
    }

    /* Cards */
    .service-card {
        padding: var(--space-md);
    }

    /* Intro text */
    .intro__text {
        font-size: 1rem;
    }

    /* CTA */
    .cta {
        padding: var(--space-md) 0;
    }

    .cta__title {
        font-size: 1.5rem;
    }

    .cta__text {
        font-size: 0.95rem;
    }

    /* Contact info items */
    .contact-info {
        text-align: center;
    }

    .contact-info__item {
        justify-content: center;
    }

    /* Breadcrumbs */
    .page-header__breadcrumb {
        font-size: 0.8rem;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    /* Stats row */
    .stats-row {
        flex-direction: column;
        align-items: center;
    }

    .stat-item {
        text-align: center;
        width: 100%;
        max-width: 200px;
    }

    /* Section headers */
    .section-header {
        margin-bottom: var(--space-md);
    }

    .section-label {
        font-size: 0.65rem;
    }

    /* Pole cards */
    .pole-card {
        padding: var(--space-md);
    }

    .pole-card__title {
        font-size: 1.25rem;
    }

    /* Contact form */
    .contact-form-grid {
        grid-template-columns: 1fr;
    }
}

/* ---- SMALL MOBILE (max 480px) ---- */
@media (max-width: 480px) {
    :root {
        --space-md: 1.25rem;
        --space-lg: 2rem;
        --space-xl: 3rem;
    }

    body {
        font-size: 15px;
    }

    /* Container padding */
    .container {
        padding: 0 var(--space-sm);
    }

    /* Page header */
    .page-header {
        padding: 100px 0 50px;
    }

    .page-header__content {
        padding: 0 var(--space-sm);
    }

    .page-header__title {
        font-size: 1.5rem;
    }

    /* Hero */
    .hero__content {
        padding: 0 var(--space-sm);
        padding-top: 80px;
    }

    .hero__title {
        font-size: 1.75rem;
    }

    .hero__description {
        font-size: 0.95rem;
    }

    .hero__label {
        font-size: 0.65rem;
        padding: 0.3rem 0.75rem;
    }

    /* Hero slider nav */
    .hero__nav {
        bottom: 24px;
    }

    .hero__nav-dot {
        width: 10px;
        height: 10px;
    }

    /* Buttons */
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }

    /* Service cards */
    .service-card {
        padding: var(--space-sm);
    }

    .service-card__icon {
        width: 48px;
        height: 48px;
    }

    .service-card__title {
        font-size: 1.15rem;
    }

    /* Features */
    .feature-item__number {
        font-size: 1.5rem;
    }

    .feature-item__title {
        font-size: 0.8rem;
    }

    .feature-item__text {
        font-size: 0.8rem;
    }

    /* Footer */
    .footer__logo img {
        height: 32px;
    }

    .footer__column-title {
        font-size: 0.85rem;
        margin-bottom: var(--space-sm);
    }

    .footer__links a {
        font-size: 0.85rem;
    }

    .footer__social-link {
        width: 36px;
        height: 36px;
    }

    /* CTA */
    .cta__title {
        font-size: 1.25rem;
    }

    /* Intro */
    .intro__title {
        font-size: 1.25rem;
    }

    .intro__text {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    /* Certifications */
    .cert-item {
        min-width: 80px;
    }

    .cert-item__icon {
        width: 50px;
        height: 50px;
        font-size: 0.7rem;
    }

    .cert-item__label {
        font-size: 0.7rem;
    }

    /* Mobile panel adjustments */
    .mobile-panel__inner {
        padding: 80px 24px 32px;
    }

    .mobile-panel__link {
        font-size: 1.2rem;
        padding: 14px 0;
    }

    .mobile-panel__brand img {
        height: 30px;
    }
}

/* ---- TOUCH DEVICE OPTIMIZATIONS ---- */
@media (hover: none) and (pointer: coarse) {
    /* Remove hover effects that don't work on touch */
    .service-card:hover {
        transform: none;
    }

    .feature-item:hover {
        transform: none;
    }

    .btn:hover {
        transform: none;
    }

    /* Ensure touch targets are at least 44px */
    .footer__links a {
        display: block;
        padding: 8px 0;
    }

    .mobile-panel__submenu a {
        min-height: 48px;
    }
}

/* ---- LANDSCAPE MOBILE ---- */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .page-header {
        padding: 100px 0 50px;
    }

    .hero__stats {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .hero__stat {
        min-width: 120px;
    }
}

/* ---- PRINT STYLES ---- */
@media print {
    .header,
    .mobile-overlay,
    .mobile-panel,
    .burger,
    .cta,
    .footer__social {
        display: none !important;
    }

    body {
        padding-top: 0;
    }

    .page-header {
        background: none;
        color: #000;
        padding: 20px 0;
    }

    .page-header__title,
    .page-header__subtitle {
        color: #000;
    }
}

/* ============================================
   TEMPLATE-SPECIFIC RESPONSIVE PATTERNS
   (Covers inline styles used in individual templates)
============================================ */

/* Service detail grids */
@media (max-width: 1024px) {
    .service-detail,
    .service-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer grid (template variant) */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Gallery grids */
@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Features grids (template variant) */
@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Benefits/Project types grids */
@media (max-width: 600px) {
    .benefits-grid,
    .project-types-grid {
        grid-template-columns: 1fr;
    }
}

/* Components/Solutions grids */
@media (max-width: 600px) {
    .components-grid,
    .solutions-grid,
    .app-grid,
    .app-cards {
        grid-template-columns: 1fr;
    }
}

/* Stats grids */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Steps list */
@media (max-width: 768px) {
    .steps-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .steps-list {
        grid-template-columns: 1fr;
    }
}

/* Image grids */
@media (max-width: 768px) {
    .image-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact grid */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Form rows */
@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Nav desktop/toggle (template variant) */
@media (max-width: 900px) {
    .nav-desktop {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }
}

/* ============================================
   WORDPRESS OVERRIDES
============================================ */

/* Hide Hello Elementor theme elements */
.hello-elementor-header,
.hello-elementor-footer,
#masthead,
.entry-header {
    display: none !important;
}

.site-main,
.entry-content,
.page-content {
    margin: 0;
    padding: 0;
}

.elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 100%;
}

.elementor-widget-container {
    margin: 0;
    padding: 0;
}

/* ============================================
   MODERN DESIGN ENHANCEMENTS
   Global styles for templates
============================================ */

/* Service/Product Cards - Generic classes used in templates */
.service-card,
.product-card,
.benefit-card,
.solution-card,
.app-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: var(--space-md);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.service-card:hover,
.product-card:hover,
.benefit-card:hover,
.solution-card:hover,
.app-card:hover {
    border-color: var(--electric);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* Feature boxes with icons */
.feature-box,
.benefit-box,
.icon-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.feature-box:hover,
.benefit-box:hover,
.icon-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

/* Gallery items and images */
.gallery-item,
.image-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.gallery-item:hover,
.image-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* Info boxes and alerts */
.info-box,
.alert-box,
.notice-box {
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    box-shadow: var(--shadow-sm);
}

/* Stats items */
.stat-item,
.stat-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.stat-item:hover,
.stat-box:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Partner/Logo items */
.partner-item,
.logo-item,
.brand-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1rem 1.5rem;
    transition: var(--transition-smooth);
}

.partner-item:hover,
.logo-item:hover,
.brand-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

/* CTA Sections */
.cta-box,
.cta-section {
    border-radius: var(--radius-xl);
    overflow: hidden;
}

/* Testimonial cards */
.testimonial-card,
.review-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.testimonial-card:hover,
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Pricing cards */
.pricing-card,
.plan-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.pricing-card:hover,
.plan-card:hover {
    border-color: var(--electric);
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

/* Step items */
.step-item,
.process-step {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.step-item:hover,
.process-step:hover {
    box-shadow: var(--shadow-md);
}

/* Generic image containers */
.image-container,
.img-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Input fields - Global */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
input[type="url"],
select,
textarea {
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="url"]:focus,
select:focus,
textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 119, 204, 0.1);
}

/* Buttons in templates - ensure consistency */
button,
.button,
[type="submit"],
[type="button"] {
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

/* Section backgrounds with subtle shadows */
.section-dark,
.bg-dark {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Badges and tags */
.badge,
.tag,
.label {
    border-radius: var(--radius-full);
    padding: 0.25rem 0.75rem;
}

/* Navigation pills */
.nav-pill,
.tab-pill {
    border-radius: var(--radius-full);
}

/* Modal/Popup styles */
.modal-content,
.popup-content {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

/* Tooltip styles */
.tooltip {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

/* Dropdown menus - Generic */
.dropdown-menu,
.submenu {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

/* Avatar/Profile images */
.avatar,
.profile-img {
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}
