/* ==========================================
   IT-ROOM v2 - Main Stylesheet
   ========================================== */

/* --- Variables --- */
:root {
    /* Primary Brand Colors */
    --primary: #145A8E;
    --primary-dark: #0e3f64;
    --primary-darker: #0a2d48;
    --orange: #F59C16;
    --orange-light: #f7b24a;
    --turquoise: #5EBDB9;
    --turquoise-light: #7fcfcb;

    /* Secondary Colors */
    --gray-100: #F5F5F5;
    --gray-200: #D9D9D9;
    --gray-300: #dee2e6;
    --gray-500: #B7B7B7;
    --gray-700: #495057;
    --gray-900: #212529;
    --blue-secondary: #2C92DE;

    /* Aliases for compatibility */
    --accent: #F59C16;
    --accent-light: #f7b24a;

    /* Typography */
    --font-heading: 'Open Sans', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --transition: all 0.3s ease;
}

/* --- Reset & Base --- */
* { box-sizing: border-box; }
body {
    font-family: var(--font-body);
    color: var(--gray-900);
    line-height: 1.7;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.3;
}
a, a:hover, a:focus, a:active, a:visited { text-decoration: none !important; }
a { color: var(--primary); transition: var(--transition); }
a:hover { color: var(--orange); }
img { max-width: 100%; height: auto; }

/* --- Buttons --- */
.btn-primary,
.btn-contact {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    padding: 10px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid var(--orange);
    transition: var(--transition);
    cursor: pointer;
}
.btn-primary:hover,
.btn-contact:hover {
    background: #d88810;
    border-color: #d88810;
    color: #fff;
}
.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    padding: 8px 24px;
    border: 2px solid var(--primary);
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

/* --- Header (sticky) --- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
}
.header-top {
    padding: 12px 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.site-logo .logo-img {
    height: 45px;
    transition: var(--transition);
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}
.header-search-btn {
    font-size: 1.1rem;
    color: var(--gray-700);
}
.header-phone {
    color: var(--gray-700);
    font-weight: 600;
}
.header-phone:hover { color: var(--orange); }

/* Navigation */
.main-nav {
    background: var(--primary-dark);
}
.nav-list {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 0;
}
.nav-list li { position: relative; }
.nav-list a {
    display: block;
    padding: 14px 20px;
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    text-decoration: none !important;
}
.nav-dropdown a {
    text-decoration: none !important;
}
.nav-list a:hover,
.nav-list li:hover > a {
    color: #fff;
    background: rgba(255,255,255,0.1);
}
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--primary-dark);
    min-width: 240px;
    list-style: none;
    padding: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 200;
}
.has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-dropdown a {
    padding: 10px 20px;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Hamburger */
.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--primary-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: var(--primary-dark);
    z-index: 9999;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding-top: 60px;
}
.mobile-menu.open { right: 0; }
.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mobile-nav-list a {
    display: block;
    padding: 14px 24px;
    color: rgba(255,255,255,0.85);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-weight: 600;
}
.mobile-nav-list a:hover { color: #fff; background: rgba(255,255,255,0.05); }

/* ==========================================
   HOMEPAGE HERO
   ========================================== */
/* Homepage hero: standalone section below sticky header */
.hero-section {
    position: relative;
    min-height: calc(100vh - 120px);
    background: var(--primary-darker);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Animated grid background */
.hero-grid-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image:
        linear-gradient(rgba(94,189,185,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(94,189,185,0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridShift 20s linear infinite;
    will-change: transform;
}
@keyframes gridShift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

/* Floating gradient orbs */
.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    will-change: transform;
}
.hero-orb-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: -10%; right: -5%;
    animation: orbFloat1 15s ease-in-out infinite;
}
.hero-orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, var(--turquoise) 0%, transparent 70%);
    bottom: -5%; left: 10%;
    animation: orbFloat2 18s ease-in-out infinite;
}
.hero-orb-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
    top: 40%; left: 50%;
    opacity: 0.2;
    animation: orbFloat3 12s ease-in-out infinite;
}
@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-40px, 30px) scale(1.1); }
}
@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -40px) scale(1.05); }
}
@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-50px, 20px); }
}

/* Scanline overlay */
.hero-scanline {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0,0,0,0.03) 2px,
        rgba(0,0,0,0.03) 4px
    );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.hero-top { background: transparent !important; box-shadow: none !important; }
.hero-nav { background: transparent !important; }
.nav-list-light a { color: rgba(255,255,255,0.85); }
.nav-list-light a:hover { color: #fff; background: rgba(255,255,255,0.15); }

.hero-text {
    flex: 1;
    display: flex;
    align-items: center;
    color: #fff;
    padding: 40px 0;
}

/* Hero badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease forwards;
}
.hero-badge-dot {
    width: 8px; height: 8px;
    background: var(--turquoise);
    border-radius: 50%;
    animation: dotPulse 2s ease infinite;
}
@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

/* Hero title */
.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: 1px;
}
.hero-title-line {
    display: block;
}
.hero-title-line-1 {
    color: rgba(255,255,255,0.85);
    font-size: 0.65em;
    font-weight: 400;
    animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-title-line-2 {
    animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-rotating-wrapper {
    position: relative;
    display: inline-block;
}
.hero-rotating-text {
    background: linear-gradient(135deg, var(--turquoise) 0%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255,255,255,0.87);
    max-width: 600px;
    margin-bottom: 35px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

/* Hero CTAs */
.hero-ctas {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.8s both;
    flex-wrap: wrap;
}
.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--orange);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 5px;
    border: 2px solid var(--orange);
    transition: var(--transition);
}
.hero-cta-primary:hover {
    background: #d88810;
    border-color: #d88810;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245,156,22,0.3);
}
.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: transparent;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 5px;
    border: 2px solid rgba(255,255,255,0.3);
    transition: var(--transition);
}
.hero-cta-secondary:hover {
    border-color: var(--turquoise);
    color: var(--turquoise);
    transform: translateY(-2px);
}

/* Tech tags */
.hero-tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    animation: fadeInUp 0.8s ease 1s both;
}
.tech-tag {
    padding: 5px 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.78);
    letter-spacing: 0.5px;
    font-family: 'Courier New', monospace;
}

.text-white { color: #fff !important; }

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

@media (max-width: 768px) {
    .hero-title { font-size: 2.8rem; }
    .hero-subtitle { font-size: 1.05rem; }
    .hero-ctas { flex-direction: column; }
    .hero-cta-primary, .hero-cta-secondary { text-align: center; justify-content: center; }
}

/* ==========================================
   STATS STRIP
   ========================================== */
.stats-strip {
    background: #fff;
    padding: 50px 0;
    border-bottom: 3px solid var(--gray-100);
}
.stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}
.stat-item {
    text-align: center;
    padding: 10px 40px;
    flex: 1;
    min-width: 160px;
}
.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 5px;
}
.stat-suffix {
    color: var(--turquoise);
}
.stat-label {
    font-size: 0.9rem;
    color: var(--gray-700);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.stat-divider {
    width: 1px;
    height: 50px;
    background: var(--gray-200);
}
@media (max-width: 768px) {
    .stats-grid { gap: 20px; }
    .stat-divider { display: none; }
    .stat-item { padding: 10px 20px; min-width: 140px; }
    .stat-number { font-size: 2.2rem; }
}

/* ==========================================
   CERTIFICATIONS STRIP
   ========================================== */
.certif-strip {
    background: var(--primary);
    padding: 18px 0;
}
.certif-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.certif-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    white-space: nowrap;
}
.certif-item i {
    font-size: 1.2rem;
    color: var(--turquoise);
}
@media (max-width: 768px) {
    .certif-grid { gap: 15px 25px; }
    .certif-item { font-size: 0.78rem; }
}

