

/* Self-hosted fonts (Inter + Rubik for multi-language support) */

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

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

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

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

/* Rubik font (Hebrew / RTL languages) */
@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/Rubik-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/Rubik-Medium.woff2') format('woff2');
}

@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/Rubik-SemiBold.woff2') format('woff2');
}

@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/Rubik-Bold.woff2') format('woff2');
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Rubik', 'Noto Sans Hebrew', Arial, sans-serif;
  line-height: 1.7;
  color: #1a1a1a;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

:root {
--primary-color: #B51C2E;
  --secondary-color: #2E5B8A;
  --text-color: #4a4a4a;
  --light-text: #ffffff;
  --bg-white: #FFFFFF;
  --bg-light: #FFFFFF;
  --shadow: 0 4px 12px rgba(0,0,0,0.1);
  --nav-color: #1a1a1a;
  --nav-hover-color: #B51C2E;
  --accent-color: #E8433A;
  --background-color: #FFFFFF;
  --surface-color: #FAF0F1;
  --text-secondary-color: #656565;
  --bg-dark: #1a1a1a;
  --text-dark: #4a4a4a;
  --text-light: #ffffff;
  --text-muted: #656565;
  --border-light: #898b8d;
  --border-dark: #6a7484;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

h1 {
  font-size: 48px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  margin-bottom: 1rem !important;
  margin-top: 0.5rem !important;
  color: #1a1a1a;
}

h2 {
  font-size: 32px !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  margin-bottom: 1rem !important;
  margin-top: 0.5rem !important;
  color: #1a1a1a;
}

h3 {
  font-size: 22px !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
  margin-bottom: 1rem !important;
  margin-top: 0.5rem !important;
  color: #1a1a1a;
}

p {
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1.7 !important;
  margin-bottom: 1rem !important;
  color: #1a1a1a;
}

small, .small-text {
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
}

section {
  padding-top: 20px;
  padding-bottom: 20px;
}

.navbar {
  background: var(--bg-white);
  padding: 15px 0;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
  position: relative;
  max-width: 1440px;
  width: 100%;
  padding-left: 60px;
  padding-right: 60px;
}

.nav-brand {
  margin-right: 0;
  margin-left: 0;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.logo-link:focus,
.logo-link:active {
  outline: none !important;
  box-shadow: none !important;
}

.logo {
  min-height: 30px;
  height: auto;
  width: auto;
  max-width: 100px;
  max-height: 40px;
  object-fit: contain;
  display: block;
  background: transparent;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.8;
}

.brand-title,
.nav-brand h1,
.nav-brand .brand-name,
.nav-brand span:not(.mobile-toggle span) {
  display: none !important;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin-right: 0;
  margin-left: auto;
}

.nav-menu li {
  list-style: none;
}

.nav-menu a {
  text-decoration: none;
  color: var(--nav-color);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--nav-hover-color);
}

.nav-cta-container {
  display: flex;
  align-items: center;
}

.nav-cta-item {
  list-style: none;
}

.nav-cta-btn {
  background: var(--primary-color);
  color: var(--light-text);
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
}

.nav-cta-btn:hover {
  background: #B51C2E;
  border-color: #B51C2E;
}

.mobile-toggle,
.phone-header-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  flex-shrink: 0;
}

.mobile-toggle svg,
.phone-header-btn svg {
  color: var(--nav-color);
  transition: color 0.3s ease;
}

.mobile-toggle:focus,
.mobile-toggle:active,
.phone-header-btn:focus,
.phone-header-btn:active {
  outline: none;
  border: none;
  box-shadow: none;
}

.mobile-toggle:hover svg,
.phone-header-btn:hover svg {
  color: var(--nav-hover-color);
}

.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px 40px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
}

.hero h1,
.hero h3 {
  color: var(--light-text);
}

.hero h1 {
  margin-bottom: 1.5rem !important;
}

.hero h3 {
  margin-bottom: 2rem !important;
}

.btn-hero {
  display: inline-block;
  background: var(--primary-color);
  color: var(--light-text);
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
}

.btn-hero:hover {
  background: #B51C2E;
  border-color: #B51C2E;
  transform: translateY(-2px);
}

.btn-primary {
  display: inline-block;
  background: var(--primary-color);
  color: var(--light-text);
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
}

.btn-primary:hover {
  background: #B51C2E;
  border-color: #B51C2E;
}

.btn-secondary {
  display: inline-block;
  background: var(--secondary-color);
  color: var(--primary-color);
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--light-text);
  border-color: var(--primary-color);
}

.intro-section {
  background: var(--bg-white);
  padding: 30px 40px;
}

.intro-content {
  max-width: 800px;
  margin: 0 auto;
}

.intro-content h2 {
  text-align: center;
  margin-bottom: 2rem !important;
}

.services-preview {
  background: var(--bg-light);
  padding: 30px 40px;
}

.services-preview h2 {
  text-align: center;
  margin-bottom: 2rem !important;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.service-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.service-card h3 {
  margin-bottom: 1rem !important;
}

.cta-center {
  text-align: center;
  margin-top: 2rem;
}

.why-us {
  background: var(--bg-white);
  padding: 30px 40px;
}

.why-us h2 {
  text-align: center;
  margin-bottom: 2rem !important;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 2rem;
}

.benefit-item {
  text-align: center;
  padding: 24px;
}

.benefit-icon {
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.benefit-item h3 {
  margin-bottom: 1rem !important;
}

.approach-section {
  background: var(--bg-light);
  padding: 30px 40px;
}

.approach-content {
  max-width: 800px;
  margin: 0 auto;
}

.approach-content h2 {
  text-align: center;
  margin-bottom: 2rem !important;
}

.cta-section {
  background: var(--primary-color);
  padding: 30px 40px;
  text-align: center;
}

.cta-content h2,
.cta-content p {
  color: var(--light-text);
}

.cta-content h2 {
  margin-bottom: 1rem !important;
}

.cta-content p {
  margin-bottom: 2rem !important;
}

.page-header {
  background: var(--bg-light);
  padding: 30px 40px;
  text-align: center;
}

.page-header h1 {
  margin-bottom: 1rem !important;
}

.services-intro {
  background: var(--bg-white);
  padding: 30px 40px;
}

.services-intro-content {
  max-width: 800px;
  margin: 0 auto;
}

.services-detailed {
  background: var(--bg-white);
  padding: 30px 40px;
}

.service-detailed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  align-items: center;
}

.service-detailed.reverse {
  direction: ltr;
}

.service-detailed.reverse .service-detailed-content {
  direction: rtl;
}

.service-detailed-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
}

.service-detailed-content h2 {
  margin-bottom: 1.5rem !important;
}

.process-section {
  background: var(--bg-light);
  padding: 30px 40px;
}

.process-section h2 {
  text-align: center;
  margin-bottom: 2rem !important;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 2rem;
}

.process-step {
  text-align: center;
  padding: 24px;
  background: var(--bg-white);
  border-radius: 12px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: var(--light-text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.process-step h3 {
  margin-bottom: 1rem !important;
}

.story-section {
  background: var(--bg-white);
  padding: 30px 40px;
}

.story-content {
  max-width: 800px;
  margin: 0 auto;
}

.philosophy-section {
  background: var(--bg-light);
  padding: 30px 40px;
}

.philosophy-section h2 {
  text-align: center;
  margin-bottom: 2rem !important;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 2rem;
}

.philosophy-item {
  background: var(--bg-white);
  padding: 24px;
  border-radius: 12px;
}

.philosophy-item h3 {
  margin-bottom: 1rem !important;
}

.approach-section {
  background: var(--bg-white);
  padding: 30px 40px;
}

.approach-content h2 {
  text-align: center;
  margin-bottom: 2rem !important;
}

.approach-principle {
  margin-bottom: 2rem;
  padding: 24px;
  background: var(--bg-light);
  border-radius: 12px;
}

.approach-principle h3 {
  margin-bottom: 1rem !important;
}

.values-section {
  background: var(--bg-light);
  padding: 30px 40px;
}

.values-section h2 {
  text-align: center;
  margin-bottom: 2rem !important;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 2rem;
}

.value-item {
  text-align: center;
  padding: 24px;
  background: var(--bg-white);
  border-radius: 12px;
}

.value-icon {
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.value-item h3 {
  margin-bottom: 1rem !important;
}

.difference-section {
  background: var(--bg-white);
  padding: 30px 40px;
}

.difference-content {
  max-width: 800px;
  margin: 0 auto;
}

.difference-content h2 {
  text-align: center;
  margin-bottom: 2rem !important;
}

.contact-section {
  background: var(--bg-white);
  padding: 30px 40px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
}

.contact-info h2,
.contact-form-container h2 {
  margin-bottom: 1.5rem !important;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--light-text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-details h3 {
  margin-bottom: 0.5rem !important;
}

.contact-details a {
  color: var(--primary-color);
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

.contact-form-container {
  background: var(--bg-light);
  padding: 24px;
  border-radius: 12px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-family: inherit;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group textarea {
  resize: vertical;
}

.contact-form button {
  margin-top: 1rem;
}

.faq-section {
  background: var(--bg-light);
  padding: 30px 40px;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 2rem !important;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 2rem;
}

.faq-item {
  background: var(--bg-white);
  padding: 24px;
  border-radius: 12px;
}

.faq-item h3 {
  margin-bottom: 1rem !important;
}

.whatsapp-float {
  display: none;
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  h1 {
    font-size: 28px !important;
    margin-bottom: 1rem !important;
    margin-top: 0.5rem !important;
  }

  h2 {
    font-size: 22px !important;
    margin-bottom: 1rem !important;
    margin-top: 0.5rem !important;
  }

  h3 {
    font-size: 18px !important;
    margin-bottom: 1rem !important;
    margin-top: 0.5rem !important;
  }

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

  section {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .hero,
  .intro-section,
  .services-preview,
  .why-us,
  .approach-section,
  .cta-section,
  .page-header,
  .services-intro,
  .services-detailed,
  .process-section,
  .story-section,
  .philosophy-section,
  .values-section,
  .difference-section,
  .contact-section,
  .faq-section {
    padding: 30px 20px;
  }

  .nav-container {
    padding-left: 60px;
    padding-right: 60px;
  }

  .mobile-toggle,
  .phone-header-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: 0;
    width: 50%;
    height: 75%;
    max-width: 50%;
    background: var(--bg-white);
    flex-direction: column;
    padding: 80px 20px 20px;
    gap: 1rem;
    box-shadow: var(--shadow);
    z-index: 999;
    overflow-y: auto;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-cta-container {
    display: none;
  }

  .nav-brand {
    margin: 0 auto;
    justify-content: center;
  }

  .logo {
    min-height: 30px;
    max-width: 100px;
    max-height: 40px;
  }

  html[dir="rtl"] .nav-menu,
  html[lang="he"] .nav-menu,
  html[lang="ar"] .nav-menu {
    right: 0;
    left: auto;
  }

  html[dir="ltr"] .nav-menu,
  html[lang="en"] .nav-menu,
  html[lang="es"] .nav-menu,
  html[lang="fr"] .nav-menu {
    left: 0;
    right: auto;
  }

  html[dir="rtl"] .mobile-toggle,
  html[lang="he"] .mobile-toggle,
  html[lang="ar"] .mobile-toggle {
    right: 15px;
    left: auto;
  }

  html[dir="rtl"] .phone-header-btn,
  html[lang="he"] .phone-header-btn,
  html[lang="ar"] .phone-header-btn {
    left: 15px;
    right: auto;
  }

  html[dir="ltr"] .mobile-toggle,
  html[lang="en"] .mobile-toggle,
  html[lang="es"] .mobile-toggle,
  html[lang="fr"] .mobile-toggle {
    left: 15px;
    right: auto;
  }

  html[dir="ltr"] .phone-header-btn,
  html[lang="en"] .phone-header-btn,
  html[lang="es"] .phone-header-btn,
  html[lang="fr"] .phone-header-btn {
    right: 15px;
    left: auto;
  }

  .whatsapp-float {
    display: flex;
    position: fixed;
    bottom: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    background: #E8433A;
    color: white;
    text-decoration: none;
  }

  html[lang="he"] .whatsapp-float,
  html[lang="ar"] .whatsapp-float,
  html[dir="rtl"] .whatsapp-float {
    right: 20px;
    left: auto;
  }

  html[lang="en"] .whatsapp-float,
  html[lang="es"] .whatsapp-float,
  html[lang="fr"] .whatsapp-float,
  html[dir="ltr"] .whatsapp-float {
    left: 20px;
    right: auto;
  }

  .hero {
    min-height: 400px;
  }

  .services-grid,
  .benefits-grid,
  .philosophy-grid,
  .values-grid,
  .process-steps,
  .faq-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
  }

  .service-detailed {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-detailed.reverse {
    direction: rtl;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 1024px) {
  h1 { font-size: 36px !important; }
  h2 { font-size: 28px !important; }
  h3 { font-size: 20px !important; }
  p { font-size: 15px !important; }
}
/* CRITICAL: Ensure images are visible immediately (but don't interfere with accessibility toolbar) */
img, picture, figure {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Legal Pages Content Styles */
.legal-page-content {
  padding: 120px 0 60px;
  min-height: 60vh;
  color: inherit;
}

.legal-page-content .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.legal-page-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: inherit;
}

.legal-page-content .last-updated {
  color: #666;
  margin-bottom: 2rem;
  font-style: italic;
}

.legal-page-content h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: inherit;
}

.legal-page-content p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.legal-page-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

[dir="rtl"] .legal-page-content ul {
  padding-left: 0;
  padding-right: 1.5rem;
}

.legal-page-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.legal-page-content .contact-box,
.legal-page-content .contact-info {
  background: rgba(0, 0, 0, 0.03);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.legal-page-content .contact-box a,
.legal-page-content .contact-info a {
  color: inherit;
  text-decoration: underline;
}

.legal-page-content .contact-box a:hover,
.legal-page-content .contact-info a:hover {
  opacity: 0.8;
}

.legal-page-content .important-notice,
.legal-page-content .legal-reference {
  background: rgba(0, 0, 0, 0.03);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  border-left: 4px solid currentColor;
}

[dir="rtl"] .legal-page-content .important-notice,
[dir="rtl"] .legal-page-content .legal-reference {
  border-left: none;
  border-right: 4px solid currentColor;
}


/* Legal Footer Styles */

    /* Legal Footer Styles - Header Colors */
    .legal-footer {
      background-color: #FFFFFF;
      color: #1a1a1a;
      padding: 20px 0;
      font-size: 16px;
      border-top: 3px solid #1a202c;
    }

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

    .legal-footer .footer-main {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
    }

    .legal-footer .all-rights-reserved {
      flex: 1;
      min-width: 200px;
    }

    .legal-footer .all-rights-reserved p {
      margin: 0 !important;
      margin-bottom: 0 !important;
    }

    .legal-footer .zappy-attribution {
      text-align: center;
      width: 100%;
      padding-top: 15px;
      border-top: 1px solid #1a1a1a;
    }

    .legal-footer .zappy-attribution p {
      margin: 0;
      font-size: 16px;
      color: #1a1a1a;
      font-style: italic;
    }
    
    .legal-footer .zappy-attribution a {
      color: #1a1a1a;
      text-decoration: underline;
    }

    .legal-footer .footer-social {
      display: flex;
      align-items: center;
      gap: 15px;
      flex-wrap: wrap;
      justify-content: center;
      flex-shrink: 0;
    }

    .legal-footer .footer-social a {
      color: #1a1a1a !important;
      text-decoration: none;
      font-size: 22px;
      transition: color 0.3s ease, transform 0.2s ease, opacity 0.3s ease;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 20px;
      height: 40px;
      border-radius: 50%;
      background-color: transparent !important;
      opacity: 0.8;
    }

    .legal-footer .footer-social a:hover {
      color: #1a202c !important;
      transform: scale(1.15);
      opacity: 1;
    }

    .legal-footer .footer-social a:focus {
      outline: 2px solid #1a202c;
      outline-offset: 2px;
      border-radius: 50%;
    }
    
    .legal-footer .footer-social i {
      font-size: 20px;
    }

    .legal-footer .footer-legal {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
      justify-content: flex-end;
    }

    .legal-footer .footer-legal a {
      color: #1a1a1a !important;
      text-decoration: none;
      transition: color 0.3s ease, opacity 0.3s ease;
      font-weight: 500;
      opacity: 0.9;
    }

    .legal-footer .footer-legal a:hover {
      color: #1a1a1a !important;
      opacity: 1;
      text-decoration: underline;
    }

    .legal-footer .footer-legal a:focus {
      outline: 2px solid #1a1a1a;
      outline-offset: 2px;
      border-radius: 2px;
    }

    .legal-footer .separator {
      color: #1a1a1a !important;
      font-weight: 300;
      opacity: 0.7;
    }

    /* Responsive Design */
    @media (max-width: 968px) {
      .legal-footer .footer-main {
        flex-direction: column;
        text-align: center;
        gap: 0;
      }

      .legal-footer .footer-social {
        justify-content: center;
        order: 1;
        margin-bottom: 20px;
      }

      .legal-footer .all-rights-reserved {
        width: 100%;
        text-align: center;
        order: 2;
        margin-bottom: 5px;
      }

      .legal-footer .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        order: 3;
      }
    }

    @media (min-width: 969px) {
      .legal-footer .footer-main {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: baseline;
        gap: 30px;
        margin-bottom: 10px;
      }

      .legal-footer .all-rights-reserved {
        text-align: left;
        justify-self: start;
        margin-bottom: 0;
      }

      .legal-footer .footer-social {
        justify-self: center;
        margin-bottom: 0;
      }

      .legal-footer .footer-legal {
        justify-self: end;
        text-align: right;
      }
    }

    /* RTL adjustments - only for desktop */
    @media (min-width: 969px) {
      [dir="rtl"] .legal-footer .all-rights-reserved {
        text-align: right;
        justify-self: end;
      }

      [dir="rtl"] .legal-footer .footer-legal {
        justify-self: start;
        text-align: left;
      }
    }
    
    /* RTL mobile - keep centered */
    @media (max-width: 968px) {
      [dir="rtl"] .legal-footer .all-rights-reserved {
        text-align: center;
      }

      [dir="rtl"] .legal-footer .footer-legal {
        text-align: center;
      }
    }

    /* RTL Support for Hebrew */
    [dir="rtl"] .legal-footer .footer-main {
      direction: rtl;
    }

    [dir="rtl"] .legal-footer .footer-legal {
      direction: rtl;
    }.cc-btn.cc--btn-primary {
  background-color: var(--cc-btn-primary-bg) !important;
  border-color: var(--cc-btn-primary-border) !important;
}

.cc-btn.cc--btn-primary:hover {
  background-color: var(--cc-btn-primary-hover-bg) !important;
}

/* Responsive adjustments *//* Cookie preferences button in footer *//* Accessibility Styles */

/* Basic Accessibility Enhancements */
:root {
  --accessibility-focus: #f2f2f2;
}

/* Skip link styles */
.skip-link:focus {
  position: absolute !important;
  top: 6px !important;
  left: 6px !important;
  background: #000 !important;
  color: white !important;
  padding: 8px !important;
  text-decoration: none !important;
  z-index: 10000 !important;
  border-radius: 4px !important; transform: none; }

/* Enhanced focus indicators */
*:focus {
  outline: 2px solid var(--accessibility-focus) !important;
  outline-offset: 2px !important;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  * {
    border-color: currentColor !important;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Screen reader only content */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}


/* Custom Accessibility Toolbar Styling - Zappy Style */

/* Main button icon - ONLY target the floating button, not menu elements */
#mic-access-tool-general-button {
  background-color: transparent !important;
  background: transparent !important;
  border: none !important;
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  min-height: 32px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  line-height: 0 !important;
  position: relative !important;
  overflow: hidden !important;
}

/* AGGRESSIVELY hide all text in the button */
#mic-access-tool-general-button,
#mic-access-tool-general-button *:not(svg):not(path):not(circle):not(rect):not(polygon):not(ellipse):not(line):not(polyline):not(g) {
  font-size: 0 !important;
  color: transparent !important;
  text-indent: -9999px !important;
  line-height: 0 !important;
  letter-spacing: -999em !important;
  white-space: nowrap !important;
}

/* Hide text nodes specifically */

/* Hover state - keep text hidden */
#mic-access-tool-general-button:hover {
  background-color: rgba(242, 242, 242, 0.1) !important;
  background: rgba(242, 242, 242, 0.1) !important;
  box-shadow: 0 2px 8px rgba(242, 242, 242, 0.2) !important;
  font-size: 0 !important;
  color: transparent !important;
  text-indent: -9999px !important;
}

/* Target the SVG and make it the selected color */
#mic-access-tool-general-button svg {
  width: 18px !important;
  height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  margin: 0 !important;
  /* Convert green to selected color using dynamic CSS filter */
  filter: invert(50%) sepia(100%) saturate(500%) hue-rotate(0deg) brightness(100%) contrast(100%) !important;
}

/* Also directly target all SVG elements to be the selected color */
#mic-access-tool-general-button svg,
#mic-access-tool-general-button svg *,
#mic-access-tool-general-button svg path,
#mic-access-tool-general-button svg circle,
#mic-access-tool-general-button svg rect,
#mic-access-tool-general-button svg polygon,
#mic-access-tool-general-button svg ellipse,
#mic-access-tool-general-button svg line,
#mic-access-tool-general-button svg polyline,
#mic-access-tool-general-button svg g {
  fill: #f2f2f2 !important;
  stroke: #f2f2f2 !important;
  color: #f2f2f2 !important;
}

/* Target images if the icon is an img instead of SVG */
#mic-access-tool-general-button img,
#mic-access-tool-general-button i {
  width: 18px !important;
  height: 18px !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  /* Convert green to selected color using dynamic filter */
  filter: invert(50%) sepia(100%) saturate(500%) hue-rotate(0deg) brightness(100%) contrast(100%) !important;
}

/* Menu header with selected color */
#mic-access-tool-box .mic-access-tool-box-header,
.mic-access-tool-box-header,
div[id*="mic-access-tool-box"] header,
div[id*="mic-access-tool-box"] .header {
  background: #FFFFFF !important;
  color: white !important;
}

/* Make header text white - title and close button */
#mic-access-tool-box .mic-access-tool-box-header *,
.mic-access-tool-box-header *,
div[id*="mic-access-tool-box"] header *,
div[id*="mic-access-tool-box"] .header * {
  color: white !important;
}

/* Close button text */
#mic-access-tool-box .mic-access-tool-box-header button,
#mic-access-tool-box .mic-access-tool-box-header a,
#mic-access-tool-box [class*="close"],
#mic-access-tool-box button[title*="close"],
#mic-access-tool-box button[title*="Close"] {
  color: white !important;
  background: transparent !important;
}

/* Active buttons and highlights in menu */
#mic-access-tool-box button.active,
#mic-access-tool-box button:hover,
div[id*="mic-access-tool-box"] button.active,
div[id*="mic-access-tool-box"] button:hover {
  border-color: #f2f2f2 !important;
  color: #f2f2f2 !important;
  background-color: rgba(242, 242, 242, 0.1) !important;
}

/* Reset button */
#mic-access-tool-box button[title*="reset"],
#mic-access-tool-box button[title*="Reset"],
#mic-access-tool-box [class*="reset"],
div[id*="mic-access-tool-box"] button[class*="reset"] {
  background: #FFFFFF !important;
  color: white !important;
}

/* Reset button text and icon */
#mic-access-tool-box button[title*="reset"] *,
#mic-access-tool-box button[title*="Reset"] *,
#mic-access-tool-box [class*="reset"] *,
div[id*="mic-access-tool-box"] button[class*="reset"] * {
  color: white !important;
}

/* Hide accessibility widget by default on all screen sizes */
/* TODO: Can be re-enabled in the future by removing display: none */
/* The widget can be shown via ALT+A keyboard shortcut (desktop only) */
/* Target Mickidum accessibility button with high specificity */

/* Target Mickidum accessibility menu with high specificity */

/* Show accessibility widget when ALT+A keyboard shortcut is used (desktop only) */


/* On mobile, ensure it stays hidden */
@media (max-width: 768px) {
  /* Hide the accessibility button on mobile - higher specificity */
  
  /* Hide the accessibility menu on mobile - higher specificity */
  
  /* Ensure mobile never shows widget even with keyboard shortcut */
}

/* AI-generated section */
/* ===== Services Section ===== */
.svc-services-section {
  background: #FFFFFF;
  padding: 90px 24px;
  font-family: system-ui, sans-serif;
  direction: rtl;
  text-align: right;
  position: relative;
  overflow: hidden;
}

.svc-services-section::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(108, 99, 255, 0.07) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}

