  /**
  * MyCanadaPath - Tema CSS Dosyası
  * mycanadapath-homepage temasına göre düzenlenmiştir
  * 
  * NOT: Bu CSS Elementor CSS'lerinden SONRA yüklenir
  * Elementor override için !important kullanılmıştır
  */

  /* ============================================
    CSS VARIABLES (Tema Renkleri) - Elementor Override
    ============================================ */

  :root {
    --bg: #0b1020 !important;
    --text: #0f172a !important;
    --muted: #5b6477 !important;
    --surface: #ffffff !important;
    --surface-2: #f4f6fb !important;
    --border: #e7ebf3 !important;
    --shadow: 0 10px 30px rgba(15, 23, 42, .10) !important;

    --primary: #c23b3b !important;
    --primary-2: #a83030 !important;
    --navy: #121a2f !important;
    --navy-2: #1a2643 !important;
    --btn: #0f1b35 !important;

    --radius: 14px !important;
    --radius-lg: 18px !important;
  }

  /* ============================================
    GENEL STİLLER
    ============================================ */

  * {
    box-sizing: border-box !important;
  }

  html, body {
    height: 100% !important;
  }

  body {
    margin: 0 !important;
    font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
    color: var(--text) !important;
    background: #fff !important;
  }

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

  img {
    max-width: 100% !important;
    display: block !important;
  }

  /* Elementor Item Override */
  .elementor-item {
    color: white !important;
  }

  .elementor-nav-menu li {
    border-width: 0 !important;
    color: white !important;
  }

  .container {
    width: min(1100px, calc(100% - 32px)) !important;
    margin-inline: auto !important;
  }

  /* Mobil container padding */
  @media (max-width: 820px) {
    .container {
      width: calc(100% - 24px) !important;
      padding-left: 12px !important;
      padding-right: 12px !important;
    }
  }

  /* ============================================
    HEADER STİLLERİ
    ============================================ */

  .topbar {
    position: sticky !important;
    top: 0 !important;
    z-index: 50 !important;
    background: rgba(15, 27, 53, .92) !important;
    backdrop-filter: blur(10px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, .06) !important;
  }

  /* Mobil menü açıkken header'ı üstte tut */
  body.menu-open .topbar {
    z-index: 10000 !important;
  }

  .topbar__inner {
    display: flex !important;
    align-items: center !important;
    gap: 18px !important;
    padding: 14px 0 !important;
  }

  .hero__inner * {
    color: #fff !important;
  }

  .brand {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    color: #fff !important;
    font-weight: 700 !important;
    letter-spacing: .2px !important;
  }

  .brand__mark {
    width: 34px !important;
    height: 34px !important;
    display: grid !important;
    place-items: center !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, .10) !important;
  }

  /* Navbar menü stilleri Elementor tarafından yönetiliyor - ezilmiyor */

  .topbar__cta {
    display: flex !important;
    gap: 10px !important;
  }

  .hamburger {
    display: none !important;
    margin-left: auto !important;
    background: transparent !important;
    border: 0 !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
    cursor: pointer !important;
    position: relative !important;
    z-index: 10000 !important;
    padding: 0 !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 5px !important;
    transition: all 0.3s ease !important;
  }

  .hamburger:hover {
    background: rgba(255, 255, 255, .1) !important;
  }

  .hamburger span {
    display: block !important;
    width: 24px !important;
    height: 2px !important;
    background: #fff !important;
    border-radius: 999px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    margin: 0 !important;
  }

  .hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px) !important;
  }

  .hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0 !important;
    transform: translateX(-10px) !important;
  }

  .hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px) !important;
  }

  .mobile-menu {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: rgba(15, 27, 53, .98) !important;
    backdrop-filter: blur(20px) !important;
    z-index: 9999 !important;
    transform: translateX(100%) !important;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    overflow-y: auto !important;
    border-top: none !important;
    border-left: 1px solid rgba(255, 255, 255, .06) !important;
  }

  .mobile-menu[aria-hidden="false"],
  .mobile-menu:not([hidden]) {
    transform: translateX(0) !important;
  }

  .mobile-menu__inner {
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    max-width: 100% !important;
    position: relative !important;
  }

  .mobile-menu__close {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    width: 44px !important;
    height: 44px !important;
    background: rgba(255, 255, 255, .1) !important;
    border: 1px solid rgba(255, 255, 255, .2) !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    color: #fff !important;
    transition: all 0.2s ease !important;
    z-index: 10001 !important;
  }

  .mobile-menu__close:hover {
    background: rgba(255, 255, 255, .15) !important;
    transform: rotate(90deg) !important;
  }

  .mobile-menu__content {
    padding: 80px 24px 24px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    flex: 1 !important;
    overflow-y: auto !important;
  }

  .mobile-menu__link {
    padding: 16px 20px !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, .08) !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    text-align: center !important;
    transition: all 0.2s ease !important;
    border: 1px solid rgba(255, 255, 255, .1) !important;
    color: rgba(255, 255, 255, .92) !important;
    text-decoration: none !important;
  }

  .mobile-menu__link:hover,
  .mobile-menu__link:focus {
    background: rgba(255, 255, 255, .12) !important;
    transform: translateX(-4px) !important;
    border-color: rgba(255, 255, 255, .2) !important;
  }

  .mobile-menu__link.active {
    background: rgba(194, 59, 59, .2) !important;
    border-color: rgba(194, 59, 59, .4) !important;
    color: #fff !important;
  }

  .mobile-menu__cta {
    margin: 0 24px 32px !important;
    padding: 16px 24px !important;
    font-size: 16px !important;
    width: auto !important;
  }

  /* ============================================
    BUTON STİLLERİ
    ============================================ */

  .btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    padding: 12px 16px !important;
    border-radius: 12px !important;
    border: 1px solid transparent !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    cursor: pointer !important;
    user-select: none !important;
    transition: transform .05s ease, filter .15s ease, background .15s ease, border-color .15s ease !important;
  }

  .btn:active {
    transform: translateY(1px) !important;
  }

  .btn--block {
    width: 100% !important;
  }

  .btn--primary {
    background: var(--primary) !important;
    color: #fff !important;
    box-shadow: 0 10px 18px rgba(194, 59, 59, .18) !important;
  }

  .btn--primary:hover {
    background: var(--primary-2) !important;
  }

  .btn--secondary {
    background: rgba(255, 255, 255, .10) !important;
    color: #fff !important;
    border-color: rgba(255, 255, 255, .22) !important;
  }

  .btn--secondary:hover {
    filter: brightness(1.05) !important;
  }

  .btn--ghost {
    background: rgba(255, 255, 255, .10) !important;
    color: #fff !important;
    border-color: rgba(255, 255, 255, .18) !important;
  }

  .btn--ghost:hover {
    filter: brightness(1.06) !important;
  }

  /* ============================================
    HERO STİLLERİ
    ============================================ */

  .hero {
    position: relative !important;
    min-height: 420px !important;
    display: grid !important;
    place-items: center !important;
    text-align: center !important;
    color: #fff !important;
    overflow: hidden !important;
  }

  .hero__bg {
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(180deg, rgba(10, 16, 32, .78), rgba(10, 16, 32, .45)),
                url("./assets/hero.jpg") center/cover no-repeat !important;
    transform: scale(1.02) !important;
  }

  .hero__inner {
    position: relative !important;
    padding: 78px 0 64px !important;
  }

  .hero__inner h1 {
    margin: 0 0 10px !important;
    font-size: clamp(30px, 4vw, 44px) !important;
    line-height: 1.15 !important;
    letter-spacing: .2px !important;
    text-align: center !important;
  }

  .hero__inner p {
    margin: 0 auto 20px !important;
    width: min(720px, 100%) !important;
    color: rgba(255, 255, 255, .88) !important;
    font-size: 15px !important;
    text-align: center !important;
  }

  .hero__actions {
    display: flex !important;
    justify-content: center !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
  }

  /* ============================================
    SECTION STİLLERİ
    ============================================ */

  .section {
    padding: 56px 0 !important;
  }

  .section--soft {
    background: linear-gradient(180deg, #ffffff, var(--surface-2)) !important;
  }

  .section__title {
    margin: 0 0 22px !important;
    text-align: center !important;
    font-size: 22px !important;
    letter-spacing: .2px !important;
    color: #22304f !important;
  }

  /* ============================================
    GRID STİLLERİ
    ============================================ */

  .grid {
    display: grid !important;
    gap: 16px !important;
  }

  .grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  /* ============================================
    CARD STİLLERİ
    ============================================ */

  .cards .card {
    background: var(--surface) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius) !important;
    box-shadow: var(--shadow) !important;
    padding: 20px 18px !important;
    text-align: center !important;
  }

  .card__icon {
    width: 42px !important;
    height: 42px !important;
    margin: 0 auto 10px !important;
    display: grid !important;
    place-items: center !important;
    border-radius: 14px !important;
    background: #eef2ff !important;
    color: #1f2a44 !important;
    font-size: 18px !important;
  }

  .card h3 {
    margin: 0 0 8px !important;
    font-size: 16px !important;
  }

  .card p {
    margin: 0 !important;
    color: var(--muted) !important;
    font-size: 13px !important;
    line-height: 1.55 !important;
  }

  .card--tall {
    text-align: left !important;
    padding: 24px 22px !important;
    min-height: 130px !important;
  }

  /* ============================================
    CUSTOM BOX WIDGET STİLLERİ (Elementor)
    ============================================ */

  .custom-box-wrapper {
    width: 100% !important;
  }

  .custom-box {
    background: var(--surface) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius) !important;
    box-shadow: var(--shadow) !important;
    padding: 20px 18px !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    transition: transform .12s ease, filter .12s ease, opacity .15s ease !important;
    height: 100% !important;
  }

  .custom-box:hover {
    transform: translateY(-2px) !important;
    filter: brightness(1.01) !important;
    opacity: 0.9 !important;
  }

  .custom-box--link {
    text-decoration: none !important;
    color: inherit !important;
  }

  .custom-box--link:hover {
    text-decoration: none !important;
  }

  .custom-box__icon {
    display: none !important;
  }

  .custom-box__icon i,
  .custom-box__icon svg {
    font-size: 18px !important;
    width: 18px !important;
    height: 18px !important;
  }

  .custom-box__icon img {
    width: 24px !important;
    height: 24px !important;
    object-fit: contain !important;
  }

  .custom-box__emoji {
    font-size: 18px !important;
    line-height: 1 !important;
  }

  .custom-box__title {
    margin: 0 0 8px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    line-height: 1.3 !important;
  }

  .custom-box__description {
    margin: 0 !important;
    color: var(--muted) !important;
    font-size: 13px !important;
    line-height: 1.55 !important;
  }

  /* Custom Box için responsive */
  @media (max-width: 820px) {
    .custom-box {
      padding: 18px 16px !important;
    }
  }

  /* ============================================
    SERVICES & PANEL STİLLERİ
    ============================================ */

  .services {
    display: grid !important;
    grid-template-columns: 1fr 320px !important;
    gap: 18px !important;
    align-items: start !important;
  }

  .panel {
    background: linear-gradient(180deg, #1a2643, #0f1b35) !important;
    color: #fff !important;
    border-radius: var(--radius-lg) !important;
    border: 1px solid rgba(255, 255, 255, .12) !important;
    box-shadow: 0 20px 40px rgba(15, 27, 53, .22) !important;
    padding: 20px !important;
  }

  .panel h3 {
    margin: 0 0 12px !important;
  }

  .panel__actions {
    display: grid !important;
    gap: 10px !important;
  }

  .panel .btn--ghost {
    background: rgba(255, 255, 255, .08) !important;
    border-color: rgba(255, 255, 255, .18) !important;
  }

  /* ============================================
    STEPS STİLLERİ
    ============================================ */

  .steps {
    list-style: none !important;
    padding: 0 !important;
    margin: 10px auto 0 !important;
    display: flex !important;
    justify-content: center !important;
    gap: 18px !important;
    flex-wrap: wrap !important;
    width: min(720px, 100%) !important;
  }

  .step {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 10px 14px !important;
    border-radius: 999px !important;
    border: 1px solid var(--border) !important;
    background: #fff !important;
    box-shadow: var(--shadow) !important;
  }

  .step__dot {
    width: 30px !important;
    height: 30px !important;
    display: grid !important;
    place-items: center !important;
    border-radius: 999px !important;
    background: #e8eefc !important;
    color: #1f2a44 !important;
    font-weight: 700 !important;
    font-size: 13px !important;
  }

  .step__label {
    font-weight: 600 !important;
    color: #1f2a44 !important;
    font-size: 14px !important;
  }

  /* ============================================
    PATHWAY STİLLERİ
    ============================================ */

  .pathway .path-card {
    background: #fff !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius) !important;
    overflow: hidden !important;
    box-shadow: var(--shadow) !important;
    transition: transform .12s ease, filter .12s ease !important;
  }

  .pathway .path-card:hover {
    transform: translateY(-2px) !important;
    filter: brightness(1.01) !important;
  }

  .path-card img {
    height: 350px !important;
    width: 100% !important;
    object-fit: cover !important;
    object-position: top !important;
  }

  .path-card__label {
    padding: 18px 14px !important;
    font-weight: 600 !important;
    font-size: 0.9em !important;
    color: #1f2a44 !important;
    text-align: center !important;
  }

  .subcta {
    text-align: center !important;
    color: var(--muted) !important;
    margin: 16px 0 0 !important;
    font-size: 13px !important;
  }

  .subcta a {
    color: #1f2a44 !important;
    font-weight: 600 !important;
    text-decoration: underline !important;
  }

  /* ============================================
    CONTACT STİLLERİ
    ============================================ */

  .contact {
    position: relative !important;
    color: #fff !important;
    padding: 60px 0 40px !important;
    overflow: hidden !important;
  }

  .contact__bg {
    position: absolute !important;
    inset: 0 !important;
    background: radial-gradient(1200px 500px at 30% 0%, rgba(194, 59, 59, .35), transparent 55%),
                linear-gradient(180deg, #17254c, #0b1020) !important;
  }

  .contact__inner {
    position: relative !important;
  }

  .contact h2 {
    margin: 0 0 6px !important;
    font-size: 26px !important;
    text-align: center !important;
  }

  .contact p {
    margin: 0 0 18px !important;
    text-align: center !important;
    color: rgba(255, 255, 255, .85) !important;
  }

  .contact__actions {
    display: flex !important;
    justify-content: center !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
    margin-bottom: 18px !important;
  }

  .contact__grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 18px !important;
    align-items: start !important;
    margin-top: 10px !important;
  }

  /* ============================================
    FAQ STİLLERİ
    ============================================ */

  .faq {
    display: grid !important;
    gap: 10px !important;
  }

  .faq__item {
    width: 100% !important;
    text-align: left !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255, 255, 255, .18) !important;
    background: rgba(255, 255, 255, .06) !important;
    color: #fff !important;
    padding: 12px 14px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    cursor: pointer !important;
  }

  .faq__panel {
    border-radius: 12px !important;
    border: 1px solid rgba(255, 255, 255, .12) !important;
    background: rgba(255, 255, 255, .05) !important;
    padding: 12px 14px !important;
    margin-top: -6px !important;
  }

  .faq__panel p {
    margin: 0 !important;
    text-align: left !important;
    color: rgba(255, 255, 255, .85) !important;
    font-size: 13px !important;
    line-height: 1.6 !important;
  }

  .faq__chev {
    opacity: .9 !important;
    flex-shrink: 0 !important;
    margin-left: 12px !important;
  }

  .faq__item span:first-child {
    flex: 1 !important;
    min-width: 0 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
  }

  /* ============================================
    FORM STİLLERİ
    ============================================ */

  .form {
    background: rgba(255, 255, 255, .06) !important;
    border: 1px solid rgba(255, 255, 255, .14) !important;
    border-radius: var(--radius-lg) !important;
    padding: 16px !important;
  }

  .label {
    display: block !important;
    font-size: 12px !important;
    color: rgba(255, 255, 255, .78) !important;
    margin-bottom: 6px !important;
  }

  .form label {
    display: block !important;
    margin-bottom: 12px !important;
  }

  input, textarea {
    width: 100% !important;
    padding: 12px 12px !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255, 255, 255, .16) !important;
    background: rgba(15, 27, 53, .20) !important;
    color: #fff !important;
    outline: none !important;
  }

  input::placeholder, textarea::placeholder {
    color: rgba(255, 255, 255, .45) !important;
  }

  textarea {
    resize: vertical !important;
  }

  .form__note {
    margin: 10px 0 0 !important;
    font-size: 12px !important;
    color: rgba(255, 255, 255, .70) !important;
    text-align: left !important;
  }

  /* ============================================
    QUESTIONNAIRE CTA BANNER & MODAL (Explore Pathway page)
    ============================================ */

  .questionnaire-cta-banner {
    background: linear-gradient(135deg, #1a2643 0%, #17254c 50%, #0f1b35 100%) !important;
    border-radius: var(--radius-lg) !important;
    margin-top: 28px !important;
    overflow: hidden !important;
    border: 1px solid rgba(255, 255, 255, .1) !important;
  }

  .questionnaire-cta-banner__inner {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 20px !important;
    padding: 32px 28px !important;
  }

  .questionnaire-cta-banner__text { flex: 1 1 300px !important; }

  .questionnaire-cta-banner__title {
    margin: 0 0 8px !important;
    font-size: 1.35rem !important;
    font-weight: 700 !important;
    color: #fff !important;
  }

  .questionnaire-cta-banner__desc {
    margin: 0 0 4px !important;
    color: rgba(255, 255, 255, .9) !important;
    font-size: 15px !important;
    line-height: 1.5 !important;
  }

  .questionnaire-cta-banner__note {
    margin: 0 !important;
    font-size: 13px !important;
    color: rgba(255, 255, 255, .65) !important;
  }

  .questionnaire-cta-banner__action { flex-shrink: 0 !important; }

  .modal-overlay {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: fixed !important;
    inset: 0 !important;
    z-index: 9999 !important;
    padding: 20px !important;
  }

  .modal-overlay[hidden] { display: none !important; }

  .modal-overlay__backdrop {
    position: absolute !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, .5) !important;
    cursor: pointer !important;
  }

  .modal-overlay__content {
    position: relative !important;
    background: #fff !important;
    border-radius: var(--radius-lg) !important;
    padding: 24px !important;
    max-width: 480px !important;
    width: 100% !important;
    max-height: 90vh !important;
    overflow-y: auto !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, .25) !important;
  }

  .modal-overlay__close {
    position: absolute !important;
    top: 16px !important;
    right: 16px !important;
    background: none !important;
    border: none !important;
    font-size: 24px !important;
    cursor: pointer !important;
    color: var(--muted) !important;
    line-height: 1 !important;
    padding: 4px !important;
  }

  .modal-overlay__close:hover { color: var(--text) !important; }

  .modal-overlay__title { margin: 0 0 4px !important; font-size: 1.25rem !important; color: var(--text) !important; }

  .modal-overlay__subtitle { margin: 0 0 16px !important; font-size: 14px !important; color: var(--muted) !important; }

  .form--light {
    background: var(--surface-2) !important;
    border: 1px solid var(--border) !important;
  }

  .form--light .label { color: #374151 !important; }

  .form--light input,
  .form--light textarea {
    background: #fff !important;
    border: 1px solid var(--border) !important;
    color: var(--text) !important;
  }

  body.modal-open { overflow: hidden !important; }

  @media (max-width: 600px) {
    .questionnaire-cta-banner__inner { flex-direction: column !important; text-align: center !important; }
    .questionnaire-cta-banner__text { text-align: center !important; }
  }

  /* ============================================
    CONTACT FORM 7 STİLLERİ
    ============================================ */

  /* Contact Form 7 form wrapper */
  .form .wpcf7-form {
    display: grid !important;
    gap: 12px !important;
  }

  /* Contact Form 7 label ve span */
  .form .wpcf7-form-control-wrap {
    display: block !important;
    margin-bottom: 12px !important;
  }

  .form .wpcf7-form-control-wrap label {
    display: block !important;
    margin-bottom: 6px !important;
  }

  .form .wpcf7-form-control-wrap .wpcf7-form-control {
    width: 100% !important;
    padding: 12px 12px !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255, 255, 255, .16) !important;
    background: rgba(15, 27, 53, .20) !important;
    color: #fff !important;
    outline: none !important;
    font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
    font-size: 14px !important;
  }

  .form .wpcf7-form-control-wrap .wpcf7-form-control::placeholder {
    color: rgba(255, 255, 255, .45) !important;
  }

  .form .wpcf7-form-control-wrap textarea.wpcf7-form-control {
    resize: vertical !important;
    min-height: 100px !important;
  }

  /* Contact Form 7 submit button */
  .form .wpcf7-submit {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    padding: 12px 16px !important;
    border-radius: 12px !important;
    border: 1px solid transparent !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    cursor: pointer !important;
    user-select: none !important;
    background: var(--primary) !important;
    background-color: #c23b3b !important;
    background-image: none !important;
    color: #fff !important;
    color: rgb(255, 255, 255) !important;
    box-shadow: 0 10px 18px rgba(194, 59, 59, .18) !important;
    width: 100% !important;
    transition: transform .05s ease, filter .15s ease, background .15s ease, border-color .15s ease !important;
  }

  .form .wpcf7-submit:hover {
    background: var(--primary-2) !important;
    background-color: #a83030 !important;
  }

  .form .wpcf7-submit:active {
    transform: translateY(1px) !important;
  }

  /* Contact Form 7 validation messages */
  .form .wpcf7-response-output {
    margin: 12px 0 0 !important;
    padding: 12px !important;
    border-radius: 12px !important;
    font-size: 13px !important;
    text-align: left !important;
  }

  .form .wpcf7-validation-errors {
    border: 1px solid rgba(255, 200, 50, .5) !important;
    background: rgba(255, 200, 50, .1) !important;
    color: rgba(255, 255, 255, .9) !important;
  }

  .form .wpcf7-mail-sent-ok {
    border: 1px solid rgba(50, 200, 100, .5) !important;
    background: rgba(50, 200, 100, .1) !important;
    color: rgba(255, 255, 255, .9) !important;
  }

  .form .wpcf7-spinner {
    margin-left: 10px !important;
  }

  /* Contact Form 7 span label */
  .form span.wpcf7-form-control-wrap label {
    display: block !important;
    font-size: 12px !important;
    color: rgba(255, 255, 255, .78) !important;
    margin-bottom: 6px !important;
  }

  /* ============================================
    FOOTER STİLLERİ
    ============================================ */

  .footer {
    margin-top: 0px !important;
    padding-top: 16px !important;
    border-top: 0px;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 14px !important;
    flex-wrap: wrap !important;
  }

  .footer__brand {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-weight: 700 !important;
    width: 25% !important;
  }

  .footer__logo {
    width: 32px !important;
    height: 32px !important;
    display: grid !important;
    place-items: center !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, .10) !important;
  }

  .footer__links {
    display: flex !important;
    gap: 10px !important;
  }

  .footer__links a {
    color: #fff !important;
    opacity: .9 !important;
  }

  .footer__links a svg {
    width: 16px !important;
    height: 16px !important;
    stroke: currentColor !important;
    fill: none !important;
  }

  .footer__copy {
    color: rgba(255, 255, 255, .75) !important;
    font-size: 12px !important;
  }

  /* Footer New Design - FAQ Accordion */
  .footer-faq .faq-accordion {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
  }

  .footer-faq .faq-item {
    background: rgba(255, 255, 255, 0.1) !important;
    padding: 24px !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
  }

  .footer-faq .faq-trigger {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: transparent !important;
    border: none !important;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    text-align: left !important;
    cursor: pointer !important;
    padding: 0 !important;
    transition: color 0.3s ease !important;
  }

  .footer-faq .faq-trigger:hover {
    color: rgba(255, 255, 255, 0.9) !important;
  }

  .footer-faq .faq-chevron {
    transition: transform 0.3s ease !important;
    flex-shrink: 0 !important;
    margin-left: 16px !important;
  }

  .footer-faq .faq-content {
    margin-top: 16px !important;
    color: rgba(255, 255, 255, 0.7) !important;
    line-height: 1.6 !important;
    padding-top: 16px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  }

  /* Footer New Design - Contact Form */
  .footer-form {
    background: rgba(255, 255, 255, 0.05) !important;
    padding: 32px !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
  }

  .footer-form input:not([type="submit"]):not(.formsubmit):not(.wpcf7-submit),
  .footer-form textarea {
    width: 100% !important;
    padding: 12px 16px !important;
    border-radius: 12px !important;
    background: rgba(15, 27, 53, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
  }

  .footer-form input::placeholder,
  .footer-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
  }

  .footer-form input:focus,
  .footer-form textarea:focus {
    border-color: rgba(255, 255, 255, 0.4) !important;
    outline: none !important;
  }

  .footer-form label {
    display: block !important;
    color: rgba(255, 255, 255, 0.8) !important;
    margin-bottom: 0 !important;
    font-size: 14px !important;
  }

  .footer-form button[type="submit"] {
    width: 100% !important;
    background: #c23b3b !important;
    color: #fff !important;
    padding: 12px 24px !important;
    border-radius: 12px !important;
    border: none !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    cursor: pointer !important;
    box-shadow: 0 10px 18px rgba(194, 59, 59, 0.18) !important;
    transition: all 0.3s ease !important;
  }

  .footer-form button[type="submit"]:hover {
    opacity: 0.9 !important;
  }

  /* Contact Form 7 - Footer Form Styling */
  /* Contact Form 7'nin kendi yapısını koruyarak stil uygula */
  .footer-form .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Contact Form 7 fieldset ve hidden fields */
  .footer-form .wpcf7-form fieldset.hidden-fields-container {
    display: none;
  }

  /* Contact Form 7 p wrapper'ları - margin/padding sıfırla ve düzenle */
  .footer-form .wpcf7-form > p {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
  }

  /* Contact Form 7 div wrapper'ları */
  .footer-form .wpcf7-form > div {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
  }

  /* Contact Form 7 label stilleri - p ve div içindeki label'lar */
  .footer-form .wpcf7-form p > label,
  .footer-form .wpcf7-form div > label,
  .footer-form .wpcf7-form label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    margin-top: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
  }

  /* Contact Form 7 label içindeki br tag'lerini gizle */
  .footer-form .wpcf7-form label br {
    display: none;
  }

  /* Contact Form 7 form-control-wrap - span wrapper */
  .footer-form .wpcf7-form-control-wrap {
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
    margin-top: 0;
  }

  /* Contact Form 7 p içindeki form-control-wrap */
  .footer-form .wpcf7-form p .wpcf7-form-control-wrap,
  .footer-form .wpcf7-form div .wpcf7-form-control-wrap {
    margin-top: 0;
  }

  /* Contact Form 7 input ve textarea stilleri - Contact Form 7'nin tüm class kombinasyonlarını destekle */
  .footer-form .wpcf7-form-control-wrap .wpcf7-form-control,
  .footer-form .wpcf7-form-control-wrap input.wpcf7-form-control,
  .footer-form .wpcf7-form-control-wrap input.wpcf7-text,
  .footer-form .wpcf7-form-control-wrap input.wpcf7-email,
  .footer-form .wpcf7-form-control-wrap input.wpcf7-validates-as-required,
  .footer-form .wpcf7-form-control-wrap input.wpcf7-validates-as-email,
  .footer-form .wpcf7-form-control-wrap textarea.wpcf7-form-control,
  .footer-form .wpcf7-form-control-wrap textarea.wpcf7-textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(15, 27, 53, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 16px;
    font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box;
    margin: 0;
    max-width: 100%;
  }

  /* Contact Form 7 placeholder */
  .footer-form .wpcf7-form-control-wrap .wpcf7-form-control::placeholder,
  .footer-form .wpcf7-form-control-wrap input::placeholder,
  .footer-form .wpcf7-form-control-wrap textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
    opacity: 1;
  }

  /* Contact Form 7 focus states */
  .footer-form .wpcf7-form-control-wrap .wpcf7-form-control:focus,
  .footer-form .wpcf7-form-control-wrap input.wpcf7-form-control:focus,
  .footer-form .wpcf7-form-control-wrap textarea.wpcf7-form-control:focus {
    border-color: rgba(255, 255, 255, 0.4);
    outline: none;
    box-shadow: none;
  }

  /* Contact Form 7 textarea özel stilleri */
  .footer-form .wpcf7-form-control-wrap textarea.wpcf7-form-control,
  .footer-form .wpcf7-form-control-wrap textarea.wpcf7-textarea {
    resize: vertical;
    min-height: 100px;
    font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  }

  /* Message textarea - 4 satır yüksekliği */
  .footer-form .wpcf7-form-control-wrap textarea[name="your-message"],
  .footer-form .wpcf7-form-control-wrap textarea.wpcf7-textarea[name="your-message"] {
    height: calc(1.5em * 4 + 24px);
    min-height: calc(1.5em * 4 + 24px);
  }

  /* Contact Form 7 submit button - tüm kombinasyonlar */
  .footer-form .wpcf7-submit,
  .footer-form input[type="submit"],
  .footer-form input.wpcf7-submit,
  .footer-form input[type="submit"].wpcf7-submit,
  .footer-form .wpcf7-form-control.wpcf7-submit,
  .footer-form .wpcf7-form p input[type="submit"],
  .footer-form .wpcf7-form p .wpcf7-submit,
  .footer-form .wpcf7-form p input[type="submit"].wpcf7-submit,
  .footer-form .wpcf7-form p input[type="submit"].formsubmit,
  .footer-form .wpcf7-form p input.wpcf7-submit.formsubmit {
    width: 100%;
    background: #c23b3b;
    background-color: #c23b3b;
    background-image: none;
    color: #fff;
    padding: 12px 24px;
    border-radius: 12px;
    border: none;
    border-width: 0;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 10px 18px rgba(194, 59, 59, 0.18);
    transition: all 0.3s ease;
    font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    display: block;
    text-align: center;
    margin: 0;
    opacity: 1;
    -webkit-appearance: none;
    appearance: none;
  }

  /* Contact Form 7 submit button hover states - tüm kombinasyonlar */
  .footer-form .wpcf7-submit:hover,
  .footer-form input[type="submit"]:hover,
  .footer-form input.wpcf7-submit:hover,
  .footer-form input[type="submit"].wpcf7-submit:hover,
  .footer-form .wpcf7-form-control.wpcf7-submit:hover,
  .footer-form .wpcf7-form p input[type="submit"]:hover,
  .footer-form .wpcf7-form p .wpcf7-submit:hover {
    opacity: 0.9;
    background: #a02f2f;
    background-color: #a02f2f;
  }

  /* Contact Form 7 submit button active states */
  .footer-form .wpcf7-submit:active,
  .footer-form input[type="submit"]:active,
  .footer-form input.wpcf7-submit:active,
  .footer-form input[type="submit"].wpcf7-submit:active,
  .footer-form .wpcf7-form-control.wpcf7-submit:active,
  .footer-form .wpcf7-form p input[type="submit"]:active,
  .footer-form .wpcf7-form p .wpcf7-submit:active {
    transform: translateY(1px);
  }

  /* Contact Form 7 Submit Button - .formsubmit class */
  .footer-form input.formsubmit[type="submit"],
  .footer-form .formsubmit,
  .footer-form input.formsubmit,
  .footer-form .wpcf7-submit.formsubmit,
  .footer-form input[type="submit"].formsubmit,
  .footer-form input[type="submit"].wpcf7-submit.formsubmit,
  .footer-form .wpcf7-form-control.wpcf7-submit.formsubmit,
  .footer-form .wpcf7-form p input.formsubmit[type="submit"],
  .footer-form .wpcf7-form p .formsubmit.wpcf7-submit {
    width: 100%;
    background: rgb(194, 59, 59) !important;
    background-color: rgb(194, 59, 59) !important;
    background-image: none;
    color: rgb(255, 255, 255) !important;
    padding: 12px 24px !important;
    border-radius: 12px !important;
    border: none;
    border-width: 0;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    box-shadow: rgba(194, 59, 59, 0.18) 0px 10px 18px;
    transition: all 0.3s ease;
    opacity: 1;
    font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    display: block;
    text-align: center;
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    margin: 0;
    -webkit-appearance: none;
    appearance: none;
  }

  .footer-form .formsubmit:hover,
  .footer-form input.formsubmit:hover,
  .footer-form .wpcf7-submit.formsubmit:hover,
  .footer-form .wpcf7-form-control.wpcf7-submit.formsubmit:hover {
    opacity: 0.9;
    background: #a02f2f;
    background-color: #a02f2f;
  }

  .footer-form .formsubmit:active,
  .footer-form input.formsubmit:active,
  .footer-form .wpcf7-submit.formsubmit:active,
  .footer-form .wpcf7-form-control.wpcf7-submit.formsubmit:active {
    transform: translateY(1px);
  }

  /* Contact Form 7 spinner */
  .footer-form .wpcf7-spinner {
    margin-left: 10px;
    vertical-align: middle;
  }

  /* Contact Form 7 validation messages - Footer */
  .footer-form .wpcf7-response-output,
  .footer-form .wpcf7-form .wpcf7-response-output,
  .wpcf7-form .wpcf7-response-output {
    margin: 12px 0 0;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    text-align: left;
    border: 1px solid transparent;
  }

  .footer-form .wpcf7-validation-errors {
    border: 1px solid rgba(255, 200, 50, 0.5);
    background: rgba(255, 200, 50, 0.1);
    color: rgba(255, 255, 255, 0.9);
  }

  .footer-form .wpcf7-mail-sent-ok {
    border: 1px solid rgba(50, 200, 100, 0.5);
    background: rgba(50, 200, 100, 0.1);
    color: rgba(255, 255, 255, 0.9);
  }

  .footer-form .wpcf7-not-valid-tip {
    color: rgba(255, 200, 50, 0.9);
    font-size: 12px;
    margin-top: 4px;
    display: block;
  }

  /* Contact Form 7 p içindeki submit button wrapper */
  .footer-form .wpcf7-form > p:has(.wpcf7-submit),
  .footer-form .wpcf7-form p:has(input[type="submit"]) {
    margin: 0;
    padding: 0;
  }

  /* Contact Form 7 mp-contact-form wrapper düzeni */
  .footer-form #footerContactForm.mp-contact-form,
  .footer-form .mp-contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Contact Form 7 br tag'lerini gizle (label içindeki) */
  .footer-form .wpcf7-form label br {
    display: none;
  }

  /* Contact Form 7 validasyon class'ları */
  /* Contact Form 7'nin kendi validasyon class'larını koru - özel stil gerekmez */

  /* Footer Content Grid */
  .footer-content-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    margin-bottom: 64px !important;
  }

  @media (min-width: 1024px) {
    .footer-content-grid {
      grid-template-columns: 1fr 1fr !important;
    }
  }

  @media (max-width: 820px) {
    .footer-content-grid {
      grid-template-columns: 1fr !important;
      gap: 24px !important;
      margin-bottom: 48px !important;
    }

    /* Footer container mobil */
    .footer .container {
      padding: 48px 20px 32px !important;
    }

    /* Footer header mobil */
    .footer h2 {
      font-size: clamp(1.75rem, 5vw, 2rem) !important;
      margin-bottom: 12px !important;
    }

    .footer p {
      font-size: 15px !important;
      margin-bottom: 24px !important;
    }

    /* Footer butonlar mobil */
    .footer .btn {
      width: 100% !important;
      padding: 14px 20px !important;
      font-size: 15px !important;
      justify-content: center !important;
    }
  }

  /* ============================================
    RESPONSIVE
    ============================================ */

  @media (max-width: 960px) {
    .services {
      grid-template-columns: 1fr !important;
    }
    
    .panel {
      order: -1 !important;
    }
  }

  @media (max-width: 820px) {
    .nav, .topbar__cta {
      display: none !important;
    }
    
    .hamburger {
      display: block !important;
    }
    
    .grid--3 {
      grid-template-columns: 1fr !important;
    }
    
    .contact__grid {
      grid-template-columns: 1fr !important;
    }
    
    .hero {
      min-height: 380px !important;
    }

    /* FAQ Mobil Düzenlemeleri */
    .faq__item {
      padding: 14px 16px !important;
      font-size: 14px !important;
      line-height: 1.4 !important;
    }

    .faq__item span:first-child {
      font-size: 14px !important;
      padding-right: 8px !important;
    }

    .faq__panel {
      padding: 14px 16px !important;
      font-size: 13px !important;
    }

    .faq__panel p {
      font-size: 13px !important;
      line-height: 1.6 !important;
    }

    /* Footer FAQ Mobil */
    .footer-faq .faq-item {
      padding: 20px !important;
    }

    .footer-faq .faq-trigger {
      font-size: 15px !important;
      line-height: 1.4 !important;
      padding-right: 40px !important;
    }

    .footer-faq .faq-content {
      font-size: 14px !important;
      margin-top: 12px !important;
      padding-top: 12px !important;
    }

    /* Form Mobil Düzenlemeleri */
    .form {
      padding: 20px 16px !important;
    }

    .form label,
    .form .label {
      font-size: 13px !important;
      margin-bottom: 8px !important;
    }

    input, textarea {
      padding: 14px 16px !important;
      font-size: 16px !important; /* iOS zoom önleme */
    }

    textarea {
      min-height: 120px !important;
    }

    /* Contact Section Mobil */
    .contact {
      padding: 48px 0 32px !important;
    }

    .contact h2 {
      font-size: 24px !important;
      margin-bottom: 12px !important;
    }

    .contact p {
      font-size: 14px !important;
      margin-bottom: 24px !important;
    }

    .contact__actions {
      flex-direction: column !important;
      gap: 12px !important;
      margin-bottom: 24px !important;
    }

    .contact__actions .btn {
      width: 100% !important;
      padding: 14px 20px !important;
      font-size: 15px !important;
    }

    /* Footer Form Mobil */
    .footer-form {
      padding: 24px 20px !important;
    }

    .footer-form input,
    .footer-form textarea {
      padding: 14px 16px !important;
      font-size: 16px !important;
    }

    .footer-form label {
      font-size: 13px !important;
      margin-bottom: 0 !important;
    }

    .footer-form button[type="submit"] {
      padding: 14px 24px !important;
      font-size: 15px !important;
    }
  }

  /* Tablet Düzenlemeleri (768px - 1024px) */
  @media (min-width: 768px) and (max-width: 1024px) {
    .faq__item {
      padding: 14px 18px !important;
      font-size: 15px !important;
    }

    .faq__item span:first-child {
      font-size: 15px !important;
    }

    .contact__grid {
      gap: 24px !important;
    }

    .form {
      padding: 24px 20px !important;
    }

    .contact__actions {
      gap: 14px !important;
    }

    .contact__actions .btn {
      padding: 13px 22px !important;
      font-size: 15px !important;
    }

    .footer-content-grid {
      gap: 28px !important;
    }
  }

  /* Küçük Mobil Ekranlar (480px altı) */
  @media (max-width: 480px) {
    .container {
      width: calc(100% - 16px) !important;
      padding-left: 8px !important;
      padding-right: 8px !important;
    }

    .faq__item {
      padding: 12px 14px !important;
      font-size: 13px !important;
    }

    .faq__item span:first-child {
      font-size: 13px !important;
      padding-right: 6px !important;
    }

    .faq__panel {
      padding: 12px 14px !important;
      font-size: 12px !important;
    }

    .form {
      padding: 16px 12px !important;
    }

    .form label,
    .form .label {
      font-size: 12px !important;
    }

    input, textarea {
      padding: 12px 14px !important;
      font-size: 16px !important;
    }

    .contact {
      padding: 40px 0 24px !important;
    }

    .contact h2 {
      font-size: 22px !important;
    }

    .contact p {
      font-size: 13px !important;
    }

    .contact__actions .btn {
      padding: 12px 18px !important;
      font-size: 14px !important;
    }

    .footer .container {
      padding: 40px 16px 24px !important;
    }

    .footer h2 {
      font-size: clamp(1.5rem, 6vw, 1.75rem) !important;
    }

    .footer p {
      font-size: 14px !important;
    }

    .footer-faq .faq-item {
      padding: 16px !important;
    }

    .footer-faq .faq-trigger {
      font-size: 14px !important;
      padding-right: 32px !important;
    }

    .footer-faq .faq-content {
      font-size: 13px !important;
    }

    .footer-form {
      padding: 20px 16px !important;
    }

    .footer-form input,
    .footer-form textarea {
      padding: 12px 14px !important;
    }

    .footer-form label {
      font-size: 12px !important;
    }

    .footer-form button[type="submit"] {
      padding: 12px 20px !important;
      font-size: 14px !important;
    }
  }

  /* ============================================
    HOVER EFEKTLERİ - OPACITY 0.9
    ============================================ */

  /* Genel link hover efektleri */
  a:hover,
  a:focus,
  a:active {
    text-decoration: none !important;
    opacity: 0.9 !important;
  }

  /* Navbar menü öğeleri için hover efektleri korunuyor - genel kuralı override ediyor */
  .nav a:hover,
  .nav a:focus,
  .nav a:active {
    opacity: 1 !important;
    text-decoration: underline !important;
    color: rgba(255, 255, 255, .88) !important;
  }

  .btn:hover,
  .btn:focus,
  .btn:active {
    opacity: 0.9 !important;
  }

  .btn--primary:hover {
    opacity: 0.9 !important;
  }

  .btn--secondary:hover {
    opacity: 0.9 !important;
  }

  .btn--ghost:hover {
    opacity: 0.9 !important;
  }

  .pathway .path-card:hover {
    opacity: 0.9 !important;
  }

  .mobile-menu__link:hover {
    opacity: 1 !important;
  }

  .footer__links a:hover {
    opacity: 0.9 !important;
  }

  /* ============================================
    WHY CANADA PAGE STİLLERİ
    ============================================ */

  .why-canada-benefits {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 24px !important;
  }

  .why-canada-card:hover {
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15) !important;
  }

  .why-canada-additional {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 32px !important;
  }

  .why-canada-cta__buttons {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 16px !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .why-canada-cta-btn-primary {
    background: #fff !important;
    color: #c23b3b !important;
  }

  .why-canada-cta-btn-primary:hover {
    background: #f3f4f6 !important;
    color: #c23b3b !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.25) !important;
  }

  .why-canada-cta-btn-ghost {
    background: transparent !important;
    border: 2px solid #fff !important;
    color: #fff !important;
  }

  .why-canada-cta-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: #fff !important;
    color: #fff !important;
    transform: translateY(-2px) !important;
  }

  /* Why Canada Page Responsive */
  @media (max-width: 960px) {
    .why-canada-benefits,
    .why-canada-additional {
      grid-template-columns: 1fr !important;
    }

    .why-canada-highlight .grid--2 {
      grid-template-columns: 1fr !important;
    }
  }

  @media (max-width: 820px) {
    .why-canada-cta {
      padding: 32px 24px !important;
    }

    .why-canada-cta h3 {
      font-size: 24px !important;
    }

    .why-canada-cta p {
      font-size: 18px !important;
    }

    .why-canada-cta__buttons {
      flex-direction: column !important;
    }

    .why-canada-cta-btn-primary,
    .why-canada-cta-btn-ghost {
      width: 100% !important;
      justify-content: center !important;
    }
  }

  /* ============================================
    EXPLORE PATHWAYS PAGE STİLLERİ
    ============================================ */

  .explore-pathways-services {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 24px !important;
  }

  .explore-pathways-card:hover {
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15) !important;
  }

  .explore-pathways-legal {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 32px !important;
  }

  /* Explore Pathways Page Responsive */
  @media (max-width: 960px) {
    .explore-pathways-services,
    .explore-pathways-legal {
      grid-template-columns: 1fr !important;
    }

    .explore-pathways-montreal .grid--2 {
      grid-template-columns: 1fr !important;
    }
  }

  @media (max-width: 820px) {
    .explore-pathways-montreal {
      padding: 32px 24px !important;
    }

    .explore-pathways-montreal h3 {
      font-size: 24px !important;
    }
  }

  /* ============================================
    LANGUAGE PROGRAMS PAGE STİLLERİ
    ============================================ */

  .language-programs-key-aspects {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 24px !important;
  }

  .language-programs-structure {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 24px !important;
  }

  .language-programs-living {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 24px !important;
  }

  .language-programs-benefits {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 24px !important;
  }

  .language-programs-overview {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 32px !important;
  }

  /* Language Programs Page Responsive */
  @media (max-width: 960px) {
    .language-programs-key-aspects,
    .language-programs-structure,
    .language-programs-overview {
      grid-template-columns: 1fr !important;
    }

    .language-programs-benefits {
      grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
  }

  @media (max-width: 768px) {
    .language-programs-living {
      grid-template-columns: 1fr !important;
    }

    .language-programs-benefits {
      grid-template-columns: 1fr !important;
    }
  }

  @media (max-width: 820px) {
    .hero--language-programs h1 {
      font-size: clamp(2rem, 5vw, 2.5rem) !important;
    }

    .hero--language-programs p {
      font-size: clamp(1rem, 3vw, 1.25rem) !important;
    }
  }

  /* ============================================
    OUR SERVICES PAGE STİLLERİ
    ============================================ */

  .our-services-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 24px !important;
  }

  .our-services-card {
    transition: box-shadow 0.3s ease !important;
  }

  .our-services-card:hover {
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15) !important;
  }

  .montreal-card {
    display: flex !important;
    flex-direction: row !important;
  }

  /* Our Services Page Responsive */
  @media (max-width: 960px) {
    .our-services-grid {
      grid-template-columns: 1fr !important;
    }

    .montreal-card {
      flex-direction: column !important;
    }

    .legal-card > div:first-of-type {
      grid-template-columns: 1fr !important;
    }
  }

  @media (max-width: 820px) {
    .hero--our-services h1 {
      font-size: clamp(2rem, 5vw, 2.5rem) !important;
    }

    .hero--our-services p {
      font-size: clamp(1rem, 3vw, 1.25rem) !important;
    }

    .montreal-card {
      flex-direction: column !important;
    }

    .montreal-card > div:first-child {
      min-width: auto !important;
      padding: 32px 24px !important;
    }
  }

  /* ============================================
    QUESTIONNAIRE ERROR MESSAGE STİLLERİ
    ============================================ */

  .questionnaire-error-message {
    margin-top: 24px !important;
    padding: 16px !important;
    background: #fee2e2 !important;
    border: 2px solid #ef4444 !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    animation: shake 0.5s ease-in-out !important;
  }

  .questionnaire-error-message svg {
    flex-shrink: 0 !important;
    color: #ef4444 !important;
  }

  .questionnaire-error-message p {
    margin: 0 !important;
    color: #991b1b !important;
    font-weight: 600 !important;
    font-size: 16px !important;
  }

  @keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
  }

  /* ============================================
    QUESTIONNAIRE HERO, INTRO & FORM CONTAINER STİLLERİ
    ============================================ */

  .questionnaire-hero {
    position: relative !important;
    min-height: 80vh !important;
    min-height: 600px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
  }

  .questionnaire-intro {
    padding: 80px 0 !important;
    background: #ffffff !important;
  }

  #questionnaire-form-container {
    display: none !important;
    position: fixed !important;
    inset: 0 !important;
    background: #fff !important;
    z-index: 9999 !important;
    overflow-y: auto !important;
  }

  #questionnaire-form-container[style*="display: block"],
  #questionnaire-form-container.show {
    display: block !important;
  }