/* --- Certifications Strip v2 (with logos) --- */
.certif-strip-v2 {
    background: #fff;
    padding: 40px 0;
    border-bottom: 1px solid var(--gray-200);
}
.certif-grid-v2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}
.certif-item-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 35px;
    min-height: 110px;
}
.certif-item-v2 img {
    height: 55px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    margin-bottom: 10px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease;
}
.certif-item-v2:hover img {
    filter: grayscale(0%);
    opacity: 1;
}
.certif-label {
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.certif-label strong {
    font-size: 0.85rem;
    color: var(--primary-dark);
    font-weight: 700;
}
.certif-label span {
    font-size: 0.75rem;
    color: var(--gray-700);
}
.certif-divider-v2 {
    width: 1px;
    height: 70px;
    background: var(--gray-200);
    flex-shrink: 0;
}
@media (max-width: 960px) {
    .certif-grid-v2 { gap: 10px; }
    .certif-item-v2 { padding: 10px 20px; }
    .certif-divider-v2 { display: none; }
}
@media (max-width: 640px) {
    .certif-grid-v2 { justify-content: center; }
    .certif-item-v2 { width: 45%; padding: 15px 10px; }
}

/* ==========================================
   SECTION HEADERS (shared)
   ========================================== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-tag {
    display: inline-block;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--turquoise);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-tag-light {
    color: var(--turquoise-light);
}
.section-title-v2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
    font-weight: 600;
}
.title-accent {
    color: var(--orange);
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-700);
    max-width: 550px;
    margin: 0 auto;
}

/* ==========================================
   EXPERTISES SECTION
   ========================================== */
.expertises-section {
    padding: 90px 0;
    background: var(--gray-100);
}

.expertise-animate {
    animation: fadeInUp 0.6s ease both;
}

.expertise-card-v2 {
    position: relative;
    background: #fff;
    border-radius: 12px;
    padding: 45px 30px 35px;
    text-align: center;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}
.expertise-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(20,90,142,0.12);
    border-color: var(--turquoise);
}
.expertise-card-glow {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--turquoise), var(--orange));
    opacity: 0;
    transition: opacity 0.3s ease;
}
.expertise-card-v2:hover .expertise-card-glow {
    opacity: 1;
}
.expertise-icon-wrap {
    width: 80px; height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(20,90,142,0.08) 0%, rgba(94,189,185,0.08) 100%);
    transition: var(--transition);
}
.expertise-icon-wrap img {
    height: 50px;
    width: auto;
}
.expertise-icon-wrap i {
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition);
}
.expertise-card-v2:hover .expertise-icon-wrap {
    background: linear-gradient(135deg, var(--primary) 0%, var(--turquoise) 100%);
}
.expertise-card-v2:hover .expertise-icon-wrap i {
    color: #fff;
}
.expertise-title-v2 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}
.expertise-desc-v2 {
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}
.expertise-link-v2 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--orange);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
}
.expertise-link-v2:hover {
    color: var(--primary);
    gap: 12px;
}

/* ==========================================
   AI INNOVATION SECTION
   ========================================== */
.ai-section {
    position: relative;
    padding: 100px 0;
    background: var(--primary-darker);
    overflow: hidden;
}
.ai-bg-pattern {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(94,189,185,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245,156,22,0.08) 0%, transparent 50%);
}
.ai-content {
    position: relative;
    z-index: 2;
}
.ai-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.2;
}
.ai-text {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
}
.ai-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}
.ai-feature {
    display: flex;
    align-items: center;
    gap: 16px;
}
.ai-feature-icon {
    width: 48px; height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(94,189,185,0.15);
    border: 1px solid rgba(94,189,185,0.25);
}
.ai-feature-icon i {
    font-size: 1.2rem;
    color: var(--turquoise);
}
.ai-feature strong {
    display: block;
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 2px;
}
.ai-feature span {
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
}
.ai-cta {
    margin-top: 10px;
}

/* AI Visual - Orbital animation */
.ai-visual {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ai-visual-core {
    position: relative;
    width: 200px; height: 200px;
}
.ai-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(94,189,185,0.2);
    will-change: transform;
}
.ai-ring-1 {
    width: 200px; height: 200px;
    top: 0; left: 0;
    animation: ringRotate 20s linear infinite;
}
.ai-ring-2 {
    width: 280px; height: 280px;
    top: -40px; left: -40px;
    border-color: rgba(245,156,22,0.15);
    animation: ringRotate 30s linear infinite reverse;
}
.ai-ring-3 {
    width: 360px; height: 360px;
    top: -80px; left: -80px;
    border-color: rgba(44,146,222,0.1);
    animation: ringRotate 25s linear infinite;
}
@keyframes ringRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.ai-center-icon {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80px; height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--turquoise));
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(94,189,185,0.3);
}
.ai-center-icon i {
    font-size: 2rem;
    color: #fff;
}
/* Floating nodes */
.ai-node {
    position: absolute;
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    animation: nodeFloat 6s ease-in-out infinite;
    will-change: transform;
}
.ai-node-1 { top: 10%; left: 15%; animation-delay: 0s; }
.ai-node-2 { top: 5%; right: 20%; animation-delay: 1s; }
.ai-node-3 { top: 45%; right: 5%; animation-delay: 2s; }
.ai-node-4 { bottom: 10%; right: 15%; animation-delay: 0.5s; }
.ai-node-5 { bottom: 5%; left: 20%; animation-delay: 1.5s; }
.ai-node-6 { top: 50%; left: 5%; animation-delay: 2.5s; }
@keyframes nodeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@media (max-width: 960px) {
    .ai-visual { height: 300px; margin-top: 40px; }
    .ai-title { font-size: 2rem; }
}

/* ==========================================
   LATEST ARTICLES SECTION
   ========================================== */
.latest-articles-section-v2 {
    padding: 90px 0;
    background: #fff;
}
.articles-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}
.article-featured-v2 {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: var(--transition);
    color: inherit;
}
.article-featured-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
    color: inherit;
}
.article-featured-image {
    height: 280px;
    overflow: hidden;
}
.article-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.article-featured-v2:hover .article-featured-image img {
    transform: scale(1.05);
}
.article-featured-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.article-featured-body h3 {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin: 10px 0 12px;
    line-height: 1.3;
}
.article-featured-body p {
    color: var(--gray-700);
    font-size: 0.95rem;
    flex: 1;
    line-height: 1.7;
}
.article-featured-meta {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--gray-200);
    color: var(--gray-700);
    font-size: 0.85rem;
}

/* Side articles */
.articles-side-v2 {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.article-side-card {
    display: flex;
    gap: 16px;
    padding: 16px;
    border-radius: 10px;
    background: var(--gray-100);
    transition: var(--transition);
    color: inherit;
    align-items: center;
}
.article-side-card:hover {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    color: inherit;
    transform: translateX(5px);
}
.article-side-image {
    width: 110px;
    min-width: 110px;
    height: 85px;
    border-radius: 8px;
    overflow: hidden;
}
.article-side-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-image-placeholder-sm {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 1.5rem;
}
.article-side-body {
    flex: 1;
    min-width: 0;
}
.article-side-body h4 {
    font-size: 0.95rem;
    color: var(--primary-dark);
    margin: 6px 0 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.article-side-date {
    font-size: 0.8rem;
    color: var(--gray-700);
}
.badge-category-sm {
    font-size: 0.65rem;
    padding: 2px 8px;
}

@media (max-width: 960px) {
    .articles-grid-v2 {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   PARTNERS SECTION
   ========================================== */
.partners-section-v2 {
    padding: 60px 0;
    background: var(--gray-100);
    border-top: 1px solid var(--gray-200);
}
.partners-track {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 35px;
}
.partner-item-v2 {
    display: flex;
    align-items: center;
    justify-content: center;
}
.partner-logo-v2 {
    height: 45px;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: var(--transition);
}
.partner-logo-v2:hover {
    filter: grayscale(0%);
    opacity: 1;
}
.partner-name-v2 {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--gray-700);
    padding: 8px 20px;
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    transition: var(--transition);
    letter-spacing: 0.3px;
}
.partner-item-v2:hover .partner-name-v2 {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(20,90,142,0.04);
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    overflow: hidden;
}
.cta-bg-grid {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image:
        linear-gradient(rgba(94,189,185,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(94,189,185,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}
.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}
.cta-title {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}
.cta-text {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    margin-bottom: 35px;
    line-height: 1.7;
}
.cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}
.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
}
.cta-phone:hover {
    color: #fff;
}
.cta-phone i {
    width: 45px; height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition);
}
.cta-phone:hover i {
    background: var(--turquoise);
    border-color: var(--turquoise);
}

/* ==========================================
   EXISTING SECTIONS (kept for other pages)
   ========================================== */

/* --- Section Titles (old style, kept for non-homepage) --- */
.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-dark);
    position: relative;
    padding-bottom: 15px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--orange);
}
.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }

