/* ============================================
   REGIE SERVICES — Main Stylesheet v2.0
   Ultra-Professional Modern Design
============================================ */

:root {
  --navy:        #0f1923;
  --blue:        #3A2E8C;;
  --blue-light:  #2a4a7f;
  --orange:      #FFC107;
  --orange-dark: #e55a25;
  --white:       #ffffff;
  --gray-100:    #f0eff8;
  --gray-200:    #e4e2f0;
  --gray-300:    #ccc9e0;
  --blue-tint:   #f0eff8;
  --gray-500:    #2a4a7f;
  --gray-700:    #2a4a7f;
  --gray-900:    #1a202c;
  --shadow-sm:   0 2px 10px rgba(0,0,0,0.06);
  --shadow-md:   0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.18);
  --radius:      16px;
  --transition:  all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  { font-family: 'Inter', sans-serif; color: var(--gray-900); background: #fff; line-height: 1.6; overflow-x: hidden; }
img   { max-width: 100%; height: auto; display: block; }
a     { text-decoration: none; transition: var(--transition); }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== NAVBAR ===== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 20px 0; transition: var(--transition); }
.navbar.scrolled { background: rgba(15,25,35,0.97); backdrop-filter: blur(12px); padding: 14px 0; box-shadow: 0 4px 30px rgba(0,0,0,0.3); }
.nav-container { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; }
/* ===== LOGO CIRCLE ===== */
.logo-img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 50%;
    background: white;
    padding: 3px;
    display: block;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.logo-text {
    display: flex !important;
    flex-direction: column;
}
.logo-text-fallback {
    display: none !important;
}
.logo-main {
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 1px;
    line-height: 1;
}
.logo-sub {
    font-size: 9px;
    font-weight: 600;
    color: var(--orange);
    letter-spacing: 3px;
    line-height: 1.4;
    text-transform: uppercase;
}
.footer-logo-img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 50%;
    background: white;
    padding: 3px;
    display: block;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}
.footer-brand .logo-fallback {
    display: flex;
    flex-direction: column;
}
.footer-brand .logo-main { color: white; font-size: 18px; font-weight: 900; letter-spacing: 1px; }
.footer-brand .logo-sub  { color: var(--orange); font-size: 9px; letter-spacing: 3px; font-weight: 700; }

.logo-icon { font-size: 24px; }
.logo-text  { display: flex; flex-direction: column; }
.logo-main  { font-size: 20px; font-weight: 900; color: #fff; letter-spacing: 3px; line-height: 1; }
.logo-sub   { font-size: 9px;  font-weight: 600; color: var(--orange); letter-spacing: 5px; line-height: 1.4; }
.nav-menu { display: flex; align-items: left; list-style: none; gap: 6px; }
.nav-link { padding: 8px 16px; color: rgba(255,255,255,0.8); font-size: 14px; font-weight: 900; border-radius: 8px; transition: var(--transition); }
.nav-link:hover, .nav-link.active { color: #fff; background: rgba(255,255,255,0.1); }
.nav-link.btn-nav { background: var(--orange); color: #fff !important; padding: 9px 22px; font-weight: 700; border-radius: 10px; }
.nav-link.btn-nav:hover { background: var(--orange-dark); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO SLIDER ===== */
.hero-slider { position: relative; height: 100vh; min-height: 650px; overflow: hidden; }
.slide { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; opacity: 0; transition: opacity 0.8s ease; display: flex; align-items: center; }
.slide.active { opacity: 1; }
.slide .overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,25,35,0.85) 0%, rgba(26,54,93,0.45) 100%); }
.slide-content { position: relative; z-index: 2; max-width: 700px; width: 100%; padding-left: clamp(24px, 8vw, 120px); padding-right: 24px; }
.slide-tag { display: inline-block; background: var(--orange); color: white; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 6px 16px; border-radius: 20px; margin-bottom: 20px; }
.slide-content h1 { font-family: 'Playfair Display', serif; font-size: clamp(38px, 6vw, 68px); font-weight: 900; color: white; line-height: 1.1; margin-bottom: 20px; }
.slide-content h1 em { color: var(--orange); font-style: normal; }
.slide-content p { font-size: 18px; color: rgba(255,255,255,0.85); margin-bottom: 35px; max-width: 500px; line-height: 1.7; }
.hero-actions { display: flex; gap: 15px; flex-wrap: wrap; }
.slider-controls { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; align-items: center; gap: 20px; }
.slider-btn { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.12); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.25); color: white; font-size: 18px; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.slider-btn:hover { background: var(--orange); border-color: var(--orange); }
.slider-dots { display: flex; gap: 8px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: var(--transition); }
.dot.active { background: var(--orange); width: 24px; border-radius: 4px; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 30px; border-radius: 10px; font-weight: 700; font-size: 15px; cursor: pointer; border: none; font-family: inherit; transition: var(--transition); line-height: 1; }
.btn-primary { background: var(--orange); color: white; }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,107,53,0.4); }
.btn-outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-outline:hover { background: var(--blue); color: white; }
.btn-outline-white { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.55); }
.btn-outline-white:hover { background: white; color: var(--blue); }
.btn-cta { background: var(--orange); color: white; font-size: 16px; padding: 17px 42px; border-radius: 50px; }
.btn-cta:hover { background: var(--orange-dark); transform: translateY(-3px); box-shadow: 0 12px 35px rgba(255,107,53,0.5); }
.btn-sm { padding: 9px 18px; font-size: 13px; }

/* ===== TRUST BAR ===== */
.trust-bar { background: var(--navy); padding: 20px 0; }
.trust-items { display: flex; justify-content: center; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; padding: 8px 28px; color: rgba(255,255,255,0.65); font-size: 14px; font-weight: 500; border-right: 1px solid rgba(255,255,255,0.08); }
.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 20px; }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header.light h2, .section-header.light p { color: white; }
.section-tag { display: inline-block; color: var(--orange); font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px; }
.section-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(30px, 4vw, 46px); font-weight: 900; color: var(--blue); line-height: 1.2; margin-bottom: 16px; }
.section-header p { color: var(--gray-500); font-size: 17px; max-width: 560px; margin: 0 auto; }
.section-cta { text-align: center; margin-top: 50px; }

/* ===== ABOUT HOME ===== */
.about-home { padding: 100px 0; }
.about-home-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-home-image { position: relative; }
.image-main { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); }
.image-main img { width: 100%; height: 480px; object-fit: cover; }
.image-badge { position: absolute; bottom: -25px; right: -25px; background: var(--orange); color: white; padding: 25px 30px; border-radius: 16px; text-align: center; box-shadow: 0 15px 40px rgba(255,107,53,0.4); }
.badge-number { display: block; font-size: 42px; font-weight: 900; line-height: 1; }
.badge-text { font-size: 12px; font-weight: 600; opacity: 0.9; line-height: 1.4; }
.about-home-content .section-tag { display: block; margin-bottom: 12px; }
.about-home-content h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3.5vw, 44px); font-weight: 900; color: var(--blue); margin-bottom: 20px; line-height: 1.2; }
.about-home-content h2 em { color: var(--orange); font-style: normal; }
.about-home-content .lead { font-size: 18px; color: var(--gray-700); margin-bottom: 16px; font-weight: 500; }
.about-home-content p { color: var(--gray-500); margin-bottom: 25px; line-height: 1.8; }
.about-features { list-style: none; margin-bottom: 35px; }
.about-features li { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--gray-200); color: var(--gray-700); font-size: 15px; font-weight: 500; }
.about-features li span { color: var(--orange); font-weight: 900; font-size: 18px; }

