@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Local Outfit Fonts */
@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* --- Accessibility --- */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.skip-link {
  background-color: #1a2b4b;
  border-radius: 0 0 5px 5px;
  color: #fff;
  left: 20px;
  padding: 10px 20px;
  position: absolute;
  top: -100%;
  transition: top 0.3s;
  z-index: 99999;
  text-decoration: none;
  font-weight: 600;
}

.skip-link:focus {
  top: 0;
}

@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary-color: #007bff;
  --text-color: #333333;
  --bg-color: #ffffff;
  --header-height: 80px;
  --french-flag-gradient: linear-gradient(90deg, #002395 0%, #002395 33.33%, #ffffff 33.33%, #ffffff 66.66%, #ed2939 66.66%, #ed2939 100%);
  --french-flag-text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5), 0 0 1px rgba(0, 0, 0, 0.8);
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #333333;
  background-color: #ffffff;
  line-height: 1.6;
}

* {
  box-sizing: border-box;
}

.site-main {
  min-height: calc(100vh - 80px);
}

.site-header {
  background-color: #fff;
  padding: 15px 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.site-header.is-scrolled {
  padding: 10px 0;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
  background-color: rgba(255, 255, 255, 0.98);
}

@supports (backdrop-filter: blur(10px)) {
  .site-header.is-scrolled {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
  }
}

.site-header .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header .site-branding {
  flex: 0 0 auto;
  margin-right: 48px;
}

.site-header .site-branding .custom-logo-link {
  display: block;
  transition: transform 0.2s ease;
}

.site-header .site-branding .custom-logo-link:hover {
  transform: scale(1.02);
}

.site-header .site-branding img {
  max-height: 48px;
  width: auto;
  display: block;
}

.site-header .site-branding .site-title {
  font-size: 24px;
  font-weight: 800;
  color: #1e293b;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: -0.025em;
}

.site-header .main-navigation {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.site-header .main-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 32px;
}

.site-header .main-navigation ul li {
  position: relative;
}

.site-header .main-navigation ul li a {
  text-decoration: none;
  color: #475569;
  font-weight: 700;
  font-size: 15px;
  transition: color 0.2s ease;
  text-transform: uppercase;
  padding: 8px 0;
  display: inline-block;
}

.site-header .main-navigation ul li a:hover,
.site-header .main-navigation ul li a:focus {
  color: #0f172a;
}

.site-header .main-navigation ul li.current-menu-item>a {
  color: #0f172a;
}

.site-header .header-cta {
  flex: 0 0 auto;
  margin-left: 24px;
}

.site-header .header-cta .btn-header {
  display: inline-flex;
  align-items: center;
  background-color: #0f172a;
  color: #fff;
  padding: 12px 28px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  transition: all 0.2s ease;
  gap: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.site-header .header-cta .btn-header:hover {
  background-color: #1e293b;
  transform: translateY(-1px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.site-header .header-cta .btn-header:active {
  transform: translateY(0);
}

/* French Flag CTA Button - Premium Style */
.btn-header.btn-french-flag {
  background: #1E3A8A !important;
  color: #fff !important;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-header.btn-french-flag:hover {
  filter: saturate(1.2) brightness(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.site-header .header-cta .btn-header .flag-icon {
  font-size: 16px;
  line-height: 1;
}

.site-header .menu-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  z-index: 100;
}

.site-header .menu-toggle .icon-bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #0f172a;
  border-radius: 99px;
  transition: all 0.3s ease;
}

.site-header .menu-toggle[aria-expanded="true"] .icon-bar:nth-child(2) {
  transform: rotate(45deg) translate(5px, 6px);
}

.site-header .menu-toggle[aria-expanded="true"] .icon-bar:nth-child(3) {
  opacity: 0;
}

.site-header .menu-toggle[aria-expanded="true"] .icon-bar:nth-child(4) {
  transform: rotate(-45deg) translate(5px, -6px);
}

@media (max-width: 1024px) {
  .site-header {
    padding: 12px 0;
    width: 100%;
  }

  .site-header .header-container {
    padding: 0 16px;
  }

  .site-header .main-navigation,
  .site-header .header-cta {
    display: none !important;
  }

  .site-header .menu-toggle {
    display: flex !important;
  }

  .site-header .site-branding {
    margin-right: auto;
  }

  .site-header .site-branding img {
    max-height: 36px;
  }
}

.mobile-menu-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: #fff;
  z-index: 2000;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.mobile-menu-drawer.is-open {
  transform: translateX(-320px);
}

.mobile-menu-drawer .drawer-header {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f1f5f9;
}

.mobile-menu-drawer .drawer-header .drawer-title {
  font-weight: 700;
  font-size: 18px;
  color: #0f172a;
}

.mobile-menu-drawer .drawer-header .drawer-close {
  background: #f1f5f9;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.mobile-menu-drawer .drawer-header .drawer-close:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.mobile-menu-drawer .drawer-content {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
}

.mobile-menu-drawer .drawer-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-drawer .drawer-content ul li {
  border-bottom: 1px solid #f8fafc;
}

.mobile-menu-drawer .drawer-content ul li a {
  display: block;
  padding: 16px 0;
  text-decoration: none;
  color: #334155;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.2s;
}

.mobile-menu-drawer .drawer-content ul li a:hover {
  color: #0f172a;
  padding-left: 8px;
}

.mobile-menu-drawer .drawer-content .mobile-cta {
  margin-top: 40px;
  text-align: center;
}

.mobile-menu-drawer .drawer-content .mobile-cta .btn-header {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0f172a;
  color: #fff;
  padding: 14px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  width: 100%;
  gap: 10px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.site-footer.redesign {
  background: #ffffff;
  color: #333333;
  padding: 40px 0 20px;
  font-size: 14px;
  border-top: 1px solid #f0f0f0;
}

.site-footer.redesign .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-footer.redesign .footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.site-footer.redesign .footer-top .footer-column {
  flex: 1;
  min-width: 200px;
}

.site-footer.redesign .footer-top .footer-column.payment-box {
  flex: 1.5;
  min-width: 300px;
}

.site-footer.redesign .footer-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a3a5a;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.site-footer.redesign .footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer.redesign .footer-nav ul li {
  margin-bottom: 8px;
}

.site-footer.redesign .footer-nav ul li a {
  color: #555555;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer.redesign .footer-nav ul li a:hover {
  color: #007bff;
}

.site-footer.redesign .contact-info p {
  margin: 0 0 10px;
  color: #666666;
}

.site-footer.redesign .payment-card {
  background: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  text-align: center;
}

.site-footer.redesign .payment-card .payment-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  color: #1a3a5a;
  margin-bottom: 10px;
  text-transform: none;
}

.site-footer.redesign .payment-card .payment-icons {
  margin-bottom: 10px;
}

.site-footer.redesign .payment-card .payment-icons img {
  max-width: 100%;
  height: auto;
}

.site-footer.redesign .payment-card .payment-text {
  font-size: 12px;
  color: #888888;
  line-height: 1.5;
}

.site-footer.redesign .footer-notice {
  background: #f4f8fb;
  border-radius: 10px;
  padding: 20px 30px;
  margin-bottom: 25px;
  border: 1px solid transparent;
}

.site-footer.redesign .footer-notice .notice-inner {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.site-footer.redesign .footer-notice .notice-inner svg {
  flex-shrink: 0;
  margin-top: 5px;
  fill: #1a3a5a;
}

.site-footer.redesign .footer-notice .notice-inner .notice-text {
  font-size: 13px;
  color: #5a7b9a;
  line-height: 1.6;
}

.site-footer.redesign .footer-notice .notice-inner .notice-text a {
  color: #1a3a5a;
  font-weight: 600;
  text-decoration: underline;
}

.site-footer.redesign .footer-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.site-footer.redesign .footer-badges .badge-item {
  background: #f4f8fb;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  color: #1a3a5a;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform 0.3s ease, background 0.3s ease;
}

.site-footer.redesign .footer-badges .badge-item:hover {
  transform: translateY(-2px);
  background: #ebf2f7;
}

.site-footer.redesign .footer-badges .badge-item .badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-footer.redesign .footer-badges .badge-item .badge-icon svg {
  display: block;
}

.site-footer.redesign .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
  flex-wrap: wrap;
  gap: 20px;
}

.site-footer.redesign .footer-bottom .footer-bottom-left,
.site-footer.redesign .footer-bottom .footer-bottom-right,
.site-footer.redesign .footer-bottom .footer-bottom-center {
  flex: 1;
}

.site-footer.redesign .footer-bottom .footer-bottom-left {
  text-align: left;
}

.site-footer.redesign .footer-bottom .footer-bottom-center {
  text-align: center;
}

.site-footer.redesign .footer-bottom .footer-bottom-center img,
.site-footer.redesign .footer-bottom .footer-bottom-center .custom-logo-link {
  display: block;
  margin: 0 auto;
}

.site-footer.redesign .footer-bottom .footer-bottom-center img {
  max-height: 45px;
  width: auto;
}

.site-footer.redesign .footer-bottom .footer-bottom-right {
  text-align: right;
}

.site-footer.redesign .footer-bottom .footer-quick-links {
  margin-bottom: 5px;
}

.site-footer.redesign .footer-bottom .footer-quick-links .quick-links-menu {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 15px;
  flex-wrap: wrap;
}

.site-footer.redesign .footer-bottom .footer-quick-links .quick-links-menu li {
  display: flex;
  align-items: center;
  gap: 15px;
}

.site-footer.redesign .footer-bottom .footer-quick-links .quick-links-menu li a {
  color: #555;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.3s;
}

.site-footer.redesign .footer-bottom .footer-quick-links .quick-links-menu li a:hover {
  color: #007bff;
}

.site-footer.redesign .footer-bottom .copyright {
  color: #888888;
  font-size: 12px;
  margin: 0;
}

.site-footer.redesign .footer-bottom .footer-bottom-nav ul {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 15px;
  flex-wrap: wrap;
}

.site-footer.redesign .footer-bottom .footer-bottom-nav ul li {
  display: flex;
  align-items: center;
  gap: 15px;
}

.site-footer.redesign .footer-bottom .footer-bottom-nav ul li a {
  color: #888888;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
}

.site-footer.redesign .footer-bottom .footer-bottom-nav ul li a:hover {
  color: #333333;
}

@media (max-width: 768px) {
  .site-footer.redesign .footer-top {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .site-footer.redesign .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .site-footer.redesign .footer-bottom .footer-bottom-nav ul {
    justify-content: center;
    flex-wrap: wrap;
  }

  .site-footer.redesign .footer-badges {
    flex-direction: column;
    align-items: center;
  }
}

.single-post-article {
  padding: 60px 0;
}

.single-post-article .entry-header {
  margin-bottom: 40px;
  text-align: center;
}

.single-post-article .entry-header .entry-title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #1a202c;
}

.single-post-article .entry-header .entry-meta {
  font-size: 0.95rem;
  color: #718096;
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.single-post-article .entry-header .entry-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.single-post-article .entry-header .entry-meta .cat-links a {
  background-color: #ebf8ff;
  color: #3182ce;
  padding: 4px 12px;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  transition: background-color 0.2s;
}

.single-post-article .entry-header .entry-meta .cat-links a:hover {
  background-color: #bee3f8;
}

.single-post-article .post-thumbnail-wrapper {
  margin-bottom: 40px;
}

.single-post-article .post-thumbnail-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.single-post-article .entry-content {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #2d3748;
}

.single-post-article .entry-content p {
  margin-bottom: 1.5rem;
}

.single-post-article .entry-content h2,
.single-post-article .entry-content h3,
.single-post-article .entry-content h4,
.single-post-article .entry-content h5,
.single-post-article .entry-content h6 {
  color: #1a202c;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.single-post-article .entry-content h2 {
  font-size: 2rem;
}

.single-post-article .entry-content h3 {
  font-size: 1.75rem;
}

.single-post-article .entry-content ul,
.single-post-article .entry-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.single-post-article .entry-content ul li,
.single-post-article .entry-content ol li {
  margin-bottom: 0.5rem;
}

.single-post-article .entry-content blockquote {
  border-left: 4px solid #3182ce;
  padding-left: 1rem;
  margin: 2rem 0;
  font-style: italic;
  color: #4a5568;
  background: #f7fafc;
  padding: 1.5rem;
  border-radius: 0 8px 8px 0;
}

.single-post-article .entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 2rem 0;
}

.single-post-article .entry-content figcaption {
  text-align: center;
  color: #718096;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.single-post-article .entry-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}

.single-post-article .entry-footer .tags-links {
  font-size: 0.9rem;
  color: #718096;
}

.comments-wrapper {
  background-color: #fff;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px dashed #e2e8f0;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

.container-wide {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

.container-narrow img {
  max-width: 100%;
  height: auto;
}

.single-post-article .entry-content iframe,
.single-post-article .entry-content object,
.single-post-article .entry-content embed,
.single-post-article .entry-content video {
  max-width: 100%;
  height: auto;
}

.single-post-article .entry-content table {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

.single-post-article .entry-content table td,
.single-post-article .entry-content table th {
  padding: 10px;
  border: 1px solid #e2e8f0;
}

.single-post-article .entry-content p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.single-post-article .entry-content .wp-caption {
  max-width: 100%;
}

.single-post-article .entry-content .wp-caption img {
  display: block;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .single-post-article {
    padding: 30px 0;
  }

  .single-post-article .entry-header {
    margin-bottom: 30px;
  }

  .single-post-article .entry-header .entry-title {
    font-size: 1.75rem;
    padding: 0 15px;
  }

  .single-post-article .entry-header .post-thumbnail-wrapper {
    margin-bottom: 30px;
    border-radius: 0;
  }

  .single-post-article .entry-header .post-thumbnail-wrapper img {
    border-radius: 0;
  }

  .single-post-article .entry-header .container-wide {
    padding: 0;
  }

  .single-post-article .entry-content {
    font-size: 1rem;
  }

  .single-post-article .entry-content blockquote {
    margin: 1.5rem 0;
    padding: 1rem;
  }

  .single-post-article .entry-content h2 {
    font-size: 1.5rem;
  }

  .single-post-article .entry-content h3 {
    font-size: 1.3rem;
  }

  .container-narrow {
    padding: 0 16px;
  }
}

/* --- Elementor Full Width Support --- */
body.elementor-page .site-content,
body.elementor-page .site-main,
body.elementor-page .elementor-main {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
}

body.elementor-page #content {
  max-width: 100%;
  padding: 0;
  overflow-x: hidden;
}

/* Fix for Elementor sections that need to be full width */
body.elementor-page .elementor-section.elementor-section-full_width {
  width: 100%;
  max-width: 100%;
  left: 0;
}

/* Ensure Elementor Container (Flexbox) also works */
body.elementor-page .elementor-element.elementor-widget-container {
  width: 100%;
}

/* Override flex layout for specific Elementor hero widget subcontainer */
.elementor-38 .elementor-element.elementor-element-e2dc11b {
  display: block !important;
}