/* --- Old expertise card (for compatibility) --- */
.expertise-card {
    background: #fff;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: var(--transition);
    border-top: 4px solid var(--orange);
}
.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}
.expertise-image img {
    height: 80px;
    margin-bottom: 20px;
}
.expertise-title {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}
.expertise-desc {
    color: var(--gray-700);
    font-size: 0.95rem;
    margin-bottom: 20px;
}
.expertise-link {
    color: var(--orange);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}
.expertise-link:hover { color: var(--primary); }

/* --- Latest Articles Section (old, kept for compat) --- */
.latest-articles-section {
    padding: 80px 0;
}

/* --- Article Cards --- */
/* Article Cards */
/* -- Article Card -- */
.article-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(14, 63, 100, 0.04), 0 4px 18px rgba(14, 63, 100, 0.06);
    border: 1px solid rgba(14, 63, 100, 0.04);
    transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    height: 100%;
}
.article-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 8px 24px rgba(14, 63, 100, 0.10), 0 20px 48px rgba(14, 63, 100, 0.08);
    border-color: rgba(245, 156, 22, 0.18);
}

/* -- Card Link -- */
.card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}
.card-link:hover { color: inherit; text-decoration: none; }

/* -- Card Image -- */
.card-image {
    height: 210px;
    overflow: hidden;
    position: relative;
}
.card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(10, 36, 66, 0.75) 100%);
    pointer-events: none;
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.article-card:hover .card-image img {
    transform: scale(1.05);
}

/* -- Title overlay on image -- */
.card-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 18px;
    z-index: 2;
}
.card-image-overlay .card-title {
    color: #fff;
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.article-card:hover .card-image-overlay .card-title {
    color: #fff;
}
.card-image-placeholder {
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.25);
    font-size: 2.8rem;
}

/* -- Card Categories (between image and text) -- */
.card-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}
.badge-category {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 0.65rem;
    font-weight: 700;
    color: #fff;
    background: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    line-height: 1.3;
}

/* -- Card Body -- */
.article-card .card-body {
    padding: 26px 28px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* -- Card Title (fallback for body context) -- */
.card-title {
    font-size: 1.08rem;
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--primary-dark);
    line-height: 1.4;
}

/* -- Card Excerpt -- */
.card-excerpt {
    color: #64748b;
    font-size: 0.88rem;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 0;
}

/* -- Card Author -- */
.card-author {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
}
.card-author-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.3px;
}
.card-author-name {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary-dark);
}

/* -- Card Footer -- */
.card-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid #f1f5f9;
}
.card-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #94a3b8;
    font-size: 0.76rem;
    font-weight: 500;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}
.card-footer-row .card-meta {
    padding-top: 0;
    border-top: none;
    margin-top: 0;
}
.card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.card-meta i {
    color: var(--orange);
    font-size: 0.7rem;
}
.card-readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    transition: gap 0.3s ease;
    white-space: nowrap;
}
.card-readmore i {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
}
.article-card:hover .card-readmore i {
    transform: translateX(4px);
}

/* --- Page Header --- */
.page-header {
    position: relative;
    min-height: 350px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding-bottom: 40px;
}
.page-header-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
}
.page-header .uk-container { position: relative; z-index: 2; width: 100%; }
.page-title {
    color: #fff;
    font-size: 2.8rem;
    font-weight: 600;
    padding-bottom: 15px;
    border-bottom: 4px solid var(--orange);
    display: inline-block;
}

@media (max-width: 768px) {
    .page-header { min-height: 250px; }
    .page-title { font-size: 2rem; }
}

/* --- Page Content --- */
.page-content {
    padding: 60px 0;
}
.content-wrap {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
}
.content-wrap h2 {
    color: var(--primary-dark);
    margin-top: 40px;
    margin-bottom: 20px;
}
.content-wrap ul { padding-left: 20px; }
.content-wrap li { margin-bottom: 8px; }

/* --- Content Sections --- */
.content-section {
    padding: 60px 0;
}
.content-section:nth-child(even) {
    background: var(--gray-100);
}
.section-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* --- Skills / Tools Cards --- */
.skill-card,
.tool-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: var(--transition);
}
.skill-card:hover,
.tool-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.skill-icon,
.env-icon {
    font-size: 2.5rem;
    color: var(--orange);
    margin-bottom: 15px;
}

/* --- Family Pages / Children --- */
.family-pages-section,
.children-pages-section {
    padding: 60px 0;
    background: var(--gray-100);
}
.family-card,
.child-page-card {
    display: block;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: var(--transition);
    height: 100%;
    color: inherit;
}
.family-card:hover,
.child-page-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    color: inherit;
}
.family-card-image {
    height: 180px;
    background-size: cover;
    background-position: center;
}
.family-card-body {
    padding: 20px;
    background: var(--primary);
    color: #fff;
}
.family-card-body h3 {
    margin: 0;
    font-size: 1.1rem;
}

/* --- Contact Page --- */
.contact-info-section {
    padding: 60px 0;
    background: var(--gray-100);
}
.contact-info-card {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    height: 100%;
}
.contact-icon {
    font-size: 2.5rem;
    color: var(--orange);
    margin-bottom: 15px;
}
.contact-info-card h3 {
    color: var(--primary-dark);
    margin-bottom: 10px;
}
.contact-form-section {
    padding: 60px 0;
}
.contact-form .uk-input,
.contact-form .uk-textarea {
    border: 2px solid var(--gray-300);
    border-radius: 6px;
    transition: var(--transition);
}
.contact-form .uk-input:focus,
.contact-form .uk-textarea:focus {
    border-color: var(--primary);
}

/* --- Blog Page --- */
.page-header-blog {
    background: linear-gradient(135deg, var(--primary) 0%, var(--blue-secondary) 100%);
}
.featured-articles {
    padding: 60px 0;
    background: var(--gray-100);
}
/* Featured Cards */
/* Featured cards using same design as article-card but taller image */
.article-card-featured .card-image-featured {
    height: 280px;
}
.article-card-featured .card-image-overlay .card-title {
    font-size: 1.25rem;
}

.featured-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(14, 63, 100, 0.07);
    border: 1px solid rgba(14, 63, 100, 0.04);
    height: 100%;
    color: inherit;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
}
.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 45px rgba(14, 63, 100, 0.14);
    color: inherit;
}
.featured-image {
    height: 260px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: all 0.6s ease;
}
.featured-card:hover .featured-image {
    height: 265px;
}
.featured-body {
    padding: 26px 28px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.featured-body-top {
    flex: 1;
}
.featured-body .badge-category {
    margin-bottom: 4px;
}
.featured-body h2 {
    font-size: 1.35rem;
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--primary-dark);
    margin: 12px 0 10px;
    line-height: 1.35;
    transition: var(--transition);
}
.featured-card:hover h2 {
    color: var(--orange);
}
.featured-body p {
    color: #5a6778;
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 0;
}
.featured-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid #f1f5f9;
}
.featured-footer .card-meta {
    padding-top: 0;
    border-top: none;
    margin-top: 0;
}
.featured-footer .card-author {
    margin-top: 0;
}

/* Blog Filters */
.blog-filters {
    padding: 30px 0;
    border-bottom: 1px solid var(--gray-200);
}
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.filter-btn {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 30px;
    background: var(--gray-100);
    color: var(--gray-700);
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: #fff;
}

.blog-grid {
    padding: 60px 0;
}
.scroll-sentinel {
    padding: 40px 0;
    display: flex;
    justify-content: center;
}
.scroll-sentinel-loader {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #94a3b8;
    font-size: 0.88rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.scroll-sentinel.active .scroll-sentinel-loader {
    opacity: 1;
}
.scroll-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid #e2e8f0;
    border-top-color: var(--orange);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
/* Keep pagination-wrap for other pages (customers etc.) */
.pagination-wrap {
    margin-top: 48px;
    display: flex;
    justify-content: center;
}
.pagination-wrap .pagination { gap: 6px; }
.pagination-wrap .page-item .page-link {
    border: none;
    border-radius: 10px;
    padding: 8px 15px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary-dark);
    background: #f1f5f9;
    transition: all 0.25s ease;
}
.pagination-wrap .page-item .page-link:hover {
    background: var(--orange);
    color: #fff;
}
.pagination-wrap .page-item.active .page-link {
    background: var(--primary-dark);
    color: #fff;
}
.pagination-wrap .page-item.disabled .page-link {
    background: transparent;
    color: #c0c8d4;
}
.no-results {
    text-align: center;
    padding: 60px 0;
    color: var(--gray-700);
}