/* ===== STATS SECTION ===== */
.stats-section { background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); padding: 80px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-item { padding: 28px 20px; }
.stat-number { font-size: clamp(42px, 5vw, 60px); font-weight: 900; color: white; display: inline-block; }
.stat-suffix { font-size: 28px; font-weight: 700; color: var(--orange); }
.stat-label { display: block; color: rgba(255,255,255,0.55); font-size: 13px; margin-top: 8px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* ===== SERVICES HOME ===== */
.services-home { padding: 100px 0; background: var(--gray-100); }
.services-home-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-home-card { position: relative; border-radius: 20px; overflow: hidden; height: 320px; background-size: cover; background-position: center; cursor: pointer; transition: var(--transition); }
.service-home-card:hover { transform: scale(1.02); }
.service-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,25,35,0.9) 0%, rgba(15,25,35,0.2) 60%, transparent 100%); transition: var(--transition); }
.service-home-card:hover .service-overlay { background: linear-gradient(to top, rgba(15,25,35,0.95) 0%, rgba(15,25,35,0.55) 100%); }
.service-home-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 30px; }
.service-home-icon { font-size: 32px; margin-bottom: 10px; display: block; }
.service-home-content h3 { color: white; font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.service-home-content p { color: rgba(255,255,255,0.7); font-size: 14px; margin-bottom: 14px; max-height: 0; overflow: hidden; transition: var(--transition); }
.service-home-card:hover .service-home-content p { max-height: 60px; }
.service-link { color: var(--orange); font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; gap: 5px; }
.service-link:hover { gap: 10px; }

/* ===== CHARTS ===== */
.charts-section { padding: 100px 0; }
.charts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.chart-card { background: white; border-radius: var(--radius); padding: 35px; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); }
.chart-card h3 { font-size: 18px; font-weight: 800; color: var(--blue); margin-bottom: 5px; }
.chart-desc { color: var(--gray-500); font-size: 14px; margin-bottom: 25px; }

/* ===== BLOG PREVIEW ===== */
.blog-preview { padding: 100px 0; background: var(--gray-100); }
.blog-preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-preview-card { background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); }
.blog-preview-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-preview-image { position: relative; height: 210px; overflow: hidden; }
.blog-preview-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-preview-card:hover .blog-preview-image img { transform: scale(1.06); }
.article-category { position: absolute; top: 15px; left: 15px; background: var(--orange); color: white; font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 20px; text-transform: uppercase; letter-spacing: 1px; }
.blog-preview-body { padding: 24px; }
.article-date { color: var(--gray-500); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.blog-preview-body h3 { font-size: 16px; font-weight: 800; color: var(--blue); margin: 10px 0 11px; line-height: 1.4; }
.blog-preview-body p { color: var(--gray-500); font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.read-more { color: var(--orange); font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; gap: 5px; }
.read-more:hover { gap: 10px; }

/* ===== TEMOIGNAGES ===== */
.temoignages-section { padding: 100px 0; background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); }
.temoignages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 60px; }
.temoignage-card { background: rgba(255,255,255,0.07); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 28px; transition: var(--transition); }
.temoignage-card:hover { background: rgba(255,255,255,0.11); transform: translateY(-4px); }
.stars { color: #f6ad55; font-size: 17px; margin-bottom: 14px; }
.temoignage-card p { color: rgba(255,255,255,0.82); font-size: 14px; line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.temoignage-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--orange); color: white; font-size: 17px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.temoignage-author strong { color: white; font-size: 14px; display: block; font-weight: 700; }
.temoignage-author span { color: rgba(255,255,255,0.45); font-size: 12px; }
.temoignage-form-wrapper { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 50px; max-width: 700px; margin: 0 auto; }
.temoignage-form-wrapper h3 { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: white; text-align: center; margin-bottom: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 18px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14); border-radius: 10px; color: white; font-size: 15px; font-family: inherit; outline: none; transition: var(--transition); }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.38); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--orange); background: rgba(255,255,255,0.1); }
.form-group select option { background: var(--navy); color: white; }
.form-group textarea { resize: vertical; min-height: 120px; }
.alert { padding: 14px 20px; border-radius: 10px; margin-bottom: 20px; font-size: 14px; font-weight: 500; }
.alert-success { background: rgba(56,161,105,0.15); color: #9ae6b4; border: 1px solid rgba(56,161,105,0.3); }
.alert-error   { background: rgba(229,62,62,0.15); color: #fc8181; border: 1px solid rgba(229,62,62,0.3); }

/* ===== CTA SECTION ===== */
.cta-section { position: relative; padding: 120px 0; text-align: center; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.overlay { position: absolute; inset: 0; background: rgba(15,25,35,0.76); }
.cta-content { position: relative; z-index: 2; }
.cta-content h2 { font-family: 'Playfair Display', serif; font-size: clamp(30px, 4.5vw, 52px); font-weight: 900; color: white; margin-bottom: 18px; }
.cta-content p { color: rgba(255,255,255,0.73); font-size: 18px; margin-bottom: 40px; }
.cta-actions { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero { position: relative; padding: 160px 0 100px; background-size: cover; background-position: center; text-align: center; }
.page-hero-overlay { position: absolute; inset: 0; background: rgba(15,25,35,0.65); }
.page-hero-overlay.dark { background: rgba(15,25,35,0.8); }
.page-hero-content { position: relative; z-index: 2; }
.page-hero-tag { display: inline-block; background: var(--orange); color: white; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 6px 18px; border-radius: 20px; margin-bottom: 18px; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(36px, 5.5vw, 62px); font-weight: 900; color: white; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.78); font-size: 18px; max-width: 580px; margin: 0 auto; }
.article-meta { color: rgba(255,255,255,0.65); font-size: 15px; display: block; margin-top: 12px; }

/* ===== BLOG PAGE ===== */
.blog-section { padding: 80px 0; }
.blog-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 45px; justify-content: center; }
.filter-btn { padding: 9px 22px; border-radius: 30px; font-size: 14px; font-weight: 600; color: var(--gray-700); border: 2px solid var(--gray-300); background: white; transition: var(--transition); text-decoration: none; }
.filter-btn:hover, .filter-btn.active { background: var(--blue); color: white; border-color: var(--blue); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card { background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid var(--gray-200); }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-card.featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1.2fr 1fr; }
.blog-card-image { position: relative; height: 220px; overflow: hidden; }
.blog-card.featured .blog-card-image { height: 100%; min-height: 300px; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-cat-badge { position: absolute; top: 14px; left: 14px; background: var(--orange); color: white; font-size: 11px; font-weight: 700; padding: 4px 11px; border-radius: 20px; text-transform: uppercase; letter-spacing: 1px; }
.blog-card-body { padding: 24px; }
.blog-date { color: var(--gray-500); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.blog-card-title { font-size: 17px; font-weight: 800; color: var(--blue); margin: 10px 0 11px; line-height: 1.4; }
.blog-card-body p { color: var(--gray-500); font-size: 14px; line-height: 1.7; margin-bottom: 18px; }
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 50px; flex-wrap: wrap; }
.page-link { padding: 10px 16px; border-radius: 8px; font-weight: 600; font-size: 14px; color: var(--blue); background: white; border: 2px solid var(--gray-300); transition: var(--transition); text-decoration: none; }
.page-link.active, .page-link:hover { background: var(--blue); color: white; border-color: var(--blue); }
.empty-state { text-align: center; padding: 80px 20px; color: var(--gray-500); font-size: 17px; }

/* ===== ARTICLE PAGE ===== */
.article-section { padding: 80px 0; }
.article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 50px; align-items: start; }
.article-body { font-size: 17px; line-height: 1.9; color: var(--gray-700); }
.article-body h2 { font-family: 'Playfair Display', serif; font-size: 26px; color: var(--blue); margin: 35px 0 14px; font-weight: 800; }
.article-body p  { margin-bottom: 20px; }
.article-body ul, .article-body ol { margin: 15px 0 20px 25px; }
.article-body li { margin-bottom: 8px; }
.article-share { margin-top: 40px; padding-top: 30px; border-top: 2px solid var(--gray-200); display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.article-share span { font-weight: 700; color: var(--gray-700); }
.share-btn { padding: 9px 18px; border-radius: 8px; font-size: 13px; font-weight: 700; color: white; transition: var(--transition); }
.share-btn.whatsapp { background: #25d366; }
.share-btn.facebook { background: #1877f2; }
.share-btn:hover { transform: translateY(-2px); opacity: 0.9; }
.mt-2 { margin-top: 25px; display: inline-block; }
.article-sidebar { position: sticky; top: 100px; }
.article-sidebar h3 { font-size: 18px; font-weight: 800; color: var(--blue); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--gray-200); }
.sidebar-article { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--gray-200); text-decoration: none; transition: var(--transition); }
.sidebar-article:last-of-type { border-bottom: none; }
.sidebar-article:hover { opacity: 0.75; }
.sidebar-article img { width: 75px; height: 65px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.sidebar-article div span { color: var(--gray-500); font-size: 11px; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.sidebar-article div p { color: var(--blue); font-size: 13px; font-weight: 700; margin-top: 4px; line-height: 1.4; }

/* ===== ABOUT PAGE ===== */
.about-story { padding: 100px 0; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-content .section-tag { display: block; margin-bottom: 12px; }
.story-content h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3.5vw, 44px); font-weight: 900; color: var(--blue); margin-bottom: 20px; }
.story-content h2 em { color: var(--orange); font-style: normal; }
.story-content .lead { font-size: 18px; color: var(--gray-700); font-weight: 500; margin-bottom: 16px; }
.story-content p { color: var(--gray-500); line-height: 1.85; margin-bottom: 16px; }
.story-image { position: relative; }
.story-img-main { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); }
.story-img-main img { width: 100%; height: 420px; object-fit: cover; }
.story-img-secondary { position: absolute; bottom: -28px; right: -28px; width: 190px; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-md); border: 4px solid white; }
.story-img-secondary img { width: 100%; height: 150px; object-fit: cover; }

.values-section { padding: 100px 0; background: var(--gray-100); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.value-card { background: white; border-radius: var(--radius); padding: 38px 26px; text-align: center; box-shadow: var(--shadow-sm); transition: var(--transition); border-bottom: 4px solid transparent; }
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-bottom-color: var(--orange); }
.value-icon { font-size: 44px; margin-bottom: 18px; display: block; }
.value-card h3 { font-size: 19px; font-weight: 800; color: var(--blue); margin-bottom: 12px; }
.value-card p { color: var(--gray-500); font-size: 14px; line-height: 1.75; }

.why-us-section { padding: 100px 0; }
.why-us-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-us-image { position: relative; }
.why-us-image img { width: 100%; height: 500px; object-fit: cover; border-radius: 20px; box-shadow: var(--shadow-lg); }
.why-us-badge { position: absolute; top: 28px; right: -20px; background: var(--orange); color: white; padding: 18px 22px; border-radius: 14px; text-align: center; box-shadow: 0 10px 30px rgba(255,107,53,0.4); }
.why-us-badge span { font-size: 22px; font-weight: 900; display: block; }
.why-us-badge small { font-size: 11px; opacity: 0.9; font-weight: 600; }
.why-us-content .section-tag { display: block; margin-bottom: 12px; }
.why-us-content h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 3vw, 40px); font-weight: 900; color: var(--blue); margin-bottom: 28px; }
.why-us-content h2 em { color: var(--orange); font-style: normal; }
.why-items { display: flex; flex-direction: column; }
.why-item { display: flex; gap: 18px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--gray-200); }
.why-item:last-child { border-bottom: none; }
.why-item-icon { font-size: 22px; width: 50px; height: 50px; background: var(--gray-100); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-item h4 { font-size: 16px; font-weight: 700; color: var(--blue); margin-bottom: 5px; }
.why-item p { color: var(--gray-500); font-size: 14px; line-height: 1.65; }

.team-section { padding: 100px 0; background: var(--gray-100); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.team-card { background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-img { height: 280px; overflow: hidden; }
.team-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.team-card:hover .team-img img { transform: scale(1.05); }
.team-info { padding: 26px; }
.team-info h3 { font-size: 20px; font-weight: 800; color: var(--blue); margin-bottom: 4px; }
.team-info span { display: block; color: var(--orange); font-size: 13px; font-weight: 700; margin-bottom: 11px; }
.team-info p { color: var(--gray-500); font-size: 14px; line-height: 1.7; }

.partners-section { padding: 80px 0; }
.partners-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.partner-item { background: var(--gray-100); border-radius: 12px; padding: 24px 15px; text-align: center; font-size: 13px; font-weight: 700; color: var(--gray-700); transition: var(--transition); border: 2px solid transparent; }
.partner-item:hover { border-color: var(--orange); color: var(--orange); background: white; box-shadow: var(--shadow-sm); }

/* ===== SERVICES PAGE ===== */
.services-intro { padding: 55px 0; background: var(--gray-100); }
.services-intro-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-nav-card { background: white; border-radius: 14px; padding: 28px 20px; text-align: center; cursor: pointer; transition: var(--transition); box-shadow: var(--shadow-sm); border: 2px solid transparent; }
.service-nav-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-nav-card span { font-size: 36px; display: block; margin-bottom: 10px; }
.service-nav-card p { font-weight: 700; color: var(--blue); font-size: 14px; line-height: 1.4; }

.service-detail { position: relative; padding: 120px 0; overflow: hidden; }
.service-detail-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.service-detail-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15,25,35,0.93) 0%, rgba(15,25,35,0.45) 60%, transparent 100%); }
.service-detail-content { position: relative; z-index: 2; max-width: 580px; }
.service-detail-badge { font-size: 50px; display: block; margin-bottom: 16px; }
.service-detail-content .section-tag { display: block; margin-bottom: 10px; }
.service-detail-content h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3.5vw, 46px); font-weight: 900; color: white; margin-bottom: 20px; }
.service-detail-content .lead { font-size: 18px; color: rgba(255,255,255,0.83); margin-bottom: 30px; font-weight: 500; line-height: 1.7; }
.service-features-list { margin-bottom: 35px; }
.sf-item { display: flex; gap: 15px; align-items: flex-start; margin-bottom: 18px; }
.sf-check { color: var(--orange); font-size: 18px; font-weight: 900; flex-shrink: 0; margin-top: 2px; }
.sf-item strong { color: white; font-size: 15px; display: block; margin-bottom: 4px; font-weight: 700; }
.sf-item p { color: rgba(255,255,255,0.58); font-size: 14px; margin: 0; }