.svc-services-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(108, 99, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}

/* Container */
.svc-container {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Header */
.svc-header {
  text-align: center;
  margin-bottom: 60px;
}

.svc-section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-color, #1a1a1a);
  margin: 0 0 14px 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
}

.svc-section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary-color, #B51C2E);
  border-radius: 4px;
  margin: 12px auto 0 auto;
}

.svc-section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* Grid */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

/* Card */
.svc-card {
  background: #FFFFFF;
  border: 1px solid rgba(108, 99, 255, 0.18);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(108, 99, 255, 0.08), 0 1px 4px rgba(0,0,0,0.04);
  padding: 40px 32px 32px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  position: relative;
  overflow: hidden;
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color, #B51C2E), rgba(108, 99, 255, 0.4));
  border-radius: 18px 18px 0 0;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(108, 99, 255, 0.16), 0 4px 12px rgba(0,0,0,0.06);
  border-color: rgba(108, 99, 255, 0.38);
}

.svc-card:hover::before {
  opacity: 1;
}

/* Icon Wrap */
.svc-card-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  background: rgba(108, 99, 255, 0.09);
  border-radius: 20px;
  margin-bottom: 26px;
  transition: background 0.28s ease, transform 0.28s ease;
  flex-shrink: 0;
}

.svc-card:hover .svc-card-icon-wrap {
  background: rgba(108, 99, 255, 0.16);
  transform: scale(1.06);
}

/* Icon SVG */
.svc-icon {
  width: 40px;
  height: 40px;
  color: var(--primary-color, #B51C2E);
  display: block;
  flex-shrink: 0;
}

/* Card Body */
.svc-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.svc-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color, #B51C2E);
  margin: 0;
  line-height: 1.3;
}

.svc-card-text {
  font-size: 0.97rem;
  color: #444;
  line-height: 1.8;
  margin: 0;
}

/* Card Footer */
.svc-card-footer {
  margin-top: 28px;
  width: 100%;
}

/* Button */
.svc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  background: var(--primary-color, #B51C2E);
  color: #ffffff;
  font-family: system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  border: 2px solid var(--primary-color, #B51C2E);
  transition: background 0.24s ease, color 0.24s ease, transform 0.2s ease, box-shadow 0.24s ease;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.svc-btn:hover,
.svc-btn:focus-visible {
  background: transparent;
  color: var(--primary-color, #B51C2E);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(108, 99, 255, 0.22);
  outline: none;
}

.svc-btn:focus-visible {
  outline: 3px solid var(--primary-color, #B51C2E);
  outline-offset: 3px;
}

/* ===== Responsive: Tablet ===== */
@media (max-width: 900px) {
  .svc-services-section {
    padding: 70px 20px;
  }

  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .svc-card:last-child {
    grid-column: 1 / -1;
    max-width: 460px;
    margin: 0 auto;
    width: 100%;
  }
}

/* ===== Responsive: Mobile ===== */
@media (max-width: 580px) {
  .svc-services-section {
    padding: 56px 16px;
  }

  .svc-header {
    margin-bottom: 40px;
  }

  .svc-section-subtitle {
    font-size: 1rem;
  }

  .svc-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .svc-card:last-child {
    grid-column: auto;
    max-width: 100%;
    margin: 0;
  }

  .svc-card {
    padding: 30px 24px 26px 24px;
  }

  .svc-card-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    margin-bottom: 20px;
  }

  .svc-icon {
    width: 34px;
    height: 34px;
  }

  .svc-card-title {
    font-size: 1.15rem;
  }

  .svc-card-text {
    font-size: 0.93rem;
  }

  .svc-btn {
    width: 100%;
    padding: 13px 20px;
  }
}

/* AI-generated section */
/* ============================================
   Be a Winner — Uniqueness & Benefits Section
   ============================================ */

.baw-unique-section {
  font-family: system-ui, sans-serif;
  direction: rtl;
  text-align: right;
  overflow: hidden;
}

/* ---- CONTAINER ---- */
.baw-unique-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   PART 1 — Light Background
   ============================================ */
.baw-unique-part1 {
  background: var(--secondary-color, #2E5B8A);
  padding: 90px 20px 80px;
  position: relative;
}

.baw-unique-part1::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(108, 99, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ---- Header ---- */
.baw-unique-header {
  text-align: center;
  margin-bottom: 60px;
}

.baw-unique-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-color, #1a1a1a);
  margin: 0 0 18px;
  line-height: 1.25;
  letter-spacing: -0.5px;
}

.baw-unique-title span {
  color: var(--primary-color, #B51C2E);
}

.baw-unique-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: #555;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
  font-weight: 400;
}

/* ---- Cards Row ---- */
.baw-unique-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.baw-unique-card {
  background: #FFFFFF;
  border: 1px solid rgba(108, 99, 255, 0.15);
  border-radius: 18px;
  padding: 36px 28px 32px;
  box-shadow: 0 4px 24px rgba(108, 99, 255, 0.07);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  position: relative;
  overflow: hidden;
}

.baw-unique-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color, #B51C2E), #E94940);
  border-radius: 18px 18px 0 0;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.baw-unique-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(108, 99, 255, 0.16);
  border-color: rgba(108, 99, 255, 0.35);
}

.baw-unique-card:hover::before {
  opacity: 1;
}

/* ---- Icon ---- */
.baw-unique-icon-wrap {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.12), rgba(108, 99, 255, 0.06));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--primary-color, #B51C2E);
  transition: background 0.28s ease, transform 0.28s ease;
}

.baw-unique-card:hover .baw-unique-icon-wrap {
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.22), rgba(108, 99, 255, 0.12));
  transform: scale(1.08) rotate(-3deg);
}

.baw-unique-icon {
  width: 34px;
  height: 34px;
  color: var(--primary-color, #B51C2E);
}

/* ---- Card Text ---- */
.baw-unique-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-color, #1a1a1a);
  margin: 0 0 12px;
  line-height: 1.4;
}

.baw-unique-card-text {
  font-size: 0.97rem;
  color: #555;
  line-height: 1.8;
  margin: 0;
}

/* ============================================
   PART 2 — Dark Background
   ============================================ */
.baw-unique-part2 {
  background: linear-gradient(135deg, #12103a 0%, #1e1b55 60%, #0f0d2a 100%);
  padding: 90px 20px 80px;
  position: relative;
  overflow: hidden;
}

.baw-unique-part2::before {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(108, 99, 255, 0.18) 0%, transparent 65%);
  pointer-events: none;
}

.baw-unique-part2::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(162, 155, 254, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

/* ---- Benefits Title ---- */
.baw-benefits-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  margin: 0 0 56px;
  line-height: 1.25;
  letter-spacing: -0.5px;
  position: relative;
}

.baw-benefits-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color, #B51C2E), #E94940);
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ---- Benefits Grid ---- */
.baw-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

/* ---- Benefit Card ---- */
.baw-benefit-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(108, 99, 255, 0.45);
  border-radius: 18px;
  padding: 36px 28px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, border-color 0.28s ease;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.baw-benefit-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.08) 0%, transparent 60%);
  border-radius: 18px;
  pointer-events: none;
}

.baw-benefit-card:hover {
  transform: translateY(-6px);
  background: rgba(108, 99, 255, 0.12);
  border-color: rgba(108, 99, 255, 0.75);
  box-shadow: 0 16px 48px rgba(108, 99, 255, 0.25);
}

/* ---- Benefit Number ---- */
.baw-benefit-number {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(108, 99, 255, 0.25);
  line-height: 1;
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -1px;
  transition: color 0.28s ease;
}

.baw-benefit-card:hover .baw-benefit-number {
  color: rgba(108, 99, 255, 0.45);
}