/* --- Breadcrumb --- */
.breadcrumb-nav {
    background: linear-gradient(135deg, var(--gray-100) 0%, #fff 100%);
    padding: 14px 0;
    border-bottom: 2px solid var(--gray-200);
}
.breadcrumb-nav .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
    gap: 4px;
}
.breadcrumb-nav .breadcrumb-item {
    display: flex;
    align-items: center;
}
.breadcrumb-nav .breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    padding: 0 8px;
    color: var(--orange);
    font-weight: 700;
    font-size: 0.85rem;
}
.breadcrumb-nav .breadcrumb-item a {
    color: var(--gray-700);
    transition: color 0.2s, border-bottom 0.2s;
    border-bottom: 1px solid transparent;
}
.breadcrumb-nav .breadcrumb-item a:hover {
    color: var(--orange);
    border-bottom-color: var(--orange);
}
.breadcrumb-nav .breadcrumb-item.active {
    color: var(--primary);
    font-weight: 600;
    max-width: 500px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* --- Article Single (Redesigned) --- */

/* Reading Progress */
.art-reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 9999;
}
.art-reading-progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    border-radius: 0 2px 2px 0;
    transition: width 0.1s linear;
    box-shadow: 0 0 8px rgba(245, 156, 22, 0.4);
}

/* Hero */
.art-hero {
    position: relative;
    min-height: 480px;
    background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 50%, var(--primary) 100%);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 70px 0 60px;
    overflow: hidden;
}
.art-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(10, 45, 72, 0.85) 0%, rgba(10, 45, 72, 0.4) 50%, rgba(10, 45, 72, 0.2) 100%);
    z-index: 1;
}
.art-hero-pattern {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 1;
}
.art-hero .uk-container { position: relative; z-index: 2; }
.art-hero-content { max-width: 820px; }

/* Hero Badges */
.art-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}
.art-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: var(--orange);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    letter-spacing: 0.3px;
    transition: var(--transition);
}
.art-hero-badge:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(245, 156, 22, 0.4);
}
.art-hero-badge i { font-size: 0.7rem; }

/* Hero Title */
.art-hero-title {
    color: #fff;
    font-size: 2.6rem;
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    margin: 0 0 16px;
}
.art-hero-excerpt {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Hero Meta */
.art-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 8px;
}
.art-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}
.art-meta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    font-size: 0.75rem;
    color: var(--orange-light);
}

/* ---- Article Main Layout ---- */
.art-main {
    padding: 50px 0 60px;
    background: #f0f4f8;
}
.art-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 35px;
    align-items: start;
}
@media (max-width: 959px) {
    .art-layout {
        grid-template-columns: 1fr;
    }
}

/* ---- Content Card ---- */
.art-content-card {
    background: #fff;
    border-radius: 16px;
    padding: 45px 50px;
    box-shadow: 0 4px 25px rgba(14, 63, 100, 0.06);
    border: 1px solid rgba(14, 63, 100, 0.04);
}
@media (max-width: 640px) {
    .art-content-card { padding: 25px 20px; border-radius: 12px; }
}

/* ---- Article Body Content Styling ---- */
.art-body {
    font-size: 1.06rem;
    line-height: 1.85;
    color: #333;
}
.art-body h2 {
    color: var(--primary-dark);
    font-size: 1.6rem;
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--orange);
    display: inline-block;
}
.art-body h2::first-letter {
    color: var(--orange);
}
.art-body h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 12px;
    padding-left: 14px;
    border-left: 4px solid var(--orange);
}
.art-body h4 {
    color: var(--primary-dark);
    font-size: 1.1rem;
    margin-top: 24px;
    margin-bottom: 10px;
}
.art-body p {
    margin-bottom: 20px;
    text-align: justify;
}
.art-body img {
    border-radius: 12px;
    margin: 20px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.art-body a {
    color: var(--primary);
    font-weight: 600;
    border-bottom: 2px solid rgba(20, 90, 142, 0.15);
    transition: var(--transition);
}
.art-body a:hover {
    color: var(--orange);
    border-bottom-color: var(--orange);
}
.art-body ul,
.art-body ol {
    margin: 18px 0;
    padding-left: 0;
}
.art-body ul {
    list-style: none;
}
.art-body ul li {
    position: relative;
    padding: 6px 0 6px 28px;
}
.art-body ul li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 14px;
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
}
.art-body ol li {
    padding: 6px 0 6px 8px;
    margin-left: 20px;
}
.art-body ol li::marker {
    color: var(--orange);
    font-weight: 700;
}
.art-body blockquote {
    margin: 30px 0;
    padding: 20px 25px;
    background: linear-gradient(135deg, #f0f7ff, #edf5ff);
    border-left: 5px solid var(--primary);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--primary-dark);
}
.art-body blockquote p { margin: 0; }
.art-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.art-body table thead th {
    background: var(--primary-dark);
    color: #fff;
    padding: 12px 16px;
    font-family: var(--font-heading);
    font-weight: 500;
    text-align: left;
}
.art-body table tbody td {
    padding: 10px 16px;
    border-bottom: 1px solid var(--gray-200);
}
.art-body table tbody tr:nth-child(even) {
    background: #f9fafb;
}
.art-body table tbody tr:hover {
    background: #f0f7ff;
}
.art-body pre, .art-body code {
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    font-size: 0.9em;
}
.art-body code {
    background: #f0f4f8;
    color: var(--primary-dark);
    padding: 2px 6px;
    border-radius: 4px;
}
.art-body pre {
    background: #1a1a2e;
    color: #e0e0e0;
    padding: 20px;
    border-radius: 12px;
    overflow-x: auto;
    margin: 20px 0;
}
.art-body pre code {
    background: none;
    color: inherit;
    padding: 0;
}
.art-body strong {
    color: var(--primary-dark);
}
.art-body hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
    margin: 35px 0;
}

/* ---- Tags Section ---- */
.art-tags-section {
    margin-top: 30px;
    padding: 22px 28px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(14, 63, 100, 0.05);
    border: 1px solid rgba(14, 63, 100, 0.04);
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.art-tags-label {
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
}
.art-tags-label i { color: var(--orange); margin-right: 4px; }
.art-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.art-tag {
    display: inline-flex;
    align-items: center;
    padding: 5px 16px;
    background: #f0f4f8;
    color: var(--primary-dark);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid transparent;
}
.art-tag:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-1px);
}

/* ---- Author Card ---- */
.art-author-card {
    margin-top: 25px;
    padding: 28px 30px;
    background: linear-gradient(135deg, #f0f7ff, #edf2f9);
    border-radius: 16px;
    display: flex;
    gap: 20px;
    align-items: center;
    border-left: 5px solid var(--primary);
}
.art-author-avatar {
    flex-shrink: 0;
    font-size: 3.2rem;
    color: var(--primary);
    line-height: 1;
}
.art-author-label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--orange);
    font-weight: 700;
    margin-bottom: 2px;
}
.art-author-name {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    font-size: 1.2rem;
    margin: 0 0 6px;
}
.art-author-bio {
    font-size: 0.9rem;
    color: var(--gray-700);
    margin: 0;
    line-height: 1.5;
}

/* ---- Share Section ---- */
.art-share-section {
    margin-top: 25px;
    padding: 22px 28px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(14, 63, 100, 0.05);
    border: 1px solid rgba(14, 63, 100, 0.04);
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.art-share-label {
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
}
.art-share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.art-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 25px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}
.art-share-linkedin { background: #0077B5; }
.art-share-twitter { background: #1DA1F2; }
.art-share-email { background: var(--gray-700); }
.art-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    color: #fff;
}

/* Back link */
.art-back-link {
    margin-top: 25px;
}
.art-back-link a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}
.art-back-link a:hover {
    color: var(--orange);
}
.art-back-link a i {
    transition: var(--transition);
}
.art-back-link a:hover i {
    transform: translateX(-4px);
}

/* ---- Sidebar ---- */
.art-sidebar {
    position: sticky;
    top: 110px;
}
.art-sidebar-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(14, 63, 100, 0.06);
    border: 1px solid rgba(14, 63, 100, 0.04);
    margin-bottom: 20px;
}
.art-sidebar-card-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
    padding: 14px 20px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}
.art-sidebar-card-header i {
    margin-right: 8px;
    color: var(--orange-light);
}
.art-sidebar-card-body {
    padding: 18px 20px;
}
.art-sidebar-card-body-flush {
    padding: 0;
}