.service-split { padding: 100px 0; }
.service-split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.service-split-grid.reverse .service-split-content { order: 2; }
.service-split-grid.reverse .service-split-image  { order: 1; }
.service-split-image { position: relative; }
.service-split-image img { width: 100%; height: 420px; object-fit: cover; border-radius: 20px; box-shadow: var(--shadow-lg); }
.service-split-label { position: absolute; bottom: -14px; left: 30px; background: var(--blue); color: white; padding: 10px 22px; border-radius: 30px; font-size: 14px; font-weight: 700; box-shadow: var(--shadow-md); }
.service-split-content .section-tag { display: block; margin-bottom: 12px; }
.service-split-content h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 3.5vw, 40px); font-weight: 900; color: var(--blue); margin-bottom: 18px; }
.service-split-content .lead { font-size: 17px; color: var(--gray-700); font-weight: 500; margin-bottom: 16px; }
.service-split-content p { color: var(--gray-500); line-height: 1.8; margin-bottom: 25px; }
.address-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin: 22px 0 28px; }
.address-card { background: var(--gray-100); border-radius: 12px; padding: 18px; display: flex; gap: 12px; align-items: flex-start; }
.address-flag { font-size: 28px; }
.address-card strong { display: block; font-size: 14px; color: var(--blue); font-weight: 800; margin-bottom: 3px; }
.address-card p  { font-size: 13px; color: var(--gray-500); margin: 0 0 3px; }
.address-card span { font-size: 12px; color: var(--orange); font-weight: 600; }

.service-detail.dark-bg { background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); padding: 100px 0; }
.service-detail.dark-bg .service-detail-overlay,
.service-detail.dark-bg .service-detail-bg { display: none; }
.finance-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.finance-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 34px 26px; transition: var(--transition); }
.finance-card:hover { background: rgba(255,255,255,0.11); transform: translateY(-5px); }
.finance-card.featured-finance { background: var(--orange); border-color: var(--orange); }
.finance-icon { font-size: 40px; display: block; margin-bottom: 18px; }
.finance-card h3 { color: white; font-size: 20px; font-weight: 800; margin-bottom: 12px; }
.finance-card p  { color: rgba(255,255,255,0.72); font-size: 14px; line-height: 1.7; margin-bottom: 18px; }
.finance-card ul { list-style: none; }
.finance-card ul li { color: rgba(255,255,255,0.82); font-size: 14px; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; gap: 8px; }
.finance-card ul li::before { content: '✓'; color: var(--orange); font-weight: 900; }
.finance-card.featured-finance ul li::before { color: white; }