/* ---- Benefit Content ---- */
.baw-benefit-content {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

/* ---- Check Icon ---- */
.baw-benefit-check {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--primary-color, #B51C2E), #E94940);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-top: 2px;
  box-shadow: 0 4px 12px rgba(108, 99, 255, 0.4);
}

.baw-benefit-check svg {
  width: 16px;
  height: 16px;
}

/* ---- Benefit Text ---- */
.baw-benefit-text {
  font-size: 1.05rem;
  color: #e8e6ff;
  line-height: 1.75;
  margin: 0;
  font-weight: 500;
}

/* ---- CTA ---- */
.baw-cta-wrap {
  text-align: center;
  position: relative;
  z-index: 1;
}

.baw-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--primary-color, #B51C2E), #D22035);
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(108, 99, 255, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  letter-spacing: 0.2px;
  border: 2px solid transparent;
}

.baw-cta-button:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 48px rgba(108, 99, 255, 0.6);
  background: linear-gradient(135deg, #C31E32, #E94940);
}

.baw-cta-button:focus-visible {
  outline: 3px solid #B51C2E;
  outline-offset: 4px;
}

.baw-cta-arrow {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.baw-cta-button:hover .baw-cta-arrow {
  transform: translateX(-4px);
}

/* ============================================
   RESPONSIVE — Tablet
   ============================================ */
@media (max-width: 900px) {
  .baw-unique-cards {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .baw-benefits-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto 48px;
  }

  .baw-unique-part1 {
    padding: 70px 20px 60px;
  }

  .baw-unique-part2 {
    padding: 70px 20px 60px;
  }
}

/* ============================================
   RESPONSIVE — Mobile
   ============================================ */
@media (max-width: 600px) {
  .baw-unique-part1 {
    padding: 56px 16px 48px;
  }

  .baw-unique-part2 {
    padding: 56px 16px 48px;
  }

  .baw-unique-header {
    margin-bottom: 40px;
  }

  .baw-unique-card {
    padding: 28px 22px 24px;
  }

  .baw-benefit-card {
    padding: 28px 22px 24px;
  }

  .baw-benefits-title {
    margin-bottom: 40px;
  }

  .baw-cta-button {
    font-size: 1rem;
    padding: 16px 28px;
    width: 100%;
    max-width: 340px;
    justify-content: center;
  }

  .baw-benefit-number {
    font-size: 2.4rem;
  }

  .baw-benefit-text {
    font-size: 0.98rem;
  }
}




/* === BUTTON TEXT OVERRIDES START === */
.navbar .nav-cta-btn,
.nav-cta-btn { color: #FFFFFF !important; }
/* === BUTTON TEXT OVERRIDES END === */


/* Added Component Styles */
/* ===== COMBINED ABOUT + METHOD SECTION ===== */
.combined-about-method {
  background: var(--background-color, #ffffff);
  padding: 90px 20px;
  font-family: system-ui, sans-serif;
  direction: rtl;
  overflow: hidden;
}

.combined-about-method__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
}

/* ===== DIVIDER ===== */
.combined-about-method__divider {
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(181, 28, 46, 0.25) 20%,
    rgba(181, 28, 46, 0.5) 50%,
    rgba(181, 28, 46, 0.25) 80%,
    transparent 100%
  );
  margin: 0 48px;
  flex-shrink: 0;
}

/* ===== EYEBROW ===== */
.combined-about-method__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-color, #B51C2E);
  background: rgba(181, 28, 46, 0.08);
  border: 1px solid rgba(181, 28, 46, 0.2);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.combined-about-method__eyebrow--light {
  color: var(--secondary-color, #2E5B8A);
  background: rgba(46, 91, 138, 0.08);
  border-color: rgba(46, 91, 138, 0.2);
}

/* ===== ABOUT SIDE ===== */
.combined-about-method__about {
  padding: 0 0 0 48px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.combined-about-method__about-image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: visible;
  align-self: flex-start;
}

.combined-about-method__about-image {
  width: 100%;
  max-width: 420px;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  box-shadow: 0 20px 60px rgba(181, 28, 46, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.combined-about-method__about-image:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(181, 28, 46, 0.22);
}

.combined-about-method__about-badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: var(--primary-color, #B51C2E);
  color: #fff;
  border-radius: 16px;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 24px rgba(181, 28, 46, 0.35);
  min-width: 90px;
}

.combined-about-method__badge-number {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.combined-about-method__badge-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  opacity: 0.9;
  margin-top: 3px;
  white-space: nowrap;
}

.combined-about-method__about-content {
  display: flex;
  flex-direction: column;
}

.combined-about-method__about-title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--nav-color, #1a1a1a);
  line-height: 1.25;
  margin: 0 0 18px 0;
}

.combined-about-method__about-title em {
  font-style: normal;
  color: var(--primary-color, #B51C2E);
}

.combined-about-method__about-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-color, #4a4a4a);
  margin: 0 0 14px 0;
}

.combined-about-method__about-highlights {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.combined-about-method__highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--nav-color, #1a1a1a);
}

.combined-about-method__highlight-icon {
  color: var(--primary-color, #B51C2E);
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ===== METHOD SIDE ===== */
.combined-about-method__method {
  padding: 0 48px 0 0;
  display: flex;
  flex-direction: column;
}

.combined-about-method__method-header {
  margin-bottom: 32px;
}

.combined-about-method__method-title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--nav-color, #1a1a1a);
  line-height: 1.25;
  margin: 0 0 14px 0;
}

.combined-about-method__method-title em {
  font-style: normal;
  color: var(--secondary-color, #2E5B8A);
}

.combined-about-method__method-subtitle {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary-color, #656565);
  margin: 0;
}

/* ===== STEPS ===== */
.combined-about-method__steps {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  counter-reset: none;
}

.combined-about-method__step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--surface-color, #FAF0F1);
  border: 1px solid rgba(46, 91, 138, 0.12);
  border-radius: 14px;
  padding: 20px 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.combined-about-method__step::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--secondary-color, #2E5B8A);
  border-radius: 0 14px 14px 0;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.combined-about-method__step:hover {
  transform: translateX(-4px);
  box-shadow: 0 8px 28px rgba(46, 91, 138, 0.12);
  border-color: rgba(46, 91, 138, 0.25);
}

.combined-about-method__step:hover::before {
  opacity: 1;
}

.combined-about-method__step-num {
  font-size: 1.5rem;
  font-weight: 900;
  color: rgba(46, 91, 138, 0.18);
  line-height: 1;
  flex-shrink: 0;
  min-width: 40px;
  padding-top: 2px;
  transition: color 0.25s ease;
}

.combined-about-method__step:hover .combined-about-method__step-num {
  color: var(--secondary-color, #2E5B8A);
}

.combined-about-method__step-body {
  flex: 1;
}

.combined-about-method__step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--nav-color, #1a1a1a);
  margin: 0 0 6px 0;
}

.combined-about-method__step-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-secondary-color, #656565);
  margin: 0;
}

/* ===== CTA ===== */
.combined-about-method__method-cta {
  margin-top: auto;
}

.combined-about-method__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-color, #B51C2E);
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  padding: 15px 32px;
  border-radius: 50px;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 6px 20px rgba(181, 28, 46, 0.3);
}

.combined-about-method__cta-btn:hover,
.combined-about-method__cta-btn:focus-visible {
  background: var(--accent-color, #E8433A);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(181, 28, 46, 0.4);
  outline: none;
}

.combined-about-method__cta-btn:focus-visible {
  outline: 3px solid var(--primary-color, #B51C2E);
  outline-offset: 3px;
}

.combined-about-method__cta-arrow {
  font-size: 1.1rem;
  transition: transform 0.25s ease;
}

.combined-about-method__cta-btn:hover .combined-about-method__cta-arrow {
  transform: translateX(-4px);
}

/* ===== RESPONSIVE: TABLET ===== */
@media (max-width: 1024px) {
  .combined-about-method__container {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .combined-about-method__divider {
    display: none;
  }

  .combined-about-method__about {
    padding: 0 24px 0 0;
    border-left: none;
  }

  .combined-about-method__method {
    padding: 0 0 0 24px;
    border-right: 1px solid rgba(181, 28, 46, 0.15);
  }
}

/* ===== RESPONSIVE: MOBILE ===== */
@media (max-width: 768px) {
  .combined-about-method {
    padding: 60px 16px;
  }

  .combined-about-method__container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .combined-about-method__divider {
    display: none;
  }

  .combined-about-method__about {
    padding: 0;
  }

  .combined-about-method__method {
    padding: 0;
    border: none;
    border-top: 1px solid rgba(181, 28, 46, 0.15);
    padding-top: 40px;
  }

  .combined-about-method__about-image {
    max-width: 100%;
    height: 240px;
  }

  .combined-about-method__about-badge {
    left: 12px;
    bottom: -14px;
    padding: 10px 16px;
  }

  .combined-about-method__badge-number {
    font-size: 1.5rem;
  }

  .combined-about-method__step {
    padding: 16px 18px;
  }

  .combined-about-method__step-num {
    font-size: 1.2rem;
    min-width: 32px;
  }

  .combined-about-method__cta-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .combined-about-method__about-title,
  .combined-about-method__method-title {
    font-size: 1.5rem;
  }

  .combined-about-method__steps {
    gap: 12px;
  }
}

/* Added Component Styles */
/* ===== PAGE HERO HEADER SECTION ===== */
.pagehero-header {
  position: relative;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
  padding: 100px 20px 80px;
  overflow: hidden;
  direction: rtl;
  font-family: system-ui, sans-serif;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

/* Decorative background overlay */
.pagehero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(181, 28, 46, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(46, 91, 138, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 60% 80%, rgba(181, 28, 46, 0.10) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Decorative geometric lines */
.pagehero-bg-overlay::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(181, 28, 46, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.pagehero-bg-overlay::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(46, 91, 138, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

/* Container */
.pagehero-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ===== CONTENT SIDE ===== */
.pagehero-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Badge */
.pagehero-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  background: rgba(181, 28, 46, 0.15);
  border: 1px solid rgba(181, 28, 46, 0.4);
  color: #f4a0a7;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 8px 18px;
  border-radius: 50px;
  text-transform: uppercase;
}

/* Title */
.pagehero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.02em;
}

.pagehero-title-highlight {
  display: block;
  background: linear-gradient(135deg, var(--primary-color, #B51C2E) 0%, #e8433a 60%, #ff6b6b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subtitle */
.pagehero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  margin: 0;
  max-width: 520px;
}

/* CTA Group */
.pagehero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.pagehero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary-color, #B51C2E) 0%, #e8433a 100%);
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(181, 28, 46, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  letter-spacing: 0.01em;
}

.pagehero-btn-primary:hover,
.pagehero-btn-primary:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(181, 28, 46, 0.6);
  background: linear-gradient(135deg, #c9202f 0%, #f04e45 100%);
  outline: none;
}

.pagehero-btn-primary:focus-visible {
  outline: 3px solid rgba(255,255,255,0.6);
  outline-offset: 3px;
}

.pagehero-btn-arrow {
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.pagehero-btn-primary:hover .pagehero-btn-arrow {
  transform: translateX(-4px);
}

.pagehero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 15px 28px;
  border-radius: 50px;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.pagehero-btn-secondary:hover,
.pagehero-btn-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.7);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  outline: none;
}

.pagehero-btn-secondary:focus-visible {
  outline: 3px solid rgba(255,255,255,0.5);
  outline-offset: 3px;
}

/* Stats */
.pagehero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 8px;
  flex-wrap: wrap;
}

.pagehero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pagehero-stat-number {
  font-size: 1.7rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.02em;
}

.pagehero-stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.pagehero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

/* ===== IMAGE SIDE ===== */
.pagehero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagehero-image-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/3;
  background: #0d1b2a;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.pagehero-image-frame:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.12);
}

.pagehero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.pagehero-image-frame:hover .pagehero-image {
  transform: scale(1.04);
}

/* Badge on image */
.pagehero-image-badge {
  position: absolute;
  bottom: 18px;
  right: 18px;
  background: rgba(181, 28, 46, 0.92);
  backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(181, 28, 46, 0.5);
  border: 1px solid rgba(255,255,255,0.15);
}

.pagehero-image-badge-icon {
  font-size: 1rem;
}

/* Floating cards */
.pagehero-floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 14px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  font-family: system-ui, sans-serif;
  animation: pagehero-float 4s ease-in-out infinite;
}

.pagehero-floating-card--top {
  top: -20px;
  left: -20px;
  animation-delay: 0s;
}

.pagehero-floating-card--bottom {
  bottom: -20px;
  right: -20px;
  animation-delay: 2s;
}

.pagehero-floating-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.pagehero-floating-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--nav-color, #1a1a1a);
  white-space: nowrap;
}

/* Float animation */
@keyframes pagehero-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

/* ===== SCROLL INDICATOR ===== */
.pagehero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  justify-content: center;
}

.pagehero-scroll-dot {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: block;
  animation: pagehero-scroll-bounce 2s ease-in-out infinite;
}

@keyframes pagehero-scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(10px); opacity: 1; }
}

/* ===== RESPONSIVE — TABLET ===== */
@media (max-width: 960px) {
  .pagehero-header {
    padding: 80px 20px 70px;
    min-height: auto;
  }

  .pagehero-container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .pagehero-content {
    align-items: center;
  }

  .pagehero-subtitle {
    max-width: 100%;
  }

  .pagehero-cta-group {
    justify-content: center;
  }

  .pagehero-stats {
    justify-content: center;
  }

  .pagehero-image-wrapper {
    order: -1;
  }

  .pagehero-image-frame {
    max-width: 420px;
  }

  .pagehero-floating-card--top {
    top: -14px;
    left: -10px;
  }

  .pagehero-floating-card--bottom {
    bottom: -14px;
    right: -10px;
  }
}

/* ===== RESPONSIVE — MOBILE ===== */
@media (max-width: 600px) {
  .pagehero-header {
    padding: 70px 16px 60px;
  }

  .pagehero-container {
    gap: 36px;
  }

  .pagehero-title {
    font-size: 2.1rem;
  }

  .pagehero-subtitle {
    font-size: 0.97rem;
  }

  .pagehero-btn-primary,
  .pagehero-btn-secondary {
    font-size: 0.97rem;
    padding: 14px 24px;
  }

  .pagehero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .pagehero-btn-primary,
  .pagehero-btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .pagehero-stat-number {
    font-size: 1.4rem;
  }

  .pagehero-stats {
    gap: 16px;
  }

  .pagehero-stat-divider {
    height: 30px;
  }

  .pagehero-image-frame {
    max-width: 100%;
    border-radius: 18px;
  }

  .pagehero-floating-card {
    padding: 9px 14px;
  }

  .pagehero-floating-text {
    font-size: 0.78rem;
  }

  .pagehero-floating-card--top {
    top: -12px;
    left: 0;
  }

  .pagehero-floating-card--bottom {
    bottom: -12px;
    right: 0;
  }

  .pagehero-scroll-indicator {
    display: none;
  }
}

/* AI-generated section */
/* ===== HERO LEARNING SECTION ===== */
.lp-hero-learning {
  position: relative;
  background: linear-gradient(135deg, #0f1923 0%, #1a2a3a 45%, #1e1218 100%);
  padding: 100px 24px 80px;
  overflow: hidden;
  direction: rtl;
  font-family: system-ui, sans-serif;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Background overlay */
.lp-hero-learning__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 30%, rgba(181, 28, 46, 0.18) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 15% 80%, rgba(46, 91, 138, 0.22) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Decorative shapes */
.lp-hero-learning__bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.lp-hero-learning__shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
}

.lp-hero-learning__shape--1 {
  width: 500px;
  height: 500px;
  background: var(--primary-color, #B51C2E);
  top: -180px;
  left: -120px;
}

.lp-hero-learning__shape--2 {
  width: 320px;
  height: 320px;
  background: var(--secondary-color, #2E5B8A);
  bottom: -100px;
  right: -80px;
}

.lp-hero-learning__shape--3 {
  width: 180px;
  height: 180px;
  background: #ffffff;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
}

/* Container */
.lp-hero-learning__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 60px;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

/* ===== IMAGE COLUMN ===== */
.lp-hero-learning__image-wrap {
  position: relative;
  flex: 0 0 420px;
  max-width: 420px;
}

.lp-hero-learning__image {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.lp-hero-learning__image:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(181, 28, 46, 0.3);
}

/* Badge on image */
.lp-hero-learning__image-badge {
  position: absolute;
  bottom: -18px;
  right: 28px;
  background: linear-gradient(135deg, var(--primary-color, #B51C2E), #8a1320);
  color: #ffffff;
  border-radius: 50px;
  padding: 10px 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 30px rgba(181, 28, 46, 0.5);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.lp-hero-learning__badge-icon {
  font-size: 18px;
  line-height: 1;
}

.lp-hero-learning__badge-text {
  color: #ffffff;
}

/* ===== CONTENT COLUMN ===== */
.lp-hero-learning__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

/* Tag */
.lp-hero-learning__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(181, 28, 46, 0.15);
  border: 1px solid rgba(181, 28, 46, 0.4);
  color: #f0a0a8;
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.lp-hero-learning__tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary-color, #B51C2E);
  animation: lp-pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes lp-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

/* Title */
.lp-hero-learning__title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.lp-hero-learning__title-accent {
  color: var(--primary-color, #B51C2E);
  position: relative;
  display: inline-block;
}

.lp-hero-learning__title-accent::after {
  content: '';
  position: absolute;
  bottom: 2px;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary-color, #B51C2E), transparent);
  border-radius: 2px;
  opacity: 0.7;
}

/* Subtitle */
.lp-hero-learning__subtitle {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  margin: 0 0 36px;
  max-width: 480px;
}

.lp-hero-learning__br {
  display: block;
}

/* Pills */
.lp-hero-learning__pills {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.lp-hero-learning__pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
  border-radius: 50px;
  padding: 9px 20px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
  cursor: default;
}

.lp-hero-learning__pill:hover {
  background: rgba(181, 28, 46, 0.18);
  border-color: rgba(181, 28, 46, 0.45);
  transform: translateY(-2px);
}

.lp-hero-learning__pill-icon {
  font-size: 16px;
  line-height: 1;
}

/* CTA group */
.lp-hero-learning__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

/* Buttons */
.lp-hero-learning__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  padding: 15px 34px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
  cursor: pointer;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.lp-hero-learning__btn--primary {
  background: linear-gradient(135deg, var(--primary-color, #B51C2E), #8a1320);
  color: #ffffff;
  box-shadow: 0 8px 28px rgba(181, 28, 46, 0.45);
}

.lp-hero-learning__btn--primary:hover,
.lp-hero-learning__btn--primary:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(181, 28, 46, 0.6);
  background: linear-gradient(135deg, #c9202f, var(--primary-color, #B51C2E));
  outline: none;
}

.lp-hero-learning__btn--primary:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.6);
  outline-offset: 3px;
}

.lp-hero-learning__btn--secondary {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border: 2px solid rgba(255, 255, 255, 0.28);
}

.lp-hero-learning__btn--secondary:hover,
.lp-hero-learning__btn--secondary:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.55);
  color: #ffffff;
  transform: translateY(-3px);
  outline: none;
}

.lp-hero-learning__btn--secondary:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.5);
  outline-offset: 3px;
}

.lp-hero-learning__btn-arrow {
  font-size: 18px;
  transition: transform 0.2s ease;
  display: inline-block;
}

.lp-hero-learning__btn--primary:hover .lp-hero-learning__btn-arrow {
  transform: translateX(-4px);
}

/* Scroll indicator */
.lp-hero-learning__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  justify-content: center;
}

.lp-hero-learning__scroll-line {
  display: block;
  width: 2px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  border-radius: 2px;
  animation: lp-scroll-fade 2s ease-in-out infinite;
}

@keyframes lp-scroll-fade {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .lp-hero-learning {
    padding: 80px 20px 70px;
    min-height: auto;
  }

  .lp-hero-learning__container {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .lp-hero-learning__image-wrap {
    flex: none;
    max-width: 100%;
    width: 100%;
    max-width: 480px;
  }

  .lp-hero-learning__image {
    height: 340px;
  }

  .lp-hero-learning__content {
    align-items: flex-end;
    text-align: right;
    width: 100%;
  }

  .lp-hero-learning__subtitle {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .lp-hero-learning {
    padding: 70px 16px 60px;
  }

  .lp-hero-learning__title {
    font-size: 2rem;
  }

  .lp-hero-learning__subtitle {
    font-size: 1rem;
  }

  .lp-hero-learning__image {
    height: 260px;
  }

  .lp-hero-learning__image-badge {
    right: 16px;
    bottom: -14px;
    padding: 8px 16px;
    font-size: 13px;
  }

  .lp-hero-learning__pills {
    gap: 8px;
    justify-content: flex-end;
  }

  .lp-hero-learning__pill {
    padding: 7px 15px;
    font-size: 13px;
  }

  .lp-hero-learning__cta-group {
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    width: 100%;
  }

  .lp-hero-learning__btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 15px;
  }

  .lp-hero-learning__br {
    display: inline;
  }

  .lp-hero-learning__scroll {
    display: none;
  }
}

@media (max-width: 380px) {
  .lp-hero-learning__title {
    font-size: 1.75rem;
  }

  .lp-hero-learning__tag {
    font-size: 11px;
    padding: 5px 14px;
  }
}

/* Added Component Styles */
/* ============================================================
   VIDEO GALLERY SECTION — vg-*
   ============================================================ */

.vg-video-gallery {
  background: var(--surface-color, #FAF0F1);
  padding: 90px 20px;
  font-family: system-ui, sans-serif;
  direction: rtl;
  text-align: right;
}

/* Container */
.vg-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ---- Header ---- */
.vg-header {
  text-align: center;
  margin-bottom: 56px;
}

.vg-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--nav-color, #1a1a1a);
  margin: 0 0 14px;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.vg-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary-color, #B51C2E);
  border-radius: 2px;
  margin: 12px auto 0;
}

.vg-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary-color, #656565);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---- Grid ---- */
.vg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ---- Card ---- */
.vg-card {
  background: var(--background-color, #ffffff);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(181, 28, 46, 0.1);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  display: flex;
  flex-direction: column;
}

.vg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(181, 28, 46, 0.16);
}

/* ---- Thumbnail ---- */
.vg-thumbnail-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #1a1a1a;
  flex-shrink: 0;
}

.vg-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.vg-card:hover .vg-thumbnail {
  transform: scale(1.05);
  filter: brightness(0.75);
}

/* Play button */
.vg-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  outline: none;
}

.vg-play-btn::before {
  content: '';
  position: absolute;
  width: 56px;
  height: 56px;
  background: var(--primary-color, #B51C2E);
  border-radius: 50%;
  opacity: 0.92;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.vg-play-btn:hover::before,
.vg-play-btn:focus-visible::before {
  transform: scale(1.12);
  opacity: 1;
}

.vg-play-btn:focus-visible {
  outline: 3px solid var(--accent-color, #E8433A);
  outline-offset: 2px;
  border-radius: 50%;
}

.vg-play-icon {
  position: relative;
  z-index: 1;
  width: 22px;
  height: 22px;
  fill: #ffffff;
  margin-right: -3px; /* optical centering of play triangle */
  transition: transform 0.25s ease;
}

.vg-play-btn:hover .vg-play-icon,
.vg-play-btn:focus-visible .vg-play-icon {
  transform: scale(1.1);
}

/* Duration badge */
.vg-duration {
  position: absolute;
  bottom: 10px;
  left: 12px;
  background: rgba(0, 0, 0, 0.72);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.03em;
  pointer-events: none;
}

/* ---- Card Body ---- */
.vg-card-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Meta row */
.vg-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  gap: 8px;
  flex-wrap: wrap;
}

.vg-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-color, #B51C2E);
  background: rgba(181, 28, 46, 0.08);
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.vg-views {
  font-size: 0.78rem;
  color: var(--text-secondary-color, #656565);
  white-space: nowrap;
}

/* Card title */
.vg-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--nav-color, #1a1a1a);
  margin: 0 0 8px;
  line-height: 1.35;
}

/* Card description */
.vg-card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary-color, #656565);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

/* ---- CTA ---- */
.vg-cta-wrap {
  text-align: center;
  margin-top: 52px;
}

.vg-cta-btn {
  display: inline-block;
  background: var(--primary-color, #B51C2E);
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 50px;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 24px rgba(181, 28, 46, 0.28);
  transition: background 0.25s ease, transform 0.22s ease, box-shadow 0.25s ease;
}

.vg-cta-btn:hover {
  background: var(--accent-color, #E8433A);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(181, 28, 46, 0.38);
}

.vg-cta-btn:focus-visible {
  outline: 3px solid var(--secondary-color, #2E5B8A);
  outline-offset: 4px;
}

/* ============================================================
   RESPONSIVE — Tablet
   ============================================================ */
@media (max-width: 1024px) {
  .vg-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

/* ============================================================
   RESPONSIVE — Mobile
   ============================================================ */
@media (max-width: 640px) {
  .vg-video-gallery {
    padding: 60px 16px;
  }

  .vg-header {
    margin-bottom: 36px;
  }

  .vg-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .vg-card-body {
    padding: 16px 18px 20px;
  }

  .vg-cta-btn {
    font-size: 0.97rem;
    padding: 14px 28px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }

  .vg-cta-wrap {
    margin-top: 36px;
  }
}

/* Added Component Styles */
/* ===== Gallery Section ===== */
.gallery-section {
  background-color: var(--background-color, #ffffff);
  padding: 90px 20px;
  direction: rtl;
  font-family: system-ui, sans-serif;
  overflow: hidden;
}

/* Container */
.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.gallery-header {
  text-align: center;
  margin-bottom: 60px;
}

.gallery-eyebrow {
  display: inline-block;
  background-color: var(--surface-color, #FAF0F1);
  color: var(--primary-color, #B51C2E);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  border: 1px solid rgba(181, 28, 46, 0.2);
  margin-bottom: 16px;
}

.gallery-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--nav-color, #1a1a1a);
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.gallery-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color, #B51C2E), var(--accent-color, #E8433A));
  border-radius: 2px;
  margin: 14px auto 0;
}

.gallery-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary-color, #656565);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card */
.gallery-card {
  background-color: var(--background-color, #ffffff);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(181, 28, 46, 0.12);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(181, 28, 46, 0.15);
}

/* Image Wrapper */
.gallery-card-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background-color: var(--surface-color, #FAF0F1);
}

.gallery-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.gallery-card:hover .gallery-card-img {
  transform: scale(1.06);
}

/* Overlay */
.gallery-card-overlay {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
}

.gallery-card-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color, #B51C2E), var(--accent-color, #E8433A));
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px rgba(181, 28, 46, 0.35);
}

/* Card Body */
.gallery-card-body {
  padding: 22px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 3px solid var(--surface-color, #FAF0F1);
}

.gallery-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--nav-color, #1a1a1a);
  margin: 0;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.gallery-card:hover .gallery-card-title {
  color: var(--primary-color, #B51C2E);
}

.gallery-card-desc {
  font-size: 0.92rem;
  color: var(--text-secondary-color, #656565);
  margin: 0;
  line-height: 1.7;
  flex: 1;
}

/* ===== Responsive: Tablet ===== */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .gallery-section {
    padding: 70px 20px;
  }
}

/* ===== Responsive: Mobile ===== */
@media (max-width: 600px) {
  .gallery-section {
    padding: 50px 16px;
  }

  .gallery-header {
    margin-bottom: 36px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-card-body {
    padding: 18px 18px 20px;
  }

  .gallery-card-title {
    font-size: 1rem;
  }

  .gallery-card-desc {
    font-size: 0.9rem;
  }

  .gallery-subtitle {
    font-size: 0.97rem;
  }
}

#ai-section-1779703563122-w74oz6g .gallery-mosaic {
  grid-template-columns: repeat(5, 1fr) !important;
  grid-template-rows: 520px !important;
  gap: 12px !important;
}

#ai-section-1779703563122-w74oz6g .gallery-item {
  grid-column: auto !important;
  grid-row: auto !important;
  display: block !important;
  height: 520px !important;
}

#ai-section-1779703563122-w74oz6g .gallery-mosaic {
  grid-template-columns: repeat(5, 1fr) !important;
  grid-template-rows: 320px !important;
  gap: 12px !important;
}

#ai-section-1779703563122-w74oz6g .gallery-item {
  grid-column: auto !important;
  grid-row: auto !important;
  display: block !important;
  height: 320px !important;
}

#ai-section-1779703563122-w74oz6g .gallery-img-wrap {
  width: 100% !important;
  height: 100% !important;
  position: relative !important;
  overflow: hidden !important;
}

#ai-section-1779703563122-w74oz6g [data-zappy-zoom-wrapper="true"] {
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  margin: 0 !important;
}

#ai-section-1779703563122-w74oz6g [data-zappy-zoom-wrapper="true"] img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  position: static !important;
  left: auto !important;
  top: auto !important;
}

#ai-section-1779703563122-w74oz6g [data-zappy-zoom-wrapper="true"] {
  padding-bottom: 75% !important;
  min-height: 400px !important;
}

#ai-section-1779703563122-w74oz6g .gallery-item {
  min-height: 400px !important;
}

#ai-section-1779703563122-w74oz6g .gallery-img-wrap {
  min-height: 400px !important;
}

#ai-section-1779703563122-w74oz6g [data-zappy-zoom-wrapper="true"] img {
  height: 100% !important;
  min-height: 400px !important;
  object-fit: cover !important;
}

.about-section-1, .about-section-2, .about-section-3 {
  background-color: var(--surface-color) !important;
}
/* Batch: Quick navigation bar fixed at bottom of all pages */
.zappy-quick-nav{position:fixed;bottom:0;right:0;left:0;z-index:9998;background:#ffffff;border-top:3px solid #B51C2E;box-shadow:0 -4px 20px rgba(0,0,0,0.13);direction:rtl;font-family:'Rubik',sans-serif;}.zappy-quick-nav__inner{display:flex;justify-content:center;align-items:stretch;max-width:1440px;margin:0 auto;}.zappy-quick-nav__item{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:4px;padding:10px 22px;color:#4a4a4a;text-decoration:none;font-size:12px;font-weight:600;border-left:1px solid #eee;transition:color 0.2s,background 0.2s;min-width:90px;white-space:nowrap;}.zappy-quick-nav__item:last-child{border-left:none;}.zappy-quick-nav__item svg{width:22px;height:22px;flex-shrink:0;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}.zappy-quick-nav__item:hover,.zappy-quick-nav__item.zqn-active{color:#B51C2E;background:#FDF3F4;}body{padding-bottom:70px !important;}@media(max-width:768px){.zappy-quick-nav__item{padding:8px 0;font-size:10px;min-width:0;flex:1;}.zappy-quick-nav__item span{font-size:9px;}.zappy-quick-nav__item svg{width:20px;height:20px;}body{padding-bottom:60px !important;}}
/* Batch: Quick nav appearance animation */
/* Quick Nav JS Injection */
@keyframes zqn-appear{from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}
.zappy-quick-nav{animation:zqn-appear 0.4s ease forwards;}
/* Batch: Override quick nav to static position and remove body bottom padding */
.zappy-quick-nav { position: static !important; box-shadow: 0 -4px 20px rgba(0,0,0,0.12) !important; } body { padding-bottom: 0 !important; }

/* AI-generated section */
/* ===== CTA Leadership Section ===== */
.cta-leadership-section {
  position: relative;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 40%, #2a0a0e 100%);
  padding: 100px 20px;
  font-family: system-ui, sans-serif;
  direction: rtl;
  text-align: center;
  overflow: hidden;
}

/* Overlay for depth */
.cta-leadership-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(181, 28, 46, 0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Decorative accent circles */
.cta-leadership-accent {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.12;
}

.cta-leadership-accent--top-right {
  width: 380px;
  height: 380px;
  top: -120px;
  left: -80px;
  background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
  border: 1px solid rgba(181, 28, 46, 0.3);
}

.cta-leadership-accent--bottom-left {
  width: 260px;
  height: 260px;
  bottom: -80px;
  right: -60px;
  background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%);
  border: 1px solid rgba(46, 91, 138, 0.3);
  opacity: 0.1;
}

/* Container */
.cta-leadership-container {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Badge / Icon */
.cta-leadership-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(181, 28, 46, 0.12);
  border: 1.5px solid rgba(181, 28, 46, 0.4);
  margin-bottom: 28px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.cta-leadership-badge:hover {
  transform: scale(1.08) rotate(5deg);
  background: rgba(181, 28, 46, 0.2);
}

/* Content block */
.cta-leadership-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
}

/* Main heading */
.cta-leadership-heading {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 20px 0;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

/* Subheading */
.cta-leadership-subheading {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 36px auto;
  font-weight: 400;
}

/* Trust list */
.cta-leadership-trust-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
}

.cta-leadership-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.97rem;
  font-weight: 500;
}

.cta-trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Actions block */
.cta-leadership-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* CTA Button */
.cta-leadership-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-color);
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 18px 44px;
  border-radius: 50px;
  border: 2px solid transparent;
  box-shadow: 0 6px 30px rgba(181, 28, 46, 0.5), 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: background 0.28s ease, transform 0.22s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  cursor: pointer;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.cta-leadership-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
  border-radius: inherit;
}

.cta-leadership-btn:hover,
.cta-leadership-btn:focus-visible {
  background: #d12035;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(181, 28, 46, 0.65), 0 4px 14px rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 0.15);
  outline: none;
}

.cta-leadership-btn:active {
  transform: translateY(-1px) scale(1.01);
}

.cta-btn-text {
  position: relative;
  z-index: 1;
}

.cta-btn-arrow {
  font-size: 1.2rem;
  transition: transform 0.22s ease;
  position: relative;
  z-index: 1;
}

.cta-leadership-btn:hover .cta-btn-arrow,
.cta-leadership-btn:focus-visible .cta-btn-arrow {
  transform: translateX(-5px);
}

/* Note below button */
.cta-leadership-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  letter-spacing: 0.3px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .cta-leadership-section {
    padding: 72px 20px;
  }

  .cta-leadership-badge {
    width: 68px;
    height: 68px;
    margin-bottom: 22px;
  }

  .cta-leadership-heading {
    font-size: 1.9rem;
  }

  .cta-leadership-subheading {
    font-size: 1rem;
    margin-bottom: 28px;
  }

  .cta-leadership-trust-list {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
  }

  .cta-leadership-btn {
    font-size: 1rem;
    padding: 16px 36px;
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .cta-leadership-accent--top-right {
    width: 240px;
    height: 240px;
    top: -80px;
    left: -60px;
  }

  .cta-leadership-accent--bottom-left {
    width: 180px;
    height: 180px;
    bottom: -60px;
    right: -40px;
  }
}

@media (max-width: 480px) {
  .cta-leadership-section {
    padding: 60px 16px;
  }

  .cta-leadership-heading {
    font-size: 1.65rem;
  }

  .cta-leadership-trust-item {
    font-size: 0.92rem;
  }
}
/* Batch: Make quick nav static (not fixed) */
.zappy-quick-nav { position: static !important; bottom: auto !important; top: auto !important; order: 999; }
/* Batch: הוספת CSS עיצוב לתפריט הניווט המהיר (quick nav) בכל הדפים */
/* ── QUICK NAV BAR ── */
.zappy-quick-nav {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 9999;
  background: #1a1a1a;
  border-top: 3px solid var(--primary-color, #B51C2E);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
  direction: rtl;
}
.zappy-quick-nav__inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  overflow-x: auto;
  scrollbar-width: none;
}
.zappy-quick-nav__inner::-webkit-scrollbar { display: none; }
.zappy-quick-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 18px;
  text-decoration: none;
  color: #aaaaaa;
  font-size: 0.72rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
  border-bottom: 3px solid transparent;
  min-width: 70px;
}
.zappy-quick-nav__item:hover {
  color: #ffffff;
  background: rgba(255,255,255,0.06);
}
.zappy-quick-nav__item.zqn-active {
  color: #ffffff;
  border-bottom-color: var(--primary-color, #B51C2E);
}
.zappy-quick-nav__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
body { padding-bottom: 68px; }
@media (max-width: 600px) {
  .zappy-quick-nav__item {
    padding: 8px 12px;
    font-size: 0.65rem;
    min-width: 56px;
  }
  .zappy-quick-nav__icon { width: 18px; height: 18px; }
  body { padding-bottom: 62px; }
}
/* Batch: דריסת position:static !important ישן — כפיית fixed לתחתית הדף בכל הדפים */
.zappy-quick-nav { position: fixed !important; bottom: 0 !important; top: auto !important; right: 0 !important; left: 0 !important; z-index: 9999 !important; background: #1a1a1a !important; border-top: 3px solid #B51C2E !important; box-shadow: 0 -4px 20px rgba(0,0,0,0.25) !important; direction: rtl !important; }
.zappy-quick-nav__item { color: #aaaaaa !important; }
.zappy-quick-nav__item:hover { color: #ffffff !important; background: rgba(255,255,255,0.08) !important; }
.zappy-quick-nav__item.zqn-active { color: #ffffff !important; }
/* Batch: הצמד את אופציות התפריט ללוגו מימין בדסקטופ */
@media (min-width: 769px) { .site-navbar { justify-content: flex-start !important; } .site-navbar ul { margin-right: 0 !important; margin-left: auto !important; justify-content: flex-end !important; } }

#page-header h1, #page-header h3 {
  color: var(--background-color);
}

.faq-section h2 {
  color: var(--background-color) !important;
}

.contact-section .contact-info h2,
.contact-section .contact-info h3,
.contact-section .contact-info p,
.contact-section .contact-details h3,
.contact-section .contact-details p {
  color: var(--background-color) !important;
}

.contact-section .contact-details a {
  color: var(--background-color) !important;
}

.contact-section .contact-details a:hover {
  color: rgba(255,255,255,0.8) !important;
}

.contact-section .contact-icon {
  background: rgba(255,255,255,0.2) !important;
  color: var(--background-color) !important;
}

/* AI-generated section */
/* =============================================
   HERO: Learning Options Section
   ============================================= */

.hero-learning-options {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background: linear-gradient(135deg, #0a1628 0%, #0f2347 35%, #1a3a6b 65%, #0d1f3c 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-family: system-ui, sans-serif;
  direction: rtl;
  padding: 100px 20px 60px;
  box-sizing: border-box;
}

/* Subtle animated background texture */
.hero-learning-options::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(181, 28, 46, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(46, 91, 138, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(255,255,255,0.02) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Grid dot overlay */
.hero-learning-options::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

.hero-learning-options__overlay {
  display: none;
}

/* Main container */
.hero-learning-options__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

/* =============================================
   RIGHT SIDE: TEXT CONTENT
   ============================================= */

.hero-learning-options__content {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  max-width: 580px;
}

/* Badge */
.hero-learning-options__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(181, 28, 46, 0.15);
  border: 1px solid rgba(181, 28, 46, 0.45);
  color: #f4a8b0;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 8px 18px;
  border-radius: 50px;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.hero-learning-options__badge-icon {
  color: var(--primary-color, #B51C2E);
  font-size: 0.75rem;
  animation: hero-badge-pulse 2.5s ease-in-out infinite;
}

@keyframes hero-badge-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

/* H1 Title */
.hero-learning-options__title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.01em;
}

.hero-learning-options__title-highlight {
  color: var(--primary-color, #B51C2E);
  position: relative;
  display: inline-block;
}

.hero-learning-options__title-highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary-color, #B51C2E), transparent);
  border-radius: 2px;
  opacity: 0.5;
}

/* Subtitle */
.hero-learning-options__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  max-width: 520px;
}

/* CTA Buttons */
.hero-learning-options__cta-group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero-learning-options__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
  white-space: nowrap;
  font-family: system-ui, sans-serif;
  border: 2px solid transparent;
}

.hero-learning-options__btn--primary {
  background: var(--primary-color, #B51C2E);
  color: #ffffff;
  border-color: var(--primary-color, #B51C2E);
  box-shadow: 0 6px 28px rgba(181, 28, 46, 0.4);
}

.hero-learning-options__btn--primary:hover,
.hero-learning-options__btn--primary:focus-visible {
  background: #d42035;
  border-color: #d42035;
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(181, 28, 46, 0.55);
}

.hero-learning-options__btn--primary:focus-visible {
  outline: 3px solid #f4a8b0;
  outline-offset: 3px;
}

.hero-learning-options__btn--secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(4px);
}

.hero-learning-options__btn--secondary:hover,
.hero-learning-options__btn--secondary:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.75);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
}

.hero-learning-options__btn--secondary:focus-visible {
  outline: 3px solid rgba(255,255,255,0.6);
  outline-offset: 3px;
}

.hero-learning-options__btn-arrow {
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.hero-learning-options__btn--primary:hover .hero-learning-options__btn-arrow {
  transform: translateX(-4px);
}

/* Stats Row */
.hero-learning-options__stats {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 20px 28px;
  backdrop-filter: blur(8px);
  width: 100%;
  box-sizing: border-box;
  flex-wrap: wrap;
}

.hero-learning-options__stat {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  padding: 4px 12px;
}

.hero-learning-options__stat-value {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.hero-learning-options__stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  white-space: nowrap;
}

.hero-learning-options__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}

/* =============================================
   LEFT SIDE: IMAGE
   ============================================= */

.hero-learning-options__image-wrapper {
  flex: 1 1 42%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-learning-options__image-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: 24px;
  overflow: visible;
}

.hero-learning-options__image {
  width: 100%;
  height: auto;
  min-height: 420px;
  max-height: 560px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-learning-options__image:hover {
  transform: scale(1.02);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.12);
}

/* Floating accent card */
.hero-learning-options__float-card {
  position: absolute;
  bottom: -20px;
  right: -24px;
  background: #ffffff;
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  z-index: 2;
  animation: hero-float 3.5s ease-in-out infinite;
}

@keyframes hero-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.hero-learning-options__float-card-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.hero-learning-options__float-card-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-learning-options__float-card-text strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a1a;
  white-space: nowrap;
}

.hero-learning-options__float-card-text span {
  font-size: 0.75rem;
  color: #656565;
  white-space: nowrap;
}

/* Decorative ring */
.hero-learning-options__deco-ring {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px dashed rgba(181, 28, 46, 0.3);
  z-index: 0;
  animation: hero-ring-spin 18s linear infinite;
  pointer-events: none;
}

@keyframes hero-ring-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* =============================================
   SCROLL INDICATOR
   ============================================= */

.hero-learning-options__scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-learning-options__scroll-dot {
  display: block;
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: hero-scroll-bounce 2s ease-in-out infinite;
}

@keyframes hero-scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(10px); opacity: 1; }
}

/* =============================================
   RESPONSIVE: TABLET
   ============================================= */

@media (max-width: 1024px) {
  .hero-learning-options__container {
    gap: 40px;
  }

  .hero-learning-options__image {
    min-height: 360px;
  }

  .hero-learning-options__float-card {
    right: -10px;
    bottom: -14px;
  }
}

/* =============================================
   RESPONSIVE: MOBILE
   ============================================= */

@media (max-width: 768px) {
  .hero-learning-options {
    padding: 90px 20px 80px;
    min-height: 100svh;
  }

  .hero-learning-options__container {
    flex-direction: column-reverse;
    gap: 36px;
    align-items: center;
  }

  .hero-learning-options__content {
    align-items: center;
    text-align: center;
    max-width: 100%;
  }

  .hero-learning-options__title {
    text-align: center;
  }

  .hero-learning-options__subtitle {
    text-align: center;
  }

  .hero-learning-options__cta-group {
    justify-content: center;
    flex-direction: column;
    width: 100%;
  }

  .hero-learning-options__btn {
    width: 100%;
    justify-content: center;
  }

  .hero-learning-options__stats {
    gap: 8px;
    padding: 16px 12px;
    justify-content: center;
  }

  .hero-learning-options__stat-divider {
    height: 30px;
  }

  .hero-learning-options__image-wrapper {
    width: 100%;
    max-width: 420px;
  }

  .hero-learning-options__image {
    min-height: 280px;
    max-height: 360px;
  }

  .hero-learning-options__float-card {
    right: 0;
    bottom: -16px;
    padding: 10px 14px;
  }

  .hero-learning-options__deco-ring {
    width: 90px;
    height: 90px;
    top: -16px;
    left: -16px;
  }
}

@media (max-width: 400px) {
  .hero-learning-options__stats {
    flex-direction: column;
    gap: 12px;
  }

  .hero-learning-options__stat-divider {
    width: 60px;
    height: 1px;
  }

  .hero-learning-options__stat {
    padding: 4px 0;
  }
}

/* AI-generated section */
/* =============================================
   LEARNING OPTIONS SECTION — ls- prefix
   ============================================= */

.ls-learning-options {
  background: var(--surface-color, #FAF0F1);
  padding: 96px 24px;
  font-family: system-ui, sans-serif;
  direction: rtl;
  position: relative;
  overflow: hidden;
}

/* Subtle decorative background shape */
.ls-learning-options::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181, 28, 46, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.ls-learning-options::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 91, 138, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* Container */
.ls-container {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ---- Header ---- */
.ls-header {
  text-align: center;
  margin-bottom: 60px;
}

.ls-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--nav-color, #1a1a1a);
  margin: 0 0 16px 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.ls-title::after {
  content: '';
  display: block;
  width: 64px;
  height: 4px;
  background: var(--primary-color, #B51C2E);
  border-radius: 2px;
  margin: 16px auto 0;
}

.ls-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-secondary-color, #656565);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---- Cards Grid ---- */
.ls-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

/* ---- Card Base ---- */
.ls-card {
  background: var(--background-color, #FFFFFF);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07), 0 1px 4px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(181, 28, 46, 0.08);
}

.ls-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(181, 28, 46, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
}

.ls-card:focus-within {
  outline: 2px solid var(--primary-color, #B51C2E);
  outline-offset: 2px;
}

/* Top colored border */
.ls-card-top-border {
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color, #B51C2E), var(--accent-color, #E8433A));
  width: 100%;
  flex-shrink: 0;
}

/* Featured card variant */
.ls-card--featured {
  box-shadow: 0 8px 32px rgba(181, 28, 46, 0.16), 0 2px 8px rgba(0, 0, 0, 0.06);
  border-color: rgba(181, 28, 46, 0.2);
}

.ls-card--featured:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(181, 28, 46, 0.2), 0 6px 16px rgba(0, 0, 0, 0.08);
}

.ls-card--featured .ls-card-top-border {
  height: 6px;
  background: linear-gradient(90deg, var(--primary-color, #B51C2E), #e85a30, var(--accent-color, #E8433A));
}

/* Badge */
.ls-card-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--primary-color, #B51C2E);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(181, 28, 46, 0.35);
}

/* Card Inner */
.ls-card-inner {
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Icon Wrapper */
.ls-icon-wrapper {
  width: 68px;
  height: 68px;
  border-radius: 16px;
  background: rgba(181, 28, 46, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: background 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}

.ls-card:hover .ls-icon-wrapper {
  background: rgba(181, 28, 46, 0.14);
  transform: scale(1.05);
}

.ls-card--featured .ls-icon-wrapper {
  background: rgba(181, 28, 46, 0.12);
}

.ls-icon {
  width: 36px;
  height: 36px;
  color: var(--primary-color, #B51C2E);
  display: block;
}

/* Card Title */
.ls-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--nav-color, #1a1a1a);
  margin: 0 0 14px 0;
  line-height: 1.3;
}

/* Card Description */
.ls-card-desc {
  font-size: 0.97rem;
  color: var(--text-color, #4a4a4a);
  line-height: 1.75;
  margin: 0 0 20px 0;
  flex: 1;
}

/* Tags */
.ls-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.ls-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-color, #B51C2E);
  background: rgba(181, 28, 46, 0.08);
  border: 1px solid rgba(181, 28, 46, 0.18);
  border-radius: 20px;
  padding: 4px 12px;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.ls-card:hover .ls-tag {
  background: rgba(181, 28, 46, 0.13);
}

/* Button */
.ls-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 10px;
  font-size: 0.97rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--primary-color, #B51C2E);
  background: transparent;
  border: 2px solid var(--primary-color, #B51C2E);
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  cursor: pointer;
  letter-spacing: 0.01em;
  align-self: flex-start;
  margin-top: auto;
}

.ls-btn:hover,
.ls-btn:focus-visible {
  background: var(--primary-color, #B51C2E);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(181, 28, 46, 0.3);
  outline: none;
}

.ls-btn:focus-visible {
  outline: 3px solid rgba(181, 28, 46, 0.5);
  outline-offset: 2px;
}

/* Primary Button Variant */
.ls-btn--primary {
  background: var(--primary-color, #B51C2E);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(181, 28, 46, 0.28);
}

.ls-btn--primary:hover,
.ls-btn--primary:focus-visible {
  background: #9a1626;
  border-color: #9a1626;
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(181, 28, 46, 0.38);
}

/* Button Arrow */
.ls-btn-arrow {
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.25s ease;
  display: inline-block;
}

.ls-btn:hover .ls-btn-arrow,
.ls-btn:focus-visible .ls-btn-arrow {
  transform: translateX(-4px);
}

/* =============================================
   RESPONSIVE — Tablet
   ============================================= */
@media (max-width: 960px) {
  .ls-learning-options {
    padding: 72px 20px;
  }

  .ls-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  /* Make the third card span full width on tablet */
  .ls-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }
}

/* =============================================
   RESPONSIVE — Mobile
   ============================================= */
@media (max-width: 600px) {
  .ls-learning-options {
    padding: 56px 16px;
  }

  .ls-header {
    margin-bottom: 40px;
  }

  .ls-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ls-card:nth-child(3) {
    grid-column: auto;
    max-width: none;
    margin: 0;
  }

  .ls-card-inner {
    padding: 26px 22px 24px;
  }

  .ls-card-badge {
    top: 16px;
    left: 16px;
  }

  .ls-icon-wrapper {
    width: 60px;
    height: 60px;
    margin-bottom: 18px;
  }

  .ls-icon {
    width: 30px;
    height: 30px;
  }

  .ls-card-title {
    font-size: 1.15rem;
  }

  .ls-card-desc {
    font-size: 0.93rem;
  }

  .ls-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }
}

/* =============================================
   REDUCED MOTION SUPPORT
   ============================================= */
@media (prefers-reduced-motion: reduce) {
  .ls-card,
  .ls-icon-wrapper,
  .ls-btn,
  .ls-btn-arrow,
  .ls-tag {
    transition: none;
  }

  .ls-card:hover {
    transform: none;
  }

  .ls-card:hover .ls-icon-wrapper {
    transform: none;
  }
}

/* AI-generated section */
/* ===== LECTURES SECTION ===== */
.lect-section {
  background: var(--background-color, #ffffff);
  padding: 90px 20px;
  font-family: system-ui, sans-serif;
  direction: rtl;
  overflow: hidden;
  position: relative;
}

.lect-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(181, 28, 46, 0.06) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
  transform: translate(30%, -30%);
}

/* ===== CONTAINER ===== */
.lect-container {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ===== CONTENT SIDE (Right in RTL) ===== */
.lect-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* ===== BADGE ===== */
.lect-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(181, 28, 46, 0.08);
  color: var(--primary-color, #B51C2E);
  border: 1.5px solid rgba(181, 28, 46, 0.25);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  width: fit-content;
  text-transform: uppercase;
}

.lect-badge-icon {
  font-size: 15px;
}

/* ===== TITLE ===== */
.lect-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--nav-color, #1a1a1a);
  margin: 0;
  line-height: 1.2;
  position: relative;
  padding-bottom: 16px;
}

.lect-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 4px;
  background: var(--primary-color, #B51C2E);
  border-radius: 2px;
}

/* ===== SUBTITLE ===== */
.lect-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  color: var(--secondary-color, #2E5B8A);
  margin: 0;
  line-height: 1.5;
}

/* ===== DESCRIPTION ===== */
.lect-description {
  font-size: 1rem;
  color: var(--text-color, #4a4a4a);
  line-height: 1.85;
  margin: 0;
}

/* ===== FEATURES LIST ===== */
.lect-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lect-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.97rem;
  color: var(--text-color, #4a4a4a);
  font-weight: 500;
}

.lect-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  min-width: 26px;
  background: var(--primary-color, #B51C2E);
  color: #ffffff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
}

/* ===== TAGS ===== */
.lect-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lect-tag {
  background: var(--surface-color, #FAF0F1);
  color: var(--text-secondary-color, #656565);
  border: 1px solid rgba(181, 28, 46, 0.18);
  border-radius: 6px;
  padding: 5px 14px;
  font-size: 12.5px;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}

.lect-tag:hover {
  background: rgba(181, 28, 46, 0.1);
  color: var(--primary-color, #B51C2E);
}

/* ===== CTA BUTTON ===== */
.lect-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-color, #B51C2E);
  color: #ffffff;
  text-decoration: none;
  padding: 15px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  width: fit-content;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 16px rgba(181, 28, 46, 0.28);
}

.lect-cta:hover,
.lect-cta:focus-visible {
  background: #9a1726;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(181, 28, 46, 0.38);
  outline: none;
}

.lect-cta:focus-visible {
  outline: 3px solid var(--primary-color, #B51C2E);
  outline-offset: 3px;
}

.lect-cta-arrow {
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.lect-cta:hover .lect-cta-arrow {
  transform: translateX(-4px);
}

/* ===== IMAGE SIDE (Left in RTL) ===== */
.lect-image-wrapper {
  position: relative;
}

.lect-image-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  aspect-ratio: 4 / 3;
}

.lect-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.lect-image-card:hover .lect-image {
  transform: scale(1.04);
}

/* ===== IMAGE OVERLAY STATS ===== */
.lect-image-overlay {
  position: absolute;
  bottom: 20px;
  right: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.lect-overlay-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.lect-stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color, #B51C2E);
  line-height: 1;
}

.lect-stat-label {
  font-size: 12px;
  color: var(--text-secondary-color, #656565);
  font-weight: 500;
}

.lect-overlay-divider {
  width: 1px;
  height: 36px;
  background: rgba(181, 28, 46, 0.2);
}

/* ===== DECORATIVE BLOCK ===== */
.lect-deco-block {
  position: absolute;
  bottom: -18px;
  left: -18px;
  width: 120px;
  height: 120px;
  background: var(--surface-color, #FAF0F1);
  border: 3px solid rgba(181, 28, 46, 0.15);
  border-radius: 14px;
  z-index: -1;
}

/* ===== RESPONSIVE — TABLET ===== */
@media (max-width: 960px) {
  .lect-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lect-image-wrapper {
    order: -1;
  }

  .lect-image-card {
    max-width: 560px;
    margin: 0 auto;
  }

  .lect-section::before {
    width: 220px;
    height: 220px;
  }
}

/* ===== RESPONSIVE — MOBILE ===== */
@media (max-width: 600px) {
  .lect-section {
    padding: 60px 16px;
  }

  .lect-container {
    gap: 30px;
  }

  .lect-content {
    gap: 16px;
  }

  .lect-title {
    font-size: 1.75rem;
  }

  .lect-subtitle {
    font-size: 0.97rem;
  }

  .lect-description {
    font-size: 0.94rem;
  }

  .lect-image-overlay {
    padding: 12px 16px;
    gap: 14px;
  }

  .lect-stat-number {
    font-size: 1.25rem;
  }

  .lect-cta {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }

  .lect-deco-block {
    width: 80px;
    height: 80px;
    bottom: -12px;
    left: -10px;
  }
}

/* AI-generated section */
/* ===== ONE-DAY WORKSHOPS SECTION ===== */
.ws-oneday-section {
  background-color: var(--surface-color, #FAF0F1);
  padding: 90px 24px;
  font-family: system-ui, sans-serif;
  direction: rtl;
  overflow: hidden;
}

/* Container: side-by-side layout */
.ws-oneday-container {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 64px;
}

/* ===== CONTENT (RIGHT SIDE in RTL) ===== */
.ws-oneday-content {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 22px;
  text-align: right;
}

/* Badge */
.ws-oneday-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background-color: var(--primary-color, #B51C2E);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 7px 16px;
  border-radius: 50px;
  width: fit-content;
  box-shadow: 0 3px 12px rgba(181, 28, 46, 0.30);
}

.ws-oneday-badge-icon {
  font-size: 14px;
  line-height: 1;
}

/* Main Title */
.ws-oneday-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--nav-color, #1a1a1a);
  line-height: 1.2;
  margin: 0;
}

/* Subtitle */
.ws-oneday-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--secondary-color, #2E5B8A);
  margin: 0;
  line-height: 1.4;
}

/* Description */
.ws-oneday-description {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-color, #4a4a4a);
  margin: 0;
  max-width: 540px;
}

/* Feature List */
.ws-oneday-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.ws-oneday-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-color, #4a4a4a);
}

.ws-oneday-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  min-width: 26px;
  background-color: var(--primary-color, #B51C2E);
  color: #ffffff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(181, 28, 46, 0.25);
}

/* Tags */
.ws-oneday-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ws-oneday-tag {
  display: inline-block;
  background-color: rgba(181, 28, 46, 0.09);
  color: var(--primary-color, #B51C2E);
  border: 1px solid rgba(181, 28, 46, 0.25);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 15px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.ws-oneday-tag:hover {
  background-color: rgba(181, 28, 46, 0.16);
  transform: translateY(-1px);
}

/* CTA Button */
.ws-oneday-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--primary-color, #B51C2E);
  color: #ffffff;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 15px 32px;
  border-radius: 8px;
  width: fit-content;
  box-shadow: 0 4px 18px rgba(181, 28, 46, 0.32);
  transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.ws-oneday-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.ws-oneday-cta:hover {
  background-color: #961626;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(181, 28, 46, 0.40);
}

.ws-oneday-cta:hover::before {
  opacity: 1;
}

.ws-oneday-cta:focus-visible {
  outline: 3px solid var(--primary-color, #B51C2E);
  outline-offset: 3px;
}

.ws-oneday-cta-arrow {
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.ws-oneday-cta:hover .ws-oneday-cta-arrow {
  transform: translateX(-4px);
}

/* ===== IMAGE (LEFT SIDE in RTL) ===== */
.ws-oneday-image-wrap {
  flex: 1 1 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ws-oneday-image-frame {
  position: relative;
  width: 100%;
  max-width: 500px;
  border-radius: 18px;
  overflow: visible;
}

.ws-oneday-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.14);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ws-oneday-image-frame:hover .ws-oneday-image {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.20);
}

/* Decorative accent border */
.ws-oneday-image-accent {
  position: absolute;
  bottom: -14px;
  left: -14px;
  width: 65%;
  height: 65%;
  border: 3px solid var(--primary-color, #B51C2E);
  border-radius: 18px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.22;
}

/* Floating stat card */
.ws-oneday-stat-card {
  position: absolute;
  bottom: 28px;
  right: -22px;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 10;
  border-top: 4px solid var(--primary-color, #B51C2E);
  min-width: 140px;
  text-align: center;
}

.ws-oneday-stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary-color, #B51C2E);
  line-height: 1;
}

.ws-oneday-stat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary-color, #656565);
  line-height: 1.5;
  text-align: center;
}

/* ===== RESPONSIVE — TABLET ===== */
@media (max-width: 1024px) {
  .ws-oneday-container {
    gap: 40px;
  }

  .ws-oneday-image {
    height: 360px;
  }

  .ws-oneday-stat-card {
    right: -10px;
    bottom: 20px;
  }
}

/* ===== RESPONSIVE — MOBILE ===== */
@media (max-width: 768px) {
  .ws-oneday-section {
    padding: 60px 20px;
  }

  .ws-oneday-container {
    flex-direction: column-reverse;
    gap: 40px;
  }

  .ws-oneday-content {
    gap: 18px;
    width: 100%;
  }

  .ws-oneday-description {
    max-width: 100%;
  }

  .ws-oneday-image-wrap {
    width: 100%;
  }

  .ws-oneday-image-frame {
    max-width: 100%;
  }

  .ws-oneday-image {
    height: 280px;
  }

  .ws-oneday-stat-card {
    right: 16px;
    bottom: -20px;
    min-width: 120px;
    padding: 12px 16px;
  }

  .ws-oneday-stat-number {
    font-size: 1.6rem;
  }

  .ws-oneday-image-accent {
    bottom: -10px;
    left: -10px;
  }

  .ws-oneday-cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .ws-oneday-title {
    font-size: 1.75rem;
  }

  .ws-oneday-image {
    height: 230px;
  }

  .ws-oneday-tags {
    gap: 8px;
  }
}

.iga-group-process-section {
  background-color: var(--surface-color, #FAF0F1);
  padding: 80px 24px !important;
  font-family: system-ui, sans-serif;
  direction: rtl;
  position: relative;
  overflow: hidden;
}

/* Subtle background decoration */
.iga-group-process-section::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181,28,46,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Container */
.iga-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Two-column grid */
.iga-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

/* =============================================
   IMAGE COLUMN
   ============================================= */

.iga-image-col {
  order: 2; /* image on left in RTL context = visual right side in DOM, so order 2 */
}

.iga-image-wrapper {
  position: relative;
  border-radius: 18px;
  overflow: visible;
}

.iga-main-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  box-shadow: 0 12px 40px rgba(46, 91, 138, 0.18), 0 4px 16px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.iga-image-wrapper:hover .iga-main-image {
  transform: translateY(-4px);
  box-shadow: 0 20px 52px rgba(46, 91, 138, 0.24), 0 6px 20px rgba(0,0,0,0.1);
}

/* Floating Stat Card */
.iga-floating-stat {
  position: absolute;
  bottom: -22px;
  right: -22px;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(181, 28, 46, 0.15), 0 2px 10px rgba(0,0,0,0.08);
  max-width: 240px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-right: 4px solid var(--primary-color, #B51C2E);
  z-index: 2;
}

.iga-stat-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.iga-stat-text {
  font-size: 13px;
  color: var(--text-color, #4a4a4a);
  line-height: 1.55;
  margin: 0;
  font-weight: 500;
}

/* Decorative accent block */
.iga-image-accent {
  position: absolute;
  top: -14px;
  left: -14px;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  border: 2.5px solid rgba(181, 28, 46, 0.18);
  z-index: -1;
  pointer-events: none;
}

/* =============================================
   CONTENT COLUMN
   ============================================= */

.iga-content-col {
  order: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Badge */
.iga-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, rgba(181,28,46,0.10) 0%, rgba(46,91,138,0.08) 100%);
  border: 1.5px solid rgba(181, 28, 46, 0.25);
  border-radius: 50px;
  padding: 7px 16px;
  margin-bottom: 18px;
  width: fit-content;
}

.iga-badge-icon {
  font-size: 16px;
  line-height: 1;
}

.iga-badge-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-color, #B51C2E);
  letter-spacing: 0.3px;
  white-space: nowrap;
}

/* Title */
.iga-title {
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--nav-color, #1a1a1a);
  line-height: 1.25;
  margin: 0 0 12px 0;
}

/* Subtitle */
.iga-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary-color, #2E5B8A);
  margin: 0 0 18px 0;
  line-height: 1.45;
}

/* Description */
.iga-description {
  font-size: 0.97rem;
  color: var(--text-secondary-color, #656565);
  line-height: 1.8;
  margin: 0 0 26px 0;
}

/* Advantages List */
.iga-advantages-list {
  list-style: none;
  margin: 0 0 24px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.iga-advantage-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.96rem;
  color: var(--text-color, #4a4a4a);
  font-weight: 500;
  line-height: 1.5;
}

.iga-check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: linear-gradient(135deg, var(--primary-color, #B51C2E), var(--accent-color, #E8433A));
  color: #ffffff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

/* Tags */
.iga-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}

.iga-tag {
  background: rgba(46, 91, 138, 0.08);
  border: 1.5px solid rgba(46, 91, 138, 0.22);
  color: var(--secondary-color, #2E5B8A);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.iga-tag:hover {
  background: rgba(46, 91, 138, 0.15);
  border-color: rgba(46, 91, 138, 0.4);
}

/* CTA Wrapper */
.iga-cta-wrapper {
  display: flex;
  align-items: center;
}

/* CTA Button */
.iga-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary-color, #B51C2E) 0%, var(--accent-color, #E8433A) 100%);
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(181, 28, 46, 0.30);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  letter-spacing: 0.3px;
}

.iga-cta-btn:hover,
.iga-cta-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(181, 28, 46, 0.40);
  background: linear-gradient(135deg, #9e1827 0%, var(--primary-color, #B51C2E) 100%);
  outline: none;
}

.iga-cta-btn:focus-visible {
  outline: 3px solid var(--secondary-color, #2E5B8A);
  outline-offset: 3px;
}

.iga-cta-arrow {
  font-size: 1.1rem;
  transition: transform 0.25s ease;
  display: inline-block;
}

.iga-cta-btn:hover .iga-cta-arrow {
  transform: translateX(-4px);
}

/* =============================================
   RESPONSIVE — Tablet
   ============================================= */

@media (max-width: 900px) {
  .iga-group-process-section {
    padding: 70px 20px;
  }

  .iga-grid {
    gap: 40px;
  }

  .iga-main-image {
    height: 360px;
  }

  .iga-floating-stat {
    right: -10px;
    bottom: -18px;
    max-width: 210px;
    padding: 13px 16px;
  }
}

/* =============================================
   RESPONSIVE — Mobile
   ============================================= */

@media (max-width: 680px) {
  .iga-group-process-section {
    padding: 56px 16px;
  }

  .iga-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .iga-image-col {
    order: 1; /* image on top on mobile */
  }

  .iga-content-col {
    order: 2;
  }

  .iga-main-image {
    height: 260px;
  }

  .iga-floating-stat {
    right: 12px;
    bottom: -20px;
    max-width: 200px;
    padding: 12px 14px;
  }

  .iga-stat-text {
    font-size: 12px;
  }

  .iga-image-accent {
    display: none;
  }

  .iga-title {
    font-size: 1.55rem;
  }

  .iga-subtitle {
    font-size: 1rem;
  }

  .iga-description {
    font-size: 0.93rem;
  }

  .iga-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }

  .iga-tags {
    gap: 7px;
  }
}

@media (max-width: 380px) {
  .iga-badge-text {
    font-size: 12px;
  }

  .iga-floating-stat {
    position: static;
    margin-top: 16px;
    max-width: 100%;
    border-radius: 10px;
  }
}

.lect-section .lect-description {
  display: block;
  width: 100%;
  overflow: hidden;
}

.lect-section .lect-lectures-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.lect-section .lect-lecture-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 18px;
  background: var(--background-color);
  border: 1px solid rgba(181, 28, 46, 0.15);
  border-radius: 12px;
  padding: 20px 22px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: box-shadow 0.2s, transform 0.2s;
}

.lect-section .lect-lecture-card:hover {
  box-shadow: 0 6px 20px rgba(181,28,46,0.12);
  transform: translateY(-2px);
}

.lect-section .lect-lecture-number {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--primary-color, var(--primary-color));
  color: var(--background-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
  margin-top: 2px;
}

.lect-section .lect-lecture-body {
  flex: 1;
  text-align: right;
}

.lect-section .lect-lecture-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark, var(--text-color));
  margin: 0 0 4px 0;
  line-height: 1.4;
}

.lect-section .lect-lecture-tagline {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--secondary-color, var(--secondary-color));
  margin: 0 0 8px 0;
  line-height: 1.5;
}

.lect-section .lect-lecture-desc {
  font-size: 0.92rem;
  color: var(--text-muted, var(--text-secondary-color));
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 600px) {
.lect-section .lect-lecture-card {
  flex-direction: column;
  gap: 10px;
  padding: 16px;
}
}

.lect-section .lect-container {
  align-items: stretch;
}

.lect-section .lect-image-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.lect-section .lect-image-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.lect-section .lect-image-card [data-zappy-zoom-wrapper] {
  flex: 1 !important;
  height: auto !important;
  min-height: 300px !important;
  width: 100% !important;
}

.lect-section .lect-image-card .lect-image {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.lect-section .lect-container {
  display: grid !important;
  grid-template-columns: 1fr 460px !important;
  gap: 64px !important;
  align-items: start !important;
  max-width: 1160px !important;
  margin: 0 auto !important;
}

.lect-section .lect-image-wrapper {
  width: 100% !important;
  max-width: 100% !important;
}

.lect-section .lect-image-card {
  width: 100% !important;
  min-height: 500px !important;
  position: relative !important;
}

.lect-section .lect-image-card [data-zappy-zoom-wrapper] {
  width: 100% !important;
  max-width: 100% !important;
  height: 500px !important;
  min-height: 500px !important;
}

.ws-oneday-section .ws-oneday-container {
  align-items: flex-start !important;
}

.ws-oneday-section .ws-oneday-image {
  height: auto !important;
  min-height: 300px;
  max-height: none !important;
}

.ws-oneday-section .ws-oneday-image-wrap {
  align-self: stretch !important;
}

.ws-oneday-section .ws-oneday-image-frame {
  height: 100% !important;
}

.ws-oneday-section .ws-oneday-image {
  height: 100% !important;
  min-height: 400px;
  object-fit: cover;
}

.ws-oneday-section .ws-oneday-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 28px 0;
  text-align: right;
}

.ws-oneday-section .ws-oneday-workshops-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.ws-oneday-section .ws-oneday-workshop-card {
  background: var(--background-color);
  border: 1px solid rgba(181, 28, 46, 0.15);
  border-radius: 12px;
  padding: 18px 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.ws-oneday-section .ws-oneday-workshop-card:hover {
  box-shadow: 0 6px 20px rgba(181, 28, 46, 0.12);
  transform: translateY(-2px);
}

.ws-oneday-section .ws-oneday-workshop-header {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 10px;
}

.ws-oneday-section .ws-oneday-workshop-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: rgba(181, 28, 46, 0.1);
  color: var(--primary-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 2px;
}

.ws-oneday-section .ws-oneday-workshop-num--accent {
  background: var(--primary-color);
  color: var(--background-color);
}

.ws-oneday-section .ws-oneday-workshop-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 4px 0;
  line-height: 1.4;
}

.ws-oneday-section .ws-oneday-workshop-tagline {
  font-size: 0.88rem;
  color: var(--secondary-color);
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
}

.ws-oneday-section .ws-oneday-workshop-desc {
  font-size: 0.92rem;
  color: var(--text-color);
  line-height: 1.7;
  margin: 0 0 12px 0;
  padding-right: 46px;
  text-align: right;
}

.ws-oneday-section .ws-oneday-workshop-meta {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
  padding-right: 46px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.ws-oneday-section .ws-oneday-workshop-card--half .ws-oneday-workshop-num {
  background: var(--secondary-color);
  color: var(--background-color);
}

@media (max-width: 768px) {
.ws-oneday-section .ws-oneday-workshop-desc,
  .ws-oneday-section .ws-oneday-workshop-meta {
  padding-right: 0;
}

.ws-oneday-section .ws-oneday-workshop-meta {
  flex-direction: column;
  gap: 4px;
}
}

.iga-group-process-section {
  background: var(--bg-light);
  padding: 80px 24px;
  direction: rtl;
}

.iga-group-process-section .iga-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.iga-group-process-section .iga-grid {
  display: flex;
  flex-direction: row !important;
  align-items: flex-start;
  gap: 56px;
}

.iga-group-process-section .iga-image-col {
  flex: 0 0 420px;
  max-width: 420px;
  position: relative;
}

.iga-group-process-section .iga-image-wrapper {
  position: relative;
  width: 100%;
}

.iga-group-process-section .iga-main-image {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 12px 48px rgba(0,0,0,0.13);
}

.iga-group-process-section .iga-floating-stat {
  position: absolute;
  bottom: 24px;
  inset-inline-start: -20px;
  background: var(--bg-dark);
  color: var(--text-light);
  border-radius: 12px;
  padding: 14px 18px;
  max-width: 220px;
  z-index: 10;
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
}

.iga-group-process-section .iga-stat-icon {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.iga-group-process-section .iga-stat-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
  margin: 0;
}

.iga-group-process-section .iga-image-accent {
  position: absolute;
  bottom: -16px;
  inset-inline-end: -16px;
  width: 65%;
  height: 65%;
  background: rgba(181,28,46,0.08);
  border-radius: 16px;
  z-index: 0;
  pointer-events: none;
}

.iga-group-process-section .iga-content-col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.iga-group-process-section .iga-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(181,28,46,0.09);
  color: var(--primary-color);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(181,28,46,0.2);
  margin-bottom: 16px;
  width: fit-content;
}

.iga-group-process-section .iga-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 10px 0;
  line-height: 1.3;
  text-align: right;
}

.iga-group-process-section .iga-subtitle {
  font-size: 1.05rem;
  color: var(--secondary-color);
  font-weight: 500;
  line-height: 1.6;
  margin: 0 0 24px 0;
  text-align: right;
}

.iga-group-process-section .iga-info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
}

.iga-group-process-section .iga-info-card {
  background: var(--surface-color, var(--surface-color));
  border: 1px solid rgba(181,28,46,0.15);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.iga-group-process-section .iga-info-card--accent {
  background: rgba(46,91,138,0.06);
  border-color: rgba(46,91,138,0.2);
}

.iga-group-process-section .iga-info-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.iga-group-process-section .iga-info-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.iga-group-process-section .iga-info-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  text-align: right;
}

.iga-group-process-section .iga-info-desc {
  font-size: 0.88rem;
  color: var(--text-dark);
  line-height: 1.6;
  margin: 0;
  text-align: right;
}

.iga-group-process-section .iga-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.iga-group-process-section .iga-info-list li {
  font-size: 0.86rem;
  color: var(--text-dark);
  line-height: 1.5;
  text-align: right;
  padding-inline-end: 12px;
  position: relative;
}

.iga-group-process-section .iga-info-list li::before {
  content: '✓';
  color: var(--primary-color);
  font-weight: 700;
  position: absolute;
  inset-inline-end: 0;
}

.iga-group-process-section .iga-info-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  background: rgba(181,28,46,0.06);
  padding: 6px 10px;
  border-radius: 6px;
  text-align: right;
}

.iga-group-process-section .iga-cta-wrapper {
  margin-top: 4px;
}

.iga-group-process-section .iga-cta-btn {
  display: inline-block;
  background: var(--primary-color);
  color: var(--background-color);
  font-size: 1rem;
  font-weight: 700;
  padding: 13px 30px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(181,28,46,0.18);
  transition: background 0.22s, transform 0.18s;
}

.iga-group-process-section .iga-cta-btn:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
.iga-group-process-section .iga-grid {
  gap: 36px;
}

.iga-group-process-section .iga-image-col {
  flex: 0 0 300px;
  max-width: 300px;
}

.iga-group-process-section .iga-main-image {
  height: 420px;
}
}

@media (max-width: 768px) {
.iga-group-process-section {
  padding: 56px 16px 48px;
}

.iga-group-process-section .iga-grid {
  flex-direction: column;
  gap: 32px;
}

.iga-group-process-section .iga-image-col {
  flex: unset;
  max-width: 100%;
  width: 100%;
}

.iga-group-process-section .iga-main-image {
  height: 260px;
}

.iga-group-process-section .iga-info-cards {
  grid-template-columns: 1fr;
}
}

.about-section-1,
.about-section-2 {
  padding: 0 !important;
  background: transparent !important;
}

.about-section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 0.5px;
  text-align: right;
}

.about-section-label--light {
  color: rgba(255,255,255,0.7);
}

.about-section-title {
  font-size: 2rem !important;
  font-weight: 800 !important;
  color: var(--text-dark) !important;
  margin: 0 0 24px 0 !important;
  line-height: 1.3 !important;
  text-align: right !important;
}

.about-section-title--light {
  color: var(--background-color) !important;
}

#layout-about-section-1 .about-v2-cards-grid {
  grid-template-columns: 1fr !important;
}

#layout-about-section-2 .about-v2-mission-grid {
  grid-template-columns: 1fr !important;
}

.about-mission-list-section {
  background: var(--surface-color) !important;
}

.about-mission-list-section .about-mission-list-title {
  color: var(--text-dark) !important;
}

.about-mission-list-section .about-mission-list-subtitle {
  color: var(--text-muted) !important;
}

.about-mission-list-section .about-mission-list-item-title {
  color: var(--text-dark) !important;
}

.about-mission-list-section .about-mission-list-item-desc {
  color: var(--text-muted) !important;
}

.about-mission-list-section .about-mission-list-badge {
  background: rgba(181,28,46,0.09) !important;
  color: var(--primary-color) !important;
  border: 1px solid rgba(181,28,46,0.2) !important;
}

.about-mission-list-section .about-mission-list-item {
  border-bottom: 1px solid rgba(0,0,0,0.07) !important;
}

.about-mission-list-section .about-mission-list-item:first-child {
  border-top: 1px solid rgba(0,0,0,0.07) !important;
}

.about-mission-list-section .about-mission-list-icon {
  background: rgba(181,28,46,0.08) !important;
}

.about-mission-list-section .about-mission-list-btn {
  background: var(--primary-color) !important;
  color: #fff !important;
  border: none !important;
}

#layout-1779712201407 .about-me-content {
  align-items: center !important;
  text-align: center !important;
}

#layout-1779712201407 .about-me-title {
  text-align: center !important;
}

#layout-1779712201407 .about-me-subtitle {
  text-align: center !important;
  margin-inline-start: auto !important;
  margin-inline-end: auto !important;
}

#layout-1779712201407 .about-me-badge {
  align-self: center !important;
}

#layout-1779712201407 .about-me-divider {
  margin-inline-start: auto !important;
  margin-inline-end: auto !important;
}

#layout-1779712201407 .about-me-title,
#layout-1779712201407 .about-me-title span {
  color: var(--background-color) !important;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

#layout-1779712201407 .about-me-divider {
  background: linear-gradient(90deg, var(--background-color) 0%, rgba(255,255,255,0.5) 100%);
}





.site-navbar {
  min-height: 90px;
  align-items: center;
}

.site-navbar a:first-child {
  display: flex;
  align-items: center;
}

.site-navbar a:first-child img {
  height: 80px !important;
  width: auto !important;
  max-width: 280px !important;
  object-fit: contain !important;
}

#hero h1 {
  text-shadow: none !important;
}

#hero p {
  text-shadow: 0 1px 8px rgba(0,0,0,0.6) !important;
}

#hero h1, #hero h2, #hero h3, #hero p, #hero span, #hero a {
  color: var(--background-color) !important;
}