/* Sidebar Share */
.art-sidebar-share {
    display: flex;
    gap: 10px;
}
.art-sidebar-share .art-share-btn {
    flex: 1;
    justify-content: center;
    padding: 10px 12px;
}

/* Sidebar Categories */
.art-sidebar-categories {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.art-sidebar-cat {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    color: var(--gray-900);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}
.art-sidebar-cat:hover {
    background: #f0f4f8;
    color: var(--primary);
}
.art-sidebar-cat-dot {
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cat-color, var(--orange));
}

/* Sidebar Latest */
.art-latest-list {
    display: flex;
    flex-direction: column;
}
.art-latest-item {
    display: flex;
    gap: 12px;
    padding: 14px 18px;
    border-bottom: 1px solid #f0f4f8;
    transition: var(--transition);
    align-items: center;
}
.art-latest-item:last-child { border-bottom: none; }
.art-latest-item:hover {
    background: #f8fafc;
}
.art-latest-item-active {
    background: #f0f7ff;
    border-left: 3px solid var(--orange);
}
.art-latest-thumb {
    flex-shrink: 0;
    width: 60px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    background: #f0f4f8;
}
.art-latest-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.art-latest-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    font-size: 1rem;
}
.art-latest-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}
.art-latest-title {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--gray-900);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.art-latest-item:hover .art-latest-title { color: var(--primary); }
.art-latest-date {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 4px;
}
.art-latest-date i { margin-right: 3px; }

/* Sidebar CTA */
.art-sidebar-cta {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-radius: 14px;
    padding: 28px 24px;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}
.art-sidebar-cta::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
}
.art-sidebar-cta::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}
.art-sidebar-cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(245, 156, 22, 0.2);
    border-radius: 50%;
    color: var(--orange-light);
    font-size: 1.3rem;
    margin-bottom: 12px;
}
.art-sidebar-cta h4 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin: 0 0 8px;
    position: relative;
}
.art-sidebar-cta p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin: 0 0 18px;
    line-height: 1.5;
    position: relative;
}
.art-sidebar-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--orange);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 25px;
    transition: var(--transition);
    position: relative;
}
.art-sidebar-cta-btn:hover {
    background: var(--orange-light);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 156, 22, 0.4);
}

/* ---- Related Articles Section ---- */
.art-related {
    padding: 70px 0 60px;
    background: #fff;
}
.art-related-header {
    text-align: center;
    margin-bottom: 40px;
}

/* ---- Responsive ---- */
@media (max-width: 959px) {
    .art-hero { min-height: 360px; padding: 50px 0 40px; }
    .art-hero-title { font-size: 2rem; }
    .art-hero-meta { gap: 12px; }
    .art-meta-icon { display: none; }
    .art-content-card { padding: 30px 25px; }
    .art-author-card { flex-direction: column; text-align: center; padding: 25px 20px; }
    .art-author-card { border-left: none; border-top: 4px solid var(--primary); }
    .art-share-section { flex-direction: column; align-items: flex-start; }
    .art-tags-section { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
    .art-hero { min-height: 300px; padding: 40px 0 30px; }
    .art-hero-title { font-size: 1.6rem; }
    .art-hero-excerpt { font-size: 1rem; }
    .art-main { padding: 30px 0 40px; }
    .art-body h2 { font-size: 1.35rem; }
    .art-body h3 { font-size: 1.15rem; }
    .art-share-btn { padding: 8px 14px; font-size: 0.8rem; }
}

/* --- Search --- */
.page-header-search {
    min-height: 250px;
}
.search-query {
    color: rgba(255,255,255,0.87);
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}
.search-form-inline { margin-bottom: 40px; }
.results-section-title {
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-dark);
}
.search-result-card {
    display: block;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    color: inherit;
    transition: var(--transition);
}
.search-result-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    color: inherit;
}
.search-result-card h3 { color: var(--primary-dark); font-size: 1.1rem; margin-bottom: 8px; }
.search-result-card p { color: var(--gray-700); font-size: 0.9rem; margin: 0; }

/* --- Partners (old style) --- */
.partners-section {
    padding: 50px 0;
    background: var(--gray-100);
}
.partners-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.partner-item {
    flex: 0 0 auto;
}
.partner-logo {
    height: 50px;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: var(--transition);
}
.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}
.partner-name {
    font-weight: 600;
    color: var(--gray-700);
}

/* --- Footer --- */
.site-footer {
    background: var(--primary-darker);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
}
.footer-logo {
    height: 55px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
}
.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.87);
}
.footer-title {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--orange);
    display: inline-block;
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links a {
    color: rgba(255,255,255,0.85);
    display: block;
    padding: 4px 0;
    font-size: 0.9rem;
}
.footer-links a:hover { color: #fff; }
.footer-contact {
    list-style: none;
    padding: 0;
}
.footer-contact li {
    padding: 6px 0;
    font-size: 0.9rem;
}
.footer-contact i {
    color: var(--orange);
    width: 20px;
    margin-right: 8px;
}
.social-links {
    display: flex;
    gap: 12px;
}
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    transition: var(--transition);
}
.social-links a:hover {
    background: var(--orange);
    color: #fff;
}

.footer-bottom {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.87);
}
.footer-legal {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}
.footer-legal a {
    color: rgba(255,255,255,0.87);
    font-size: 0.85rem;
}
.footer-legal a:hover { color: #fff; }

/* --- Scroll to top --- */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--orange);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 4px 15px rgba(245,156,22,0.4);
}
.scroll-top:hover { color: #fff; transform: translateY(-3px); }
.scroll-top.visible { opacity: 1; visibility: visible; }

/* --- Jobs --- */
.jobs-sector-section { padding: 60px 0; }
.jobs-sector-section:nth-child(even) { background: var(--gray-100); }
.job-card {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: var(--transition);
}
.job-card:hover { transform: translateY(-3px); }
.job-card img { height: 60px; margin-bottom: 15px; }
.job-card h3 { font-size: 1rem; color: var(--primary-dark); }

.job-detail-section { padding: 60px 0; }
.job-cta-card {
    background: var(--gray-100);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    position: sticky;
    top: 100px;
}
.job-cta-card h3 { color: var(--primary-dark); }

.environments-section {
    padding: 40px 0;
    background: var(--gray-100);
}
.environments-row { gap: 30px; }
.environment-item { text-align: center; }
.environment-item span { display: block; font-size: 0.85rem; color: var(--gray-700); margin-top: 5px; }

.testimonies-section { padding: 60px 0; }
.testimony-card {
    text-align: center;
    padding: 30px;
}
.testimony-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}
.testimony-card blockquote {
    font-style: italic;
    color: var(--gray-700);
    margin-bottom: 10px;
}
.testimony-card cite {
    font-weight: 600;
    color: var(--primary-dark);
}

/* --- Blog category tree --- */
.category-tree,
.subcategory-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.filter-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 11px;
    background: rgba(0,0,0,0.08);
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: 5px;
    line-height: 1;
}
.filter-btn.active .filter-count {
    background: rgba(255,255,255,0.3);
}

/* Blog filter active bar */
.blog-filter-active {
    padding: 12px 0;
    background: var(--gray-100);
    border-bottom: 1px solid var(--gray-200);
}
.blog-filter-active .uk-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.filter-active-label {
    font-size: 0.9rem;
    color: var(--gray-700);
}
.filter-clear {
    font-size: 0.85rem;
    color: var(--orange);
    font-weight: 600;
}
.filter-clear:hover {
    color: var(--primary);
}

/* --- Customers Intro Section --- */
.customers-intro {
    padding: 50px 0 10px;
}
.customers-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
.customers-intro-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 36px 32px 32px;
    box-shadow: 0 4px 24px rgba(14, 63, 100, 0.07);
    border: 1px solid rgba(14, 63, 100, 0.05);
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease;
}
.customers-intro-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(14, 63, 100, 0.12);
}
.customers-intro-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 20px;
}
.customers-intro-icon--orange {
    background: linear-gradient(135deg, var(--orange), #e8890a);
}
.customers-intro-card h2 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin: 0 0 14px;
    line-height: 1.35;
    letter-spacing: 0.2px;
}
.customers-intro-card p {
    color: #556;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}
.customers-intro-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    border-radius: 0 0 16px 16px;
}
.customers-intro-accent--orange {
    background: linear-gradient(90deg, var(--orange), #e8890a);
}
@media (max-width: 768px) {
    .customers-intro-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .customers-intro-card {
        padding: 28px 24px 24px;
    }
}

/* --- Customers / Clients grid --- */
.customers-grid-section {
    padding: 70px 0;
    background: var(--gray-100);
}
.customer-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    min-height: 120px;
}
.customer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: var(--turquoise);
}
.customer-card a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.customer-logo {
    max-height: 60px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(30%);
    opacity: 0.8;
    transition: var(--transition);
}
.customer-card:hover .customer-logo {
    filter: grayscale(0%);
    opacity: 1;
}
.customer-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    text-align: center;
}