.canalplus-section { background: var(--gray-100); }
.canal-offers { display: flex; flex-direction: column; margin: 22px 0 28px; }
.canal-offer { display: flex; gap: 15px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--gray-200); }
.canal-offer:last-child { border-bottom: none; }
.canal-icon { font-size: 22px; width: 48px; height: 48px; background: white; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: var(--shadow-sm); }
.canal-offer strong { display: block; font-size: 15px; color: var(--blue); font-weight: 700; margin-bottom: 4px; }
.canal-offer p { color: var(--gray-500); font-size: 14px; margin: 0; }

.faq-section { padding: 100px 0; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--gray-300); border-radius: 14px; margin-bottom: 12px; overflow: hidden; transition: var(--transition); }
.faq-item.active { border-color: var(--orange); box-shadow: 0 4px 20px rgba(255,107,53,0.1); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 22px 25px; cursor: pointer; font-weight: 700; color: var(--blue); font-size: 16px; user-select: none; transition: var(--transition); }
.faq-question:hover { background: var(--gray-100); }
.faq-item.active .faq-question { color: var(--orange); }
.faq-icon { font-size: 22px; font-weight: 400; transition: transform 0.3s; color: var(--gray-500); flex-shrink: 0; }
.faq-item.active .faq-icon { transform: rotate(45deg); color: var(--orange); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 25px 22px; color: var(--gray-500); font-size: 15px; line-height: 1.8; }

/* ===== CONTACT PAGE ===== */
.contact-info-bar { background: var(--blue); }
.contact-info-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.contact-info-item { padding: 28px 22px; display: flex; align-items: center; gap: 13px; border-right: 1px solid rgba(255,255,255,0.08); transition: var(--transition); }
.contact-info-item:last-child { border-right: none; }
.contact-info-item:hover { background: rgba(255,255,255,0.05); }
.contact-info-icon { font-size: 22px; flex-shrink: 0; }
.contact-info-item strong { display: block; color: rgba(255,255,255,0.45); font-size: 11px; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; margin-bottom: 4px; }
.contact-info-item a, .contact-info-item span { color: white; font-size: 14px; font-weight: 600; }
.contact-info-item a:hover { color: var(--orange); }

.contact-main { padding: 90px 0; }
.contact-main-grid { display: grid; grid-template-columns: 1fr 380px; gap: 55px; align-items: start; }
.contact-form-wrapper h2 { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 900; color: var(--blue); margin-bottom: 10px; }
.contact-form-wrapper > p { color: var(--gray-500); font-size: 15px; margin-bottom: 30px; }
.contact-alert { padding: 15px 20px; border-radius: 12px; margin-bottom: 24px; font-size: 14px; font-weight: 500; }
.contact-alert.success { background: #f0fff4; color: #276749; border-left: 4px solid #38a169; }
.contact-alert.error   { background: #fff5f5; color: #c53030; border-left: 4px solid #fc8181; }
.contact-form .cf-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form .cf-group { margin-bottom: 20px; }
.contact-form .cf-group label { display: block; margin-bottom: 8px; font-size: 13px; font-weight: 700; color: var(--gray-700); text-transform: uppercase; letter-spacing: 0.5px; }
.contact-form .cf-group input,
.contact-form .cf-group select,
.contact-form .cf-group textarea { width: 100%; padding: 14px 18px; border: 2px solid var(--gray-300); border-radius: 10px; font-size: 14px; font-family: inherit; outline: none; transition: var(--transition); background: white; color: var(--gray-900); }
.contact-form .cf-group input:focus,
.contact-form .cf-group select:focus,
.contact-form .cf-group textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,54,93,0.08); }
.contact-form .cf-group textarea { resize: vertical; }
.btn-full { width: 100%; justify-content: center; font-size: 16px; }

.contact-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 100px; }
.contact-sidebar-card { background: white; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); }
.cs-icon { font-size: 36px; margin-bottom: 14px; display: block; }
.contact-sidebar-card h3 { font-size: 17px; font-weight: 800; color: var(--blue); margin-bottom: 12px; }
.contact-sidebar-card p { color: var(--gray-500); font-size: 14px; line-height: 1.7; margin-bottom: 18px; }
.btn-whatsapp { display: block; text-align: center; background: #25d366; color: white; padding: 13px 20px; border-radius: 10px; font-weight: 700; font-size: 15px; transition: var(--transition); }
.btn-whatsapp:hover { background: #1db954; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.35); }
.hours-list { list-style: none; }
.hours-list li { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--gray-200); font-size: 14px; }
.hours-list li:last-child { border-bottom: none; }
.hours-list li span { color: var(--gray-500); }
.hours-list li strong { color: var(--blue); font-weight: 700; }
.hours-list li.closed strong { color: var(--gray-500); }
.response-items { display: flex; flex-direction: column; gap: 14px; }
.ri { display: flex; align-items: center; gap: 12px; }
.ri-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.ri-dot.green  { background: #38a169; }
.ri-dot.orange { background: var(--orange); }
.ri-dot.blue   { background: var(--blue); }
.ri strong { display: block; font-size: 14px; color: var(--blue); font-weight: 700; }
.ri span   { font-size: 13px; color: var(--gray-500); }

/* ===== FOOTER ===== */
.footer { background: var(--navy); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-brand .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand .logo-main { color: white; font-size: 22px; font-weight: 900; letter-spacing: 3px; }
.footer-brand .logo-sub  { color: var(--orange); font-size: 10px; letter-spacing: 4px; font-weight: 700; }
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 14px; line-height: 1.8; margin-bottom: 25px; }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.social-link { padding: 8px 16px; background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.65); border-radius: 8px; font-size: 13px; font-weight: 600; transition: var(--transition); border: 1px solid rgba(255,255,255,0.08); }
.social-link:hover { background: var(--orange); color: white; border-color: var(--orange); }
.footer-col h4 { color: white; font-size: 14px; font-weight: 700; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.45); font-size: 14px; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--orange); padding-left: 4px; }
.footer-col ul li:not(:has(a)) { color: rgba(255,255,255,0.45); font-size: 14px; }
.footer-bottom { padding: 25px 0; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { color: rgba(255,255,255,0.25); font-size: 13px; }

/* ===== BACK TO TOP ===== */
.back-to-top { position: fixed; bottom: 30px; right: 30px; width: 48px; height: 48px; background: var(--orange); color: white; border: none; border-radius: 50%; font-size: 20px; cursor: pointer; box-shadow: 0 8px 20px rgba(255,107,53,0.4); transform: translateY(100px); opacity: 0; transition: var(--transition); z-index: 999; }
.back-to-top.visible { transform: translateY(0); opacity: 1; }
.back-to-top:hover  { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(255,107,53,0.5); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-home-grid, .story-grid, .why-us-grid, .article-layout, .service-split-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-split-grid.reverse .service-split-content { order: 1; }
  .service-split-grid.reverse .service-split-image  { order: 2; }
  .image-badge  { bottom: 20px; right: 20px; }
  .why-us-badge { right: 20px; }
  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 35px; }
  .stats-grid   { grid-template-columns: repeat(2, 1fr); }
  .charts-grid, .services-home-grid { grid-template-columns: 1fr; }
  .temoignages-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-main-grid { grid-template-columns: 1fr; }
  .contact-sidebar   { position: static; }
  .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
  .services-intro-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid, .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid, .finance-grid    { grid-template-columns: repeat(2, 1fr); }
  .story-img-secondary { display: none; }
}