#hero h1 {
  text-shadow: 0 2px 20px rgba(0,0,0,0.85), 0 1px 6px rgba(0,0,0,0.7) !important;
}

#hero p {
  text-shadow: 0 1px 10px rgba(0,0,0,0.75) !important;
}

.site-navbar ul li:last-child {
  margin-inline-start: auto;
}

#ai-section-1779534733259-ucipzr7 .pagehero-youtube-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
}



nav.site-navbar {
  background: var(--background-color) !important;
  background-color: var(--background-color) !important;
}

nav.site-navbar ul li a {
  color: #1a1a1a !important;
}

nav.site-navbar ul li a:hover {
  color: #D95F0E !important;
}
/* Zappy custom logo size (desktop only — mobile stays at 110px/35px) */
@media (min-width: 769px) {
  .logo, img.logo, .logo img, .logo-link img, .nav-brand img {
    max-height: none !important;
    height: 70px !important;
    max-width: 280px !important;
    width: auto !important;
    object-fit: contain !important;
  }
  .nav-container {
    min-height: 100px !important;
  }
}
/* /Zappy custom logo size */


.site-footer div[style*="border-bottom"] {
  border-bottom: none !important;
  padding-bottom: 0 !important;
  margin-bottom: 12px !important;
}

nav.site-navbar ul li a {
  border-bottom: 2px solid var(--primary-color) !important;
  padding-bottom: 4px !important;
}

