/* --- Reset & Base --------------------------------------------------─ */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --red: #C8102E;
      --red-hover: #a70d25;
      --red-light: rgba(200, 16, 46, 0.08);
      --dark: #1D1D1B;
      --gray: #4d4d4f;
      --gray-light: #94a3b8;
      --light: #f8fafc;
      --border: #e2e8f0;
      --white: #ffffff;
      --font: 'OpenSansHebrew', Arial, sans-serif;
      --radius: 8px;
      --radius-lg: 8px;
      --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
      --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
      --shadow-lg: 0 14px 34px rgba(0, 0, 0, 0.10);
      --transition: 0.25s ease;
    }

    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    body {
      font-family: var(--font);
      color: var(--gray);
      background: var(--white);
      line-height: 1.7;
      direction: rtl;
      overflow-x: hidden;
      width: 100%;
      position: relative;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
      display: block;
    }

    ul {
      list-style: none;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px;
    }

    /* --- Buttons --------------------------------------------------───── */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 13px 28px;
      border-radius: var(--radius);
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
      border: 2px solid transparent;
      white-space: nowrap;
      font-family: var(--font);
      line-height: 1;
    }

    .btn-primary {
      background: var(--red);
      color: var(--white);
      border-color: var(--red);
      box-shadow: 0 4px 14px rgba(200, 16, 46, 0.25);
    }

    .btn-primary:hover {
      background: var(--red-hover);
      border-color: var(--red-hover);
      transform: translateY(-1px);
      box-shadow: 0 8px 20px rgba(200, 16, 46, 0.30);
    }

    .btn-outline {
      background: transparent;
      color: var(--red);
      border-color: var(--red);
    }

    .btn-outline:hover {
      background: var(--red);
      color: var(--white);
      transform: translateY(-1px);
    }

    .btn-white {
      background: var(--white);
      color: var(--red);
      border-color: var(--white);
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    }

    .btn-white:hover {
      background: transparent;
      color: var(--white);
      border-color: var(--white);
    }

    .btn-white-outline {
      background: transparent;
      color: var(--white);
      border-color: rgba(255, 255, 255, 0.7);
    }

    .btn-white-outline:hover {
      background: var(--white);
      color: var(--red);
      border-color: var(--white);
    }

    /* --- Section titles ─────────────────────────────────────────────── */
    .section-title {
      font-size: 34px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 48px;
      line-height: 1.25;
    }

    .section-title span {
      color: var(--red);
    }

    .section-header {
      text-align: center;
    }

    /* --- TOP BAR --------------------------------------------------───── */
    .top-bar {
      background: var(--white);
      color: var(--dark);
      font-size: 13px;
      padding: 10px 0;
      border-bottom: none;
      /* Seamless with header */
    }

    .top-bar .inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .top-bar .right-links,
    .top-bar .left-links {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .top-bar a {
      color: #5f6874;
      font-weight: 600;
      transition: var(--transition);
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .top-bar a:hover {
      color: var(--red);
    }

    .top-bar .phone {
      font-weight: 700;
      font-size: 14px;
      letter-spacing: 0.5px;
      color: #151513;
    }

    .top-bar .divider {
      width: 1px;
      height: 14px;
      background: #d3d9e0;
    }

    .top-bar svg {
      width: 14px;
      height: 14px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* --- HEADER / NAV -------------------------------------------------- */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: var(--white);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      /* Unified clean shadow */
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 0;
      gap: 16px;
    }

    .site-logo img {
      height: 52px;
      width: auto;
    }

    .main-nav {
      display: flex;
      gap: 2px;
      align-items: center;
      flex: 1;
      justify-content: center;
    }

    .main-nav li {
      position: relative;
    }

    .main-nav>li>a {
      display: flex;
      align-items: center;
      gap: 3px;
      padding: 8px 13px;
      font-size: 14px;
      font-weight: 600;
      color: var(--dark);
      border-radius: var(--radius);
      transition: var(--transition);
      white-space: nowrap;
    }

    .main-nav>li>a:hover {
      color: var(--red);
      background: var(--red-light);
    }

    .main-nav>li>a.active {
      color: var(--red);
    }

    .nav-caret {
      font-size: 9px;
      opacity: 0.5;
      transition: var(--transition);
      display: inline-block;
    }

    .main-nav li:hover .nav-caret {
      transform: rotate(180deg);
      opacity: 1;
    }

    .main-nav li .submenu {
      display: none;
      position: absolute;
      top: calc(100% + 6px);
      right: 0;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      min-width: 210px;
      padding: 6px 0;
      z-index: 200;
    }

    .main-nav li:hover .submenu {
      display: block;
    }

    .main-nav li.submenu-open .submenu {
      display: block;
    }

    .main-nav .submenu li a {
      display: block;
      padding: 9px 18px;
      font-size: 14px;
      color: var(--gray);
      transition: var(--transition);
    }

    .main-nav .submenu li a:hover {
      background: var(--red-light);
      color: var(--red);
      padding-right: 24px;
    }

    .nav-cta {
      background: var(--red) !important;
      color: var(--white) !important;
      padding: 9px 20px !important;
      border-radius: 50px !important;
      box-shadow: 0 3px 10px rgba(209, 35, 49, 0.3);
    }

    .nav-cta:hover {
      background: var(--red-hover) !important;
      transform: translateY(-1px) !important;
      box-shadow: 0 5px 14px rgba(209, 35, 49, 0.4) !important;
    }

    .nav-search {
      position: relative;
      display: flex;
      align-items: center;
    }

    .nav-search-toggle {
      width: 34px;
      height: 34px;
      border: 1px solid var(--border);
      border-radius: 50%;
      background: var(--white);
      color: var(--dark);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: var(--transition);
    }

    .nav-search-toggle:hover {
      color: var(--red);
      border-color: rgba(200, 16, 46, 0.35);
      background: var(--red-light);
    }

    .nav-search-toggle svg {
      width: 16px;
      height: 16px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .nav-search-form {
      position: absolute;
      top: calc(100% + 10px);
      left: 0;
      display: none;
      width: 250px;
      padding: 10px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      gap: 8px;
      z-index: 250;
    }

    .nav-search.open .nav-search-form {
      display: flex;
    }

    .nav-search-form input {
      min-width: 0;
      flex: 1;
      border: 1px solid #cbd5df;
      border-radius: var(--radius);
      padding: 9px 11px;
      font-family: var(--font);
      color: var(--dark);
      direction: rtl;
    }

    .nav-search-form button {
      border: 0;
      border-radius: var(--radius);
      background: var(--red);
      color: var(--white);
      padding: 0 12px;
      font-family: var(--font);
      font-weight: 700;
      cursor: pointer;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 6px;
      border: none;
      background: none;
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--dark);
      border-radius: 2px;
      transition: var(--transition);
    }

    /* --- HERO --------------------------------------------------──────── */
    .hero {
      position: relative;
      height: 780px;
      min-height: 780px;
      max-height: 780px;
      overflow: hidden;
      background: var(--dark);
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      background: var(--dark);
      opacity: 0;
      pointer-events: none;
      transition: opacity 1s ease-in-out;
      display: flex;
      align-items: center;
      padding-bottom: 0;
    }

    .hero-slide::before {
      content: "";
      position: absolute;
      inset: 0;
      display: block;
      background-image: var(--hero-image);
      background-size: cover;
      background-position: var(--hero-position, center center);
      transform: scale(1.015);
      transition: transform 6.5s ease-out;
    }

    .hero-slide.active {
      opacity: 1;
      pointer-events: auto;
    }

    .hero-slide.active::before {
      transform: scale(1.06);
    }

    .hero-knowledge {
      display: none;
    }

    .hero-content {
      position: relative;
      z-index: 10;
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }

    .hero-text-wrap {
      width: 100%;
      min-height: 140px;
      display: flex;
      align-items: center;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(5px);
      padding: 22px 0;
      border-top: 4px solid var(--red);
      border-right: none;
    }

    .hero-text-wrap .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px;
      text-align: right;
      display: grid;
      grid-template-columns: auto minmax(0, 1fr) auto;
      align-items: center;
      gap: 28px;
    }

    .hero-redline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      align-self: center;
      min-height: 42px;
      padding: 10px 20px;
      background: var(--red);
      color: var(--white);
      font-size: 18px;
      font-weight: 700;
      line-height: 1;
      white-space: nowrap;
      border-radius: 0;
      box-shadow: 0 6px 15px rgba(200, 16, 46, 0.18);
    }

    .hero-redline strong {
      font-weight: 800;
      color: inherit;
    }

    .hero-copy {
      min-width: 0;
    }

    .hero-content h2 {
      font-size: clamp(24px, 2.4vw, 32px);
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 6px;
      color: var(--dark);
      max-width: none;
      text-shadow: none;
      opacity: 0;
      transform: translateX(36px);
    }

    .hero-content .subtitle {
      font-size: clamp(14px, 1.15vw, 16px);
      font-weight: 400;
      color: var(--gray);
      opacity: 1;
      margin-bottom: 0;
      line-height: 1.5;
      max-width: 620px;
      text-shadow: none;
      opacity: 0;
      transform: translateX(36px);
    }

    .hero-cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: transparent;
      color: var(--dark);
      padding: 8px 0 8px 16px;
      font-size: 15px;
      font-weight: 700;
      border-radius: 0;
      transition: all 0.3s ease;
      box-shadow: none;
      opacity: 0;
      transform: translateX(36px);
    }

    .hero-cta-icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--red);
      color: var(--white);
      box-shadow: 0 7px 18px rgba(200, 16, 46, 0.24);
      transition: var(--transition);
      flex: 0 0 36px;
    }

    .hero-cta-icon svg {
      width: 18px;
      height: 18px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2.2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .hero-slide.active .hero-content h2 {
      animation: slideInRight 0.8s ease forwards;
    }

    .hero-slide.active .hero-content .subtitle {
      animation: slideInRight 1s ease 0.1s forwards;
    }

    .hero-slide.active .hero-cta-btn {
      animation: slideInRight 1.2s ease 0.2s forwards;
    }

    .hero-indicators {
      position: absolute;
      z-index: 20;
      left: 50%;
      bottom: 154px;
      display: flex;
      align-items: center;
      gap: 8px;
      transform: translateX(-50%);
    }

    .hero-indicators button {
      width: 9px;
      height: 9px;
      border: 0;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.76);
      box-shadow: 0 1px 5px rgba(29, 29, 27, 0.18);
      cursor: pointer;
      padding: 0;
      transition: var(--transition);
    }

    .hero-indicators button.active {
      width: 24px;
      border-radius: 999px;
      background: var(--red);
    }

    .hero-cta-btn:hover {
      color: var(--red);
      transform: translateY(-1px);
      box-shadow: none;
    }

    .hero-cta-btn:hover .hero-cta-icon {
      background: var(--red-hover);
      transform: translateX(-3px);
      box-shadow: 0 9px 20px rgba(200, 16, 46, 0.30);
    }

    @keyframes slideInRight {
      from {
        opacity: 0;
        transform: translateX(50px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    /* --- INTRO --------------------------------------------------────── */
    .intro {
      padding: 100px 0;
      background: #fdfdfd;
      /* Off-white to break the intensity */
      text-align: center;
    }

    .intro .inner {
      max-width: 820px;
      margin: 0 auto;
    }

    .intro-text h1 {
      font-size: 46px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 24px;
      line-height: 1.2;
    }

    .intro-text h1 span {
      color: var(--red);
    }

    .intro-text p {
      font-size: 18px;
      line-height: 1.9;
      color: var(--gray);
      margin: 0 auto 36px;
      max-width: 720px;
    }

    .intro-text .cta-group {
      display: flex;
      gap: 14px;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
    }

    .intro-stats {
      display: flex;
      gap: 32px;
      margin-top: 36px;
      padding-top: 28px;
      border-top: 1px solid var(--border);
    }

    .intro-stat strong {
      display: block;
      font-size: 28px;
      font-weight: 700;
      color: var(--red);
      line-height: 1;
      margin-bottom: 4px;
    }

    .intro-stat span {
      font-size: 13px;
      color: var(--gray-light);
    }

    .intro-visual {
      position: relative;
    }

    .intro-visual .img-wrap {
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      aspect-ratio: 4/3;
    }

    .intro-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .intro-badge {
      position: absolute;
      bottom: -20px;
      right: -16px;
      background: var(--white);
      border-radius: var(--radius);
      padding: 14px 20px;
      box-shadow: var(--shadow);
      display: flex;
      align-items: center;
      gap: 12px;
      border-right: 3px solid var(--red);
    }

    .intro-badge .badge-icon {
      width: 40px;
      height: 40px;
      background: var(--red-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .intro-badge .badge-icon svg {
      width: 20px;
      height: 20px;
      fill: var(--red);
    }

    .intro-badge strong {
      display: block;
      font-size: 15px;
      color: var(--dark);
      font-weight: 700;
    }

    .intro-badge span {
      font-size: 12px;
      color: var(--gray-light);
    }

    /* --- ACTIVITIES --------------------------------------------------─ */
    .activities {
      padding: 100px 0;
      background: var(--dark);
      position: relative;
      overflow: hidden;
    }

    .activities::before {
      content: '';
      position: absolute;
      top: 34px;
      left: 50%;
      width: min(560px, 88vw);
      height: 360px;
      transform: translateX(-50%);
      background-image: radial-gradient(circle, rgba(255, 255, 255, 0.36) 1.15px, transparent 1.7px);
      background-size: 22px 22px;
      opacity: 0.62;
      pointer-events: none;
      mask-image: radial-gradient(ellipse at center, #000 0%, #000 38%, transparent 78%);
    }

    .activities .container {
      position: relative;
      z-index: 1;
    }

    .activities h2 {
      text-align: center;
      font-size: 42px;
      font-weight: 800;
      margin-bottom: 60px;
      color: var(--white);
    }

    .activities h2 span {
      color: var(--red);
    }

    .activities-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .activity-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--radius-lg);
      padding: 40px 30px;
      text-align: center;
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      text-decoration: none;
      color: var(--white);
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(8px);
    }

    .activity-card:hover {
      background: rgba(255, 255, 255, 0.07);
      transform: translateY(-4px);
      box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
      border-color: var(--red);
    }

    .act-circle {
      width: 100px;
      height: 100px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 25px;
      transition: all 0.4s ease;
      position: relative;
    }

    .activity-card:hover .act-circle {
      background: var(--red);
      transform: scale(1.1);
    }

    .act-icon {
      width: 50px;
      height: 50px;
      position: relative;
    }

    .act-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      position: absolute;
      inset: 0;
      transition: opacity 0.4s ease, transform 0.4s ease;
      filter: brightness(0) invert(1);
      /* Icons white by default */
    }

    .act-icon .icon-on {
      opacity: 0;
      transform: scale(0.8);
    }

    .activity-card:hover .icon-off {
      opacity: 0;
    }

    .activity-card:hover .icon-on {
      opacity: 1;
      transform: scale(1);
    }

    .activity-card h3 {
      font-size: 19px;
      font-weight: 700;
      color: var(--white);
      line-height: 1.3;
      transition: var(--transition);
      margin: 0;
    }

    .activity-card:hover h3 {
      color: var(--red);
    }

    /* Fixed: Plus icon in highlight card becomes white on red hover */
    .plus-icon-svg {
      fill: var(--red);
      transition: var(--transition);
    }

    .activity-card:hover .plus-icon-svg {
      fill: var(--white) !important;
    }

    .activity-description {
      margin-top: 12px;
      font-size: 14px;
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.6;
    }

    .activity-card.highlight-card {
      border-style: dashed;
      background: rgba(209, 35, 49, 0.05);
    }

    .activity-card:not(.highlight-card):hover {
      background: var(--white);
      color: var(--dark);
      border-color: var(--white);
      box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
    }

    .activity-card:not(.highlight-card):hover h3 {
      color: var(--dark);
    }

    .activity-card:not(.highlight-card):hover .activity-description {
      color: var(--gray);
    }

    @media (max-width: 1024px) {
      .activities-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .activities-grid {
        grid-template-columns: 1fr;
      }
    }

    /* --- RESEARCH METHODS ───────────────────────────────────────────── */
    .methods {
      padding: 88px 0;
      background: var(--light);
      color: var(--dark);
    }

    .methods h2 {
      color: var(--dark);
      text-align: center;
      margin-bottom: 50px;
    }

    .methods-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      margin-top: 0;
    }

    .method-card {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      height: 210px;
      cursor: pointer;
      display: block;
      border: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
    }

    .method-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .method-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(10, 18, 40, 0.85) 0%, rgba(10, 18, 40, 0.15) 60%, transparent 100%);
      z-index: 1;
      transition: var(--transition);
    }

    .method-card:hover::before {
      background: linear-gradient(to top, rgba(29, 29, 27, 0.58) 0%, rgba(77, 77, 79, 0.24) 58%, rgba(255, 255, 255, 0.04) 100%);
    }

    .method-card:hover img {
      transform: scale(1.08);
    }

    .method-label {
      position: absolute;
      bottom: 0;
      right: 0;
      left: 0;
      z-index: 2;
      color: var(--white);
      font-size: 15px;
      font-weight: 700;
      text-align: center;
      padding: 14px 12px;
      letter-spacing: 0.2px;
    }

    .method-card:hover .method-label {
      text-decoration: underline;
    }

    /* --- INFO BANNER --------------------------------------------------─ */
    .info-banner {
      padding: 180px 0;
      min-height: 480px;
      background-image: url('https://www.geokg.com/wp-content/uploads/2018/03/bg_info2.webp');
      background-color: #1a2540;
      background-size: cover;
      background-position: center;
      text-align: center;
      position: relative;
      display: flex;
      align-items: center;
    }

    .info-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(10, 18, 40, 0.55);
    }

    .info-banner .container {
      position: relative;
      z-index: 1;
      width: 100%;
    }

    .info-banner h2 {
      font-size: 42px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 36px;
      line-height: 1.4;
      text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    }

    @media (max-width: 768px) {
      .info-banner {
        padding: 80px 0;
        min-height: 0;
      }

      .info-banner h2 {
        font-size: 28px;
        margin-bottom: 24px;
      }
    }

    /* --- POSTS --------------------------------------------------────── */
    .posts-section {
      padding: 88px 0;
      background: var(--light);
    }

    .posts-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 0;
    }

    .post-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      display: flex;
      flex-direction: column;
    }

    .post-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow);
    }

    .post-thumb {
      height: 200px;
      overflow: hidden;
      position: relative;
      background: #f1f5f9;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .post-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .post-card:hover .post-thumb img {
      transform: scale(1.05);
    }

    .post-cat {
      position: absolute;
      top: 12px;
      right: 12px;
      background: var(--red);
      color: var(--white);
      font-size: 11px;
      font-weight: 700;
      padding: 4px 11px;
      border-radius: 50px;
      letter-spacing: 0.3px;
    }

    .post-body {
      padding: 24px;
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .post-date {
      font-size: 12px;
      color: var(--gray-light);
    }

    .post-card h3 {
      font-size: 16px;
      font-weight: 700;
      color: var(--dark);
      line-height: 1.55;
    }

    .post-card p {
      font-size: 14px;
      color: var(--gray);
      line-height: 1.75;
      flex: 1;
    }

    .post-link {
      font-size: 14px;
      font-weight: 600;
      color: var(--red);
      display: flex;
      align-items: center;
      gap: 6px;
      margin-top: 12px;
      transition: var(--transition);
    }

    .post-link:hover {
      gap: 10px;
    }

    .post-link-arrow {
      font-size: 16px;
      transition: var(--transition);
    }

    /* --- CONTACT --------------------------------------------------──── */
    .contact-section {
      padding: 88px 0;
      background: var(--white);
    }

    .contact-inner {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 64px;
      align-items: start;
    }

    .contact-info h2 {
      font-size: 34px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 14px;
    }

    .contact-info>p {
      font-size: 16px;
      line-height: 1.85;
      color: var(--gray);
      margin-bottom: 32px;
    }

    .contact-details {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .contact-detail {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 14px 0;
      border-bottom: 1px solid var(--border);
      font-size: 15px;
      color: var(--dark);
    }

    .contact-detail:last-child {
      border-bottom: none;
    }

    .detail-icon {
      width: 40px;
      height: 40px;
      background: var(--red-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .detail-icon svg {
      width: 18px;
      height: 18px;
      fill: none;
      stroke: var(--red);
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .contact-detail a {
      color: var(--dark);
      text-decoration: none;
    }

    .contact-detail a:hover {
      color: var(--red);
    }

    /* Form */
    .contact-form-wrap {
      background: #f3f6f9;
      border: 1px solid #d8dee6;
      border-radius: var(--radius-lg);
      padding: 36px;
      box-shadow: 0 10px 28px rgba(29, 29, 27, 0.06);
    }

    .contact-form-wrap label {
      color: var(--dark);
      font-weight: 600;
      margin-bottom: 8px;
      display: block;
    }

    .contact-form-wrap input,
    .contact-form-wrap textarea {
      background: #ffffff;
      border: 1.5px solid #cbd5df;
      border-radius: var(--radius);
      color: var(--dark);
      padding: 12px 16px;
      transition: var(--transition);
      width: 100%;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 7px;
      margin-bottom: 16px;
    }

    .form-group label {
      font-size: 13px;
      font-weight: 700;
      color: #2b2b29;
      letter-spacing: 0.2px;
    }

    .form-group input,
    .form-group textarea {
      padding: 13px 16px;
      border: 1.5px solid #c7d0dc;
      border-radius: var(--radius);
      font-family: var(--font);
      font-size: 15px;
      color: var(--dark);
      background: #ffffff;
      transition: var(--transition);
      width: 100%;
      direction: rtl;
      box-shadow: inset 0 1px 0 rgba(29, 29, 27, 0.03);
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: #65717f;
      opacity: 1;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--red);
      box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.12);
      background: var(--white);
    }

    .form-group textarea {
      height: 130px;
      resize: vertical;
    }

    .form-submit {
      text-align: right;
      margin-top: 4px;
    }

    .bee1-hp {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
      opacity: 0;
      pointer-events: none;
    }

    .bee1-hp {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
      opacity: 0;
      pointer-events: none;
    }

    #formMsg {
      margin-top: 12px;
      font-size: 14px;
      font-weight: 600;
      display: none;
      padding: 10px 14px;
      border-radius: var(--radius);
      background: #f0fdf4;
      color: #16a34a;
      border: 1px solid #bbf7d0;
    }

    /* --- FOOTER --------------------------------------------------───── */
    .site-footer {
      background: #131c2e;
      color: rgba(255, 255, 255, 0.65);
      padding: 64px 0 0;
    }

    .footer-inner {
      display: grid;
      grid-template-columns: 2.2fr 1fr 1fr 1fr;
      gap: 40px;
      padding-bottom: 48px;
    }

    .footer-brand .footer-logo {
      height: 46px;
      margin-bottom: 20px;
      filter: brightness(0) invert(1);
      opacity: 0.9;
    }

    .footer-brand p {
      font-size: 14px;
      line-height: 1.85;
      max-width: 300px;
    }

    .footer-social {
      display: flex;
      gap: 10px;
      margin-top: 24px;
    }

    .footer-social a {
      width: 38px;
      height: 38px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.65);
      transition: var(--transition);
    }

    .footer-social a:hover {
      background: var(--red);
      border-color: var(--red);
      color: var(--white);
      transform: translateY(-2px);
    }

    .footer-social svg {
      width: 16px;
      height: 16px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .footer-col h4 {
      font-size: 13px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 18px;
      letter-spacing: 0.8px;
      text-transform: uppercase;
    }

    .footer-col ul li {
      margin-bottom: 9px;
    }

    .footer-col ul li a {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.6);
      transition: var(--transition);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .footer-col ul li a::before {
      content: '';
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: var(--red);
      flex-shrink: 0;
      opacity: 0;
      transition: var(--transition);
    }

    .footer-col ul li a:hover {
      color: #fbc109;
      padding-right: 4px;
    }

    .footer-col ul li a:hover::before {
      opacity: 1;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding: 20px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 13px;
    }

    .footer-bottom a {
      color: rgba(255, 255, 255, 0.4);
      transition: var(--transition);
    }

    .footer-bottom a:hover {
      color: #fbc109;
    }

    /* --- STICKY SIDE FORM ────────────────────────────────────────────── */
    .sticky-tab {
      position: fixed;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      z-index: 500;
      writing-mode: vertical-rl;
      background: var(--red);
      color: var(--white);
      font-size: 13px;
      font-weight: 700;
      padding: 20px 10px;
      cursor: pointer;
      border-radius: 0 8px 8px 0;
      border: none;
      letter-spacing: 1.5px;
      transition: var(--transition);
      font-family: var(--font);
    }

    .sticky-tab:hover {
      background: var(--red-hover);
    }

    .sticky-panel {
      position: fixed;
      left: -340px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 499;
      background: var(--white);
      box-shadow: 4px 0 32px rgba(0, 0, 0, 0.18);
      width: 300px;
      padding: 28px 24px;
      max-height: 90vh;
      overflow-y: auto;
      transition: left 0.3s ease;
      border-radius: 0 12px 12px 0;
    }

    .sticky-panel.open {
      left: 0;
    }

    .sticky-panel.open+.sticky-tab,
    body:has(.sticky-panel.open) .sticky-tab {
      left: 300px;
    }

    .sticky-panel h3 {
      font-size: 18px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 4px;
    }

    .sticky-panel p {
      font-size: 13px;
      color: var(--gray-light);
      margin-bottom: 20px;
    }

    .sticky-close {
      position: absolute;
      top: 12px;
      left: 12px;
      background: none;
      border: none;
      font-size: 22px;
      cursor: pointer;
      color: var(--gray-light);
      line-height: 1;
      transition: var(--transition);
    }

    .sticky-close:hover {
      color: var(--red);
      transform: rotate(90deg);
    }

    .sticky-panel .form-group {
      margin-bottom: 12px;
    }

    .sticky-panel .form-group input {
      padding: 11px 14px;
      font-size: 14px;
      border: 1.5px solid var(--border);
      border-radius: var(--radius);
      width: 100%;
      direction: rtl;
      font-family: var(--font);
      background: var(--light);
      color: var(--dark);
      transition: var(--transition);
    }

    .sticky-panel .form-group input:focus {
      outline: none;
      border-color: var(--red);
      background: var(--white);
    }

    /* --- BACK TO TOP --------------------------------------------------─ */
    .back-to-top {
      position: fixed;
      bottom: 28px;
      left: 28px;
      width: 46px;
      height: 46px;
      background: var(--red);
      color: var(--white);
      border: none;
      border-radius: 50%;
      font-size: 18px;
      cursor: pointer;
      box-shadow: 0 4px 16px rgba(209, 35, 49, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: var(--transition);
      z-index: 200;
    }

    .back-to-top.visible {
      opacity: 1;
      pointer-events: all;
    }

    .back-to-top:hover {
      background: var(--red-hover);
      transform: translateY(-3px);
    }

    /* --- RESPONSIVE --------------------------------------------------── */
    @media (max-width: 1024px) {
      .activity-card {
        flex: 0 0 calc(33.333% - 14px);
      }

      .methods-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .footer-inner {
        grid-template-columns: 1fr 1fr;
      }

      .intro .inner {
        gap: 40px;
      }
    }

    @media (max-width: 768px) {
      .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: var(--white);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        padding: 16px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        z-index: 200;
      }

      .main-nav.open {
        display: flex;
      }

      .main-nav>li>a {
        border-radius: var(--radius);
      }

      .main-nav li .submenu {
        position: static;
        box-shadow: none;
        border: none;
        padding: 0 0 0 12px;
      }

      .main-nav li:hover .submenu {
        display: none;
      }

      .main-nav li.submenu-open .submenu {
        display: block;
      }

      .nav-search {
        justify-content: flex-start;
        padding: 8px 13px;
      }

      .nav-search-form {
        position: static;
        width: 100%;
        margin-top: 8px;
        box-shadow: none;
      }

      .hamburger {
        display: flex;
      }

      .nav-inner {
        position: relative;
        padding: 6px 0;
        gap: 8px;
      }

      .site-logo img {
        height: 42px;
      }

      .hero {
        height: 520px;
        min-height: 520px;
        max-height: none;
        overflow: hidden;
      }

      .hero-content {
        padding: 0;
        max-width: 100%;
        justify-content: flex-end;
      }

      .hero-text-wrap {
        min-height: 0;
        padding: 16px 0;
        background: rgba(255, 255, 255, 0.96);
      }

      .hero-text-wrap .container {
        padding: 0 16px;
        grid-template-columns: 1fr;
        gap: 8px;
        text-align: center;
      }

      .hero-copy {
        width: 100%;
      }

      .hero-cta-btn {
        justify-content: center;
        padding-left: 0;
        margin: 0 auto;
      }

      .hero-indicators {
        bottom: 156px;
      }

      .hero-content h2 {
        font-size: 24px;
      }

      .hero-content .subtitle {
        font-size: 14px;
        line-height: 1.55;
      }

      .hero-redline {
        font-size: 18px;
        white-space: normal;
        overflow: hidden;
      }

      .intro .inner {
        grid-template-columns: 1fr;
      }

      .intro-visual {
        display: none;
      }

      .activity-card {
        flex: 0 0 calc(50% - 10px);
      }

      .methods-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
      }

      .posts-grid {
        grid-template-columns: 1fr;
      }

      .contact-inner {
        grid-template-columns: 1fr;
      }

      .footer-inner {
        grid-template-columns: 1fr;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .section-title {
        font-size: 26px;
      }

      .intro-text h1 {
        font-size: 30px;
      }

      .contact-form-wrap {
        padding: 24px 20px;
      }
    }

    @media (max-width: 480px) {
      .top-bar {
        font-size: 12px;
      }

      .top-bar .inner {
        flex-direction: column;
        gap: 6px;
        text-align: center;
      }

      .top-bar .right-links,
      .top-bar .left-links {
        justify-content: center;
        gap: 15px;
      }

      .activity-card {
        flex: 0 0 calc(100% - 0px);
      }

      .methods-grid {
        grid-template-columns: 1fr;
      }

      .hero-content .cta-group {
        flex-direction: column;
      }

      .intro-stats {
        flex-direction: column;
        gap: 16px;
      }

      .top-bar .right-links .divider,
      .top-bar .right-links a:not(.phone) {
        display: none;
      }
    }