@media (max-width: 768px) {
  .nav-menu { position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: var(--navy); flex-direction: column; justify-content: flex-start; padding: 80px 30px 30px; gap: 4px; transition: var(--transition); z-index: 999; }
  .nav-menu.active { right: 0; }
  .nav-link { padding: 13px 0; border-radius: 0; border-bottom: 1px solid rgba(255,255,255,0.06); width: 100%; font-size: 16px; }
  .hamburger { display: flex; z-index: 1000; }
  .hero-slider { height: 100svh; }
  .slide-content { padding-left: 24px; padding-right: 24px; }
  .blog-grid, .blog-preview-grid { grid-template-columns: 1fr; }
  .blog-card.featured { grid-template-columns: 1fr; }
  .values-grid, .team-grid, .finance-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-item { padding: 8px 14px; font-size: 13px; }
  .form-row { grid-template-columns: 1fr; }
  .temoignages-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .temoignage-form-wrapper { padding: 28px 20px; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .contact-info-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .address-cards { grid-template-columns: 1fr; }
  .contact-form .cf-row { grid-template-columns: 1fr; }
  .services-intro-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail { padding: 80px 0; }
  .article-sidebar { display: none; }
}

/* ============================================
   NOUVELLES SECTIONS v2.1
   Couleurs marque: Navy #0f1923 / #1a365d | Orange #ff6b35
============================================ */

/* ===== TÉMOIGNAGES SLIDER HORIZONTAL ===== */
.temo-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
}
.temo-slider-viewport {
    overflow: hidden;
    flex: 1;
    border-radius: 20px;
}
.temo-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.temo-slide {
    min-width: calc(33.333% - 12px);
    margin-right: 18px;
    flex-shrink: 0;
}
@media (max-width: 900px) { .temo-slide { min-width: calc(50% - 9px); } }
@media (max-width: 600px) { .temo-slide { min-width: 100%; margin-right: 0; } }

.temoignage-card-h {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 32px 28px;
    height: 100%;
    position: relative;
    transition: var(--transition);
}
.temoignage-card-h:hover {
    background: rgba(255,255,255,0.13);
    transform: translateY(-4px);
}
.temo-quote {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    color: var(--orange);
    opacity: 0.4;
    line-height: 0.6;
    margin-bottom: 14px;
    display: block;
}
.temoignage-card-h .stars { color: #f6ad55; font-size: 16px; margin-bottom: 14px; display: block; }
.temoignage-card-h p { color: rgba(255,255,255,0.82); font-size: 14px; line-height: 1.8; margin-bottom: 22px; font-style: italic; }
.temo-nav {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    color: white; font-size: 20px;
    cursor: pointer;
    flex-shrink: 0;
    transition: var(--transition);
    display: flex; align-items: center; justify-content: center;
}
.temo-nav:hover { background: var(--orange); border-color: var(--orange); transform: scale(1.1); }
.temo-dots-wrap { display: flex; justify-content: center; gap: 8px; margin-bottom: 50px; }
.temo-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.25);
    cursor: pointer; transition: var(--transition);
}
.temo-dot.active { background: var(--orange); width: 24px; border-radius: 4px; }

/* ===== GRAPHIQUES ENRICHIS ===== */
.charts-intro-text {
    max-width: 750px; margin: -20px auto 50px;
    text-align: center; color: var(--gray-500); font-size: 16px; line-height: 1.8;
}
.charts-kpi-row {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 18px; margin-bottom: 40px;
}
.kpi-card {
    background: white; border-radius: 16px;
    padding: 28px 22px; text-align: center;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--blue);
    transition: var(--transition);
}
.kpi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.kpi-card.kpi-orange { border-top-color: var(--orange); }
.kpi-icon { font-size: 32px; margin-bottom: 10px; }
.kpi-val { font-size: 32px; font-weight: 900; color: var(--blue); line-height: 1; margin-bottom: 6px; }
.kpi-card.kpi-orange .kpi-val { color: var(--orange); }
.kpi-label { font-size: 13px; color: var(--gray-500); font-weight: 600; }

.chart-card-header {
    display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 22px;
}
.chart-trend {
    font-size: 13px; font-weight: 800;
    padding: 5px 12px; border-radius: 20px;
    white-space: nowrap;
}
.chart-trend.up { background: #f0fff4; color: #276749; }
.chart-footnote {
    margin-top: 16px; font-size: 13px; color: var(--gray-500);
    background: var(--gray-100); padding: 10px 16px;
    border-radius: 8px; border-left: 3px solid var(--orange);
}

/* ===== MESSAGE DU PDG ===== */
.pdg-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}
.pdg-grid {
    display: grid; grid-template-columns: 380px 1fr;
    gap: 80px; align-items: center;
}
.pdg-img-wrap {
    position: relative; border-radius: 24px; overflow: visible;
}
.pdg-img-wrap img {
    width: 100%; height: 520px; object-fit: cover;
    border-radius: 24px; box-shadow: var(--shadow-lg);
}
.pdg-badge {
    position: absolute; bottom: -20px; left: 20px;
    background: var(--navy); color: white;
    padding: 16px 22px; border-radius: 14px;
    display: flex; align-items: center; gap: 14px;
    box-shadow: 0 10px 30px rgba(15,25,35,0.4);
}
.pdg-badge-icon { font-size: 30px; }
.pdg-badge strong { display: block; font-size: 15px; font-weight: 800; }
.pdg-badge small { color: var(--orange); font-size: 12px; font-weight: 600; }
.pdg-signature { margin-top: 40px; display: flex; flex-direction: column; gap: 6px; padding-left: 10px; }
.pdg-signature span { color: var(--gray-500); font-size: 13px; font-style: italic; }
.pdg-content .section-tag { display: block; margin-bottom: 12px; }
.pdg-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.5vw, 42px); font-weight: 900;
    color: var(--blue); margin-bottom: 8px; line-height: 1.2;
}
.pdg-content h2 em { color: var(--orange); font-style: normal; }
.pdg-quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 80px; color: var(--orange); opacity: 0.25;
    line-height: 0.7; margin: 16px 0 -8px;
}
.pdg-quote {
    font-size: 18px; line-height: 1.85; color: var(--blue);
    font-style: italic; font-weight: 600;
    border-left: 4px solid var(--orange);
    padding-left: 22px; margin: 20px 0 22px;
}
.pdg-content p { color: var(--gray-500); line-height: 1.85; margin-bottom: 14px; font-size: 15px; }
.pdg-values-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.pill {
    padding: 8px 18px; border-radius: 30px;
    background: var(--navy); color: white;
    font-size: 13px; font-weight: 600; white-space: nowrap;
}