.nav-cta-btn {
  border-bottom: none !important;
}

/* Added Component Styles */
/* =============================================
   LECTURES FAQ SECTION
   ============================================= */
.lectures-faq-section {
  background: var(--surface-color, #FAF0F1);
  padding: 90px 20px;
  font-family: system-ui, sans-serif;
  direction: rtl;
}

.lectures-faq-container {
  max-width: 860px;
  margin: 0 auto;
}

/* --- Header --- */
.lectures-faq-header {
  text-align: center;
  margin-bottom: 56px;
}

.lectures-faq-badge {
  display: inline-block;
  background: var(--primary-color, #B51C2E);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.lectures-faq-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--nav-color, #1a1a1a);
  margin: 0 0 16px;
  line-height: 1.25;
}

.lectures-faq-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary-color, #656565);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- FAQ List --- */
.lectures-faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* --- FAQ Item (Card) --- */
.lectures-faq-item {
  background: #ffffff;
  border: 1px solid rgba(181, 28, 46, 0.22);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(181, 28, 46, 0.06);
  overflow: hidden;
  transition: box-shadow 0.28s ease, transform 0.22s ease, border-color 0.28s ease;
}

.lectures-faq-item:hover {
  box-shadow: 0 6px 28px rgba(181, 28, 46, 0.13);
  transform: translateY(-2px);
  border-color: rgba(181, 28, 46, 0.42);
}

.lectures-faq-item.active {
  border-color: rgba(181, 28, 46, 0.55);
  box-shadow: 0 6px 32px rgba(181, 28, 46, 0.16);
}

/* --- Question Button --- */
.lectures-faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: right;
  font-family: system-ui, sans-serif;
  transition: background 0.22s ease;
}

.lectures-faq-question:hover {
  background: rgba(181, 28, 46, 0.04);
}

.lectures-faq-question:focus-visible {
  outline: 3px solid var(--primary-color, #B51C2E);
  outline-offset: -3px;
  border-radius: 14px;
}

.lectures-faq-question-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

.lectures-faq-number {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: var(--primary-color, #B51C2E);
  color: #fff;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.03em;
  transition: background 0.22s ease, transform 0.22s ease;
}

.lectures-faq-item.active .lectures-faq-number {
  background: var(--secondary-color, #2E5B8A);
  transform: scale(1.08);
}

.lectures-faq-question-text {
  font-size: 1.06rem;
  font-weight: 700;
  color: var(--nav-color, #1a1a1a);
  line-height: 1.4;
  flex: 1;
}

/* --- Chevron --- */
.lectures-faq-chevron {
  flex-shrink: 0;
  color: var(--primary-color, #B51C2E);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.lectures-faq-item.active .lectures-faq-chevron {
  transform: rotate(180deg);
}

/* --- Answer (Collapsed by default) --- */
.lectures-faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.38s ease, opacity 0.28s ease, padding 0.28s ease;
}

.lectures-faq-item.active .lectures-faq-answer {
  max-height: 500px;
  opacity: 1;
  padding-bottom: 22px;
}

.lectures-faq-answer-inner {
  border-right: 4px solid var(--primary-color, #B51C2E);
  margin: 0 26px 0 26px;
  padding: 14px 18px 0 18px;
}

.lectures-faq-answer-inner p {
  font-size: 0.97rem;
  color: var(--text-color, #4a4a4a);
  line-height: 1.75;
  margin: 0 0 14px;
}

/* --- Tags --- */
.lectures-faq-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.lectures-tag {
  background: var(--surface-color, #FAF0F1);
  color: var(--primary-color, #B51C2E);
  border: 1px solid rgba(181, 28, 46, 0.25);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 13px;
  letter-spacing: 0.02em;
}

/* --- CTA --- */
.lectures-faq-cta {
  margin-top: 56px;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-color, #B51C2E) 0%, #8c1220 100%);
  border-radius: 18px;
  padding: 44px 32px;
  box-shadow: 0 8px 36px rgba(181, 28, 46, 0.28);
}

.lectures-faq-cta-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 22px;
  line-height: 1.4;
}

.lectures-faq-cta-btn {
  display: inline-block;
  background: #fff;
  color: var(--primary-color, #B51C2E);
  font-family: system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  padding: 14px 38px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.22s ease, color 0.22s ease, transform 0.2s ease, box-shadow 0.22s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.lectures-faq-cta-btn:hover {
  background: var(--nav-color, #1a1a1a);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
}

.lectures-faq-cta-btn:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 640px) {
  .lectures-faq-section {
    padding: 60px 14px;
  }

  .lectures-faq-header {
    margin-bottom: 36px;
  }

  .lectures-faq-question {
    padding: 18px 18px;
    gap: 12px;
  }

  .lectures-faq-question-text {
    font-size: 0.97rem;
  }

  .lectures-faq-number {
    width: 32px;
    height: 32px;
    font-size: 12px;
    border-radius: 8px;
  }

  .lectures-faq-answer-inner {
    margin: 0 18px 0 18px;
    padding: 12px 14px 0 14px;
  }

  .lectures-faq-answer-inner p {
    font-size: 0.93rem;
  }

  .lectures-faq-cta {
    padding: 32px 20px;
    margin-top: 40px;
  }

  .lectures-faq-cta-text {
    font-size: 1.05rem;
  }

  .lectures-faq-cta-btn {
    padding: 13px 28px;
    font-size: 0.95rem;
  }

  .lectures-faq-list {
    gap: 12px;
  }
}

.lectures-faq-section .lectures-faq-item.active .lectures-faq-answer {
  max-height: 500px !important;
  opacity: 1 !important;
  padding-bottom: 22px !important;
}

.lectures-faq-section .lectures-faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.25s ease;
}

.lectures-faq-section .lectures-faq-item.active .lectures-faq-answer {
  max-height: 800px !important;
  opacity: 1 !important;
  padding-top: 18px !important;
  padding-bottom: 18px !important;
}

.lectures-faq-section .lectures-faq-question {
  cursor: pointer;
}

/* AI-generated section */
/* ============================================
   Gallery Section - גלריית הצלחות
   ============================================ */
.gallery-section {
  background: var(--surface-color, #FAF0F1);
  padding: 80px 20px 100px;
  direction: rtl;
  font-family: 'Rubik', system-ui, sans-serif;
  position: relative;
  overflow: hidden;
}

.gallery-section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(181, 28, 46, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.gallery-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(46, 91, 138, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Header */
.gallery-header {
  text-align: center;
  margin-bottom: 56px;
}

.gallery-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--nav-color, #1a1a1a);
  margin: 0 0 12px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.gallery-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-secondary-color, #656565);
  margin: 0 0 20px;
  line-height: 1.6;
}

.gallery-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.gallery-divider-line {
  display: block;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-color, #B51C2E));
  border-radius: 1px;
}

.gallery-divider-line:last-child {
  background: linear-gradient(90deg, var(--primary-color, #B51C2E), transparent);
}

.gallery-divider-icon {
  color: var(--primary-color, #B51C2E);
  font-size: 1.1rem;
  display: inline-block;
  animation: gallery-pulse 2s ease-in-out infinite;
}

@keyframes gallery-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25); opacity: 0.7; }
}

/* Mosaic Grid */
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 18px;
  grid-auto-flow: dense;
}

/* Grid placement */
.gallery-item--large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item--medium {
  grid-column: span 2;
  grid-row: span 1;
}

.gallery-item--small {
  grid-column: span 1;
  grid-row: span 1;
}

/* Card */
.gallery-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  height: 100%;
  background: #fff;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.gallery-card:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.14), 0 2px 8px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

/* Image */
.gallery-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backface-visibility: hidden;
}

.gallery-card:hover .gallery-image {
  transform: scale(1.06);
}

/* Overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(24, 24, 27, 0.82) 0%,
    rgba(24, 24, 27, 0.35) 45%,
    rgba(24, 24, 27, 0.08) 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 24px 22px;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 14px;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-content {
  transform: translateY(12px);
  transition: transform 0.4s ease;
  text-align: right;
}

.gallery-card:hover .gallery-overlay-content {
  transform: translateY(0);
}

.gallery-overlay-icon {
  display: inline-block;
  font-size: 1.2rem;
  margin-bottom: 8px;
  opacity: 0.85;
}

.gallery-overlay-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px;
  line-height: 1.3;
  letter-spacing: -0.2px;
}

.gallery-overlay-text {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.5;
}

/* AOS animation fallback (no library needed for basic fade) */
[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.gallery-section.in-view [data-aos="fade-up"] {
  opacity: 1;
  transform: translateY(0);
}

[data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos-delay="150"] { transition-delay: 0.15s; }
[data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos-delay="250"] { transition-delay: 0.25s; }
[data-aos-delay="300"] { transition-delay: 0.3s; }

/* Responsive */
@media (max-width: 1024px) {
  .gallery-section {
    padding: 60px 16px 80px;
  }

  .gallery-title {
    font-size: 2.2rem;
  }

  .gallery-subtitle {
    font-size: 1.05rem;
  }

  .gallery-mosaic {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .gallery-item--large {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-item--medium {
    grid-column: span 2;
  }

  .gallery-item--small {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .gallery-section {
    padding: 48px 14px 64px;
  }

  .gallery-title {
    font-size: 1.85rem;
  }

  .gallery-subtitle {
    font-size: 0.95rem;
  }

  .gallery-header {
    margin-bottom: 36px;
  }

  .gallery-divider-line {
    width: 32px;
  }

  .gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gallery-item--large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-item--medium {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-item--small {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-overlay {
    padding: 16px 14px;
  }

  .gallery-overlay-title {
    font-size: 1rem;
  }

  .gallery-overlay-text {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .gallery-section {
    padding: 40px 10px 56px;
  }

  .gallery-title {
    font-size: 1.6rem;
  }

  .gallery-subtitle {
    font-size: 0.88rem;
  }

  .gallery-mosaic {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gallery-item--large,
  .gallery-item--medium,
  .gallery-item--small {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-card {
    aspect-ratio: 4 / 3;
    border-radius: 12px;
  }

  .gallery-item--large .gallery-card {
    aspect-ratio: 4 / 3;
  }

  .gallery-overlay {
    border-radius: 12px;
  }
}

#zappy-section-3 .gallery-item[data-aos] {
  opacity: 1 !important;
  transform: none !important;
}

#why-us .benefits-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 18px !important;
  max-width: 800px;
  margin: 0 auto;
}

#why-us .benefit-item {
  background: var(--surface-color);
  border: 1px solid rgba(181,28,46,0.25);
  border-radius: 12px;
  padding: 22px 24px;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

#why-us .benefit-item:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

#why-us .benefit-item h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: var(--primary-color);
}

#why-us .benefit-item .benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(181,28,46,0.1);
  margin-bottom: 12px;
}

#why-us .benefit-item .benefit-icon i {
  color: var(--primary-color);
  font-size: 1.3rem;
}

#why-us .benefit-item p {
  margin: 0;
  color: var(--text-secondary-color);
  line-height: 1.6;
}

#hero h1 {
  text-shadow: none !important;
}

/* [bewinner-legacy-navbar-fix] Site-specific legacy V1 navbar rebuild — consistent menu
   styling, editable logo container, and a real mobile hamburger drawer.
   Scoped to .site-navbar so it only touches this site's rebuilt navbar. */
.site-navbar .logo-link { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.site-navbar .nav-menu {
  display: flex; flex-direction: row; align-items: center;
  gap: 8px; list-style: none; margin: 0; padding: 0;
}
.site-navbar .nav-menu li { list-style: none; margin: 0; }
.site-navbar .nav-menu li a {
  display: inline-block; color: #1a1a1a; text-decoration: none;
  font-weight: 500; font-size: 1rem; line-height: 1.2;
  padding: 8px 12px; border-radius: 6px; white-space: nowrap;
  background: transparent; transition: color .25s ease, background-color .25s ease;
}
.site-navbar .nav-menu li a:hover,
.site-navbar .nav-menu li a:focus-visible { color: #D95F0E; }
.site-navbar .nav-cta-item-mobile { display: none; }
.site-navbar .site-navbar-toggle { display: none; }

@media (max-width: 768px) {
  .site-navbar { padding: 0 16px !important; min-height: 64px !important; gap: 8px; }

  .site-navbar .site-navbar-toggle {
    display: inline-flex !important; align-items: center; justify-content: center;
    width: 44px; height: 44px; padding: 0; margin: 0;
    background: transparent; border: none; cursor: pointer;
    font-size: 26px; line-height: 1; color: #1a1a1a;
    flex-shrink: 0; z-index: 10000;
  }

  .site-navbar .nav-menu {
    display: none; position: fixed; top: 0; right: 0; left: auto;
    width: 80%; max-width: 320px; height: 100vh; height: 100dvh;
    flex-direction: column; align-items: flex-start; justify-content: flex-start;
    gap: 4px; background: #ffffff; padding: 80px 20px 24px;
    box-shadow: -4px 0 24px rgba(0,0,0,.18); overflow-y: auto; z-index: 9999;
  }
  html[dir="ltr"] .site-navbar .nav-menu,
  html[lang="en"] .site-navbar .nav-menu {
    right: auto; left: 0; box-shadow: 4px 0 24px rgba(0,0,0,.18);
  }
  .site-navbar .nav-menu.active { display: flex; }
  .site-navbar .nav-menu li { width: 100%; }
  .site-navbar .nav-menu li a {
    display: block; width: 100%; font-size: 1.1rem; padding: 14px 8px;
    border-bottom: 1px solid rgba(0,0,0,.06);
  }

  .site-navbar .nav-cta-item-mobile { display: block; }
  .site-navbar > .nav-cta-btn { display: none !important; }
}
/* [bewinner-legacy-navbar-fix] end */



/* [bewinner-mobile-navbar-v2] Site-specific mobile navbar layout — centered logo, hamburger
   pinned to the start (right in RTL), phone button pinned to the end (left in
   RTL). Desktop layout is untouched. */
.site-navbar .nav-phone-btn { display: none; } /* desktop: hidden */
.site-navbar .nav-phone-btn svg { width: 18px; height: 18px; fill: #ffffff; display: block; }

@media (max-width: 768px) {
  /* Centered logo */
  .site-navbar .logo-link {
    position: absolute !important; left: 50% !important; top: 50% !important;
    transform: translate(-50%, -50%) !important; margin: 0 !important; z-index: 1;
  }
  .site-navbar .logo-link img.logo {
    height: 40px !important; width: auto !important; max-width: 160px !important;
  }

  /* Hamburger pinned to the START (right in RTL) */
  .site-navbar .site-navbar-toggle,
  .site-navbar #mobileToggle {
    position: absolute !important; top: 50% !important; bottom: auto !important;
    transform: translateY(-50%) !important;
    right: 12px !important; left: auto !important; z-index: 3;
  }
  html[dir="ltr"] .site-navbar .site-navbar-toggle,
  html[dir="ltr"] .site-navbar #mobileToggle {
    right: auto !important; left: 12px !important;
  }

  /* Phone button pinned to the END (left in RTL) */
  .site-navbar .nav-phone-btn {
    display: inline-flex !important; align-items: center; justify-content: center;
    position: absolute !important; top: 50% !important; bottom: auto !important;
    transform: translateY(-50%) !important;
    left: 12px !important; right: auto !important; z-index: 3;
    width: 40px; height: 40px; border-radius: 50%;
    background: #B51C2E; color: #ffffff; text-decoration: none;
    border: none; padding: 0;
  }
  html[dir="ltr"] .site-navbar .nav-phone-btn {
    left: auto !important; right: 12px !important;
  }
}
/* [bewinner-mobile-navbar-v2] end */





/* zappy-nav-child-indent */
.zappy-products-dropdown .zappy-nav-child > a,
.sub-menu .zappy-nav-child > a {
  padding-left: 28px !important;
  font-size: 0.9em !important;
  opacity: 0.85 !important;
}
[dir="rtl"] .zappy-products-dropdown .zappy-nav-child > a,
[dir="rtl"] .sub-menu .zappy-nav-child > a,
html[lang="he"] .zappy-products-dropdown .zappy-nav-child > a,
html[lang="he"] .sub-menu .zappy-nav-child > a,
html[lang="ar"] .zappy-products-dropdown .zappy-nav-child > a,
html[lang="ar"] .sub-menu .zappy-nav-child > a {
  padding-left: 0 !important;
  padding-right: 28px !important;
}
.zappy-products-dropdown .zappy-nav-parent > a,
.sub-menu .zappy-nav-parent > a {
  font-weight: 600 !important;
}
@media (max-width: 768px) {
  .nav-menu.active,
  #navMenu.active {
    max-width: 100vw !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
  }
}


/* ========== EMPTY SUBMENU HIDING (Auto-added by Zappy) ========== */
.sub-menu:empty,
.dropdown-menu:empty,
.sub-menu.zappy-empty-submenu,
.dropdown-menu.zappy-empty-submenu,
.nav-menu .sub-menu.zappy-empty-submenu,
nav .sub-menu.zappy-empty-submenu,
.navbar .sub-menu.zappy-empty-submenu,
#navMenu .sub-menu.zappy-empty-submenu,
#navMenu .dropdown-menu.zappy-empty-submenu {
  display: none !important;
}


/* ========== RTL MOBILE NAVBAR FIX (zappy-rtl-mobile-fix) ========== */
/* High-specificity rules to ensure RTL positioning wins over any [lang="en"] conflicts */
/* For RTL sites: hamburger on RIGHT, phone on LEFT (mirror of LTR layout) */
/* NOTE: Includes both html[dir="rtl"] AND [dir="rtl"] selectors as fallback */
/* because some pages may be wrapped with <html lang="en"> (missing dir="rtl" on html) */
/* but still have dir="rtl" on <body> or other ancestor elements */

@media (max-width: 768px) {
  /* RTL Mobile Toggle (hamburger) - positioned on RIGHT */
  /* Using multiple parent selectors for higher specificity */
  html[dir="rtl"] .navbar .mobile-toggle,
  html[dir="rtl"] nav .mobile-toggle,
  html[dir="rtl"] header .mobile-toggle,
  html[dir="rtl"] .nav-container .mobile-toggle,
  html[dir="rtl"] .mobile-toggle,
  [dir="rtl"] .navbar .mobile-toggle,
  [dir="rtl"] nav .mobile-toggle,
  [dir="rtl"] header .mobile-toggle,
  [dir="rtl"] .nav-container .mobile-toggle,
  [dir="rtl"] .mobile-toggle,
  html[lang="he"] .mobile-toggle,
  html[lang="ar"] .mobile-toggle {
    left: auto !important;
    right: 15px !important;
  }
  
  /* RTL Phone Button - positioned on LEFT */
  html[dir="rtl"] .navbar .phone-header-btn,
  html[dir="rtl"] nav .phone-header-btn,
  html[dir="rtl"] header .phone-header-btn,
  html[dir="rtl"] .nav-container .phone-header-btn,
  html[dir="rtl"] .phone-header-btn,
  [dir="rtl"] .navbar .phone-header-btn,
  [dir="rtl"] nav .phone-header-btn,
  [dir="rtl"] header .phone-header-btn,
  [dir="rtl"] .nav-container .phone-header-btn,
  [dir="rtl"] .phone-header-btn,
  html[lang="he"] .phone-header-btn,
  html[lang="ar"] .phone-header-btn {
    left: 15px !important;
    right: auto !important;
  }
  
  /* RTL Mobile Menu - slides from RIGHT */
  html[dir="rtl"] .navbar .nav-menu,
  html[dir="rtl"] nav .nav-menu,
  html[dir="rtl"] header .nav-menu,
  html[dir="rtl"] .nav-container .nav-menu,
  html[dir="rtl"] .nav-menu,
  [dir="rtl"] .navbar .nav-menu,
  [dir="rtl"] nav .nav-menu,
  [dir="rtl"] header .nav-menu,
  [dir="rtl"] .nav-container .nav-menu,
  [dir="rtl"] .nav-menu,
  html[lang="he"] .nav-menu,
  html[lang="ar"] .nav-menu {
    left: auto !important;
    right: 0 !important;
  }
  
  /* RTL Mobile Menu Links - text align right */
  html[dir="rtl"] .nav-menu a,
  html[dir="rtl"] .nav-menu li,
  [dir="rtl"] .nav-menu a,
  [dir="rtl"] .nav-menu li,
  html[lang="he"] .nav-menu a,
  html[lang="he"] .nav-menu li,
  html[lang="ar"] .nav-menu a,
  html[lang="ar"] .nav-menu li {
    text-align: right !important;
  }
}

/* ========== END RTL MOBILE NAVBAR FIX ========== */


/* ========== NAV CONTAINER MIN-HEIGHT FIX (nav-container-min-height-fix) ========== */
/* On mobile, all nav children are position:absolute/fixed (out of flow), */
/* so height:auto collapses to 0px. min-height ensures the navbar is visible. */

/* DEFENSIVE: Ensure CTA container is visible on desktop */
/* This guards against CSS minifiers (CleanCSS level 2) that may pull */
/* the mobile display:none rule out of its @media query */
@media (min-width: 769px) {
  .nav-cta-container,
  .nav-cta-container:not(:has(.lang-switcher)) {
    display: flex !important;
    align-items: center !important;
  }
}

@media (max-width: 768px) {
  .nav-container {
    min-height: 70px !important;
    position: relative !important;
  }
  /* Reset nav-cta-container desktop styling (box-shadow/padding) on mobile */
  .nav-cta-container {
    box-shadow: none !important;
    padding: 0 !important;
  }
  /* Hide nav-cta-container when no lang-switcher (only CTA btn, which is hidden on mobile) */
  .nav-cta-container:not(:has(.lang-switcher)) {
    display: none !important;
  }
}

/* ========== END NAV CONTAINER MIN-HEIGHT FIX ========== */


/* ========== HERO IMAGE GRADIENT FIX (hero-image-gradient-fix) ========== */
/* Prevent hero image fade gradient from bleeding over headline text below. */
/* The .image-fade-gradient has bottom: -30px which extends below its parent; */
/* on mobile stacked layout this overlaps the h1 text. */

@media (max-width: 768px) {
  .hero-image-column {
    overflow: hidden !important;
  }
  .image-fade-gradient {
    bottom: 0 !important;
  }
}

/* ========== END HERO IMAGE GRADIENT FIX ========== */


/* ========== FULLSCREEN HERO OVERFLOW FIX (fullscreen-hero-overflow-fix) ========== */
@media (max-width: 768px) {

  section[data-hero-type*="fullscreen"] {
    height: auto !important;
    min-height: 100svh !important;
    padding: 0 0 90px 0 !important;
  }
  section[data-hero-type*="fullscreen"] > [class*="-container"]:not([class*="bg"]):not([class*="scrim"]):not([class*="divider"]),
  section[data-hero-type*="fullscreen"] > .container {
    padding-bottom: 100px !important;
    min-height: auto !important;
  }
}
/* ========== END FULLSCREEN HERO OVERFLOW FIX ========== */


/* ========== PRODUCT ICON STYLES (product-icon-styles) ========== */
.product-title-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; width: 100%; }
.product-title-row h1 { flex: 1; min-width: 0; }
.product-icon-actions { display: flex; gap: 8px; flex-shrink: 0; padding-top: 6px; }
.icon-btn { width: 36px; height: 36px; border: none; background: transparent; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: color 0.2s; color: currentColor; padding: 0; }
.icon-btn:hover { color: var(--primary-color, #ff0083); }
.icon-btn.active { color: #e74c3c; }
.icon-btn.active .heart-outline { display: none !important; }
.icon-btn.active .heart-filled { display: block !important; }
.profile-section, .addresses-section, .favorites-section, .orders-section { border: 1px solid var(--border-color, rgba(128,128,128,0.2)); border-radius: 12px; padding: 24px; margin-bottom: 24px; background: transparent; }
.favorites-section h2 { font-size: 1.25rem; color: var(--text-color, #1f2937); margin-bottom: 20px; }
.favorites-loading { text-align: center; padding: 20px; color: var(--text-secondary, #6b7280); }
.favorites-empty { text-align: center; padding: 32px; color: var(--text-secondary, #6b7280); }
.favorites-empty p { margin-bottom: 16px; }
.favorites-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.favorite-card { background: transparent; border: 1px solid var(--border-color, rgba(128,128,128,0.2)); border-radius: 10px; overflow: hidden; transition: box-shadow 0.2s; position: relative; }
.favorite-card:hover { box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
.favorite-card-img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.favorite-card-body { padding: 12px; }
.favorite-card-body h4 { font-size: 0.875rem; font-weight: 500; color: var(--text-color, #1f2937); margin: 0 0 6px 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.favorite-price { font-weight: 600; color: var(--primary-color, #ff0083); font-size: 0.9rem; }
.favorite-remove-btn { position: absolute; top: 8px; right: 8px; width: 28px; height: 28px; border-radius: 50%; border: none; background: rgba(255,255,255,0.9); color: #dc2626; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 16px; transition: all 0.2s; box-shadow: 0 1px 4px rgba(0,0,0,0.1); }
.favorite-remove-btn:hover { background: #dc2626; color: white; }
@media (max-width: 480px) { .favorites-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }
/* ========== END PRODUCT ICON STYLES ========== */

/* ========== ORPHANED_ZOOM_IMG_FIX ========== */
@media (max-width: 768px) {
  .zappy-preserve-css-grid > img[data-zappy-zoom],
  [class*="-grid"] > img[data-zappy-zoom] {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 300px !important;
    object-fit: cover !important;
    left: auto !important;
    top: auto !important;
  }
}
/* ========== END ORPHANED_ZOOM_IMG_FIX ========== */


/* ========== GRID RESPONSIVE FIX (zappy-grid-mobile-fix) ========== */
/* Ensures grids with explicit columns use CSS variable and are responsive on mobile */

/* DESKTOP: Explicit column grids use CSS variable for grid-template-columns */
/* The deployment process ensures --zappy-grid-cols is always set in inline styles */
[data-zappy-explicit-columns="true"] {
  display: grid !important;
  grid-template-columns: var(--zappy-grid-cols, repeat(2, minmax(0, 1fr))) !important;
}
/* Carousel mode overrides grid display to allow flex-based track layout */
.zappy-carousel-mode,
[data-zappy-display-mode="carousel"] {
  display: block !important;
}

/* ZOOM WRAPPER: Ensure overflow:hidden and position:relative for crop zoom effect */
/* The wrapper clips the oversized image to create the zoom/crop effect */
/* position:relative is needed so absolutely positioned images stay within the wrapper */
[data-zappy-zoom-wrapper="true"] {
  overflow: hidden !important;
  position: relative !important;
}

/* Prevent inserted elements from exceeding their container width.
   max-width uses no !important so inline styles can set a specific constraint. */
.zappy-inserted-element {
  max-width: 100%;
  box-sizing: border-box !important;
}

@media (max-width: 768px) {
  /* Auto-grid (AI-generated) grids - force single column on mobile */
  .zappy-preserve-css-grid[data-zappy-auto-grid="true"],
  [data-zappy-auto-grid="true"] {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  
  /* Grid children: override min-width:auto so children with fixed-width
     content (e.g. zoom wrappers with width:448px!important) can shrink
     to fit the 1fr column instead of overflowing the grid container. */
  .zappy-preserve-css-grid[data-zappy-auto-grid="true"] > *,
  [data-zappy-auto-grid="true"] > *,
  [data-zappy-explicit-columns="true"] > * {
    min-width: 0 !important;
    max-width: 100% !important;
  }
  
  /* Featured grids - force single column on mobile */
  .featured-grid {
    grid-template-columns: 1fr !important;
  }
  
  /* Neutralize centering transforms on mobile */
  [data-zappy-center-transform] {
    transform: none !important;
  }
  
  /* Media-only grid items - constrain height on mobile */
  .zappy-preserve-css-grid[data-zappy-auto-grid="true"] > .zappy-grid-item-media-only,
  [data-zappy-auto-grid="true"] > .zappy-grid-item-media-only {
    height: auto !important;
    max-height: 300px !important;
  }
  
  .zappy-preserve-css-grid[data-zappy-auto-grid="true"] > .zappy-grid-item-media-only img,
  [data-zappy-auto-grid="true"] > .zappy-grid-item-media-only img {
    height: auto !important;
    max-height: 300px !important;
  }
  
  /* Full-width mode zoom wrappers - ensure image is visible (not collapsed) */
  [data-zappy-zoom-wrapper-width-mode="full"] img {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 300px !important;
    left: auto !important;
    top: auto !important;
    object-fit: cover !important;
  }
  
  /* MOBILE: Explicit column grids - force single column on mobile */
  [data-zappy-explicit-columns="true"] {
    grid-template-columns: 1fr !important;
  }
  
  /* Inline grid with fixed pixel columns - make responsive */
  .zappy-inline-grid-active.zappy-preserve-css-grid {
    grid-template-columns: 1fr !important;
  }
  
  /* AI-generated section grids with common naming patterns */
  /* These often have fixed pixel column widths that don't adapt to mobile */
  [class*="-grid"]:not([data-zappy-auto-grid]):not(.zappy-preserve-css-grid):not([data-zappy-explicit-columns="true"]) {
    grid-template-columns: 1fr !important;
  }
  
  /* Reset any column/row spanning items on mobile - they cause overflow */
  /* Gallery grids often have -large items that span multiple columns */
  [class*="-grid"] > [class*="-large"],
  [class*="-grid"] > [class*="-item-large"],
  [class*="-grid"] > [style*="grid-column: span"],
  [class*="-grid"] > [style*="grid-row: span"] {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
  
  /* Common AI-generated visual/frame containers that may overflow */
  [class*="-visual"],
  [class*="-frame"] {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }
  
  /* CRITICAL: Constrain zoom wrappers on mobile without breaking saved crop geometry */
  [data-zappy-zoom-wrapper="true"] {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
    position: relative !important;
  }

  /* The zoom wrapper's image is position:absolute (so it contributes 0 to the
     wrapper's intrinsic content width). Inserted-element parents that carry a
     desktop pixel height can either collapse to 0px wide or preserve a stale
     desktop height after their child wrapper shrinks on mobile. Force them
     to fill the parent container and let the wrapper's aspect-ratio determine
     the real height, eliminating empty space before following text. */
  .zappy-inserted-element:has(> [data-zappy-zoom-wrapper="true"]) {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
  }

  .zappy-inserted-element:has(> [data-zappy-zoom-wrapper="true"]) > [data-zappy-zoom-wrapper="true"] {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }

  /* Reset zoom wrapper images on mobile to responsive display.
     Images with explicit mobile crop overrides are excluded - the JS runtime
     applies their crop/zoom after page load. */
  [data-zappy-zoom-wrapper="true"]:not([data-zappy-zoom-wrapper-width-mode="full"]) img:not([data-zappy-mobile-object-position]):not([data-zappy-mobile-zoom]) {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    max-height: 300px !important;
    max-width: 100% !important;
    object-fit: cover !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
  }
  
  /* Carousel: ensure block display on mobile */
  .zappy-carousel-mode,
  [data-zappy-display-mode="carousel"] {
    display: block !important;
  }
  /* JS-initialized carousel: constrain wrapper on mobile */
  .zappy-carousel-js-init .zappy-carousel-container-wrapper {
    max-width: calc(100% - 20px) !important;
  }
  .zappy-carousel-js-init .zappy-carousel-item {
    min-width: 0 !important;
    max-width: 100% !important;
  }
  /* CSS-only fallback: if JS didn't initialize, stack items vertically */
  .zappy-carousel-mode:not(.zappy-carousel-js-init) .zappy-carousel-container-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
  }
  .zappy-carousel-mode:not(.zappy-carousel-js-init) .zappy-carousel-track {
    flex-direction: column !important;
    transform: none !important;
    gap: 1.5rem !important;
  }
  .zappy-carousel-mode:not(.zappy-carousel-js-init) .zappy-carousel-item {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    flex: 0 0 auto !important;
  }
  .zappy-carousel-mode:not(.zappy-carousel-js-init) > :not(style):not(script):not(.zappy-carousel-btn):not(.zappy-carousel-dots):not(.zappy-carousel-container-wrapper) {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    flex: none !important;
  }
  .zappy-carousel-mode:not(.zappy-carousel-js-init) .zappy-carousel-btn,
  .zappy-carousel-mode:not(.zappy-carousel-js-init) .zappy-carousel-dots {
    display: none !important;
  }
  /* Carousel items: fix zoom wrapper padding creating excess spacing */
  .zappy-carousel-item [data-zappy-zoom-wrapper="true"],
  .zappy-carousel-mode > div [data-zappy-zoom-wrapper="true"] {
    padding-bottom: 0 !important;
    min-height: 0 !important;
    height: auto !important;
  }
  /* Carousel buttons: position inside the card area on mobile */
  .zappy-carousel-js-init > .zappy-carousel-btn {
    left: 4px !important;
    right: auto !important;
    width: 36px !important;
    height: 36px !important;
    font-size: 16px !important;
    background: rgba(255,255,255,0.9) !important;
  }
  .zappy-carousel-js-init > .zappy-carousel-btn.zappy-carousel-right {
    left: auto !important;
    right: 4px !important;
  }
  
  /* ========== MAIN PADDING FIX ========== */
  /* Fix double-padding from old V2 mobile CSS that applied padding to both main and sections */
  /* Exclude ecommerce-page which needs its own horizontal padding for proper mobile layout */
  main:not(.ecommerce-page) {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  
  /* Hero sections need flex-column on mobile for proper stacking */
  section[class*="hero"],
  .home-Hero-section {
    flex-direction: column !important;
  }
  
  /* Hero sections need extra padding-top to clear the sticky navbar */
  /* The navbar is ~70px tall, so hero needs at least 100px padding-top */
  /* IMPORTANT: Use section tag to avoid matching child elements like buttons that contain "-hero-section" in their BEM class */
  section[class*="-hero-section"]:first-of-type,
  main > section:first-child {
    padding-top: 100px !important;
  }

  /* Split hero (.hero-sbs-wrap) already applies ~100px top padding for the navbar.
     Without this override, the global rule above stacks and mobile shows ~200px
     of dead air above the hero image. */
  main > section:first-child:has(.hero-sbs-wrap),
  section[class*="-hero-section"]:first-of-type:has(.hero-sbs-wrap) {
    padding-top: 0 !important;
  }

  /* Zoom-crop hero portraits: anchor with inset:0 so RTL/LTR matches and cover
     cropping stays centered (physical left:0 absolute imgs can mis-read in RTL). */
  .hero-sbs-image-frame [data-zappy-zoom-wrapper="true"] img {
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center center !important;
  }
  
  /* ========== HERO CONTAINER FULL-WIDTH (FULLSCREEN HEROES ONLY) ========== */
  /* Only strip container padding/width for heroes with actual background images.
     Text-only and side-by-side hero sections on inner pages need normal padding. */
  .hero-container,
  /* V2 generation-time fullscreen heroes */
  section[data-hero-type="fullscreen-scrim"] > .container,
  section[data-hero-type="fullscreen-card"] > .container,
  /* Editor-applied background images on hero sections */
  section[class*="hero"][data-zappy-bg-type="image"] > .container,
  section[class*="hero"][data-zappy-bg-type="video"] > .container,
  /* V1 fallback: hero sections with known bg structures */
  section[class*="hero"]:has(.hero-bg-container) > .container,
  section[class*="hero"]:has([data-hero-bg]) > .container {
    width: 100% !important;
    max-width: 100% !important;
  }
  
  /* ========== HERO WIDTH FIX ========== */
  /* Remove nested horizontal padding for fullscreen-type heroes only */
  .home-Hero-section .hero-container,
  .home-Hero-section .hero-content,
  .home-Hero-section .hero-metrics,
  .home-Hero-section .hero-image-column,
  .home-Hero-section .hero-image-frame,
  .home-Hero-section .container,
  .home-Hero-section .wrapper,
  /* V2 fullscreen heroes */
  section[data-hero-type="fullscreen-scrim"] .hero-container,
  section[data-hero-type="fullscreen-scrim"] .hero-content,
  section[data-hero-type="fullscreen-scrim"] .container,
  section[data-hero-type="fullscreen-card"] .hero-container,
  section[data-hero-type="fullscreen-card"] .hero-content,
  section[data-hero-type="fullscreen-card"] .container,
  /* Editor-applied background images on hero sections */
  section[class*="hero"][data-zappy-bg-type="image"] .hero-container,
  section[class*="hero"][data-zappy-bg-type="image"] .hero-content,
  section[class*="hero"][data-zappy-bg-type="image"] .container,
  section[class*="hero"][data-zappy-bg-type="video"] .hero-container,
  section[class*="hero"][data-zappy-bg-type="video"] .hero-content,
  section[class*="hero"][data-zappy-bg-type="video"] .container,
  /* V1 fallback: hero sections with known bg structures */
  section[class*="hero"]:has(.hero-bg-container) .hero-container,
  section[class*="hero"]:has(.hero-bg-container) .hero-content,
  section[class*="hero"]:has(.hero-bg-container) .container,
  section[class*="hero"]:has([data-hero-bg]) .hero-container,
  section[class*="hero"]:has([data-hero-bg]) .hero-content,
  section[class*="hero"]:has([data-hero-bg]) .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-inline-start: 0 !important;
    padding-inline-end: 0 !important;
  }
  
  /* ========== HERO VERTICAL SPACING FIX ========== */
  .home-Hero-section .hero-content,
  .home-Hero-section .hero-container,
  .home-Hero-section .hero-image-column {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  
  .hero-cta-row {
    padding: 8px 0 !important;
    margin: 8px 0 12px !important;
  }
  
  .hero-content {
    gap: 12px !important;
  }
  
  .hero-metrics {
    gap: 10px !important;
  }
  
  .metric-card {
    padding: 12px !important;
  }
  
  .hero-container {
    gap: 16px !important;
  }

  /* ========== GRID OVERFLOW FIX ========== */
  /* CSS Grid items default to min-width:auto, preventing them from shrinking
     below their content's intrinsic size. Fixed-width zoom wrappers or large
     images inside grid items can force the column wider than the viewport. */
  .hero-container > * {
    min-width: 0 !important;
    overflow: hidden !important;
  }

  /* Zappy-inserted image elements with fixed-width zoom wrappers must
     respect the parent container width on mobile */
  .zappy-inserted-element,
  [data-zappy-zoom-wrapper] {
    max-width: 100% !important;
  }

  /* ========== FULLSCREEN HERO OVERFLOW FIX ========== */

  section[data-hero-type*="fullscreen"] {
    height: auto !important;
    min-height: 100svh !important;
    padding: 0 0 90px 0 !important;
  }
  section[data-hero-type*="fullscreen"] > [class*="-container"]:not([class*="bg"]):not([class*="scrim"]):not([class*="divider"]),
  section[data-hero-type*="fullscreen"] > .container {
    padding-bottom: 100px !important;
    min-height: auto !important;
  }
}

/* ========== HERO SECTION WIDTH CONSTRAINT (ALL VIEWPORTS) ========== */
/* Prevent hero sections from exceeding viewport width.                */
/* Root cause: AI-generated CSS may use width:100vw or add horizontal  */
/* padding to the section, causing it to overflow the viewport.        */
/* NOTE: Do NOT add overflow:hidden here — it clips SVG bottom dividers */
/* that need overflow:visible to extend into the next section.          */
section[class*="hero" i],
section[class*="Hero"],
section[data-hero-type] {
  max-width: 100% !important;
  box-sizing: border-box !important;
}

/* ========== SVG DIVIDER OVERLAY FIX ========== */
/* Many AI sections place .section-divider absolutely at the bottom of a section,
   which can overlap/cut off the last row of content. The safest CSS-only fix
   is to prevent overlay by forcing the divider into normal flow. */
.section-divider {
  position: relative !important;
  bottom: auto !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  z-index: auto !important;
  margin-top: 16px !important;
}

.section-divider svg {
  display: block !important;
  width: 100% !important;
  height: auto !important;
}

/* Exclude small icon SVGs from full-width sizing - these are decorative icons, not wave dividers */
.section-divider svg.divider-icon,
.section-divider svg[width="32"],
.section-divider svg[width="24"],
.section-divider svg[width="48"],
.section-divider svg[viewBox="0 0 32 32"],
.section-divider svg[viewBox="0 0 24 24"],
.section-divider svg[viewBox="0 0 48 48"] {
  width: auto !important;
  height: auto !important;
  max-width: 64px !important;
  max-height: 64px !important;
}

/* ========== END SVG DIVIDER OVERLAY FIX ========== */

/* ========== HORIZONTAL-PAIR GRID MEDIA FIX ========== */
/* Ensures media in horizontal-pair grids fills columns correctly */

/* Image/video media cells: stretch to fill the grid cell */
.zappy-horizontal-grid[data-zappy-grid-kind="horizontal-pair"] [data-zappy-media-cell="true"]:not([data-element-type="icon"]) {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: stretch !important;
  min-height: 0 !important;
}

/* Icon media cells: use flex for centering but allow alignment to be controlled by the editor */
.zappy-horizontal-grid[data-zappy-grid-kind="horizontal-pair"] [data-zappy-media-cell="true"][data-element-type="icon"] {
  position: relative !important;
  display: flex !important;
  min-height: 0 !important;
}

/* Images/videos: preserve aspect ratio while filling column width */
.zappy-horizontal-grid[data-zappy-grid-kind="horizontal-pair"] [data-zappy-media-cell="true"] > img,
.zappy-horizontal-grid[data-zappy-grid-kind="horizontal-pair"] [data-zappy-media-cell="true"] > video {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: none !important;
  flex: 0 0 auto !important;
  min-height: 0 !important;
  display: block !important;
  object-fit: contain !important;
  object-position: center !important;
}

/* Icons/SVG: respect their explicit pixel size from the editor */
/* Do NOT force width/height: 100% - icons should use their inline size */
.zappy-horizontal-grid[data-zappy-grid-kind="horizontal-pair"] [data-zappy-media-cell="true"] > svg,
.zappy-horizontal-grid[data-zappy-grid-kind="horizontal-pair"] [data-zappy-media-cell="true"] > .iconify,
.zappy-horizontal-grid[data-zappy-grid-kind="horizontal-pair"] [data-zappy-media-cell="true"] > .iconify svg {
  flex: 0 0 auto !important;
  min-height: 0 !important;
  display: inline-block !important;
}

/* Non-media grid items (buttons, text, etc.) should NOT stretch */
.zappy-horizontal-grid[data-zappy-grid-kind="horizontal-pair"] > .zappy-inserted-element:not([data-zappy-media-cell]) {
  align-self: start !important;
  height: auto !important;
  width: auto !important;
  max-width: 100% !important;
}

/* Buttons inside non-media grid items should NOT stretch horizontally */
.zappy-horizontal-grid[data-zappy-grid-kind="horizontal-pair"] > .zappy-inserted-element:not([data-zappy-media-cell]) .btn,
.zappy-horizontal-grid[data-zappy-grid-kind="horizontal-pair"] > .zappy-inserted-element:not([data-zappy-media-cell]) [data-element-type="button"] {
  width: auto !important;
  flex: 0 0 auto !important;
}

/* ========== END HORIZONTAL-PAIR GRID MEDIA FIX ========== */

/* ========== END GRID RESPONSIVE FIX ========== */


/* ZAPPY_CONTACT_FORM_LAYOUT_FIX */
form.contact-form, .contact-form { flex-direction: column !important; align-items: stretch !important; }
form.contact-form > .contact-form-field, .contact-form > .contact-form-field { width: 100% !important; align-self: stretch !important; }
form.contact-form .contact-input, form.contact-form .contact-textarea { width: 100% !important; box-sizing: border-box !important; }


/* ZAPPY_NAVBAR_CTA_ALIGNMENT_FIX */
.nav-cta-container .zappy-search-container,
.zappy-search-container { align-self: center; }
.nav-cta-container p { margin: 0 !important; }


/* ZAPPY_SECTION_BG_TYPE_FIX */
[data-zappy-bg-type="color"] { background-image: none !important; background-color: var(--zappy-bg-color, transparent) !important; }
[data-zappy-bg-type="image"] { background-image: linear-gradient(var(--zappy-bg-overlay, rgba(0,0,0,0)), var(--zappy-bg-overlay, rgba(0,0,0,0))), var(--zappy-bg-image, none) !important; background-size: cover !important; background-position: center !important; background-repeat: no-repeat !important; }
[data-zappy-bg-type="video"] { background-image: none !important; }


/* ZAPPY_IOS_NAVBAR_GAP_FIX */
/* iOS Safari does not clip overflow-x:hidden on <html>, so a page with any
   horizontal overflow ends up with visual viewport > layout viewport.
   position:fixed children anchored with right:0 (the mobile dropdown menu)
   then pin to the visual viewport right edge — off-screen past the navbar.
   Companion JS (ZAPPY_IOS_VIEWPORT_GAP_FIX in script.js) measures the gap
   and exposes it as --ios-viewport-gap; this rule uses it to shift the
   menu inward so it lands on the real layout-viewport right edge. On every
   other browser the gap is 0 and the rule is a no-op.

   The selector list below intentionally mirrors the RTL selectors used
   elsewhere in the stylesheet — we need equal-or-higher specificity to
   win the cascade (!important alone can't beat higher specificity). */
@media (max-width: 768px) {
  .navbar,
  nav.navbar {
    width: auto !important;
    max-width: none !important;
    left: 0 !important;
    right: 0 !important;
    overflow-x: clip !important;
    box-sizing: border-box !important;
  }
  #navMenu,
  .nav-menu,
  html[dir="rtl"] .nav-menu,
  html[dir="rtl"] .navbar .nav-menu,
  html[dir="rtl"] nav .nav-menu,
  html[dir="rtl"] header .nav-menu,
  html[dir="rtl"] .nav-container .nav-menu,
  [dir="rtl"] .navbar .nav-menu,
  [dir="rtl"] nav .nav-menu,
  [dir="rtl"] header .nav-menu,
  [dir="rtl"] .nav-container .nav-menu,
  [dir="rtl"] .nav-menu,
  html[lang="he"] .nav-menu,
  html[lang="ar"] .nav-menu {
    /* Force position:fixed so the --ios-viewport-gap shift is measured
       against the (visual) viewport, not whatever container the menu may
       have been reparented into by earlier v1/v2 patches.
       --zappy-navbar-bottom is set by the runtime JS companion and
       defaults to 70px — this lets us override the v2 `top: 100%` (which
       with position:fixed would resolve to the full viewport height and
       push the menu off-screen). */
    position: fixed !important;
    top: var(--zappy-navbar-bottom, 70px) !important;
    right: var(--ios-viewport-gap, 0px) !important;
  }
}


/* ZAPPY_PRODUCTS_DROPDOWN_LTR_INDENT */
/* LTR mirror of the [dir="rtl"] indentation block. Equal-or-higher
   specificity than the shorthand .navbar .sub-menu li a override so the
   nested sub-category items keep their visual indent on every LTR page —
   English, Spanish, French, Russian, German, etc. The selectors target
   dir="ltr" (the source of truth set on <html> by per-language page
   generation), NOT a specific language code, so the rule stays generic
   across every site / language combination. */
[dir="ltr"] .sub-menu .zappy-nav-child > a,
[dir="ltr"] .zappy-products-dropdown .zappy-nav-child > a,
html[dir="ltr"] .sub-menu .zappy-nav-child > a,
html[dir="ltr"] .zappy-products-dropdown .zappy-nav-child > a {
  padding-left: 28px !important;
  padding-right: 16px !important;
  font-size: 0.9em !important;
  opacity: 0.85 !important;
}
@media (max-width: 768px) {
  [dir="ltr"] .navbar .zappy-products-dropdown > .sub-menu .zappy-nav-child > a,
  [dir="ltr"] nav.navbar .zappy-products-dropdown > .sub-menu .zappy-nav-child > a,
  html[dir="ltr"] .navbar .zappy-products-dropdown > .sub-menu .zappy-nav-child > a,
  html[dir="ltr"] nav.navbar .zappy-products-dropdown > .sub-menu .zappy-nav-child > a {
    padding-left: 36px !important;
    padding-right: 16px !important;
  }
}


/* ZAPPY_MOBILE_NAV_MENU_ITEM_PADDING */
@media (max-width: 768px) {
  .navbar .nav-menu.active > li > a,
  nav.navbar .nav-menu.active > li > a,
  #navMenu.active > li > a,
  .nav-menu.open > li > a {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 16px !important;
    height: auto !important;
    min-height: 44px !important;
    line-height: 1.4 !important;
  }
  .navbar .nav-menu.active > li,
  nav.navbar .nav-menu.active > li,
  #navMenu.active > li,
  .nav-menu.open > li {
    margin: 4px 0 !important;
  }
  .navbar .nav-menu.active > li.zappy-products-dropdown > a,
  nav.navbar .nav-menu.active > li.zappy-products-dropdown > a,
  #navMenu.active > li.zappy-products-dropdown > a,
  .nav-menu.open > li.zappy-products-dropdown > a {
    padding-right: 56px !important;
  }
  html[dir="rtl"] .navbar .nav-menu.active > li.zappy-products-dropdown > a,
  html[dir="rtl"] nav.navbar .nav-menu.active > li.zappy-products-dropdown > a,
  html[dir="rtl"] #navMenu.active > li.zappy-products-dropdown > a,
  html[dir="rtl"] .nav-menu.open > li.zappy-products-dropdown > a {
    padding-right: 16px !important;
    padding-left: 56px !important;
  }
}

/* Cookie Consent Styles */
/* Cookie Consent Customizations ccCssV13 */
:root {
  /* --cc-bg has to STAY translucent (with the matching backdrop-filter on
   * the bar below) so the slim bar reads as a frosted overlay rather than
   * a solid horizontal stripe slapped on top of the page. The preferences
   * modal — which doesn't use backdrop-filter — overrides this to a solid
   * white below so it doesn't render see-through against the page. */
  --cc-bg: rgba(255, 255, 255, 0.96);
  --cc-modal-bg: #ffffff;
  --cc-primary-color: #1f2937;
  --cc-secondary-color: #4b5563;
  --cc-btn-primary-bg: #b51c2e;
  --cc-btn-primary-color: #ffffff;
  --cc-btn-primary-border: #b51c2e;
  --cc-btn-primary-hover-bg: #9c0315;
  --cc-btn-primary-hover-border: #9c0315;
  --cc-btn-primary-hover-color: #ffffff;
  /* --cc-btn-secondary-* are used by BOTH the bar's "Customize" link and
   * the preferences modal's "Accept Necessary" / "Save Preferences" pills.
   * We keep the token defaults sensible (light grey fill, dark text) so
   * the preferences-modal buttons stay visible, then override only
   * .zappy-cookie-banner__button--customize directly to render the
   * Customize link as a transparent underlined text. */
  --cc-btn-secondary-bg: #f3f4f6;
  --cc-btn-secondary-color: #1f2937;
  --cc-btn-secondary-border: #e5e7eb;
  --cc-btn-secondary-hover-bg: #e5e7eb;
  --cc-btn-secondary-hover-color: #111827;
  --cc-btn-secondary-hover-border: #d1d5db;
  --cc-toggle-on-bg: #b51c2e;
}

#cc-main,
#cc--main {
  font-family: inherit !important;
  color: var(--cc-primary-color);
}

/* === Zappy-owned slim bottom bar ===
 * Single-row inline layout: [description text] ......... [Customize] [Accept]
 * The banner is our DOM (#zappy-cookie-banner), not the library's #cm
 * consent modal. That avoids vanilla-cookieconsent's internal
 * <button><span>Label</span></button> structure entirely.
 */
#zappy-cookie-banner {
  position: fixed !important;
  inset: auto 0 0 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 10px 56px 10px 20px !important;
  background: var(--cc-bg) !important;
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  backdrop-filter: saturate(180%) blur(12px);
  border: none !important;
  border-top: 1px solid rgba(181, 28, 46, 0.18) !important;
  border-radius: 0 !important;
  box-shadow: 0 -1px 12px rgba(0, 0, 0, 0.04) !important;
  display: flex !important;
  align-items: center !important;
  min-height: 52px !important;
  font-size: 13px !important;
  line-height: 1.4 !important;
  z-index: 2147483646;
}

#zappy-cookie-banner .zappy-cookie-banner__inner {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  gap: 16px !important;
  max-width: 1200px;
  width: 100% !important;
  margin: 0 auto;
  padding: 0 !important;
  min-height: 32px !important;
}

#zappy-cookie-banner .zappy-cookie-banner__text {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0 !important;
  margin: 0 !important;
  display: block !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  color: var(--cc-primary-color) !important;
  height: 32px !important;
  min-height: 32px !important;
  line-height: 32px !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#zappy-cookie-banner .zappy-cookie-banner__actions {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 8px !important;
  flex: 0 0 auto;
  border: none !important;
  padding: 0 !important;
  background: transparent !important;
}

#zappy-cookie-banner .zappy-cookie-banner__button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  padding: 0 16px !important;
  height: 32px !important;
  min-height: 0 !important;
  line-height: 1 !important;
  border-radius: 999px !important;
  transition: background-color 0.15s ease, color 0.15s ease;
  cursor: pointer;
}

/* Primary "Accept" — filled pill in site primary color */
#zappy-cookie-banner .zappy-cookie-banner__button--accept {
  background-color: var(--cc-btn-primary-bg) !important;
  color: var(--cc-btn-primary-color) !important;
  border: 1px solid var(--cc-btn-primary-border) !important;
}

#zappy-cookie-banner .zappy-cookie-banner__button--accept:hover {
  background-color: var(--cc-btn-primary-hover-bg) !important;
  border-color: var(--cc-btn-primary-hover-border) !important;
}

/* Secondary "Customize" — borderless underlined text link.
 * Same height as the Accept pill so the row stays perfectly aligned, but
 * with no fill, no border, and an underline that sits 3px below the
 * baseline (text-underline-offset). Hard-coded brand color so this rule
 * doesn't depend on --cc-btn-secondary-* (which have to stay sensible
 * defaults for the preferences modal's two secondary pills). */
#zappy-cookie-banner .zappy-cookie-banner__button--customize {
  background-color: transparent !important;
  color: #b51c2e !important;
  border: none !important;
  padding: 0 8px !important;
  height: 32px !important;
  text-decoration: underline;
  text-underline-offset: 3px;
  border-radius: 6px !important;
}

#zappy-cookie-banner .zappy-cookie-banner__button--customize:hover {
  color: #9c0315 !important;
  background-color: transparent !important;
}

#zappy-cookie-banner .zappy-cookie-banner__close {
  position: absolute !important;
  top: 8px !important;
  right: 12px !important;
  width: 28px !important;
  height: 28px !important;
  padding: 0 !important;
  margin: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
  border: none !important;
  border-radius: 999px !important;
  color: var(--cc-secondary-color) !important;
  font-size: 20px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}
#zappy-cookie-banner .zappy-cookie-banner__close:hover {
  background-color: rgba(0, 0, 0, 0.06) !important;
  color: var(--cc-primary-color) !important;
}
#zappy-cookie-banner .zappy-cookie-banner__button:focus-visible,
#zappy-cookie-banner .zappy-cookie-banner__close:focus-visible {
  outline: 2px solid var(--cc-btn-primary-bg) !important;
  outline-offset: 2px;
}
/* RTL: anchor the X to the top-LEFT and shift body padding accordingly. */
[dir="rtl"] #zappy-cookie-banner {
  padding: 10px 20px 10px 56px !important;
}
[dir="rtl"] #zappy-cookie-banner .zappy-cookie-banner__close {
  right: auto !important;
  left: 12px !important;
}

/* === Preferences modal — minimalist restyle ===
 * The modal opens when "Customize" is clicked. It MUST render as a solid
 * card — pre-fix it inherited the bar's translucent --cc-bg without the
 * matching backdrop-filter, leaving the page footer visibly bleeding
 * through the modal box, the title, the toggle rows, and the bottom
 * button row. Solid white box + clean shadow + an explicit slightly
 * darker scrim on the overlay restores proper modal hierarchy. */
/* The scrim belongs on wrapper layers only. In vanilla-cookieconsent v3,
 * .pm / #pm is the preferences card itself, so styling .pm as the dark
 * overlay makes the card look transparent. */
#cc-main .pm-wrapper,
#cc--main .pm-wrapper,
#cc-main .pm-wrapper.pm--box,
#cc--main .pm-wrapper.pm--box {
  background: rgba(0, 0, 0, 0.32) !important;
}

#cc-main #pm,
#cc--main #pm,
#cc-main .pm,
#cc--main .pm,
#cc-main .pm .pm__box,
#cc--main .pm .pm__box,
#cc-main .pm__box,
#cc--main .pm__box {
  background: var(--cc-modal-bg) !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  border-radius: 14px !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.18) !important;
}

#cc-main .pm__header,
#cc--main .pm__header,
#cc-main .pm__body,
#cc--main .pm__body,
#cc-main .pm__footer,
#cc--main .pm__footer,
#cc-main .pm__section,
#cc--main .pm__section {
  background: var(--cc-modal-bg) !important;
}

#cc-main .pm__title,
#cc--main .pm__title {
  font-weight: 600 !important;
  color: var(--cc-primary-color) !important;
}

#cc-main .pm__btn[data-role="accept-all"],
#cc--main .pm__btn[data-role="accept-all"] {
  background-color: var(--cc-btn-primary-bg) !important;
  border-color: var(--cc-btn-primary-border) !important;
  color: var(--cc-btn-primary-color) !important;
  border-radius: 999px !important;
}

#cc-main .pm__btn[data-role="accept-all"]:hover,
#cc--main .pm__btn[data-role="accept-all"]:hover {
  background-color: var(--cc-btn-primary-hover-bg) !important;
  border-color: var(--cc-btn-primary-hover-border) !important;
}

/* Secondary modal pills — "Accept Necessary" + "Save Preferences".
 * Must be a visible solid fill (light grey on white card) so users can
 * actually find them. Pre-fix these inherited --cc-btn-secondary-bg:
 * transparent (used by the bar's Customize text link), making them
 * invisible against the modal background. */
#cc-main .pm__btn,
#cc--main .pm__btn {
  border-radius: 999px !important;
}
#cc-main .pm__btn[data-role="necessary"],
#cc--main .pm__btn[data-role="necessary"],
#cc-main .pm__btn[data-role="save"],
#cc--main .pm__btn[data-role="save"] {
  background-color: var(--cc-btn-secondary-bg) !important;
  color: var(--cc-btn-secondary-color) !important;
  border: 1px solid var(--cc-btn-secondary-border) !important;
}
#cc-main .pm__btn[data-role="necessary"]:hover,
#cc--main .pm__btn[data-role="necessary"]:hover,
#cc-main .pm__btn[data-role="save"]:hover,
#cc--main .pm__btn[data-role="save"]:hover {
  background-color: var(--cc-btn-secondary-hover-bg) !important;
  color: var(--cc-btn-secondary-hover-color) !important;
  border-color: var(--cc-btn-secondary-hover-border) !important;
}

/* Toggle thumbs in brand color when on */
#cc-main .section__toggle:checked + .toggle__icon,
#cc--main .section__toggle:checked + .toggle__icon,
#cc-main .section__toggle:checked ~ .toggle__icon,
#cc--main .section__toggle:checked ~ .toggle__icon {
  background-color: var(--cc-toggle-on-bg) !important;
}