/* --- Trust Section (Nos clients page) --- */
.trust-section {
    padding: 70px 0 80px;
    background: linear-gradient(170deg, #0b2a4a 0%, #0f3460 40%, #14436e 100%);
    position: relative;
    overflow: hidden;
}
.trust-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245, 156, 22, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.trust-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.trust-header {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}
.trust-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--orange);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
    padding: 6px 18px;
    background: rgba(245, 156, 22, 0.1);
    border: 1px solid rgba(245, 156, 22, 0.2);
    border-radius: 30px;
}
.trust-tag i {
    font-size: 0.7rem;
}
.trust-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 14px;
    letter-spacing: 0.5px;
}
.trust-title span {
    color: var(--orange);
}
.trust-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    position: relative;
    z-index: 1;
}
.trust-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 14px;
    padding: 28px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 110px;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.trust-card:hover {
    background: #fff;
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2), 0 0 0 2px var(--orange);
}
.trust-card a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.trust-logo {
    max-height: 55px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.55;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.trust-card:hover .trust-logo {
    filter: grayscale(0%);
    opacity: 1;
}
.trust-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    text-align: center;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}
.trust-card:hover .trust-name {
    opacity: 1;
}
@media (max-width: 960px) {
    .trust-grid { grid-template-columns: repeat(3, 1fr); }
    .trust-title { font-size: 2rem; }
}
@media (max-width: 640px) {
    .trust-section { padding: 50px 0 60px; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .trust-card { padding: 22px 14px; min-height: 90px; }
    .trust-title { font-size: 1.7rem; }
    .trust-header { margin-bottom: 32px; }
}

/* --- Contact specific --- */
.page-header-contact {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

/* --- 404 --- */
.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* --- Page header subtitle --- */
.page-header-subtitle {
    color: rgba(255,255,255,0.87);
    font-size: 1.15rem;
    position: relative;
    z-index: 2;
    margin-top: 10px;
}

/* --- Footer certifications --- */
.footer-certifs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
}
.footer-certif {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.87);
}
.footer-certif i {
    color: var(--turquoise);
    margin-right: 6px;
    width: 18px;
}
.footer-contact a {
    color: rgba(255,255,255,0.87);
}
.footer-contact a:hover {
    color: #fff;
}

/* --- Contact page enhancements --- */
.contact-form-intro {
    padding-right: 30px;
}
.contact-form-intro h2 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin: 12px 0 15px;
}
.contact-form-intro p {
    color: var(--gray-700);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 25px;
}
.contact-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.contact-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 0.95rem;
}
.contact-highlight i {
    color: var(--turquoise);
    font-size: 1.1rem;
}

/* --- Contact info card border accent --- */
.contact-info-card {
    border-top: 3px solid transparent;
    transition: var(--transition);
}
.contact-info-card:hover {
    border-top-color: var(--orange);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* ==========================================
   ERROR PAGES (404, 403, 500, etc.)
   ========================================== */
.error-page {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 0;
}
.error-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 50%, #0d2f4a 100%);
    z-index: 0;
}
.error-grid {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image:
        linear-gradient(rgba(94,189,185,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(94,189,185,0.05) 1px, transparent 1px);
    background-size: 50px 50px;
}
.error-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}
.error-orb-1 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, var(--turquoise) 0%, transparent 70%);
    top: -100px; right: -50px;
    opacity: 0.25;
}
.error-orb-2 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
    bottom: -80px; left: -30px;
    opacity: 0.2;
}
.error-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.error-code {
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, var(--orange) 0%, var(--turquoise) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}
.error-icon {
    font-size: 2.5rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
}
.error-page h1 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 15px;
}
.error-message {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}
.error-search {
    margin-bottom: 30px;
}
.error-search-form {
    display: flex;
    max-width: 420px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.error-search-input {
    flex: 1;
    padding: 14px 18px;
    border: none;
    font-size: 1rem;
    outline: none;
    font-family: var(--font-body);
}
.error-search-btn {
    background: var(--orange);
    color: #fff;
    border: none;
    padding: 14px 20px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}
.error-search-btn:hover {
    background: #d88810;
}
.error-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.error-actions .btn-primary {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
}
.error-actions .btn-outline {
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}
.error-actions .btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    color: #fff;
}
@media (max-width: 640px) {
    .error-code { font-size: 5rem; }
    .error-page h1 { font-size: 1.5rem; }
    .error-message { font-size: 1rem; }
    .error-actions { flex-direction: column; align-items: center; }
}

/* --- Responsive adjustments --- */
@media (max-width: 640px) {
    .expertises-section { padding: 50px 0; }
    .page-content { padding: 40px 0; }
    .latest-articles-section { padding: 40px 0; }
    .latest-articles-section-v2 { padding: 50px 0; }
    .ai-section { padding: 60px 0; }
    .cta-section { padding: 50px 0; }
    .cta-title { font-size: 2rem; }
    .section-title-v2 { font-size: 1.8rem; }
    .contact-form-intro { padding-right: 0; margin-bottom: 30px; }
}

/* ==========================================
   Formations Page
   ========================================== */

/* Hero */
.formations-hero {
    position: relative;
    background: linear-gradient(135deg, #0a2d48 0%, #145A8E 60%, #1a6faf 100%);
    background-size: cover;
    background-position: center;
    padding: 5rem 0 4rem;
    min-height: 380px;
    display: flex;
    align-items: center;
}
.formations-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 45, 72, 0.92) 0%, rgba(20, 90, 142, 0.8) 50%, rgba(245, 156, 22, 0.15) 100%);
    z-index: 1;
}
.formations-hero .uk-container { position: relative; z-index: 2; }
.formations-hero-content { max-width: 700px; }
.formations-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    letter-spacing: 0.5px;
}
.formations-hero-badge i { color: #F59C16; }
.formations-hero h1 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 600;
    margin: 0 0 1rem;
    line-height: 1.15;
}
.formations-hero-subtitle {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}
.formations-hero-stats {
    display: flex;
    gap: 2.5rem;
}
.formations-hero-stats .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.formations-hero-stats .stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: #F59C16;
    line-height: 1;
}
.formations-hero-stats .stat-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Main Layout */
.formations-main { padding: 3rem 0 4rem; background: #f8f9fa; }
.formations-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    align-items: start;
}