/* ===== TIMELINE / CHRONOLOGIE ===== */
.timeline-section { padding: 100px 0; background: white; }
.timeline {
    position: relative; max-width: 900px; margin: 0 auto;
    padding: 20px 0;
}
.timeline-line {
    position: absolute; left: 50%; top: 0; bottom: 0;
    width: 3px; background: linear-gradient(to bottom, var(--blue), var(--orange));
    transform: translateX(-50%);
    border-radius: 2px;
}
.timeline-item {
    display: flex; justify-content: flex-end;
    padding-right: calc(50% + 40px);
    margin-bottom: 50px;
    position: relative;
}
.timeline-item.reverse {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: calc(50% + 40px);
}
.timeline-dot {
    position: absolute; left: 50%; top: 24px;
    width: 18px; height: 18px;
    background: var(--blue); border: 3px solid white;
    border-radius: 50%; transform: translateX(-50%);
    box-shadow: 0 0 0 4px rgba(26,54,93,0.15);
    z-index: 2;
    transition: var(--transition);
}
.timeline-dot.active {
    background: var(--orange);
    box-shadow: 0 0 0 6px rgba(255,107,53,0.2);
    width: 22px; height: 22px;
}
.timeline-content {
    background: white; border: 2px solid var(--gray-200);
    border-radius: 18px; padding: 26px 28px;
    box-shadow: var(--shadow-sm); max-width: 380px;
    position: relative; transition: var(--transition);
}
.timeline-content:hover { border-color: var(--orange); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.timeline-content::before {
    content: '';
    position: absolute; top: 22px;
    width: 20px; height: 20px;
    background: white; border: 2px solid var(--gray-200);
    transform: rotate(45deg);
}
.timeline-content.left::before  { right: -12px; border-left: none; border-bottom: none; }
.timeline-content.right::before { left: -12px;  border-right: none; border-top: none; }
.timeline-content:hover::before { border-color: var(--orange); }
.timeline-year {
    display: inline-block;
    background: var(--navy); color: white;
    font-size: 13px; font-weight: 800;
    padding: 4px 14px; border-radius: 20px;
    margin-bottom: 10px; letter-spacing: 1px;
}
.today-badge { background: var(--orange) !important; }
.timeline-content h4 { font-size: 17px; font-weight: 800; color: var(--blue); margin-bottom: 8px; }
.timeline-content p  { color: var(--gray-500); font-size: 14px; line-height: 1.7; margin-bottom: 12px; }
.timeline-tag {
    display: inline-block; font-size: 12px; font-weight: 700;
    padding: 4px 12px; border-radius: 20px;
    background: var(--gray-100); color: var(--gray-700);
}
.active-tag { background: rgba(255,107,53,0.1); color: var(--orange); }

/* ===== PARTENAIRES CAROUSEL INFINI ===== */
.partners-section { padding: 80px 0 0; overflow: hidden; }
.partners-carousel-wrap {
    position: relative; overflow: hidden;
    padding: 30px 0;
    background: var(--gray-100);
    margin-top: 50px;
}
.partners-carousel-wrap::before,
.partners-carousel-wrap::after {
    content: '';
    position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
}
.partners-carousel-wrap::before { left: 0; background: linear-gradient(to right, var(--gray-100), transparent); }
.partners-carousel-wrap::after  { right: 0; background: linear-gradient(to left, var(--gray-100), transparent); }

.partners-carousel-track {
    display: flex; gap: 20px;
    animation: partnersScroll 22s linear infinite;
    width: max-content;
}
.partners-carousel-track:hover { animation-play-state: paused; }

@keyframes partnersScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partner-logo-card {
    flex-shrink: 0; width: 180px; height: 110px;
    background: white; border-radius: 16px;
    border: 2px solid var(--gray-200);
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
    cursor: default;
    box-shadow: var(--shadow-sm);
}
.partner-logo-card:hover {
    border-color: var(--orange);
    box-shadow: 0 8px 24px rgba(255,107,53,0.15);
    transform: translateY(-4px) scale(1.03);
}
.partner-logo-inner {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 6px;
    text-align: center;
}
.partner-flag { font-size: 32px; }
.partner-name { font-size: 13px; font-weight: 700; color: var(--blue); line-height: 1.3; }
.partner-name small { font-size: 11px; color: var(--gray-500); font-weight: 400; }
.partner-logo-text {
    font-size: 26px; font-weight: 900; letter-spacing: -1px;
    padding: 6px 10px; border-radius: 8px;
}
.partner-logo-text.dhl   { color: #D40511; background: #FFCC00; padding: 4px 12px; border-radius: 6px; }
.partner-logo-text.fedex { color: #4D148C; }
.partner-logo-text.fedex span { color: #FF6600; }
.partner-logo-text.msc   { color: #00247D; }
.partner-logo-text.canal { color: white; background: linear-gradient(135deg, #1a365d, #ff6b35); padding: 6px 14px; border-radius: 8px; font-size: 22px; }
.partner-logo-text.ups   { color: white; background: #4B1C02; padding: 5px 12px; border-radius: 6px; }

/* ===== CARTE CONTACT ===== */
.map-section { padding: 80px 0 0; }
.map-wrapper { position: relative; margin-top: 40px; height: 480px; }
.leaflet-map-container { width: 100%; height: 100%; border-radius: 0; }
.map-overlay-card {
    position: absolute; top: 30px; left: 50px;
    background: white; border-radius: 20px;
    padding: 28px 30px;
    box-shadow: var(--shadow-lg);
    z-index: 1000; min-width: 240px;
    border-left: 5px solid var(--orange);
}
.map-card-icon { font-size: 36px; margin-bottom: 12px; display: block; }
.map-overlay-card h4 { font-size: 18px; font-weight: 900; color: var(--blue); margin-bottom: 4px; }
.map-overlay-card p  { font-size: 14px; color: var(--gray-500); margin-bottom: 4px; font-weight: 600; }
.map-overlay-card span { font-size: 13px; color: var(--gray-500); display: block; margin-bottom: 16px; }
.btn-map-link {
    display: inline-block; background: var(--orange); color: white;
    padding: 9px 18px; border-radius: 8px;
    font-size: 13px; font-weight: 700;
    transition: var(--transition);
}
.btn-map-link:hover { background: var(--orange-dark); transform: translateX(3px); }
/* Override Leaflet z-index */
.leaflet-top, .leaflet-bottom { z-index: 999 !important; }

/* ===== RESPONSIVE NOUVELLES SECTIONS ===== */
@media (max-width: 1024px) {
    .charts-kpi-row { grid-template-columns: repeat(2, 1fr); }
    .pdg-grid { grid-template-columns: 1fr; gap: 50px; }
    .pdg-img-wrap img { height: 380px; }
    .timeline-line { left: 20px; }
    .timeline-item, .timeline-item.reverse { padding: 0 0 0 60px; justify-content: flex-start; }
    .timeline-dot { left: 20px; }
    .timeline-content.left::before,
    .timeline-content.right::before { left: -12px; right: auto; border-right: none; border-top: none; border-left: 2px solid var(--gray-200); border-bottom: 2px solid var(--gray-200); }
    .timeline-content { max-width: 100%; }
    .map-overlay-card { left: 20px; top: 20px; min-width: 200px; padding: 20px; }
}
@media (max-width: 768px) {
    .temo-slide { min-width: 100%; margin-right: 0; }
    .charts-kpi-row { grid-template-columns: repeat(2, 1fr); }
    .kpi-val { font-size: 24px; }
    .map-wrapper { height: 400px; }
    .map-overlay-card { left: 10px; right: 10px; min-width: auto; top: 10px; }
    .pdg-values-pills .pill { font-size: 12px; padding: 6px 14px; }
    .partner-logo-card { width: 150px; height: 90px; }
}

/* ============================================
   ADDITIONS v2.1 — Timeline, PDG, Partners,
   Temo Slider, Charts KPI, Map
============================================ */

/* ===== PDG MESSAGE ===== */
.pdg-section { padding: 100px 0; background: var(--gray-100); }
.pdg-grid { display: grid; grid-template-columns: 380px 1fr; gap: 80px; align-items: start; }
.pdg-img-wrap { position: relative; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); }
.pdg-img-wrap img { width: 100%; height: 480px; object-fit: cover; object-position: top; }
.pdg-badge {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(15,25,35,.95) 0%, transparent 100%);
    padding: 40px 24px 22px;
    display: flex; flex-direction: column; align-items: center;
}
.pdg-badge span:first-child { color: var(--orange); font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; }
.pdg-badge span:last-child  { color: white; font-size: 14px; font-weight: 700; margin-top: 3px; }
.pdg-signature { margin-top: 20px; text-align: center; }
.pdg-signature p { color: var(--gray-500); font-size: 13px; margin-top: 8px; font-style: italic; }
.pdg-content .section-tag { display: block; margin-bottom: 12px; }
.pdg-content h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 3vw, 40px); font-weight: 900; color: var(--blue); margin-bottom: 20px; }
.pdg-content h2 em { color: var(--orange); font-style: normal; }
.pdg-quote-mark { font-family: 'Playfair Display', serif; font-size: 100px; color: var(--orange); line-height: .7; margin-bottom: -10px; opacity: .3; }
.pdg-message p { color: var(--gray-700); font-size: 16px; line-height: 1.85; margin-bottom: 18px; }
.pdg-values { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.pdg-value-chip {
    display: inline-flex; align-items: center; gap: 8px;
    background: white; border: 2px solid var(--gray-200);
    padding: 10px 18px; border-radius: 30px;
    font-size: 14px; font-weight: 700; color: var(--blue);
    box-shadow: var(--shadow-sm);
}

/* ===== TIMELINE ===== */
.timeline-section { padding: 100px 0; background: white; }
.timeline { position: relative; max-width: 900px; margin: 0 auto; }
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--blue), var(--orange));
    transform: translateX(-50%);
}
.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: calc(50% + 40px);
    padding-bottom: 50px;
    position: relative;
}
.timeline-item.right {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: calc(50% + 40px);
}
.timeline-dot {
    position: absolute;
    left: 50%;
    top: 18px;
    transform: translateX(-50%);
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--blue);
    border: 4px solid white;
    box-shadow: 0 0 0 3px var(--blue);
    z-index: 2;
}
.tl-dot-orange { background: var(--orange); box-shadow: 0 0 0 3px var(--orange); }
.timeline-content {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 28px 28px 22px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    max-width: 380px;
}
.timeline-content:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.tl-featured { border-color: var(--orange); border-width: 2px; }
.tl-year {
    display: inline-block;
    background: var(--blue);
    color: white;
    font-size: 13px; font-weight: 800;
    padding: 4px 14px; border-radius: 20px;
    margin-bottom: 12px; letter-spacing: 1px;
}
.tl-featured .tl-year { background: var(--orange); }
.timeline-content h3 { font-size: 18px; font-weight: 800; color: var(--blue); margin-bottom: 10px; }
.timeline-content p  { color: var(--gray-500); font-size: 14px; line-height: 1.75; margin-bottom: 14px; }
.tl-tag { display: inline-block; background: var(--gray-100); color: var(--gray-700); font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 20px; }
.tl-tag-orange { background: rgba(255,107,53,.1); color: var(--orange); }