/* Mobile fallback: two rows (description on top, buttons below) */
@media (max-width: 640px) {
  #zappy-cookie-banner {
    padding: 10px 14px !important;
  }
  #zappy-cookie-banner .zappy-cookie-banner__inner {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 8px !important;
  }
  #zappy-cookie-banner .zappy-cookie-banner__text {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    height: auto !important;
    min-height: 0 !important;
    line-height: 1.4 !important;
  }
  #zappy-cookie-banner .zappy-cookie-banner__actions {
    width: 100%;
    justify-content: space-between;
  }
  #zappy-cookie-banner .zappy-cookie-banner__button--accept {
    flex: 1 1 auto;
    text-align: center;
  }
}

/* Cookie preferences button in legal footer keeps default behavior */
.cookie-preferences-btn:hover {
  text-decoration: none !important;
}
/* WIDGET-DISPLAY-START */
html[dir="rtl"] .whatsapp-float { right: 20px !important; left: auto !important; }
html[dir="ltr"] .whatsapp-float, html:not([dir]) .whatsapp-float { left: 20px !important; right: auto !important; }
html[dir="rtl"] #mic-access-tool-general-button,
html[dir="rtl"] .mic-access-tool-general-button,
html[dir="rtl"] #mic-init-access-tool .mic-access-tool-general-button,
html[dir="rtl"] #mic-init-access-tool #mic-access-tool-general-button,
html[dir="rtl"] ._access-icon { left: 20px !important; right: auto !important; }
html[dir="ltr"] #mic-access-tool-general-button,
html[dir="ltr"] .mic-access-tool-general-button,
html[dir="ltr"] #mic-init-access-tool .mic-access-tool-general-button,
html[dir="ltr"] #mic-init-access-tool #mic-access-tool-general-button,
html[dir="ltr"] ._access-icon,
html:not([dir]) #mic-access-tool-general-button,
html:not([dir]) .mic-access-tool-general-button,
html:not([dir]) #mic-init-access-tool .mic-access-tool-general-button,
html:not([dir]) #mic-init-access-tool #mic-access-tool-general-button,
html:not([dir]) ._access-icon { right: 20px !important; left: auto !important; }
@media (max-width: 768px) { .whatsapp-float { display: flex !important; } }
@media (min-width: 769px) { .whatsapp-float { display: flex !important; } }
@media (max-width: 768px) {
  #mic-access-tool-general-button, .mic-access-tool-general-button,
  #mic-init-access-tool .mic-access-tool-general-button,
  #mic-init-access-tool #mic-access-tool-general-button,
  ._access-icon, #mic-access-tool-box, .mic-access-tool-box,
  #mic-init-access-tool #mic-access-tool-box, div[id*="mic-access-tool-box"],
  ._access-menu { }
}
@media (min-width: 769px) {
  #mic-access-tool-general-button, .mic-access-tool-general-button,
  #mic-init-access-tool .mic-access-tool-general-button,
  #mic-init-access-tool #mic-access-tool-general-button,
  ._access-icon, #mic-access-tool-box, .mic-access-tool-box,
  #mic-init-access-tool #mic-access-tool-box, div[id*="mic-access-tool-box"],
  ._access-menu { }
}
/* WIDGET-DISPLAY-END */
.whatsapp-float { position: fixed !important; bottom: 20px !important; width: 50px !important; height: 50px !important; border-radius: 50% !important; display: flex !important; align-items: center !important; justify-content: center !important; font-size: 24px !important; z-index: 9999 !important; box-shadow: 0 4px 12px rgba(0,0,0,0.3) !important; background: #25d366 !important; color: white !important; text-decoration: none !important; }

/* LTR: keep image on left for solution-reverse sections */
html[dir="ltr"] .solution-item.solution-reverse .solution-image { order: -1 !important; }
html[dir="ltr"] .solution-item.solution-reverse .solution-content { order: 1 !important; }
html[dir="ltr"] .service-detail.service-reverse .service-detail-image { order: -1 !important; }
html[dir="ltr"] .service-detail.service-reverse .service-detail-content { order: 1 !important; }


/* ZAPPY_MOBILE_NAV_ICON_ALIGNMENT_FIX */
/* ZAPPY_MOBILE_NAV_ICON_ALIGNMENT_FIX_V3 */
/* ZAPPY_MOBILE_NAV_ICON_ALIGNMENT_FIX_V4 */
/* The mobile hamburger / phone buttons are absolutely positioned. Keep the
   navbar itself as a non-collapsing containing block so auto-margin centering
   stays aligned even when generated mobile CSS moves every nav child out of flow. */
@media (max-width: 768px) {
  .navbar,
  nav.navbar {
    min-height: 70px !important;
  }

  /* E-commerce mobile navbar icon-group alignment.
     The icon couples (search after the hamburger; login+cart at the end edge)
     are absolutely positioned with inset-inline offsets — inset-inline-start:52px
     to clear the 36px hamburger that sits at left:12px on the .navbar, and
     inset-inline-end:12px to hug the end edge. Those offsets are authored in the
     NAVBAR's full-width coordinate space (the hamburger uses the same one). But
     the offsets are resolved against the nearest positioned ancestor, and the
     generated CSS makes .nav-container position:relative. When .nav-container is
     ALSO inset by the navbar's horizontal padding (max-width / padding from the
     LLM-authored navbar), the groups resolve to that inset box instead of the
     full-width navbar: the search drifts ~20px away from the hamburger and the
     cart leaves a fat asymmetric gap before the screen edge. Dropping
     .nav-container out of the containing-block chain on mobile makes both couples
     resolve to .navbar (always full-bleed) so they line up tightly with the
     hamburger and sit symmetrically against both edges regardless of any
     navbar/container padding. Scoped via :has() to navbars that actually carry
     the e-commerce icon couples so non-ecommerce navs are untouched. */
  .navbar:has(.nav-ecommerce-icons) .nav-container,
  nav.navbar:has(.nav-ecommerce-icons) .nav-container,
  header:has(.nav-ecommerce-icons) .nav-container {
    position: static !important;
  }

  /* Some generated RTL nav CSS sets both left:50% and right:50% on the
     absolute .nav-brand. That collapses it to 0px wide, so the logo flows
     left from the center instead of being centered on it. */
  .navbar .nav-brand,
  nav.navbar .nav-brand,
  html[dir="rtl"] .navbar .nav-brand,
  html[dir="rtl"] nav.navbar .nav-brand,
  html[lang="he"] .navbar .nav-brand,
  html[lang="he"] nav.navbar .nav-brand,
  html[lang="ar"] .navbar .nav-brand,
  html[lang="ar"] nav.navbar .nav-brand {
    position: absolute !important;
    left: 50% !important;
    right: auto !important;
    top: 50% !important;
    width: auto !important;
    min-width: max-content !important;
    max-width: calc(100% - 168px) !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    text-align: center !important;
    justify-content: center !important;
  }

  .navbar .nav-brand .logo-link,
  nav.navbar .nav-brand .logo-link,
  .navbar .nav-brand a,
  nav.navbar .nav-brand a {
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .navbar > .mobile-toggle,
  nav.navbar > .mobile-toggle,
  .navbar .mobile-toggle,
  nav.navbar .mobile-toggle,
  #mobileToggle,
  .navbar > .phone-header-btn,
  nav.navbar > .phone-header-btn,
  .navbar .phone-header-btn,
  nav.navbar .phone-header-btn {
    position: absolute !important;
    top: 0 !important;
    bottom: 0 !important;
    transform: none !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    align-self: center !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 0 !important;
  }

  .navbar > .mobile-toggle,
  nav.navbar > .mobile-toggle,
  .navbar .mobile-toggle,
  nav.navbar .mobile-toggle,
  #mobileToggle {
    display: flex !important;
  }

  html:not([data-zappy-site-type="ecommerce"]) .navbar > .phone-header-btn,
  html:not([data-zappy-site-type="ecommerce"]) nav.navbar > .phone-header-btn,
  html:not([data-zappy-site-type="ecommerce"]) .navbar .phone-header-btn,
  html:not([data-zappy-site-type="ecommerce"]) nav.navbar .phone-header-btn {
    display: flex !important;
  }

  html[data-zappy-site-type="ecommerce"] .phone-header-btn,
  body[data-zappy-site-type="ecommerce"] .phone-header-btn,
  html[data-zappy-site-type="ecommerce"] header .phone-header-btn,
  html[data-zappy-site-type="ecommerce"] nav .phone-header-btn {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }
}


/* ZAPPY_PUBLISHED_MOBILE_MEDIA_FIT_FIX */
@media (max-width: 768px) {
  /* Published sites can carry stale editor-generated transform:scale(...) rules.
     Fullscreen hero backgrounds must keep filling their absolute wrapper; mobile
     crop runtime can still override this with inline styles when needed. */
  html body main section[class*="hero"] [data-hero-bg],
  html body main section[class*="hero"] [data-hero-background="true"],
  html body main section[data-hero-type*="fullscreen"] img[data-hero-bg],
  html body main section[data-hero-type*="fullscreen"] img[data-hero-background="true"] {
    transform: none !important;
    transform-origin: center center !important;
    max-width: none !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  /* Filter chip rows should wrap on narrow RTL screens instead of hiding most
     options off-canvas behind a horizontal scroller. */
  html body main #showcaseAdvancedFilter .adv-filter-group > .adv-filter-scroll-row,
  html body main .index-showcase-section #showcaseAdvancedFilter .adv-filter-group > .adv-filter-scroll-row,
  html body main .index-showcase-section .adv-filter-group > .adv-filter-scroll-row {
    display: flex !important;
    flex-wrap: wrap !important;
    overflow-x: visible !important;
    overflow-y: visible !important;
    justify-content: flex-start !important;
    align-items: center !important;
    padding-inline: 0 !important;
    margin-inline: 0 !important;
    height: auto !important;
    cursor: default !important;
  }
}

/* Footer contact alignment fix */
.footer-contact li > a { display: flex; align-items: flex-start; gap: inherit; }

/* RTL footer contact: icon on the right (start) side, text on the left */
html[dir="rtl"] .footer-contact li, html[dir="rtl"] .site-footer .footer-contact li, html[dir="rtl"] .site-footer .footer-col:nth-child(3) .footer-contact li { flex-direction: row !important; justify-content: flex-start !important; }
html[dir="rtl"] .footer-contact .contact-icon { order: 0 !important; }
html[dir="rtl"] .footer-contact .contact-text { order: 1 !important; }
html[dir="rtl"] .footer-contact li > a { flex-direction: row !important; }

/* Spec table BiDi fix: isolate cells so mixed LTR/RTL content renders correctly */
.specs-table th, .specs-table td { unicode-bidi: plaintext !important; }