/* Sidebar */
.formations-sidebar { position: sticky; top: 90px; }
.sidebar-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(15,52,96,0.06);
    overflow: hidden;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(15,52,96,0.06);
}
.sidebar-card-header {
    background: linear-gradient(135deg, #0e3f64, #145A8E);
    color: #fff;
    padding: 1rem 1.25rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.sidebar-card-header i { color: #F59C16; font-size: 1.1rem; }
.sidebar-nav { padding: 0.5rem 0; }
.sidebar-nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1.25rem;
    color: #333;
    text-decoration: none;
    font-size: 0.85rem;
    line-height: 1.3;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}
.sidebar-nav-item:hover {
    background: #f0f7ff;
    color: #145A8E;
    border-left-color: #F59C16;
}
.sidebar-nav-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: #f0f4f8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #145A8E;
    transition: all 0.2s ease;
}
.sidebar-nav-item:hover .sidebar-nav-icon {
    background: #145A8E;
    color: #fff;
}
.sidebar-nav-text { flex: 1; }
.sidebar-nav-arrow {
    font-size: 0.6rem;
    color: #ccc;
    transition: all 0.2s ease;
}
.sidebar-nav-item:hover .sidebar-nav-arrow {
    color: #F59C16;
    transform: translateX(3px);
}

/* Sidebar Qualiopi */
.sidebar-qualiopi {
    text-align: center;
    padding: 1.5rem;
}
.qualiopi-badge {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #F59C16, #e8890a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: #fff;
    box-shadow: 0 4px 15px rgba(245,156,22,0.3);
}
.sidebar-qualiopi h4 {
    font-family: var(--font-heading);
    color: #0e3f64;
    font-size: 1rem;
    margin: 0 0 0.5rem;
}
.sidebar-qualiopi p {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.5;
    margin: 0;
}

/* Sidebar CTA */
.sidebar-cta {
    padding: 1.25rem;
    text-align: center;
    background: linear-gradient(135deg, #0e3f64, #145A8E);
    border: none;
}
.sidebar-cta h4 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1rem;
    margin: 0 0 0.5rem;
}
.sidebar-cta h4 i { color: #F59C16; margin-right: 0.25rem; }
.sidebar-cta p {
    color: rgba(255,255,255,0.75);
    font-size: 0.8rem;
    line-height: 1.5;
    margin: 0 0 1rem;
}
.sidebar-cta-btn {
    display: block;
    background: linear-gradient(135deg, #F59C16, #e8890a);
    color: #fff;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-bottom: 0.75rem;
}
.sidebar-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245,156,22,0.4);
    color: #fff;
}
.sidebar-cta-phone {
    display: block;
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    text-decoration: none;
}
.sidebar-cta-phone:hover { color: #F59C16; }

/* Content Area */
.formations-content { min-width: 0; }
.formations-intro {
    background: #fff;
    border-radius: 14px;
    padding: 2rem 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(15,52,96,0.06);
    border: 1px solid rgba(15,52,96,0.06);
}
.formations-intro h2 {
    font-family: var(--font-heading);
    color: #0e3f64;
    font-size: 1.6rem;
    margin: 0 0 1rem;
}
.formations-intro p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}
.formations-intro p:last-child { margin-bottom: 0; }

/* Category Blocks */
.formation-category { margin-bottom: 2rem; }
.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 14px 14px 0 0;
    color: #fff;
}
.category-header-blue { background: linear-gradient(135deg, #0e3f64, #145A8E); }
.category-header-orange { background: linear-gradient(135deg, #e8890a, #F59C16); }
.category-header-purple { background: linear-gradient(135deg, #6d28d9, #7c3aed); }
.category-header-turquoise { background: linear-gradient(135deg, #0d9488, #14b8a6); }
.category-icon {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.category-header h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
    margin: 0;
    color: #fff;
}
.category-header p {
    font-size: 0.85rem;
    opacity: 0.85;
    margin: 0.15rem 0 0;
}

/* Formation Cards Row */
.formation-cards-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
    padding: 1rem;
    background: #fff;
    border-radius: 0 0 14px 14px;
    box-shadow: 0 4px 20px rgba(15,52,96,0.06);
    border: 1px solid rgba(15,52,96,0.06);
    border-top: none;
}
.formation-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eef1f5;
    text-decoration: none;
    transition: all 0.3s ease;
}
.formation-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(15,52,96,0.12);
    border-color: rgba(20,90,142,0.15);
}
.formation-card-img {
    position: relative;
    height: 140px;
    background-size: cover;
    background-position: center;
}
.formation-card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(14,63,100,0.6) 100%);
}
.formation-card-img-overlay-purple {
    background: linear-gradient(to bottom, transparent 40%, rgba(109,40,217,0.6) 100%);
}
.formation-card-body {
    padding: 1rem 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.formation-card-body h4 {
    font-family: var(--font-heading);
    color: #0e3f64;
    font-size: 1rem;
    font-weight: 500;
    margin: 0 0 0.5rem;
    line-height: 1.3;
}
.formation-card-body p {
    color: #777;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0.25rem 0 0;
    flex: 1;
}
.formation-level {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    width: fit-content;
}
.formation-level-green { background: #ecfdf5; color: #059669; }
.formation-level-orange { background: #fff8ee; color: #d97706; }
.formation-level-blue { background: #eff6ff; color: #2563eb; }
.formation-level-purple { background: #f5f3ff; color: #7c3aed; }
.formation-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #F59C16;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.75rem;
    transition: gap 0.2s ease;
}
.formation-card:hover .formation-card-link { gap: 0.7rem; }
.formation-card-highlight { border-color: rgba(124,58,237,0.15); }
.formation-card-highlight:hover { border-color: rgba(124,58,237,0.3); }

/* Info Section */
.formations-info-section {
    margin-top: 1rem;
}
.formations-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.info-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(15,52,96,0.06);
    border: 1px solid rgba(15,52,96,0.06);
    transition: transform 0.2s ease;
}
.info-card:hover { transform: translateY(-3px); }
.info-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 0.75rem;
    color: #fff;
}
.info-card-icon-blue { background: linear-gradient(135deg, #0e3f64, #145A8E); }
.info-card-icon-orange { background: linear-gradient(135deg, #e8890a, #F59C16); }
.info-card-icon-turquoise { background: linear-gradient(135deg, #0d9488, #14b8a6); }
.info-card-icon-purple { background: linear-gradient(135deg, #6d28d9, #7c3aed); }
.info-card h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: #0e3f64;
    margin: 0 0 0.35rem;
}
.info-card p {
    font-size: 0.78rem;
    color: #888;
    line-height: 1.4;
    margin: 0;
}
.info-card-link {
    display: block;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.info-card-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(15,52,96,0.12);
    color: inherit;
}
.info-card-download {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary);
    transition: color 0.2s, gap 0.2s;
}
.info-card-link:hover .info-card-download {
    color: var(--orange);
    gap: 8px;
}

/* Responsive */
@media (max-width: 960px) {
    .formations-layout {
        grid-template-columns: 1fr;
    }
    .formations-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .sidebar-card:first-child {
        grid-column: 1 / -1;
    }
    .formations-hero h1 { font-size: 2.2rem; }
    .formations-info-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .formations-hero { padding: 3rem 0 2.5rem; min-height: auto; }
    .formations-hero h1 { font-size: 1.8rem; }
    .formations-hero-stats { gap: 1.5rem; }
    .formations-hero-stats .stat-number { font-size: 1.8rem; }
    .formations-sidebar { grid-template-columns: 1fr; }
    .formations-intro { padding: 1.5rem; }
    .formation-cards-row { grid-template-columns: 1fr; }
    .formations-info-grid { grid-template-columns: 1fr 1fr; }
    .category-header { padding: 1rem 1.25rem; }
}

/* ==========================================
   FORMATION DETAIL PAGE
   ========================================== */

/* Hero */
.fd-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 5rem 0 4rem;
    min-height: 340px;
    display: flex;
    align-items: center;
}
.fd-hero-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.92;
    z-index: 1;
}
.fd-hero-overlay-img {
    position: absolute;
    inset: 0;
    background: inherit;
    opacity: 0.15;
    z-index: 1;
    mix-blend-mode: overlay;
}
.fd-hero .uk-container { position: relative; z-index: 2; }
.fd-hero-content { max-width: 750px; }
.fd-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}
.fd-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}
.fd-hero-badge i { color: #F59C16; }
.fd-hero-badge-qualiopi {
    background: rgba(245,156,22,0.2);
    border-color: rgba(245,156,22,0.4);
}
.fd-hero h1 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
    line-height: 1.15;
}
.fd-hero-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

/* Sidebar active state */
.sidebar-nav-item-active {
    background: #f0f7ff;
    color: #145A8E;
    border-left-color: #F59C16;
    font-weight: 600;
}
.sidebar-nav-item-active .sidebar-nav-icon {
    background: #145A8E;
    color: #fff;
}
.sidebar-nav-item-active .sidebar-nav-arrow {
    color: #F59C16;
}

/* Content Card */
.fd-content-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(15,52,96,0.06);
    border: 1px solid rgba(15,52,96,0.06);
    overflow: hidden;
}
.fd-content-body {
    padding: 2.5rem 3rem;
    color: #444;
    font-size: 1rem;
    line-height: 1.8;
}

/* Content body typography */
.fd-content-body h2 {
    font-family: var(--font-heading);
    color: #0e3f64;
    font-size: 1.4rem;
    font-weight: 500;
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid #f0f4f8;
    position: relative;
}
.fd-content-body h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #F59C16;
}
.fd-content-body h2:first-child {
    margin-top: 0;
}
.fd-content-body h3 {
    font-family: var(--font-heading);
    color: #145A8E;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 1.5rem 0 0.75rem;
}
.fd-content-body p {
    margin-bottom: 0.75rem;
}
.fd-content-body ul {
    padding-left: 0;
    list-style: none;
    margin: 0.75rem 0;
}
.fd-content-body ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.4rem;
    line-height: 1.6;
}
.fd-content-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #F59C16;
}
.fd-content-body ul ul {
    margin: 0.3rem 0 0.5rem;
}
.fd-content-body ul ul li::before {
    background: #145A8E;
    width: 5px;
    height: 5px;
}
.fd-content-body ol {
    padding-left: 1.25rem;
    margin: 0.75rem 0;
}
.fd-content-body ol li {
    margin-bottom: 0.4rem;
    line-height: 1.6;
}
.fd-content-body strong, .fd-content-body b {
    color: #0e3f64;
    font-weight: 600;
}
.fd-content-body a {
    color: #145A8E;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(20,90,142,0.3);
    transition: all 0.2s ease;
}
.fd-content-body a:hover {
    color: #F59C16;
    border-bottom-color: #F59C16;
}
.fd-content-body table {
    width: 100%;
    border: none;
    margin: 1rem 0;
}
.fd-content-body table td {
    padding: 0;
    border: none;
    vertical-align: top;
}
.fd-content-body img {
    border-radius: 10px;
    margin: 1rem 0;
}

/* Bottom actions */
.fd-bottom-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 0 0.25rem;
}
.fd-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #145A8E;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
}
.fd-back-link:hover {
    color: #F59C16;
    gap: 0.7rem;
}
.fd-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #F59C16, #e8890a);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(245,156,22,0.25);
}
.fd-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245,156,22,0.4);
    color: #fff;
}