/* ===== PARTNERS CAROUSEL ===== */
.partners-section { padding: 80px 0 0; }
.partners-carousel-wrap {
    overflow: hidden;
    position: relative;
    margin-top: 40px;
    padding: 30px 0;
    background: var(--gray-100);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}
.partners-carousel-wrap::before,
.partners-carousel-wrap::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}
.partners-carousel-wrap::before { left: 0; background: linear-gradient(to right, var(--gray-100), transparent); }
.partners-carousel-wrap::after  { right: 0; background: linear-gradient(to left, var(--gray-100), transparent); }

.partners-carousel {
    display: flex;
    gap: 0;
    animation: scrollPartners 28s linear infinite;
    width: max-content;
}
.partners-carousel:hover { animation-play-state: paused; }

@keyframes scrollPartners {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partner-logo {
    width: 180px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    flex-shrink: 0;
    transition: var(--transition);
    border-right: 1px solid var(--gray-200);
}
.partner-logo:hover { background: white; }
.partner-logo img { max-width: 110px; max-height: 50px; object-fit: contain; filter: grayscale(100%); opacity: .55; transition: var(--transition); }
.partner-logo:hover img { filter: grayscale(0%); opacity: 1; }
.partner-fallback { font-size: 14px; font-weight: 700; color: var(--gray-500); display: flex; align-items: center; gap: 6px; }
.partner-logo:hover .partner-fallback { color: var(--blue); }

/* ===== TESTIMONIAL SLIDER HORIZONTAL ===== */
.temo-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}
.temo-track-outer {
    flex: 1;
    overflow: hidden;
}
.temo-track {
    display: flex;
    gap: 22px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.temo-track .temoignage-card {
    flex: 0 0 calc(33.333% - 15px);
    min-width: calc(33.333% - 15px);
}
.temo-nav {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    border: 1.5px solid rgba(255,255,255,.25);
    color: white; font-size: 20px;
    cursor: pointer; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.temo-nav:hover { background: var(--orange); border-color: var(--orange); }
.temo-dots-row {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 50px;
}
.temo-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.3);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}
.temo-dot.active { background: var(--orange); width: 24px; border-radius: 4px; }

/* ===== CHARTS KPI ===== */
.kpi-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 40px;
}
.kpi-card {
    background: white;
    border-radius: 16px;
    padding: 28px 22px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--blue);
}
.kpi-card.kpi-orange { border-top-color: var(--orange); }
.kpi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.kpi-icon { font-size: 32px; display: block; margin-bottom: 12px; }
.kpi-val { font-size: 36px; font-weight: 900; color: var(--blue); line-height: 1; }
.kpi-orange .kpi-val { color: var(--orange); }
.kpi-label { font-size: 14px; font-weight: 700; color: var(--gray-700); margin: 6px 0 2px; }
.kpi-sub { font-size: 12px; color: var(--gray-500); }

.chart-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 22px;
}
.chart-badge {
    background: var(--blue);
    color: white;
    font-size: 13px; font-weight: 800;
    padding: 6px 14px; border-radius: 20px;
    flex-shrink: 0;
}
.chart-badge-orange { background: var(--orange); }
.chart-note {
    margin-top: 18px;
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.65;
    border-top: 1px solid var(--gray-200);
    padding-top: 14px;
    font-style: italic;
}

/* Progress bars */
.services-progress {
    background: white;
    border-radius: 16px;
    padding: 36px 40px;
    margin-top: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}
.services-progress h3 { font-size: 18px; font-weight: 800; color: var(--blue); margin-bottom: 28px; }
.progress-list { display: flex; flex-direction: column; gap: 20px; }
.progress-item {}
.pi-label { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; font-size: 14px; font-weight: 600; color: var(--gray-700); }
.pi-bar { height: 10px; background: var(--gray-200); border-radius: 10px; overflow: hidden; }
.pi-fill { height: 100%; border-radius: 10px; transition: width 1.5s cubic-bezier(0.4,0,0.2,1); }

/* ===== MAP SECTION ===== */
.map-section { padding: 80px 0 0; }
.map-wrapper { position: relative; margin-top: 40px; border-radius: 0; overflow: hidden; box-shadow: 0 -8px 40px rgba(0,0,0,.1); }
.map-info-overlay {
    position: absolute;
    top: 24px; left: 24px;
    z-index: 10;
}
.map-info-card {
    background: white;
    border-radius: 14px;
    padding: 18px 22px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border-left: 4px solid var(--orange);
}
.map-info-icon { font-size: 26px; flex-shrink: 0; margin-top: 2px; }
.map-info-card strong { display: block; font-size: 15px; font-weight: 800; color: var(--blue); margin-bottom: 2px; }
.map-info-card span   { display: block; font-size: 13px; color: var(--gray-500); margin-bottom: 8px; }
.map-directions {
    display: inline-flex; align-items: center; gap: 5px;
    color: var(--orange); font-size: 13px; font-weight: 700;
    text-decoration: none;
}
.map-directions:hover { text-decoration: underline; }

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 1024px) {
    .pdg-grid { grid-template-columns: 1fr; gap: 40px; }
    .pdg-img-wrap img { height: 360px; }
    .kpi-row { grid-template-columns: repeat(2, 1fr); }
    .temo-track .temoignage-card { flex: 0 0 calc(50% - 11px); min-width: calc(50% - 11px); }
    .timeline::before { left: 20px; }
    .timeline-item, .timeline-item.right { justify-content: flex-start; padding-right: 0; padding-left: 60px; }
    .timeline-dot { left: 20px; }
}
@media (max-width: 768px) {
    .kpi-row { grid-template-columns: repeat(2, 1fr); }
    .temo-track .temoignage-card { flex: 0 0 100%; min-width: 100%; }
    .temo-slider-wrapper { gap: 10px; }
    .temo-nav { width: 38px; height: 38px; font-size: 16px; }
    .services-progress { padding: 24px 20px; }
    .map-info-overlay { left: 12px; top: 12px; }
    .map-info-card { padding: 13px 15px; }
    .pdg-quote-mark { font-size: 70px; }
}

/* ===== FINANCE GALLERY ===== */
.finance-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 50px;
    border-radius: 20px;
    overflow: hidden;
}
.fg-main {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 340px;
}
.fg-main img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.fg-main:hover img { transform: scale(1.04); }
.fg-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.fg-small {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    min-height: 150px;
}
.fg-small img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.fg-small:hover img { transform: scale(1.06); }
.fg-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
    color: white;
    font-size: 13px;
    font-weight: 700;
    padding: 20px 14px 12px;
}
.fg-main .fg-label { font-size: 16px; padding: 30px 20px 16px; }

/* Finance garantees banner */
.finance-guarantees {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    margin-top: 40px;
    overflow: hidden;
}
.fg-guarantee {
    padding: 28px 24px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.fg-guarantee:last-child { border-right: none; }
.fg-guarantee span { font-size: 32px; display: block; margin-bottom: 10px; }
.fg-guarantee strong { display: block; color: white; font-size: 14px; font-weight: 800; margin-bottom: 6px; }
.fg-guarantee p { color: rgba(255,255,255,0.6); font-size: 13px; margin: 0; }

/* ===== ADMIN ADDITIONS ===== */
.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}
.page-header h1 { font-size: 24px; font-weight: 800; color: #1a202c; }
.btn-gray { background: #edf2f7; color: #4a5568; border: none; border-radius: 10px; padding: 10px 18px; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; font-family: inherit; }
.btn-gray:hover { background: #e2e8f0; }
.btn-sm { padding: 7px 14px; font-size: 13px; border-radius: 8px; }
.btn-delete { background: #fff5f5; color: #c53030; border: 1px solid #fed7d7; font-weight: 700; text-decoration: none; border-radius: 8px; padding: 7px 14px; font-size: 13px; transition: all .2s; }
.btn-delete:hover { background: #fc8181; color: white; border-color: #fc8181; }
.card { background: white; border-radius: 16px; padding: 28px; box-shadow: 0 1px 6px rgba(0,0,0,.06); margin-bottom: 22px; }
.form-hint { font-size: 12px; color: #a0aec0; margin-top: 4px; }
.form-footer { display: flex; gap: 12px; align-items: center; margin-top: 24px; padding-top: 22px; border-top: 2px solid #f0f4f8; flex-wrap: wrap; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; margin-bottom: 7px; font-size: 12px; font-weight: 700; color: #4a5568; text-transform: uppercase; letter-spacing: .5px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 15px;
    border: 2px solid #e2e8f0; border-radius: 10px;
    font-size: 14px; font-family: inherit; color: #1a202c;
    outline: none; transition: border-color .2s, box-shadow .2s;
}
.form-group textarea { resize: vertical; min-height: 180px; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: #1a365d; box-shadow: 0 0 0 3px rgba(26,54,93,.08);
}
.alert { padding: 14px 18px; border-radius: 12px; margin-bottom: 20px; font-size: 14px; font-weight: 500; }
.alert-success { background: #f0fff4; color: #276749; border-left: 4px solid #38a169; }
.alert-error   { background: #fff5f5; color: #c53030; border-left: 4px solid #fc8181; }
.sidebar-divider { height: 1px; background: rgba(255,255,255,.08); margin: 8px 16px; list-style: none; }

/* Finance gallery responsive */
@media (max-width: 1024px) {
    .finance-gallery { grid-template-columns: 1fr; }
    .fg-main { min-height: 250px; }
    .fg-side { grid-template-columns: repeat(3, 1fr); }
    .finance-guarantees { grid-template-columns: repeat(2, 1fr); }
    .fg-guarantee:nth-child(2) { border-right: none; }
    .fg-guarantee:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.1); }
    .fg-guarantee:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.1); border-right: none; }
}
@media (max-width: 768px) {
    .fg-side { grid-template-columns: 1fr 1fr; }
    .finance-guarantees { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
}

/* ===== FLAG BADGE & FOOTER SOCIAL ICONS ===== */
.flag-badge { font-size: 13px; vertical-align: middle; }
.footer-social .social-link { font-size: 20px; width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center; background: rgba(255,255,255,.08); border-radius: 50%; transition: background .2s, transform .2s; }
.footer-social .social-link:hover { background: var(--orange); transform: translateY(-2px); }
.footer-social { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }

/* ===== HERO STATS OVERLAY (right side) ===== */
.hero-stats-overlay {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 10;
}
.hero-stat-pill {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 16px;
    padding: 16px 22px;
    text-align: center;
    min-width: 140px;
    box-shadow: 0 8px 32px rgba(0,0,0,.2);
    transition: transform .3s;
}
.hero-stat-pill:hover { transform: scale(1.04); }
.hero-stat-num { font-size: 30px; font-weight: 900; color: #fff; line-height: 1; }
.hero-stat-num span { color: var(--orange); }
.hero-stat-lbl { font-size: 11px; color: rgba(255,255,255,.8); font-weight: 600; text-transform: uppercase; letter-spacing: .8px; margin-top: 4px; }

/* ===== VIDEO SECTION ===== */
.video-hero-section {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #0f1923;
}
.video-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: .45;
}
.video-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,25,35,.80) 0%, rgba(26,54,93,.65) 100%);
    z-index: 1;
}
.video-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
    padding: 0 24px;
}
.video-hero-content .pre-tag {
    display: inline-block;
    background: var(--orange);
    color: white;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 7px 20px;
    border-radius: 30px;
    margin-bottom: 24px;
}
.video-hero-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 5vw, 56px);
    font-weight: 900;
    color: white;
    line-height: 1.15;
    margin-bottom: 20px;
}
.video-hero-content h2 em { color: var(--orange); font-style: normal; }
.video-hero-content p {
    color: rgba(255,255,255,.82);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
.video-hero-chips {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.v-chip {
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.2);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===== SIDEBAR ADMIN LOGO ===== */
.sidebar-logo-img {
    display: block;
    width: 46px;
    height: 46px;
    object-fit: cover;
    border-radius: 50%;
    background: white;
    padding: 3px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

@media (max-width: 1024px) {
    .hero-stats-overlay { display: none; }
    .video-hero-section { min-height: 440px; }
}

/* ===== VIDEO FULL WIDTH SECTION ===== */
.video-fullwidth-section {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-fw-container {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #0f1923;
    pointer-events: none;
}
/* YouTube iframe trick : zoom to hide controls/borders */
.video-fw-iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;   /* 16:9 */
    min-height: 100%;
    min-width: 177.78vh; /* 16:9 */
    transform: translate(-50%, -50%);
    border: none;
    pointer-events: none;
    opacity: 0.55;
}
.video-fw-fallback {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1494412574643-ff11b0a5c1c3?w=1920&q=80') center/cover no-repeat;
    opacity: 0;
    transition: opacity .5s;
}
.video-fw-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,25,35,.82) 0%, rgba(26,54,93,.70) 60%, rgba(255,107,53,.15) 100%);
    z-index: 1;
}
.video-fw-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 860px;
    padding: 0 32px;
    animation: fadeInUp .9s ease both;
}
.video-fw-tag {
    display: inline-block;
    background: var(--orange);
    color: white;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 7px 20px;
    border-radius: 30px;
    margin-bottom: 22px;
    box-shadow: 0 4px 20px rgba(255,107,53,.4);
}
.video-fw-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(34px, 5.5vw, 64px);
    font-weight: 900;
    color: white;
    line-height: 1.12;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.video-fw-content h2 em {
    color: var(--orange);
    font-style: normal;
}
.video-fw-content p {
    color: rgba(255,255,255,.88);
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.7;
    margin-bottom: 32px;
    text-shadow: 0 1px 8px rgba(0,0,0,.4);
}
.video-fw-chips {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.vfc {
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.22);
    color: white;
    padding: 9px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: background .2s;
}
.vfc:hover { background: rgba(255,107,53,.3); border-color: var(--orange); }
.video-fw-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact info item stacked links */
.contact-info-item div a {
    display: block;
}

/* Fix partner logo images (real files) */
.partner-logo img {
    max-width: 120px;
    max-height: 55px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: .6;
    transition: all .3s;
}
.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 768px) {
    .video-fullwidth-section { height: 480px; }
    .video-fw-chips { gap: 8px; }
    .vfc { font-size: 12px; padding: 8px 14px; }
    .video-fw-content p br { display: none; }
}

/* Sidebar logo layout */
.sidebar-logo-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 4px;
}
.sidebar-logo-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}
.s-logo-main {
    font-size: 16px;
    font-weight: 900;
    color: white;
    letter-spacing: 1px;
    line-height: 1;
}
.s-logo-sub {
    font-size: 8px;
    color: rgba(255,107,53,0.9);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1.5;
}