/* Responsive Formation Detail */
@media (max-width: 960px) {
    .fd-hero { padding: 3.5rem 0 3rem; min-height: auto; }
    .fd-hero h1 { font-size: 2rem; }
    .fd-content-body { padding: 2rem; }
}
@media (max-width: 640px) {
    .fd-hero { padding: 2.5rem 0 2rem; }
    .fd-hero h1 { font-size: 1.6rem; }
    .fd-hero-subtitle { font-size: 0.9rem; }
    .fd-content-body { padding: 1.25rem 1.5rem; }
    .fd-content-body h2 { font-size: 1.2rem; }
    .fd-bottom-actions { flex-direction: column; align-items: stretch; text-align: center; }
    .fd-back-link { justify-content: center; }
    .fd-cta-btn { justify-content: center; }
}

/* ==========================================
   ARTICLE INLINE CAROUSEL (itroom-carousel)
   ========================================== */
.itroom-article-container {
    max-width: 100%;
}
.itroom-carousel-wrapper {
    position: relative;
    margin: 1.5rem 0 2rem;
}
.itroom-carousel-container {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    background: #1a1a2e;
}
.itroom-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
}
.itroom-slide-active {
    opacity: 1;
    z-index: 2;
}
.itroom-slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    z-index: 3;
}
.itroom-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.85);
    color: #333;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    padding: 0;
    line-height: 1;
}
.itroom-nav-btn:hover {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    transform: translateY(-50%) scale(1.05);
}
.itroom-nav-prev { left: 12px; }
.itroom-nav-next { right: 12px; }
.itroom-dots-container {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1rem;
}
.itroom-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #ccc;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
}
.itroom-dot-active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Fix: nav buttons inside p tag in article content */
.content-wrap .itroom-carousel-container > p {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    z-index: 10;
    pointer-events: none;
}
.content-wrap .itroom-carousel-container > p .itroom-nav-btn {
    pointer-events: all;
}

@media (max-width: 768px) {
    .itroom-carousel-container { height: 280px; }
    .itroom-nav-btn { width: 36px; height: 36px; font-size: 0.9rem; }
    .itroom-nav-prev { left: 8px; }
    .itroom-nav-next { right: 8px; }
    .itroom-slide-caption { font-size: 0.85rem; padding: 1rem; }
}

/* ==========================================
   PARENT PAGE (Nos expertises)
   ========================================== */

/* --- Hero --- */
.parent-hero {
    position: relative;
    min-height: 420px;
    background: linear-gradient(135deg, #071a2e 0%, var(--primary-dark) 40%, var(--primary) 100%);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 0 0 60px;
    overflow: hidden;
}
.parent-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7,26,46,0.6) 0%, rgba(14,63,100,0.85) 100%);
    z-index: 1;
}
.parent-hero-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image:
        linear-gradient(0deg, rgba(94,189,185,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(94,189,185,0.06) 1px, transparent 1px);
    background-size: 50px 50px;
}
.parent-hero .uk-container {
    position: relative;
    z-index: 2;
    width: 100%;
}
.parent-hero-content {
    max-width: 720px;
}

/* Breadcrumb inside hero */
.parent-breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    gap: 4px;
    font-size: 0.85rem;
}
.parent-breadcrumb li {
    display: flex;
    align-items: center;
    color: rgba(255,255,255,0.5);
}
.parent-breadcrumb li + li::before {
    content: "›";
    padding: 0 8px;
    color: var(--turquoise);
    font-weight: 700;
}
.parent-breadcrumb li a {
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
}
.parent-breadcrumb li a:hover {
    color: #fff;
}
.parent-breadcrumb li.active {
    color: var(--turquoise-light);
    font-weight: 600;
}

.parent-hero-title {
    color: #fff;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 20px;
    letter-spacing: -0.5px;
}
.parent-hero-subtitle {
    color: rgba(255,255,255,0.85);
    font-size: 1.2rem;
    line-height: 1.7;
    margin: 0 0 30px;
    max-width: 600px;
}
.parent-hero-count {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px;
    padding: 10px 24px;
    backdrop-filter: blur(10px);
}
.parent-hero-count-number {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
}
.parent-hero-count-label {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .parent-hero { min-height: 320px; padding-bottom: 40px; }
    .parent-hero-title { font-size: 2.2rem; }
    .parent-hero-subtitle { font-size: 1.05rem; }
}

/* --- Intro section --- */
.parent-intro {
    padding: 70px 0 0;
}
.parent-intro-inner {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--gray-700);
}
.parent-intro-inner h2 {
    color: var(--primary-dark);
    font-size: 1.8rem;
    margin-bottom: 16px;
}
.parent-intro-inner p {
    margin-bottom: 16px;
}

/* --- Children cards section --- */
.parent-children {
    padding: 80px 0 90px;
    background: var(--gray-100);
}
.parent-children-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Card */
.parent-child-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.4s ease;
    color: inherit;
    animation: fadeInUp 0.6s ease both;
}
.parent-child-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(14,63,100,0.15);
    color: inherit;
}

/* Top accent bar */
.parent-child-card-accent {
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--turquoise));
    transition: height 0.3s ease;
}
.parent-child-card:hover .parent-child-card-accent {
    height: 6px;
}

/* Card visual area */
.parent-child-card-visual {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}
.parent-child-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.parent-child-card:hover .parent-child-card-visual img {
    transform: scale(1.06);
}

/* Icon fallback when no image */
.parent-child-card-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255,255,255,0.25);
    background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary) 100%);
}

/* Card body */
.parent-child-card-body {
    padding: 30px 28px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.parent-child-card-number {
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--turquoise);
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.parent-child-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0 0 14px;
    line-height: 1.3;
    transition: color 0.3s;
}
.parent-child-card:hover .parent-child-card-title {
    color: var(--primary);
}
.parent-child-card-excerpt {
    color: var(--gray-700);
    font-size: 0.93rem;
    line-height: 1.7;
    margin: 0 0 20px;
    flex: 1;
}
.parent-child-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--primary);
    transition: gap 0.3s ease, color 0.3s;
}
.parent-child-card:hover .parent-child-card-link {
    gap: 14px;
}
.parent-child-card-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}
.parent-child-card:hover .parent-child-card-link i {
    transform: translateX(4px);
}

/* --- Trust strip --- */
.parent-trust-strip {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    padding: 35px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    flex-wrap: wrap;
}
.parent-trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
}
.parent-trust-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(20,90,142,0.08), rgba(94,189,185,0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--primary);
    flex-shrink: 0;
}
.parent-trust-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.parent-trust-text strong {
    color: var(--primary-dark);
    font-size: 0.95rem;
    font-weight: 700;
}
.parent-trust-text span {
    color: var(--gray-700);
    font-size: 0.82rem;
}

@media (max-width: 768px) {
    .parent-trust-strip { gap: 24px; flex-direction: column; align-items: center; text-align: center; }
    .parent-trust-item { flex-direction: column; }
}

@media (max-width: 640px) {
    .parent-children { padding: 50px 0 60px; }
    .parent-children-grid { grid-template-columns: 1fr; gap: 24px; }
    .parent-child-card-visual { height: 180px; }
    .parent-child-card-body { padding: 24px 22px 22px; }
}
