

/* 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');
}


/* 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');
}
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #14B8A6;
  --secondary: #38BDF8;
  --accent: #1F2937;
  --bg-light: #FFFFFF;
  --bg-dark: #1F2937;
  --text-dark: #1F2937;
  --text-light: #FFFFFF;
  --text-muted: #6B7280;
  --border-light: #E5E7EB;
  --border-dark: #374151;
  --nav-bg: transparent;
  --nav-text: #FFFFFF;
  --nav-text-hover: #38BDF8;

  --radius-sm: 6px;
  --radius-card: 12px;
  --radius-btn: 8px;
  --radius-img: 6px;
  --radius-badge: 6px;
  --radius-input: 8px;
  --shadow-subtle: 0 1px 3px rgba(31,78,102,0.06);
  --shadow-card: 0 8px 24px rgba(31,78,102,0.10);
  --shadow-elevated: 0 20px 50px rgba(31,78,102,0.18);
  --shadow-btn-hover: 0 12px 28px rgba(17,182,199,0.28);
  --spacing-section: 96px;
  --spacing-section-mobile: 56px;
  --spacing-card-padding: 32px;
  --spacing-card-gap: 24px;
  --spacing-element-gap: 16px;
  --transition-default: all 0.22s ease;
  --transition-hover: all 0.22s ease;

  --gradient-primary: linear-gradient(180deg, #14BED0 0%, #0EA7B7 100%);
  --gradient-gold-shine: linear-gradient(90deg, rgba(244,200,106,0) 0%, rgba(244,200,106,0.35) 50%, rgba(244,200,106,0) 100%);
  --gradient-secondary: linear-gradient(180deg, #3B7895 0%, #2F6C86 100%);
  --gradient-gold-accent: linear-gradient(180deg, #F8D98B 0%, #E8BC57 100%);
  --gradient-dark-section: linear-gradient(180deg, #3C6F88 0%, #2E6882 100%);
  --gradient-overlay-dark: linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(46,104,130,0.08) 100%);
  --gradient-light-section: linear-gradient(180deg, #FFFFFF 0%, #F3FBFE 100%);
  --gradient-overlay-light: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(234,247,252,0.92) 100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px !important;
  scroll-behavior: smooth;
  direction: rtl;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-size: 16px !important;
  line-height: 1.7 !important;
  font-family: 'Rubik', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  direction: rtl;
  unicode-bidi: embed;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Rubik', sans-serif;
  color: var(--text-dark);
  font-weight: 700;
  letter-spacing: -0.01em;
}

p,
span,
div,
li,
td,
th,
label,
input,
textarea,
select,
button {
  font-family: 'Rubik', sans-serif;
}

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

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

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

h4 {
  font-size: 18px !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
  margin-bottom: 0.75rem !important;
  margin-top: 0.5rem !important;
}

h5 {
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 1.5 !important;
  margin-bottom: 0.5rem !important;
  margin-top: 0.5rem !important;
}

h6 {
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.5 !important;
  margin-bottom: 0.5rem !important;
  margin-top: 0.5rem !important;
}

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

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

a {
  color: var(--accent, var(--primary));
  text-decoration: none;
  transition: var(--transition-default);
}

a:hover {
  color: var(--primary);
  text-decoration: none;
}

.site-footer a {
  color: inherit;
}

.site-footer a:hover {
  opacity: 0.85;
}

@media (max-width: 1024px) {
  h1 {
    font-size: 36px !important;
  }
  h2 {
    font-size: 28px !important;
  }
  h3 {
    font-size: 20px !important;
  }
  p {
    font-size: 15px !important;
  }
}

@media (max-width: 768px) {
  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;
  }
}

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

.container-sm {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.container-lg {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-btn);
  padding: 14px 28px;
  font-weight: 600;
  text-transform: none;
  transition: var(--transition-hover);
  cursor: pointer;
  border: none;
  outline: none;
  text-decoration: none;
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
}

.btn:hover {
  box-shadow: var(--shadow-btn-hover);
  transform: translateY(-1px);
  text-decoration: none;
}

.btn:active {
  transform: translateY(0);
}

.btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--gradient-primary, var(--primary));
  color: var(--text-light);
  border: 2px solid transparent;
}

.btn-primary:hover {
  background: linear-gradient(180deg, #0EA7B7 0%, #0D96A5 100%);
  color: var(--text-light);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

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

.btn-dark {
  background: var(--bg-dark);
  color: var(--text-light);
  border: 2px solid transparent;
}

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

.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 18px;
}

.section {
  padding: var(--spacing-section) 0;
}

.section-light {
  background: var(--gradient-light-section);
}

.section-dark {
  background: var(--gradient-dark-section);
  color: var(--text-light);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
  color: var(--text-light);
}

.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-light { color: var(--text-light) !important; }
.text-dark { color: var(--text-dark) !important; }

.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); }
.bg-primary { background-color: var(--primary); }
.bg-secondary { background-color: var(--secondary); }

.d-flex { display: flex; }
.d-grid { display: grid; }
.d-block { display: block; }
.d-none { display: none; }

.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.flex-column { flex-direction: column; }

.gap-sm { gap: var(--spacing-element-gap); }
.gap-md { gap: var(--spacing-card-gap); }
.gap-lg { gap: var(--spacing-card-padding); }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-1 { margin-top: 0.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mb-2 { margin-bottom: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }

.card {
  background: var(--bg-light);
  border-radius: var(--radius-card);
  padding: var(--spacing-card-padding);
  box-shadow: var(--shadow-card);
  transition: var(--transition-hover);
}

.card:hover {
  box-shadow: var(--shadow-elevated);
  transform: translateY(-2px);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--radius-badge);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.badge-primary {
  background-color: rgba(20, 184, 166, 0.12);
  color: var(--primary);
}

.badge-secondary {
  background-color: rgba(56, 189, 248, 0.12);
  color: var(--secondary);
}

input,
textarea,
select {
  border-radius: var(--radius-input);
  border: 1px solid var(--border-light);
  padding: 12px 16px;
  font-size: 16px;
  font-family: 'Rubik', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  transition: var(--transition-default);
  width: 100%;
  outline: none;
  direction: rtl;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.15);
}

input::placeholder,
textarea::placeholder {
  color: var(--text-muted);
}

img {
  border-radius: var(--radius-img);
}

hr {
  border: none;
  border-top: 1px solid var(--border-light);
  margin: 2rem 0;
}

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

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  color: white;
}

@media (min-width: 769px) {
  .whatsapp-float {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .section {
    padding: var(--spacing-section-mobile) 0;
  }

  .container,
  .container-sm,
  .container-lg {
    padding: 0 16px;
  }

  .card {
    padding: 20px;
  }

  .btn {
    padding: 12px 22px;
    font-size: 15px;
  }

  .btn-lg {
    padding: 14px 28px;
    font-size: 16px;
  }

  .d-none-mobile {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .d-none-desktop {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .container,
  .container-sm,
  .container-lg {
    padding: 0 12px;
  }

  .btn {
    padding: 11px 18px;
    font-size: 14px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 24px;
  }
}

@media (min-width: 1025px) {
  .container {
    padding: 0 20px;
  }
}

/* Navbar Styles */
:root {
  --nav-bg: transparent;
  --nav-text: #FFFFFF;
  --nav-text-hover: #38BDF8;
  --primary: #14B8A6;
  --secondary: #38BDF8;
  --accent: #1F2937;
  --bg-light: #FFFFFF;
  --bg-dark: #1F2937;
  --text-dark: #1F2937;
  --text-light: #FFFFFF;
  --text-muted: #6B7280;
  --border-light: #E5E7EB;
  --border-dark: #374151;
}

.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background: var(--nav-bg);
  width: 100%;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  direction: rtl;
}

.navbar.scrolled {
  background: rgba(31, 41, 55, 0.97);
  box-shadow: 0 2px 24px rgba(20, 184, 166, 0.13);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 0;
}

.nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

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

.logo {
  max-height: 40px;
  height: auto;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
  margin-right: 36px;
  flex: 1;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-block;
  color: var(--nav-text);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  letter-spacing: 0.01em;
  transition: all 0.22s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  right: 16px;
  left: 16px;
  height: 2px;
  background: var(--nav-text-hover);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.22s ease;
  transform-origin: center;
}

.nav-link:hover {
  color: var(--nav-text-hover);
  background: rgba(56, 189, 248, 0.08);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-cta-container {
  margin-left: auto;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #FFFFFF;
  text-decoration: none;
  font-size: 0.97rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 8px;
  letter-spacing: 0.01em;
  text-transform: none;
  transition: all 0.22s ease;
  white-space: nowrap;
  border: 2px solid transparent;
}

.nav-cta-btn:hover {
  background: #0e9e8e;
  color: #FFFFFF;
  box-shadow: 0 12px 28px rgba(17, 182, 199, 0.28);
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--nav-text);
  padding: 8px;
  border-radius: 6px;
  transition: all 0.22s ease;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1100;
}

.mobile-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--nav-text-hover);
}

.phone-header-btn {
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border: none;
  cursor: pointer;
  color: #FFFFFF;
  padding: 8px;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  transition: all 0.22s ease;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1100;
}

.phone-header-btn:hover {
  background: #0e9e8e;
  box-shadow: 0 4px 12px rgba(20, 184, 166, 0.35);
}

@media (max-width: 768px) {
  .navbar {
    background: rgba(31, 41, 55, 0.97);
  }

  .mobile-toggle {
    display: flex;
  }

  .phone-header-btn {
    display: flex;
  }

  .nav-container {
    height: 64px;
    padding: 0 70px;
    justify-content: center;
  }

  .nav-brand {
    justify-content: center;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 64px;
    right: 0;
    left: 0;
    background: rgba(31, 41, 55, 0.99);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 0 20px;
    margin: 0;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    border-top: 1px solid var(--border-dark);
  }

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

  .nav-item {
    width: 100%;
  }

  .nav-link {
    display: block;
    padding: 12px 28px;
    border-radius: 0;
    font-size: 1.05rem;
  }

  .nav-link::after {
    display: none;
  }

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

@media (max-width: 480px) {
  .nav-container {
    padding: 0 60px;
  }
}
:root {
  --nav-bg: transparent;
  --nav-text: #FFFFFF;
  --nav-text-hover: #38BDF8;
  --primary: #14B8A6;
  --secondary: #38BDF8;
  --accent: #1F2937;
  --bg-light: #FFFFFF;
  --bg-dark: #1F2937;
  --text-dark: #1F2937;
  --text-light: #FFFFFF;
  --text-muted: #6B7280;
  --border-light: #E5E7EB;
  --border-dark: #374151;
}

.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background: var(--nav-bg);
  width: 100%;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  direction: rtl;
}

.navbar.scrolled {
  background: rgba(31, 41, 55, 0.97);
  box-shadow: 0 2px 24px rgba(20, 184, 166, 0.13);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 0;
}

.nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

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

.logo {
  max-height: 40px;
  height: auto;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
  margin-right: 36px;
  flex: 1;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-block;
  color: var(--nav-text);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  letter-spacing: 0.01em;
  transition: all 0.22s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  right: 16px;
  left: 16px;
  height: 2px;
  background: var(--nav-text-hover);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.22s ease;
  transform-origin: center;
}

.nav-link:hover {
  color: var(--nav-text-hover);
  background: rgba(56, 189, 248, 0.08);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-cta-container {
  margin-left: auto;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #FFFFFF;
  text-decoration: none;
  font-size: 0.97rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 8px;
  letter-spacing: 0.01em;
  text-transform: none;
  transition: all 0.22s ease;
  white-space: nowrap;
  border: 2px solid transparent;
}

.nav-cta-btn:hover {
  background: #0e9e8e;
  color: #FFFFFF;
  box-shadow: 0 12px 28px rgba(17, 182, 199, 0.28);
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--nav-text);
  padding: 8px;
  border-radius: 6px;
  transition: all 0.22s ease;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1100;
}

.mobile-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--nav-text-hover);
}

.phone-header-btn {
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border: none;
  cursor: pointer;
  color: #FFFFFF;
  padding: 8px;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  transition: all 0.22s ease;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1100;
}

.phone-header-btn:hover {
  background: #0e9e8e;
  box-shadow: 0 4px 12px rgba(20, 184, 166, 0.35);
}

@media (max-width: 768px) {
  .navbar {
    background: rgba(31, 41, 55, 0.97);
  }

  .mobile-toggle {
    display: flex;
  }

  .phone-header-btn {
    display: flex;
  }

  .nav-container {
    height: 64px;
    padding: 0 70px;
    justify-content: center;
  }

  .nav-brand {
    justify-content: center;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 64px;
    right: 0;
    left: 0;
    background: rgba(31, 41, 55, 0.99);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 0 20px;
    margin: 0;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    border-top: 1px solid var(--border-dark);
  }

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

  .nav-item {
    width: 100%;
  }

  .nav-link {
    display: block;
    padding: 12px 28px;
    border-radius: 0;
    font-size: 1.05rem;
  }

  .nav-link::after {
    display: none;
  }

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

@media (max-width: 480px) {
  .nav-container {
    padding: 0 60px;
  }
}


/* ============================================
   NAVBAR LAYOUT - POST-GENERATION FIXES
   Structural layout only - colors from Claude
   ============================================ */

/* Base navbar styles - structural only, colors from AI */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  /* Background color is set by Claude's CSS - don't override */
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* ============================================
   DESKTOP LAYOUT (>768px)
   ============================================ */

/* Nav container - constrains max width and provides padding */
.nav-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  width: 100%;
  box-sizing: border-box;
  min-height: 70px;
}

/* Logo styling (desktop) — mobile logo stays at 110px/35px, do not adjust */
.logo {
  max-height: 40px;
  max-width: 160px !important;
  height: auto;
  width: auto;
  display: block;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.8;
}

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

.logo-link:focus {
  outline: none;
}

/* Remove browser default dark focus box on mouse-click; preserve for keyboard (:focus-visible). */
.navbar a:focus:not(:focus-visible),
.navbar button:focus:not(:focus-visible),
.nav-menu a:focus:not(:focus-visible) {
  outline: none;
}
.navbar a:focus-visible,
.navbar button:focus-visible,
.nav-menu a:focus-visible {
  outline: 2px solid var(--primary-color, var(--primary, #14B8A6));
  outline-offset: 2px;
}

/* Nav brand container */
.nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin: 0;
}

/* Navigation menu - positioned adjacent to logo */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 0.2rem;
  margin: 0;
  padding: 0;
  align-items: center;
  flex-wrap: nowrap;
  flex: 1;
  min-width: 0;
}

.nav-menu li {
  margin: 0;
  padding: 0;
}

.nav-menu > li > a,
.nav-menu > .nav-item > a {
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 0.65rem;
  white-space: nowrap;
  color: var(--nav-text, var(--text-light)) !important;
}

.nav-menu > li > a:hover,
.nav-menu > .nav-item > a:hover {
  color: var(--nav-text-hover, var(--secondary)) !important;
}

/* CTA Container - pushed to end of navbar */
.nav-cta-container {
  margin-left: auto;
  display: flex;
  align-items: center;
  align-self: center;
  height: auto;
  max-height: none;
  padding-top: 0;
  padding-bottom: 0;
}

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

/* Search container inside CTA area — vertically center to match CTA button */
.nav-cta-container .zappy-search-container {
  align-self: center;
}
.nav-cta-container p {
  margin: 0 !important;
}

/* CTA button - prevent stretching to fill navbar height.
   AI CSS provides colors/gradients/etc - we only constrain sizing.
   display: inline-flex + max-height: 44px keeps it as a compact pill. */
.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  align-self: center;
  height: auto;
  max-height: 44px;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  white-space: nowrap;
  box-sizing: border-box;
  overflow: hidden;
}

/* ============================================
   LTR DESKTOP LAYOUT (English, Spanish, French)
   ============================================ */
html[dir="ltr"] .nav-container,
html[lang="en"] .nav-container,
html[lang="es"] .nav-container,
html[lang="fr"] .nav-container {
  justify-content: flex-start;
}

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

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

/* ============================================
   RTL DESKTOP LAYOUT (Hebrew, Arabic)
   ============================================ */
html[dir="rtl"] .nav-container,
html[lang="he"] .nav-container,
html[lang="ar"] .nav-container {
  flex-direction: row-reverse;
  justify-content: space-between;
}

/* CTA on the left in RTL */
html[dir="rtl"] .nav-cta-container,
html[lang="he"] .nav-cta-container,
html[lang="ar"] .nav-cta-container {
  order: -1;
  margin: 0;
}

/* Wrapper groups menu and logo together on the right */
html[dir="rtl"] .nav-right-group,
html[lang="he"] .nav-right-group,
html[lang="ar"] .nav-right-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  order: 1;
  flex: 1;
  min-width: 0;
  flex-direction: row-reverse;
}

/* Within wrapper: Logo on far right, menu to its left */
html[dir="rtl"] .nav-right-group .nav-brand,
html[lang="he"] .nav-right-group .nav-brand,
html[lang="ar"] .nav-right-group .nav-brand {
  order: 2;
}

html[dir="rtl"] .nav-right-group .nav-menu,
html[lang="he"] .nav-right-group .nav-menu,
html[lang="ar"] .nav-right-group .nav-menu {
  order: 1;
}

/* ============================================
   DROPDOWN MENUS (Desktop)
   ============================================ */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Rubik', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0.5rem 0.65rem;
  color: var(--nav-text, var(--text-light)) !important;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.dropdown-toggle:hover {
  color: var(--nav-text-hover, var(--secondary)) !important;
}

.dropdown-arrow {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown {
  overflow: visible !important;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  min-width: 220px;
  background: var(--bg-light, #ffffff);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  border-radius: 8px;
  padding: 8px 0;
  z-index: 100001;
  list-style: none;
  margin: 0;
}

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

html[dir="ltr"] .dropdown-menu,
html:not([dir="rtl"]):not([lang="he"]):not([lang="ar"]) .dropdown-menu {
  left: 0;
  right: auto;
}

@media (min-width: 769px) {
  .nav-dropdown:hover > .dropdown-menu {
    display: block;
  }
}

.dropdown-menu li {
  margin: 0;
  padding: 0;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  white-space: nowrap;
  font-weight: 400;
  font-size: 0.9em;
  color: var(--text-dark, #1a1a1a) !important;
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-menu li a:hover {
  background: rgba(128,128,128,0.1);
  color: var(--nav-text-hover, var(--accent, var(--primary))) !important;
}

/* Desktop: Hide mobile-only elements */
@media (min-width: 769px) {
  .mobile-toggle,
  .phone-header-btn {
    display: none !important;
  }
  
  /* Hide Contact in nav-menu on desktop (it shows in CTA container instead) */
  .nav-menu .mobile-contact-link {
    display: none !important;
  }
  
  /* When .nav-right-group wrapper is absent, the nav-container has 3 direct
     children (brand, menu, CTA) with space-between. flex:1 makes the menu
     fill the gap, and justify-content:flex-start pushes items toward the
     logo side instead of centering them in the available space. */
  .nav-menu {
    flex: 1 !important;
    justify-content: flex-start !important;
  }
}

/* ============================================
   MOBILE RESPONSIVE (≤768px)
   ============================================ */
@media (max-width: 768px) {
  /* Reset nav-container for mobile */
  /* CRITICAL: Reset position properties to prevent conflict with AI-generated mobile CSS */
  /* Some AI generations set .nav-container to position:fixed for slide-out menus, */
  /* position:relative is needed so .nav-brand (position:absolute) centers within it */
  .nav-container {
    padding: 0.75rem 1rem;
    gap: 0;
    justify-content: center !important;
    position: relative !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    height: auto !important;
    min-height: 70px !important; /* Ensure height for absolutely positioned mobile buttons */
    width: 100% !important;
  }
  
  /* Show mobile elements - positioned as direct children of navbar */
  .mobile-toggle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 12px; /* LTR default - hamburger on left */
    right: auto;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
    width: 36px !important;
    height: 36px !important;
    color: var(--nav-text, var(--text-light)) !important;
  }
  
  .phone-header-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 12px; /* LTR default - phone on right */
    left: auto;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
    width: 36px !important;
    height: 36px !important;
    color: var(--nav-text, var(--text-light)) !important;
  }
  
  /* Ensure logo-link is centered */
  .logo-link, .nav-brand a {
    display: flex !important;
    justify-content: center !important;
    margin: 0 auto !important;
  }
  
  .mobile-toggle svg,
  .phone-header-btn svg {
    width: 24px !important;
    height: 24px !important;
    color: inherit !important;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 2 !important;
    transition: opacity 0.3s ease;
  }
  
  .mobile-toggle svg path,
  .phone-header-btn svg path {
    stroke: currentColor !important;
  }
  
  .mobile-toggle img,
  .phone-header-btn img {
    width: 24px !important;
    height: 24px !important;
    /* Filter removed - preserve original image colors */
    /* ColorContrastService will handle contrast adjustments */
  }
  
  .mobile-toggle:hover svg,
  .phone-header-btn:hover svg {
    opacity: 0.8;
  }
  
  /* Remove default button styles */
  .mobile-toggle:focus,
  .mobile-toggle:active,
  .phone-header-btn:focus,
  .phone-header-btn:active {
    outline: none;
    border: none;
    box-shadow: none;
  }
  
  /* Center logo on mobile - applies to both LTR and RTL */
  /* RTL selectors added for higher specificity to override desktop RTL rules */
  /* IMPORTANT: Do NOT use margin shorthand (margin: 0 auto) — it resets margin-top
     which breaks AI centering hacks (top:50% + margin-top:-Npx).
     Use explicit left/right + transform for robust vertical centering. */
  .nav-brand,
  html[dir="rtl"] .nav-brand,
  html[lang="he"] .nav-brand,
  html[lang="ar"] .nav-brand,
  html[dir="rtl"] .nav-right-group .nav-brand,
  html[lang="he"] .nav-right-group .nav-brand,
  html[lang="ar"] .nav-right-group .nav-brand {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    text-align: center;
    order: 0 !important;
  }
  
  /* Mobile logo size: fixed at 35px/110px — do not adjust, especially for e-commerce/catalog sites */
  .logo {
    max-height: 35px !important;
    max-width: 110px !important;
  }
  
  /* Hide RTL wrapper on mobile */
  .nav-right-group {
    display: contents !important;
  }
  
  /* Hide CTA container on mobile - Contact will be in hamburger menu */
  .nav-cta-container {
    display: none !important;
  }
  
  /* Mobile menu - hidden by default */
  /* CRITICAL: flex-direction: column must have !important to override any desktop rules */
  .nav-menu {
    position: fixed;
    top: 70px;
    width: 50%;
    max-width: 300px;
    /* Mobile menu is position:fixed so it CANNOT inherit background from navbar.
       When --nav-bg is transparent (hero-overlay navbars), the menu would be invisible.
       Always use a solid background derived from the palette. */
    background-color: var(--bg-dark, #1a1a1a) !important;
    flex-direction: column !important;
    gap: 0;
    padding: 20px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: none;
    z-index: 999;
    margin: 0 !important;
    /* Align menu items to top, not center */
    align-items: stretch !important;
    justify-content: flex-start !important;
  }
  
  .nav-menu.active {
    display: flex !important;
    flex-direction: column !important;
  }
  
  .nav-menu li {
    width: 100%;
  }
  
  /* Show mobile-contact-link in hamburger menu */
  .nav-menu .mobile-contact-link {
    display: block !important;
  }
  
  /* LTR mobile menu text alignment - left aligned */
  html[dir="ltr"] .nav-menu a,
  html:not([dir="rtl"]):not([lang="he"]):not([lang="ar"]) .nav-menu a {
    text-align: left !important;
  }
  
  .nav-menu a {
    display: block;
    padding: 15px 30px;
    width: 100%;
    font-weight: 500;
  }
  
  /* Mobile dropdown menus */
  .nav-dropdown {
    position: static;
  }
  
  .dropdown-toggle {
    display: flex;
    width: 100%;
    padding: 15px 30px;
    font-weight: 500;
    justify-content: space-between;
  }
  
  .dropdown-menu {
    position: static !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    background: rgba(128,128,128,0.06) !important;
    min-width: auto !important;
    max-height: 0 !important;
    overflow: hidden !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition: max-height 0.3s ease !important;
  }
  
  .nav-dropdown .dropdown-menu {
    display: block;
    max-height: 0 !important;
    overflow: hidden !important;
  }
  
  .nav-dropdown.open > .dropdown-menu {
    display: block !important;
    max-height: 60vh !important;
    overflow-y: auto !important;
    padding: 0.5rem 0 !important;
  }
  
  .dropdown-menu li a {
    padding: 12px 30px 12px 50px !important;
    font-size: 0.9em;
  }
  
  html[dir="rtl"] .dropdown-menu li a,
  html[lang="he"] .dropdown-menu li a,
  html[lang="ar"] .dropdown-menu li a {
    padding: 12px 50px 12px 30px !important;
  }

  /* Mobile submenu links: use nav panel text color instead of desktop submenu color.
     Desktop submenu uses light bg + dark text, but mobile submenu is inline (transparent)
     within the nav panel which may be dark. Cannot use 'inherit' because the container
     chain (.sub-menu, li) has dark color — only nav <a> tags get light color explicitly. */
  .navbar .sub-menu li a,
  nav.navbar .sub-menu li a,
  .nav-menu .sub-menu a,
  .zappy-products-dropdown .sub-menu a,
  .sub-menu a {
    color: var(--nav-text, var(--text-light)) !important;
  }
  .mobile-submenu-toggle {
    color: var(--nav-text, var(--text-light)) !important;
  }

  /* Force sub-menu hidden by default on mobile */
  .navbar .zappy-products-dropdown .sub-menu,
  .navbar .zappy-products-dropdown > .sub-menu {
    display: none !important;
    position: static !important;
    max-height: 0 !important;
    overflow: hidden !important;
     !important;
    visibility: hidden !important;
    pointer-events: none !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    transform: none !important;
  }
  /* Disable hover-triggered dropdowns on mobile — only open via click (.open class) */
  .navbar .zappy-products-dropdown:hover .sub-menu,
  .navbar .zappy-products-dropdown:hover > .sub-menu,
  .navbar .zappy-products-dropdown:focus-within .sub-menu,
  .navbar .zappy-products-dropdown:focus-within > .sub-menu,
  .navbar .menu-item-has-children:hover > .sub-menu,
  .navbar .nav-dropdown:hover > .dropdown-menu {
    display: none !important;
     !important;
    visibility: hidden !important;
    max-height: 0 !important;
    pointer-events: none !important;
  }
  .navbar .zappy-products-dropdown.open .sub-menu,
  .navbar .zappy-products-dropdown.open > .sub-menu,
  .navbar .zappy-products-dropdown .sub-menu.mobile-expanded,
  .navbar .zappy-products-dropdown > .sub-menu.mobile-expanded,
  .navbar .menu-item-has-children.open > .sub-menu,
  .navbar .menu-item-has-children > .sub-menu.mobile-expanded,
  .navbar .nav-dropdown.open > .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    max-height: 60vh !important;
    pointer-events: auto !important;
    position: static !important;
    overflow-y: auto !important;
    padding: 0.5rem 0 !important;
  }

  /* Prevent hero image fade gradient from bleeding over headline text below */
  /* The .image-fade-gradient has bottom: -30px which extends below parent; */
  /* on mobile stacked layout this overlaps the h1 text */
  .hero-image-column {
    overflow: hidden !important;
  }
  .image-fade-gradient {
    bottom: 0 !important;
  }
}

/* ============================================
   LTR POSITIONING (English, Spanish, French, etc.)
   For LTR mobile: hamburger on LEFT, phone on RIGHT
   Uses !important to override any inline styles
   ============================================ */
@media (max-width: 768px) {
  html[dir="ltr"] .mobile-toggle,
  html:not([dir="rtl"]):not([lang="he"]):not([lang="ar"]) .mobile-toggle {
    left: 12px !important;
    right: auto !important;
  }
  
  html[dir="ltr"] .phone-header-btn,
  html:not([dir="rtl"]):not([lang="he"]):not([lang="ar"]) .phone-header-btn {
    right: 12px !important;
    left: auto !important;
  }
  
  html[dir="ltr"] .nav-menu,
  html:not([dir="rtl"]):not([lang="he"]):not([lang="ar"]) .nav-menu {
    left: 0 !important;
    right: auto !important;
  }
}

/* ============================================
   RTL POSITIONING (Hebrew, Arabic)
   For RTL mobile: hamburger on RIGHT, phone on LEFT
   (natural mirror of LTR layout)
   Uses !important to override any inline styles
   ============================================ */
@media (max-width: 768px) {
  html[dir="rtl"] .mobile-toggle,
  html[lang="he"] .mobile-toggle,
  html[lang="ar"] .mobile-toggle {
    left: auto !important;
    right: 12px !important;
  }
  
  html[dir="rtl"] .phone-header-btn,
  html[lang="he"] .phone-header-btn,
  html[lang="ar"] .phone-header-btn {
    left: 12px !important;
    right: auto !important;
  }
  
  html[dir="rtl"] .nav-menu,
  html[lang="he"] .nav-menu,
  html[lang="ar"] .nav-menu {
    right: 0 !important;
    left: auto !important;
  }
  
  html[dir="rtl"] .nav-menu a,
  html[lang="he"] .nav-menu a,
  html[lang="ar"] .nav-menu a {
    text-align: right !important;
  }
  
  /* Hide desktop language switcher on mobile - hamburger menu handles it */
  /* High specificity to override stored CSS */
  .lang-switcher,
  .nav-cta-container .lang-switcher,
  .nav-container .lang-switcher,
  .navbar .lang-switcher,
  .navbar .nav-cta-container .lang-switcher {
    display: none !important;
  }
}

/* ============================================
   CLONED SITE NAVBAR FIXES
   For sites without nav-right-group wrapper
   ============================================ */

/* Force navbar to be truly full width */
header {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

.navbar {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  left: 0 !important;
  right: 0 !important;
}

nav.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw !important;
  max-width: none !important;
}

/* Constrained nav-container - content limited to 1200px and centered */
.nav-container {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 2rem !important;
  box-sizing: border-box !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

/* RTL layout for cloned sites (without nav-right-group) */
/* Base RTL styles - apply to all screens */
html[dir="rtl"] .nav-container,
html[lang="he"] .nav-container,
html[lang="ar"] .nav-container {
  justify-content: space-between !important;
}

/* Logo stays on right in RTL - DESKTOP ONLY */
/* On mobile, logo should be centered (handled by mobile media query) */
@media (min-width: 769px) {
  html[dir="rtl"] .nav-brand,
  html[dir="rtl"] .logo-link,
  html[lang="he"] .nav-brand,
  html[lang="he"] .logo-link,
  html[lang="ar"] .nav-brand,
  html[lang="ar"] .logo-link {
    order: 2 !important;
    margin-left: 1.5rem !important;
  }
}

/* Base RTL nav-menu styles - display:flex but NOT flex-direction (that's desktop-only) */
html[dir="rtl"] .nav-menu,
html[lang="he"] .nav-menu,
html[lang="ar"] .nav-menu {
  order: 1 !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
}

/* CTA button pushed to far left in RTL */
html[dir="rtl"] .cta-button,
html[dir="rtl"] a.cta-button,
html[dir="rtl"] .nav-cta-btn,
html[lang="he"] .cta-button,
html[lang="he"] a.cta-button,
html[lang="he"] .nav-cta-btn,
html[lang="ar"] .cta-button,
html[lang="ar"] a.cta-button,
html[lang="ar"] .nav-cta-btn {
  order: 0 !important;
  margin-right: auto !important;
  margin-left: 0 !important;
}

/* DESKTOP ONLY: Horizontal flex layout for RTL navbar - prevents breaking mobile vertical menu */
@media (min-width: 769px) {
  html[dir="rtl"] .nav-container,
  html[lang="he"] .nav-container,
  html[lang="ar"] .nav-container {
    flex-direction: row-reverse !important;
  }
  
  html[dir="rtl"] .nav-menu,
  html[lang="he"] .nav-menu,
  html[lang="ar"] .nav-menu {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 1.5rem !important;
    /* flex:1 ensures menu fills space between brand and CTA so items
       stay adjacent to the logo instead of centering when the
       .nav-right-group wrapper is absent (cloned sites, etc.).
       justify-content: flex-start pushes items toward the logo
       (in RTL, flex-start = right side, adjacent to the brand). */
    flex: 1 !important;
    justify-content: flex-start !important;
  }
}

/* ============================================
   END NAVBAR FIXES
   ============================================ */

/* Post-generation fix: Remove main element margin-top and padding-top */
main { margin-top: 0 !important; padding-top: 0 !important; }


/* Footer Styles */
.site-footer {
  --primary: #14B8A6;
  --secondary: #38BDF8;
  --accent: #1F2937;
  --bg-light: #FFFFFF;
  --bg-dark: #1F2937;
  --text-dark: #1F2937;
  --text-light: #FFFFFF;
  --text-muted: #6B7280;
  --border-light: #E5E7EB;
  --border-dark: #374151;

  background-color: #111827;
  color: var(--text-light);
  font-family: 'Rubik', sans-serif;
  direction: rtl;
  text-align: right;
  width: 100%;
  box-sizing: border-box;
}

.site-footer *,
.site-footer *::before,
.site-footer *::after {
  box-sizing: border-box;
}

/* Container */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Top Section */
.footer-top {
  padding: 3.5rem 0 2.5rem;
}

/* Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr 1.4fr;
  gap: 2.5rem;
  align-items: start;
}

/* Brand Column */
.footer-brand .logo {
  display: block;
  height: 40px;
  width: auto;
  max-width: 150px;
  margin-bottom: 1rem;
  object-fit: contain;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 4px 8px;
}

.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.62);
  margin: 0 0 1.4rem 0;
  max-width: 240px;
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 0.6rem;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(20, 184, 166, 0.15);
  color: var(--primary);
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid rgba(20, 184, 166, 0.25);
  transition: all 0.22s ease;
}

.footer-social a:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(20,184,166,0.3);
}

/* Column Headings */
.footer-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-light);
  margin: 0 0 1.2rem 0;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.heading-accent {
  display: inline-block;
  width: 3px;
  height: 16px;
  background: var(--primary);
  border-radius: 2px;
  flex-shrink: 0;
}

/* Quick Links */
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links li a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.22s ease;
  padding: 0.2rem 0;
  border-radius: 4px;
}

.footer-links li a:hover {
  color: var(--primary);
  gap: 0.6rem;
}

.link-arrow {
  font-size: 0.65rem;
  color: var(--primary);
  opacity: 0.7;
  transition: all 0.22s ease;
}

.footer-links li a:hover .link-arrow {
  opacity: 1;
}

/* Contact List */
.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  flex-direction: row-reverse;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(20, 184, 166, 0.12);
  color: var(--primary);
  font-size: 0.78rem;
  flex-shrink: 0;
  margin-top: 1px;
  border: 1px solid rgba(20,184,166,0.2);
}

.contact-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  padding-top: 0.3rem;
}

.contact-text a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: all 0.22s ease;
}

.contact-text a:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* CTA Column */
.footer-cta-col .cta-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.65;
  margin: 0 0 1.2rem 0;
}

.footer-cta-btn {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.65rem 1.3rem;
  border-radius: 8px;
  transition: all 0.22s ease;
  margin-bottom: 1.2rem;
  box-shadow: 0 1px 3px rgba(31,78,102,0.06);
  border: 2px solid transparent;
}

.footer-cta-btn:hover {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(20,184,166,0.25);
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-direction: row-reverse;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  padding: 0.45rem 0.8rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}

.footer-badge i {
  color: var(--primary);
  font-size: 0.85rem;
}

/* Divider */
.footer-divider {
  height: 1px;
  background: linear-gradient(to left, transparent, var(--border-dark) 20%, var(--primary) 50%, var(--border-dark) 80%, transparent);
  margin: 0;
  opacity: 0.6;
}

/* Bottom Bar */
.footer-bottom {
  padding: 1.25rem 0;
  background: rgba(0,0,0,0.2);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: all 0.22s ease;
  border-radius: 4px;
  padding: 0.1rem 0.2rem;
}

.footer-legal a:hover {
  color: var(--primary);
}

.legal-sep {
  color: rgba(255,255,255,0.2);
  font-size: 0.75rem;
  user-select: none;
}

.zappy-attribution {
  font-size: 0.78rem !important;
  color: rgba(56,189,248,0.6) !important;
  transition: all 0.22s ease !important;
}

.zappy-attribution:hover {
  color: var(--secondary) !important;
}

/* Responsive: Tablet */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* Responsive: Mobile */
@media (max-width: 767px) {
  .footer-top {
    padding: 2.5rem 0 2rem;
  }

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

  .footer-tagline {
    max-width: 100%;
  }

  .footer-social {
    flex-direction: row;
    justify-content: flex-start;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .footer-legal {
    justify-content: flex-start;
  }

  .footer-cta-btn {
    width: 100%;
    text-align: center;
  }
}


/* Footer Contrast Guard — overrides dark-on-dark text */
.site-footer .contact-list a,
.site-footer .contact-list li,
.site-footer .contact-list span,
.site-footer .footer-legal a,
.site-footer .copyright p,
.site-footer .footer-description,
.site-footer .footer-bottom a,
.site-footer .footer-bottom p,
.site-footer .footer-bottom span:not(.separator) {
  color: #6B7280 !important;
}
.site-footer .contact-list a:hover,
.site-footer .footer-legal a:hover,
.site-footer .footer-bottom a:hover {
  color: #FFFFFF !important;
}
.site-footer .footer-legal .separator {
  color: #374151 !important;
}
/* Footer contact alignment fix */
.footer-contact li > a { display: flex; align-items: flex-start; gap: inherit; }
/* index-hero */
.index-hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: visible;
  background-color: #1F2937;
  color: var(--text-light);
  display: flex;
  align-items: center;
  padding-bottom: 72px;
}

/* Background Image */
.index-hero-section .index-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.index-hero-section .index-hero-bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 0;
}

/* Scrim Overlay */
.index-hero-section .index-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(to left, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.55) 45%, rgba(0,0,0,0.18) 100%);
}

/* Container */
.index-hero-section .index-hero-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 32px 40px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

/* Frosted Card */
.index-hero-section .index-hero-card {
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.75);
  box-shadow: 0 20px 50px rgba(31,78,102,0.22);
  padding: 40px 40px 32px;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: right;
}

/* Badge */
.index-hero-section .index-hero-badge {
  display: inline-block;
  background: linear-gradient(180deg, #14BED0 0%, #0EA7B7 100%);
  color: #FFFFFF;
  font-family: 'Rubik', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 6px;
  align-self: flex-start;
  direction: rtl;
}

/* H1 */
.index-hero-section .index-hero-h1 {
  font-family: 'Rubik', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin: 0;
  text-align: right;
  text-shadow: none;
}

/* Subtitle */
.index-hero-section .index-hero-subtitle {
  font-family: 'Rubik', sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.7;
  color: #3B6780;
  margin: 0;
  text-align: right;
}

/* CTA Buttons */
.index-hero-section .index-hero-ctas {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.index-hero-section .index-hero-btn-primary {
  display: inline-block;
  background: linear-gradient(180deg, #14BED0 0%, #0EA7B7 100%);
  color: #FFFFFF;
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(17,182,199,0.28);
  transition: all 0.22s ease;
  white-space: nowrap;
}

.index-hero-section .index-hero-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(17,182,199,0.40);
  color: #FFFFFF;
}

.index-hero-section .index-hero-btn-secondary {
  display: inline-block;
  background: #FFFFFF;
  color: #3B6780;
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 14px 28px;
  border-radius: 8px;
  border: 1px solid #E3EEF3;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(31,78,102,0.10);
  transition: all 0.22s ease;
  white-space: nowrap;
}

.index-hero-section .index-hero-btn-secondary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(31,78,102,0.18);
  color: var(--primary);
}

/* Trust Line */
.index-hero-section .index-hero-trust {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  border-top: 1px solid rgba(20,184,166,0.20);
  padding-top: 16px;
  flex-wrap: wrap;
}

.index-hero-section .index-hero-trust-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  flex: 1 1 auto;
  justify-content: center;
  padding: 4px 8px;
  min-width: 120px;
}

.index-hero-section .index-hero-trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.index-hero-section .index-hero-trust-text {
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
}

.index-hero-section .index-hero-trust-divider {
  width: 1px;
  height: 28px;
  background: rgba(20,184,166,0.25);
  flex-shrink: 0;
}

/* Bottom Divider */
.index-hero-section .index-hero-divider-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 72px;
  pointer-events: none;
  z-index: 5;
}

.index-hero-section .index-hero-divider-wrapper svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 768px) {
  .index-hero-section {
    min-height: 100svh;
    align-items: flex-start;
  }

  .index-hero-section .index-hero-scrim {
    background-image:
      linear-gradient(to bottom, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.20) 100%);
  }

  .index-hero-section .index-hero-container {
    padding: 100px 16px 32px;
    justify-content: center;
  }

  .index-hero-section .index-hero-card {
    max-width: 100%;
    padding: 28px 24px 24px;
    gap: 16px;
  }

  .index-hero-section .index-hero-h1 {
    font-size: 2rem;
  }

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

  .index-hero-section .index-hero-ctas {
    flex-direction: column;
    gap: 10px;
  }

  .index-hero-section .index-hero-btn-primary,
  .index-hero-section .index-hero-btn-secondary {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
  }

  .index-hero-section .index-hero-trust {
    gap: 4px;
  }

  .index-hero-section .index-hero-trust-item {
    min-width: 90px;
    padding: 4px 4px;
  }

  .index-hero-section .index-hero-trust-text {
    font-size: 12px;
  }

  .index-hero-section .index-hero-trust-divider {
    height: 20px;
  }

  .index-hero-section .index-hero-badge {
    font-size: 11px;
    padding: 5px 10px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .index-hero-section .index-hero-container {
    padding: 140px 40px 40px;
  }

  .index-hero-section .index-hero-card {
    max-width: 480px;
  }
}

/* index-services */
.index-services-section {
  position: relative;
  overflow: visible;
  background-color: #FFFFFF;
  background-image: linear-gradient(180deg, #FFFFFF 0%, #F3FBFE 100%);
  color: var(--text-dark);
  padding: 96px 24px 120px;
  direction: rtl;
  font-family: 'Rubik', sans-serif;
}

.index-services-section .index-services-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* ── Intro Block ── */
.index-services-section .index-services-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.index-services-section .index-services-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(20, 184, 166, 0.08);
  border: 1px solid rgba(20, 184, 166, 0.22);
  border-radius: 6px;
  padding: 5px 14px;
  margin-bottom: 18px;
}

.index-services-section .index-services-heading {
  font-family: 'Rubik', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
  margin: 0 0 16px;
}

.index-services-section .index-services-subtext {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

/* ── Service Cards Grid ── */
.index-services-section .index-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  direction: rtl;
  margin-bottom: 48px;
}

.index-services-section .index-services-card {
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  box-shadow: 0 8px 24px rgba(31, 78, 102, 0.10);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.index-services-section .index-services-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(31, 78, 102, 0.18);
}

.index-services-section .index-services-card-image-wrap {
  width: 100%;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  aspect-ratio: 3 / 2;
  background: var(--border-light);
}

.index-services-section .index-services-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px 6px 0 0;
  display: block;
  transition: transform 0.22s ease;
  box-shadow: 0 6px 18px rgba(31, 78, 102, 0.12);
}

.index-services-section .index-services-card:hover .index-services-card-img {
  transform: scale(1.02);
}

.index-services-section .index-services-card-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  text-align: right;
}

.index-services-section .index-services-card-icon {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 52px;
  height: 52px;
  background: rgba(20, 184, 166, 0.10);
  border-radius: 12px;
  color: var(--primary);
  margin-inline-start: auto;
  flex-shrink: 0;
  align-self: flex-start;
}

.index-services-section .index-services-card-icon svg {
  margin: auto;
  display: block;
}

.index-services-section .index-services-card-title {
  font-family: 'Rubik', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-dark);
  margin: 0;
}

.index-services-section .index-services-card-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

.index-services-section .index-services-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.index-services-section .index-services-card-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  text-align: right;
}

.index-services-section .index-services-check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: rgba(20, 184, 166, 0.12);
  border-radius: 50%;
  color: var(--primary);
  font-size: 11px;
  margin-top: 2px;
}

.index-services-section .index-services-cta {
  display: inline-block;
  margin-top: 8px;
  background: linear-gradient(180deg, #14BED0 0%, #0EA7B7 100%);
  color: #FFFFFF;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 18px rgba(17, 182, 199, 0.28);
  text-decoration: none;
  text-align: center;
  transition: all 0.22s ease;
  align-self: flex-start;
}

.index-services-section .index-services-cta:hover {
  box-shadow: 0 12px 28px rgba(17, 182, 199, 0.40);
  transform: translateY(-2px);
  color: #FFFFFF;
}

/* ── Three-Point Strip ── */
.index-services-section .index-services-strip {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(31, 78, 102, 0.08);
  overflow: hidden;
  direction: rtl;
}

.index-services-section .index-services-strip-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 28px;
  flex: 1;
  text-align: right;
}

.index-services-section .index-services-strip-divider {
  width: 1px;
  background: var(--border-light);
  flex-shrink: 0;
  margin: 20px 0;
}

.index-services-section .index-services-strip-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: rgba(20, 184, 166, 0.10);
  border-radius: 10px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.index-services-section .index-services-strip-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.index-services-section .index-services-strip-title {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-dark);
  margin: 0;
}

.index-services-section .index-services-strip-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

/* ── Bottom Scalloped Divider ── */
.index-services-section .index-services-divider-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  pointer-events: none;
  z-index: 5;
}

.index-services-section .index-services-divider-wrapper svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── Responsive: Tablet ── */
@media (max-width: 900px) {
  .index-services-section .index-services-strip {
    flex-direction: column;
    gap: 0;
  }

  .index-services-section .index-services-strip-divider {
    width: auto;
    height: 1px;
    margin: 0 20px;
  }

  .index-services-section .index-services-strip-item {
    padding: 20px 24px;
  }
}

/* ── Responsive: Mobile ── */
@media (max-width: 768px) {
  .index-services-section {
    padding: 56px 16px 100px;
  }

  .index-services-section .index-services-intro {
    margin-bottom: 40px;
  }

  .index-services-section .index-services-heading {
    font-size: 26px;
  }

  .index-services-section .index-services-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .index-services-section .index-services-card-body {
    padding: 24px 20px;
  }

  .index-services-section .index-services-strip {
    flex-direction: column;
  }

  .index-services-section .index-services-strip-item {
    padding: 18px 20px;
  }

  .index-services-section .index-services-strip-divider {
    width: auto;
    height: 1px;
    margin: 0 16px;
  }

  .index-services-section .index-services-cta {
    width: 100%;
    text-align: center;
  }
}

/* index-showcase */
.index-showcase-section {
  position: relative;
  overflow: visible;
  background-color: #F3FBFE;
  background-image:
    radial-gradient(circle at 50% 0, rgba(127,215,243,0.12) 0, rgba(127,215,243,0) 55%),
    linear-gradient(180deg, #FFFFFF 0%, #F3FBFE 100%);
  color: var(--text-dark);
  padding: 96px 0 120px;
  direction: rtl;
}

.index-showcase-section .showcase-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Intro Block ── */
.index-showcase-section .showcase-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.index-showcase-section .showcase-eyebrow {
  display: inline-block;
  font-family: 'Rubik', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(20, 184, 166, 0.10);
  border: 1px solid rgba(20, 184, 166, 0.22);
  border-radius: 6px;
  padding: 4px 14px;
  margin-bottom: 16px;
}

.index-showcase-section .showcase-heading {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
  margin: 0 0 16px;
  max-width: none !important;
}

.index-showcase-section .showcase-heading-accent {
  color: var(--primary);
}

.index-showcase-section .showcase-subtext {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
  max-width: none !important;
  text-align: center;
}

/* ── Main Grid ── */
.index-showcase-section .showcase-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
  direction: rtl;
  margin-bottom: 24px;
}

.index-showcase-section .showcase-column-end {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ── Panels ── */
.index-showcase-section .showcase-panel {
  background: #FFFFFF;
  border: 1px solid #E3EEF3;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(31,78,102,0.10);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  display: flex;
  flex-direction: column;
}

.index-showcase-section .showcase-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(31,78,102,0.18);
}

/* Image Wraps */
.index-showcase-section .panel-image-wrap {
  margin: 0;
  padding: 0;
  overflow: hidden;
  flex-shrink: 0;
  background: #E8F6FB;
}

.index-showcase-section .panel-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
  transition: transform 0.22s ease;
  box-shadow: none;
}

.index-showcase-section .showcase-panel:hover .panel-image-wrap img {
  transform: scale(1.02);
}

/* Large sofa panel image */
.index-showcase-section .panel-large .panel-image-wrap {
  height: 280px;
}

/* Small panels image */
.index-showcase-section .panel-small .panel-image-wrap {
  height: 170px;
}

/* Wide panel */
.index-showcase-section .panel-wide {
  flex-direction: row;
  align-items: stretch;
}

.index-showcase-section .panel-image-wide {
  width: 420px;
  min-width: 280px;
  height: auto;
  flex-shrink: 0;
}

.index-showcase-section .panel-image-wide img {
  height: 100%;
  min-height: 180px;
}

/* Panel Info */
.index-showcase-section .panel-info {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: right;
}

.index-showcase-section .panel-info-compact {
  padding: 18px 20px 20px;
  gap: 8px;
}

.index-showcase-section .panel-info-wide {
  flex: 1;
  justify-content: center;
  padding: 28px 32px;
}

/* Badge */
.index-showcase-section .panel-badge {
  display: inline-flex;
  align-self: flex-start;
  font-family: 'Rubik', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--primary);
  background: rgba(20, 184, 166, 0.10);
  border: 1px solid rgba(20, 184, 166, 0.25);
  border-radius: 6px;
  padding: 3px 12px;
}

.index-showcase-section .panel-badge-accent {
  color: var(--secondary);
  background: rgba(56, 189, 248, 0.10);
  border-color: rgba(56, 189, 248, 0.28);
}

/* Panel Title */
.index-showcase-section .panel-title {
  font-family: 'Rubik', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-dark);
  margin: 0;
}

/* Panel Desc */
.index-showcase-section .panel-desc {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

/* Panel Results List */
.index-showcase-section .panel-results {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.index-showcase-section .panel-results li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-family: 'Rubik', sans-serif;
  font-size: 0.9375rem;
  color: var(--text-dark);
  text-align: right;
}

.index-showcase-section .panel-results li i {
  color: var(--primary);
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* ── Bottom Angled Divider ── */
.index-showcase-section .showcase-divider-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90px;
  pointer-events: none;
  z-index: 5;
}

.index-showcase-section .showcase-divider-wrapper svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .index-showcase-section .showcase-grid {
    grid-template-columns: 1fr;
  }

  .index-showcase-section .showcase-column-end {
    flex-direction: row;
    gap: 20px;
  }

  .index-showcase-section .panel-small {
    flex: 1;
    min-width: 0;
  }

  .index-showcase-section .panel-wide {
    flex-direction: column;
  }

  .index-showcase-section .panel-image-wide {
    width: 100%;
    height: 220px;
  }

  .index-showcase-section .panel-image-wide img {
    min-height: 220px;
  }
}

@media (max-width: 768px) {
  .index-showcase-section {
    padding: 56px 0 100px;
  }

  .index-showcase-section .showcase-container {
    padding: 0 16px;
  }

  .index-showcase-section .showcase-intro {
    margin-bottom: 36px;
  }

  .index-showcase-section .showcase-heading {
    font-size: 1.6rem;
  }

  .index-showcase-section .showcase-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .index-showcase-section .showcase-column-end {
    flex-direction: column;
    gap: 16px;
  }

  .index-showcase-section .panel-large .panel-image-wrap {
    height: 220px;
  }

  .index-showcase-section .panel-small .panel-image-wrap {
    height: 160px;
  }

  .index-showcase-section .panel-wide {
    flex-direction: column;
  }

  .index-showcase-section .panel-image-wide {
    width: 100%;
    height: 200px;
    min-width: unset;
  }

  .index-showcase-section .panel-image-wide img {
    min-height: 200px;
  }

  .index-showcase-section .panel-info-wide {
    padding: 20px;
  }

  .index-showcase-section .showcase-divider-wrapper {
    height: 60px;
  }
}

/* index-testimonials */
.index-testimonials-section {
  position: relative;
  background-color: #1F2937;
  background-image:
    radial-gradient(ellipse at 10% 20%, rgba(20,184,166,0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 80%, rgba(56,189,248,0.08) 0%, transparent 50%),
    linear-gradient(180deg, #1F2937 0%, #162330 100%);
  color: var(--text-light);
  padding: 96px 24px 0;
  overflow: visible;
  direction: rtl;
}

/* Container */
.index-testimonials-section .index-testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}

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

.index-testimonials-section .index-testimonials-eyebrow {
  display: inline-block;
  font-family: 'Rubik', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(20,184,166,0.12);
  border: 1px solid rgba(20,184,166,0.30);
  border-radius: 6px;
  padding: 5px 14px;
  margin-bottom: 18px;
}

.index-testimonials-section .index-testimonials-title {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-light);
  margin: 0 auto 16px;
  max-width: 640px;
}

.index-testimonials-section .index-testimonials-subtitle {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.62);
  margin: 0 auto;
  max-width: 520px;
  text-align: center;
}

/* Grid */
.index-testimonials-section .index-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 48px;
  direction: rtl;
}

@media (min-width: 768px) {
  .index-testimonials-section .index-testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Card */
.index-testimonials-section .index-testimonials-card {
  position: relative;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  overflow: hidden;
  min-width: 250px;
}

.index-testimonials-section .index-testimonials-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.28);
}

/* Teal accent line at top of card */
.index-testimonials-section .index-testimonials-card-accent {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, var(--secondary) 100%);
  border-radius: 12px 12px 0 0;
}

/* Quote icon */
.index-testimonials-section .index-testimonials-quote-icon {
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* Quote text */
.index-testimonials-section .index-testimonials-quote {
  margin: 0;
  flex: 1;
}

.index-testimonials-section .index-testimonials-quote p {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin: 0;
  text-align: right;
}

/* Card Footer */
.index-testimonials-section .index-testimonials-card-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

/* Stars */
.index-testimonials-section .index-testimonials-stars {
  display: flex;
  flex-direction: row;
  gap: 3px;
  justify-content: flex-start;
}

.index-testimonials-section .index-testimonials-stars .fa-star {
  color: #FBBF24;
  font-size: 14px;
}

/* Client info */
.index-testimonials-section .index-testimonials-client {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: right;
}

.index-testimonials-section .index-testimonials-client-name {
  font-family: 'Rubik', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-light);
}

.index-testimonials-section .index-testimonials-client-context {
  font-family: 'Rubik', sans-serif;
  font-size: 13px;
  color: var(--primary);
  letter-spacing: 0.02em;
}

/* ── Assurance Ribbon ── */
.index-testimonials-section .index-testimonials-ribbon {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(20,184,166,0.22);
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .index-testimonials-section .index-testimonials-ribbon {
    flex-direction: row;
    align-items: center;
  }
}

.index-testimonials-section .index-testimonials-ribbon-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  padding: 22px 28px;
  flex: 1;
  direction: rtl;
}

.index-testimonials-section .index-testimonials-ribbon-divider {
  width: 100%;
  height: 1px;
  background: rgba(20,184,166,0.20);
}

@media (min-width: 768px) {
  .index-testimonials-section .index-testimonials-ribbon-divider {
    width: 1px;
    height: 48px;
    background: rgba(20,184,166,0.25);
  }
}

.index-testimonials-section .index-testimonials-ribbon-icon {
  color: var(--primary);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(20,184,166,0.12);
  border-radius: 50%;
}

.index-testimonials-section .index-testimonials-ribbon-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: right;
}

.index-testimonials-section .index-testimonials-ribbon-text strong {
  font-family: 'Rubik', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-light);
}

.index-testimonials-section .index-testimonials-ribbon-text span {
  font-family: 'Rubik', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.58);
  line-height: 1.5;
}

/* ── Bottom Divider: gradient fade from deep slate to white with teal line ── */
.index-testimonials-section .index-testimonials-divider-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  pointer-events: none;
  z-index: 5;
  display: flex;
  flex-direction: column;
}

.index-testimonials-section .index-testimonials-teal-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 30%, var(--secondary) 70%, transparent 100%);
  flex-shrink: 0;
}

.index-testimonials-section .index-testimonials-fade {
  width: 100%;
  flex: 1;
  background: linear-gradient(180deg, rgba(31,41,55,0) 0%, #FFFFFF 100%);
}

/* Mobile overrides */
@media (max-width: 767px) {
  .index-testimonials-section {
    padding: 56px 16px 0;
  }

  .index-testimonials-section .index-testimonials-container {
    padding-bottom: 80px;
  }

  .index-testimonials-section .index-testimonials-header {
    margin-bottom: 36px;
  }

  .index-testimonials-section .index-testimonials-title {
    font-size: 1.6rem;
  }

  .index-testimonials-section .index-testimonials-grid {
    grid-template-columns: 1fr !important;
  }

  .index-testimonials-section .index-testimonials-card {
    padding: 24px 20px;
  }

  .index-testimonials-section .index-testimonials-ribbon-item {
    padding: 18px 20px;
  }
}

/* index-cta */
.index-cta-section {
  background: linear-gradient(180deg, #FFFFFF 0%, #F3FBFE 100%);
  color: var(--text-dark);
  padding: var(--spacing-section, 96px) 24px;
  position: relative;
  overflow: visible;
  direction: rtl;
}

.index-cta-section .index-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.index-cta-section .index-cta-panel {
  background: #FFFFFF;
  border-radius: var(--radius-card, 12px);
  box-shadow: 0 8px 24px rgba(31, 78, 102, 0.10);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: row;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 860px;
  min-height: 320px;
}

.index-cta-section .index-cta-content {
  flex: 1 1 0;
  padding: var(--spacing-card-padding, 48px) 48px var(--spacing-card-padding, 48px) 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  z-index: 2;
  text-align: right;
}

.index-cta-section .index-cta-heading {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
  margin: 0 0 16px 0;
  text-align: right;
}

.index-cta-section .index-cta-desc {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  margin: 0 0 28px 0;
  text-align: right;
  max-width: 480px;
}

.index-cta-section .index-cta-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
}

.index-cta-section .index-cta-btn-primary {
  display: inline-block;
  background: linear-gradient(180deg, #14BED0 0%, #0EA7B7 100%);
  color: #FFFFFF;
  padding: 14px 40px;
  border-radius: var(--radius-btn, 8px);
  border: none;
  font-weight: 700;
  font-size: 16px;
  font-family: 'Rubik', sans-serif;
  box-shadow: 0 8px 18px rgba(17, 182, 199, 0.28);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: all 0.22s ease;
  cursor: pointer;
  white-space: nowrap;
}

.index-cta-section .index-cta-btn-primary:hover {
  box-shadow: 0 12px 28px rgba(17, 182, 199, 0.38);
  transform: translateY(-2px);
  color: #FFFFFF;
}

.index-cta-section .index-cta-btn-secondary {
  display: inline-block;
  background: #FFFFFF;
  color: var(--text-dark);
  padding: 13px 34px;
  border-radius: var(--radius-btn, 8px);
  border: 2px solid var(--primary);
  font-weight: 700;
  font-size: 16px;
  font-family: 'Rubik', sans-serif;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: all 0.22s ease;
  cursor: pointer;
  white-space: nowrap;
}

.index-cta-section .index-cta-btn-secondary:hover {
  background: var(--primary);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(17, 182, 199, 0.18);
}

.index-cta-section .index-cta-support-line {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  text-align: right;
  margin: 0;
}

.index-cta-section .index-cta-support-line svg {
  color: var(--primary);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.index-cta-section .index-cta-image-wrap {
  position: relative;
  width: 220px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 0 0 var(--radius-card, 12px) 0;
  align-self: flex-end;
}

.index-cta-section .index-cta-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: transform 0.22s ease;
}

.index-cta-section .index-cta-image-wrap:hover .index-cta-img {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .index-cta-section {
    padding: var(--spacing-section-mobile, 56px) 16px;
  }

  .index-cta-section .index-cta-panel {
    flex-direction: column;
    max-width: 100%;
    overflow: hidden;
  }

  .index-cta-section .index-cta-content {
    padding: 32px 24px 24px 24px;
    align-items: flex-start;
  }

  .index-cta-section .index-cta-heading {
    font-size: 1.5rem;
  }

  .index-cta-section .index-cta-desc {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .index-cta-section .index-cta-buttons {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .index-cta-section .index-cta-btn-primary,
  .index-cta-section .index-cta-btn-secondary {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
  }

  .index-cta-section .index-cta-image-wrap {
    position: relative;
    width: 100%;
    height: 180px;
    border-radius: 0 0 var(--radius-card, 12px) var(--radius-card, 12px);
    flex-shrink: 0;
  }

  .index-cta-section .index-cta-img {
    position: static;
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 0 0 var(--radius-card, 12px) var(--radius-card, 12px);
  }

  .index-cta-section .index-cta-support-line {
    font-size: 13px;
  }
}

/* services-intro */
.services-intro-section {
  background-color: #FFFFFF;
  background-image: radial-gradient(circle at 50% 0, rgba(127,215,243,0.12) 0, rgba(127,215,243,0) 55%);
  color: var(--text-dark);
  padding: 140px 24px 72px;
  position: relative;
  overflow: visible;
  direction: rtl;
}

.services-intro-section .services-intro-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 56px;
}

/* ── Text Column ── */
.services-intro-section .services-intro-content {
  flex: 1 1 0;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.services-intro-section .services-intro-badge {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: rgba(20, 184, 166, 0.10);
  border: 1px solid rgba(20, 184, 166, 0.25);
  border-radius: 6px;
  padding: 6px 14px;
  color: var(--primary);
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.services-intro-section .services-intro-badge i {
  font-size: 13px;
  color: var(--primary);
}

.services-intro-section .services-intro-heading {
  font-family: 'Rubik', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin: 0;
  text-align: right;
}

.services-intro-section .services-intro-heading-accent {
  color: var(--primary);
  display: block;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 4px;
}

.services-intro-section .services-intro-description {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #3B6780;
  margin: 0;
  text-align: right;
  max-width: 520px;
}

.services-intro-section .services-intro-list {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.services-intro-section .services-intro-list-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  text-align: right;
}

.services-intro-section .services-intro-list-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: rgba(20, 184, 166, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 13px;
  flex-shrink: 0;
}

.services-intro-section .services-intro-list-text {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
}

.services-intro-section .services-intro-cta {
  margin-top: 8px;
}

.services-intro-section .services-intro-btn {
  display: inline-block;
  background: linear-gradient(180deg, #14BED0 0%, #0EA7B7 100%);
  color: #FFFFFF;
  padding: 14px 40px;
  border-radius: 8px;
  border: none;
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(17,182,199,0.28);
  transition: all 0.22s ease;
  cursor: pointer;
}

.services-intro-section .services-intro-btn:hover {
  box-shadow: 0 12px 28px rgba(17,182,199,0.38);
  transform: translateY(-2px);
  color: #FFFFFF;
}

/* ── Image Column ── */
.services-intro-section .services-intro-image-col {
  flex: 0 0 48%;
  max-width: 540px;
  position: relative;
}

.services-intro-section .services-intro-image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(31,78,102,0.10);
}

.services-intro-section .services-intro-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.22s ease;
}

.services-intro-section .services-intro-image-wrapper:hover .services-intro-img {
  transform: scale(1.02);
}

.services-intro-section .services-intro-image-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(227,238,243,0.9);
  border-radius: 8px;
  padding: 10px 16px;
  box-shadow: 0 8px 24px rgba(31,78,102,0.12);
  color: var(--primary);
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.services-intro-section .services-intro-image-badge i {
  font-size: 16px;
  color: var(--primary);
}

.services-intro-section .services-intro-image-badge span {
  color: var(--text-dark);
}

/* ── Bottom teal rule divider ── */
.services-intro-section .services-intro-rule-wrapper {
  max-width: 1200px;
  margin: 56px auto 0;
  padding: 0 24px;
}

.services-intro-section .services-intro-rule {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 30%, var(--secondary) 70%, transparent 100%);
  border-radius: 2px;
  opacity: 0.45;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .services-intro-section .services-intro-container {
    gap: 36px;
  }
  .services-intro-section .services-intro-image-col {
    flex: 0 0 44%;
    max-width: 420px;
  }
}

@media (max-width: 768px) {
  .services-intro-section {
    padding: 100px 16px 56px;
  }
  .services-intro-section .services-intro-container {
    flex-direction: column;
    gap: 32px;
  }
  .services-intro-section .services-intro-content {
    width: 100%;
    align-items: flex-start;
  }
  .services-intro-section .services-intro-heading {
    font-size: 2rem;
  }
  .services-intro-section .services-intro-heading-accent {
    font-size: 1.4rem;
  }
  .services-intro-section .services-intro-image-col {
    flex: unset;
    max-width: 100%;
    width: 100%;
  }
  .services-intro-section .services-intro-image-badge {
    bottom: 12px;
    right: 12px;
    padding: 8px 12px;
    font-size: 13px;
  }
  .services-intro-section .services-intro-rule-wrapper {
    margin-top: 40px;
    padding: 0;
  }
}

/* services-service-details */
.services-service-details-section {
  direction: rtl;
  background-color: #FFFFFF;
  background-image: linear-gradient(180deg, #FFFFFF 0%, #F0FAFB 100%);
  color: var(--text-dark);
  position: relative;
  overflow: visible;
  padding-bottom: 60px;
}

/* ── Container ── */
.services-service-details-section .ssd-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Modules ── */
.services-service-details-section .ssd-module {
  padding: 80px 0;
}

.services-service-details-section .ssd-module--sofa {
  border-bottom: 1px solid var(--border-light);
}

.services-service-details-section .ssd-module--ac {
  padding-bottom: 40px;
}

/* ── Grid ── */
.services-service-details-section .ssd-module-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  direction: rtl;
}

/* Module 1: text right, image left (default RTL grid: col1=right, col2=left) */
/* Module 2: image right, text left (reversed) */
.services-service-details-section .ssd-module-grid--reversed {
  direction: rtl;
}

/* In reversed grid, image is first child → col1 (right), text is second → col2 (left) */

/* ── Label ── */
.services-service-details-section .ssd-label {
  display: inline-block;
  font-family: 'Rubik', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(20, 184, 166, 0.10);
  border: 1px solid rgba(20, 184, 166, 0.22);
  border-radius: 6px;
  padding: 4px 12px;
  margin-bottom: 16px;
}

/* ── Headings ── */
.services-service-details-section .ssd-heading {
  font-family: 'Rubik', sans-serif;
  font-size: 31px;
  font-weight: 700;
  line-height: 1.25;
  color: #2E6882;
  margin: 0 0 16px 0;
  text-align: right;
}

/* ── Intro paragraph ── */
.services-service-details-section .ssd-intro {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #6D8A9A;
  margin: 0 0 32px 0;
  text-align: right;
}

.services-service-details-section .ssd-intro strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* ── Subpoints list ── */
.services-service-details-section .ssd-subpoints {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.services-service-details-section .ssd-subpoint {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: flex-start;
  direction: rtl;
}

.services-service-details-section .ssd-subpoint-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(20,184,166,0.12) 0%, rgba(56,189,248,0.10) 100%);
  border: 1px solid rgba(20, 184, 166, 0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.services-service-details-section .ssd-subpoint-content {
  text-align: right;
}

.services-service-details-section .ssd-subpoint-content h3 {
  font-family: 'Rubik', sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  color: #2E6882;
  margin: 0 0 6px 0;
  text-align: right;
}

.services-service-details-section .ssd-subpoint-content p {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #6D8A9A;
  margin: 0;
  text-align: right;
}

/* ── Image block ── */
.services-service-details-section .ssd-image-block {
  position: relative;
  margin: 0;
}

.services-service-details-section .ssd-image {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(31, 78, 102, 0.14);
  display: block;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  background: var(--border-light);
}

.services-service-details-section .ssd-image-block:hover .ssd-image {
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(31, 78, 102, 0.18);
}

/* ── Image badge ── */
.services-service-details-section .ssd-image-badge {
  position: absolute;
  bottom: -16px;
  inset-inline-start: 24px;
  background: #FFFFFF;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  box-shadow: 0 8px 24px rgba(31, 78, 102, 0.12);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Rubik', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap;
  direction: rtl;
}

.services-service-details-section .ssd-image-badge i {
  color: var(--primary);
  font-size: 14px;
}

.services-service-details-section .ssd-image-badge--secondary i {
  color: var(--secondary);
}

/* ── Bottom divider ── */
.services-service-details-section .ssd-divider-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  pointer-events: none;
  z-index: 5;
}

.services-service-details-section .ssd-divider-wrapper svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── Responsive: Tablet ── */
@media (max-width: 1024px) {
  .services-service-details-section .ssd-module-grid {
    gap: 40px;
  }

  .services-service-details-section .ssd-heading {
    font-size: 26px;
  }
}

/* ── Responsive: Mobile ── */
@media (max-width: 768px) {
  .services-service-details-section {
    padding-bottom: 60px;
  }

  .services-service-details-section .ssd-module {
    padding: 48px 0;
  }

  .services-service-details-section .ssd-container {
    padding: 0 16px;
  }

  .services-service-details-section .ssd-module-grid,
  .services-service-details-section .ssd-module-grid--reversed {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }

  /* On mobile: for reversed module, image comes first in DOM = top, then text below */
  .services-service-details-section .ssd-module-grid--reversed .ssd-image-block {
    
  }

  .services-service-details-section .ssd-heading {
    font-size: 24px;
  }

  .services-service-details-section .ssd-image-badge {
    bottom: -14px;
    inset-inline-start: 16px;
    padding: 8px 14px;
    font-size: 12px;
  }

  .services-service-details-section .ssd-subpoint {
    grid-template-columns: 40px 1fr;
    gap: 12px;
  }

  .services-service-details-section .ssd-subpoint-icon {
    width: 40px;
    height: 40px;
  }
}
/* ZAPPY_POSTGEN_GUARD_RTL_ORDER:שירותים-service-details — stripped 1 order declaration(s) conflicting with RTL grid */


/* services-process */
.services-process-section {
  position: relative;
  overflow: visible;
  background-color: #FFFFFF;
  background-image: linear-gradient(180deg, #FFFFFF 0%, #F3FBFE 100%);
  color: var(--text-dark);
  padding: 96px 24px 120px;
  direction: rtl;
  font-family: 'Rubik', sans-serif;
}

.services-process-section .services-process-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Section Header ── */
.services-process-section .services-process-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.services-process-section .services-process-eyebrow {
  display: inline-block;
  font-family: 'Rubik', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(20, 184, 166, 0.08);
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: 6px;
  padding: 4px 14px;
  margin-bottom: 16px;
}

.services-process-section .services-process-title {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  color: #2E6882;
  margin: 0 0 16px;
  text-align: center;
  max-width: none !important;
}

.services-process-section .services-process-intro {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
  text-align: center;
  max-width: none !important;
}

/* ── Steps Grid ── */
.services-process-section .services-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  direction: rtl;
  margin-bottom: 56px;
}

/* ── Step Card ── */
.services-process-section .services-process-card {
  background: #FFFFFF;
  border: 1px solid #E3EEF3;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 8px 24px rgba(31, 78, 102, 0.10);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.services-process-section .services-process-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 0 12px 12px 0;
}

.services-process-section .services-process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(31, 78, 102, 0.18);
}

/* ── Step Marker ── */
.services-process-section .services-process-step-marker {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.services-process-section .services-process-step-number {
  font-family: 'Rubik', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  color: var(--primary);
  opacity: 0.18;
  letter-spacing: -0.02em;
  user-select: none;
}

/* ── Card Content ── */
.services-process-section .services-process-card-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.services-process-section .services-process-card-title {
  font-family: 'Rubik', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
  color: #2E6882;
  margin: 0;
  text-align: right;
}

.services-process-section .services-process-card-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
  text-align: right;
}

/* ── Supporting Image ── */
.services-process-section .services-process-image-wrapper {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}

.services-process-section .services-process-figure {
  margin: 0;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(31, 78, 102, 0.14);
}

.services-process-section .services-process-figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
  aspect-ratio: 3/2;
  transition: transform 0.22s ease;
}

.services-process-section .services-process-figure:hover img {
  transform: scale(1.02);
}

.services-process-section .services-process-figcaption {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-muted);
  text-align: center;
  padding: 12px 0 0;
}

/* ── Image Badge ── */
.services-process-section .services-process-image-badge {
  position: absolute;
  bottom: 40px;
  inset-inline-start: -20px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(227, 238, 243, 0.9);
  border-radius: 10px;
  padding: 10px 18px;
  box-shadow: 0 8px 24px rgba(31, 78, 102, 0.12);
  color: var(--text-dark);
  z-index: 2;
}

.services-process-section .services-process-badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(180deg, #14BED0 0%, #0EA7B7 100%);
  border-radius: 6px;
  color: #FFFFFF;
  flex-shrink: 0;
}

.services-process-section .services-process-badge-text {
  font-family: 'Rubik', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap;
}

/* ── Bottom Dotted Airflow Divider ── */
.services-process-section .services-process-divider-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  pointer-events: none;
  z-index: 5;
}

.services-process-section .services-process-divider-wrapper svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── Responsive: Tablet ── */
@media (max-width: 1024px) {
  .services-process-section .services-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-process-section .services-process-image-badge {
    inset-inline-start: 12px;
    bottom: 48px;
  }
}

/* ── Responsive: Mobile ── */
@media (max-width: 768px) {
  .services-process-section {
    padding: 56px 16px 100px;
  }

  .services-process-section .services-process-header {
    margin-bottom: 36px;
  }

  .services-process-section .services-process-title {
    font-size: 1.6rem;
  }

  .services-process-section .services-process-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
    margin-bottom: 36px;
  }

  .services-process-section .services-process-card {
    padding: 24px;
  }

  .services-process-section .services-process-step-number {
    font-size: 1.75rem;
  }

  .services-process-section .services-process-card-title {
    font-size: 1.15rem;
  }

  .services-process-section .services-process-image-badge {
    position: static;
    margin-top: 12px;
    display: inline-flex;
    inset-inline-start: auto;
    bottom: auto;
  }

  .services-process-section .services-process-image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
}

/* services-pricing */
.services-pricing-section {
  position: relative;
  overflow: visible;
  background-color: #2E6882;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(20,184,166,0.12) 0%, transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(56,189,248,0.10) 0%, transparent 50%),
    linear-gradient(180deg, #3C6F88 0%, #2E6882 100%);
  color: var(--text-light);
  padding: var(--spacing-section, 96px) 24px;
  padding-bottom: calc(var(--spacing-section, 96px) + 70px);
  direction: rtl;
}

.services-pricing-section .services-pricing-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.services-pricing-section .services-pricing-badge {
  display: inline-block;
  background: rgba(20,184,166,0.18);
  border: 1px solid rgba(20,184,166,0.40);
  color: #7FD7F3;
  font-family: 'Rubik', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 6px;
  margin-bottom: 18px;
}

.services-pricing-section .services-pricing-title {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-light);
  margin: 0 0 16px 0;
  max-width: none !important;
}

.services-pricing-section .services-pricing-subtitle {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

/* Grid */
.services-pricing-section .services-pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-card-gap, 24px);
  margin-bottom: 48px;
  direction: rtl;
}

/* Cards */
.services-pricing-section .services-pricing-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: var(--spacing-card-padding, 32px);
  box-shadow: 0 8px 24px rgba(31,78,102,0.10);
  border: 1px solid rgba(227,238,243,0.9);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-element-gap, 16px);
}

.services-pricing-section .services-pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(31,78,102,0.18);
}

.services-pricing-section .services-pricing-card--featured {
  background: #FFFFFF;
  border: 2px solid var(--primary);
  position: relative;
}

.services-pricing-section .services-pricing-card--featured::before {
  content: 'הכי מבוקש';
  position: absolute;
  top: -14px;
  inset-inline-start: 28px;
  background: var(--primary);
  color: #FFFFFF;
  font-family: 'Rubik', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 14px;
  border-radius: 6px;
}

/* Card Icon */
.services-pricing-section .services-pricing-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(20,184,166,0.12) 0%, rgba(56,189,248,0.10) 100%);
  border: 1px solid rgba(20,184,166,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

/* Card Content */
.services-pricing-section .services-pricing-card-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.services-pricing-section .services-pricing-card-label {
  font-family: 'Rubik', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--primary);
  text-align: start;
}

.services-pricing-section .services-pricing-card-title {
  font-family: 'Rubik', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
  color: #2E6882;
  margin: 0;
  text-align: start;
}

.services-pricing-section .services-pricing-card-desc {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #6D8A9A;
  margin: 0;
  text-align: start;
}

/* Factors List */
.services-pricing-section .services-pricing-factors {
  list-style: none;
  margin: 4px 0 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.services-pricing-section .services-pricing-factors li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  font-family: 'Rubik', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-dark);
  text-align: start;
}

.services-pricing-section .services-pricing-factor-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(20,184,166,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 13px;
  flex-shrink: 0;
}

/* Note */
.services-pricing-section .services-pricing-note {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  background: rgba(20,184,166,0.07);
  border-inline-start: 3px solid var(--primary);
  border-radius: 0 6px 6px 0;
  padding: 10px 14px;
  margin-top: 4px;
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #2E6882;
  text-align: start;
}

.services-pricing-section .services-pricing-note i {
  color: var(--primary);
  font-size: 15px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Trust Strip */
.services-pricing-section .services-pricing-trust {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 20px 32px;
  margin-bottom: 40px;
}

.services-pricing-section .services-pricing-trust-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 8px 24px;
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  white-space: nowrap;
}

.services-pricing-section .services-pricing-trust-item i {
  color: var(--primary);
  font-size: 16px;
}

.services-pricing-section .services-pricing-trust-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.20);
  flex-shrink: 0;
}

/* CTA */
.services-pricing-section .services-pricing-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.services-pricing-section .services-pricing-cta-text {
  font-family: 'Rubik', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-light);
  margin: 0;
  text-align: center;
}

.services-pricing-section .services-pricing-btn {
  display: inline-block;
  background: linear-gradient(180deg, #14BED0 0%, #0EA7B7 100%);
  color: #FFFFFF;
  padding: 14px 40px;
  border-radius: 8px;
  border: none;
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 18px rgba(17,182,199,0.28);
  text-decoration: none;
  transition: all 0.22s ease;
  cursor: pointer;
}

.services-pricing-section .services-pricing-btn:hover {
  box-shadow: 0 12px 28px rgba(17,182,199,0.40);
  transform: translateY(-2px);
  color: #FFFFFF;
}

/* Bottom Divider */
.services-pricing-section .services-pricing-divider-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  pointer-events: none;
  z-index: 5;
}

.services-pricing-section .services-pricing-divider-wrapper svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Tablet+ */
@media (min-width: 640px) {
  .services-pricing-section .services-pricing-trust-item {
    font-size: 15px;
  }
}

@media (min-width: 768px) {
  .services-pricing-section {
    padding: var(--spacing-section, 96px) 40px;
    padding-bottom: calc(var(--spacing-section, 96px) + 70px);
  }

  .services-pricing-section .services-pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-pricing-section .services-pricing-title {
    font-size: 2rem;
  }

  .services-pricing-section .services-pricing-trust-divider {
    display: block;
  }
}

@media (max-width: 767px) {
  .services-pricing-section {
    padding: var(--spacing-section-mobile, 56px) 16px;
    padding-bottom: calc(var(--spacing-section-mobile, 56px) + 70px);
  }

  .services-pricing-section .services-pricing-grid {
    grid-template-columns: 1fr !important;
  }

  .services-pricing-section .services-pricing-trust {
    flex-direction: column;
    gap: 4px;
    padding: 16px;
  }

  .services-pricing-section .services-pricing-trust-divider {
    width: 60px;
    height: 1px;
    background: rgba(255,255,255,0.20);
  }

  .services-pricing-section .services-pricing-trust-item {
    padding: 6px 12px;
    white-space: normal;
    text-align: center;
    justify-content: center;
  }

  .services-pricing-section .services-pricing-card {
    padding: 24px;
  }

  .services-pricing-section .services-pricing-header {
    margin-bottom: 36px;
  }
}

/* services-benefits */
.services-benefits-section {
  background-color: #FFFFFF;
  background-image: radial-gradient(circle at 50% 0, rgba(127,215,243,0.12) 0, rgba(127,215,243,0) 55%),
    linear-gradient(180deg, #FFFFFF 0%, #F3FBFE 100%);
  color: var(--text-dark);
  padding: 96px 24px;
  position: relative;
  direction: rtl;
  font-family: 'Rubik', sans-serif;
}

.services-benefits-section .services-benefits-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Header ── */
.services-benefits-section .services-benefits-header {
  text-align: center;
  margin-bottom: 56px;
}

.services-benefits-section .services-benefits-tag {
  display: inline-block;
  background: rgba(20, 184, 166, 0.1);
  color: var(--primary);
  font-family: 'Rubik', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 16px;
  border-radius: 6px;
  border: 1px solid rgba(20, 184, 166, 0.25);
  margin-bottom: 16px;
}

.services-benefits-section .services-benefits-title {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  color: #2E6882;
  margin: 0 0 16px;
  max-width: none !important;
}

.services-benefits-section .services-benefits-subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

/* ── Body Layout ── */
.services-benefits-section .services-benefits-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 56px;
}

@media (min-width: 992px) {
  .services-benefits-section .services-benefits-body {
    grid-template-columns: 340px 1fr;
    gap: 48px;
    align-items: start;
  }
}

/* ── Image Block ── */
.services-benefits-section .services-benefits-image-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(31,78,102,0.10);
  flex-shrink: 0;
}

.services-benefits-section .services-benefits-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 12px;
  aspect-ratio: 3/2;
  transition: var(--transition-hover, all 0.22s ease);
}

.services-benefits-section .services-benefits-image-wrap:hover .services-benefits-img {
  transform: scale(1.02);
}

.services-benefits-section .services-benefits-image-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(227,238,243,0.9);
  border-radius: 8px;
  padding: 10px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(31,78,102,0.10);
  color: #2E6882;
  font-family: 'Rubik', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
}

.services-benefits-section .services-benefits-image-badge i {
  color: var(--primary);
  font-size: 1rem;
}

/* ── Benefits Grid ── */
.services-benefits-section .services-benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 600px) {
  .services-benefits-section .services-benefits-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (min-width: 992px) {
  .services-benefits-section .services-benefits-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }
}

/* ── Benefit Tile ── */
.services-benefits-section .services-benefit-tile {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(31,78,102,0.10);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: right;
  position: relative;
  overflow: hidden;
}

.services-benefits-section .services-benefit-tile::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 0 12px 12px 0;
}

.services-benefits-section .services-benefit-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(31,78,102,0.18);
}

.services-benefits-section .services-benefit-icon-wrap {
  width: 44px;
  height: 44px;
  background: rgba(20, 184, 166, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  font-size: 1.125rem;
  transition: background 0.22s ease;
}

.services-benefits-section .services-benefit-tile:hover .services-benefit-icon-wrap {
  background: rgba(20, 184, 166, 0.18);
}

.services-benefits-section .services-benefit-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.services-benefits-section .services-benefit-title {
  font-family: 'Rubik', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  color: #2E6882;
  margin: 0;
}

.services-benefits-section .services-benefit-tile p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

/* ── CTA Block ── */
.services-benefits-section .services-benefits-cta-block {
  background: linear-gradient(180deg, #F3FBFE 0%, #E8F7FC 100%);
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: 12px;
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(31,78,102,0.10);
}

.services-benefits-section .services-benefits-cta-text {
  font-size: 16px;
  line-height: 1.7;
  color: #3B6780;
  max-width: 600px;
  margin: 0;
  text-align: center;
}

.services-benefits-section .services-benefits-cta-btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  background: linear-gradient(180deg, #14BED0 0%, #0EA7B7 100%);
  color: #FFFFFF;
  padding: 14px 40px;
  border-radius: 8px;
  border: none;
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(17,182,199,0.28);
  transition: all 0.22s ease;
  cursor: pointer;
}

.services-benefits-section .services-benefits-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(17,182,199,0.36);
  color: #FFFFFF;
}

.services-benefits-section .services-benefits-cta-btn i {
  font-size: 0.9rem;
}

/* ── Mobile Responsive ── */
@media (max-width: 768px) {
  .services-benefits-section {
    padding: 56px 16px;
  }

  .services-benefits-section .services-benefits-header {
    margin-bottom: 36px;
  }

  .services-benefits-section .services-benefits-title {
    font-size: 1.6rem;
  }

  .services-benefits-section .services-benefits-body {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }

  .services-benefits-section .services-benefits-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .services-benefits-section .services-benefits-cta-block {
    padding: 28px 20px;
  }

  .services-benefits-section .services-benefits-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .services-benefits-section .services-benefits-image-badge {
    bottom: 12px;
    right: 12px;
  }
}

@media (min-width: 600px) and (max-width: 991px) {
  .services-benefits-section .services-benefits-body {
    grid-template-columns: 1fr !important;
  }

  .services-benefits-section .services-benefits-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* about-story */
.about-story-section {
  position: relative;
  overflow: visible;
  background-color: #FFFFFF;
  background-image: linear-gradient(180deg, #FFFFFF 0%, #F3FBFE 100%);
  color: var(--text-dark);
  padding: 120px 24px 96px;
  direction: rtl;
}

.about-story-section .about-story-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 64px;
}

/* ── TEXT COLUMN ── */
.about-story-section .about-story-content {
  flex: 1 1 0;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.about-story-section .about-story-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(20,184,166,0.12) 0%, rgba(56,189,248,0.12) 100%);
  color: var(--primary);
  font-family: 'Rubik', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 6px;
  border: 1px solid rgba(20,184,166,0.25);
  margin-bottom: 20px;
}

.about-story-section .about-story-heading {
  font-family: 'Rubik', sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.2;
  color: #2E6882;
  margin: 0 0 24px 0;
  text-align: right;
}

.about-story-section .about-story-lead {
  font-family: 'Rubik', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  color: #3B6780;
  margin: 0 0 18px 0;
  text-align: right;
}

.about-story-section .about-story-body {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: #6D8A9A;
  margin: 0 0 16px 0;
  text-align: right;
}

/* ── HIGHLIGHTS LIST ── */
.about-story-section .about-story-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 32px 0;
  width: 100%;
}

.about-story-section .about-story-highlight-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  text-align: right;
}

.about-story-section .highlight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(20,184,166,0.15) 0%, rgba(56,189,248,0.12) 100%);
  color: var(--primary);
  flex-shrink: 0;
}

.about-story-section .highlight-text {
  font-family: 'Rubik', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.5;
}

/* ── CTA BUTTON ── */
.about-story-section .about-story-cta {
  display: inline-block;
  background: linear-gradient(180deg, #14BED0 0%, #0EA7B7 100%);
  color: #FFFFFF;
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 40px;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(17,182,199,0.28);
  transition: all 0.22s ease;
  letter-spacing: 0.01em;
  cursor: pointer;
}

.about-story-section .about-story-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(17,182,199,0.38);
  color: #FFFFFF;
}

/* ── IMAGE COLUMN ── */
.about-story-section .about-story-image-col {
  flex: 0 0 480px;
  max-width: 480px;
  position: relative;
}

.about-story-section .about-story-image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.about-story-section .about-story-image-wrapper img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(31,78,102,0.14);
  display: block;
  transition: transform 0.22s ease;
}

.about-story-section .about-story-image-wrapper:hover img {
  transform: scale(1.02);
}

/* ── FLOATING BADGE ── */
.about-story-section .about-story-image-badge {
  position: absolute;
  bottom: -20px;
  inset-inline-end: -20px;
  background: #FFFFFF;
  border-radius: 12px;
  padding: 18px 24px;
  box-shadow: 0 12px 32px rgba(31,78,102,0.16);
  border: 1px solid #E3EEF3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 10;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.about-story-section .badge-number {
  font-family: 'Rubik', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.about-story-section .badge-label {
  font-family: 'Rubik', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #6D8A9A;
  white-space: nowrap;
  text-align: center;
}

/* ── BOTTOM DIVIDER ── */
.about-story-section .about-story-divider-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  pointer-events: none;
  z-index: 5;
}

.about-story-section .about-story-divider-wrapper svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-story-section .about-story-image-col {
    flex: 0 0 380px;
    max-width: 380px;
  }
  .about-story-section .about-story-container {
    gap: 40px;
  }
  .about-story-section .about-story-heading {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .about-story-section {
    padding: 100px 16px 80px;
  }
  .about-story-section .about-story-container {
    flex-direction: column;
    gap: 40px;
  }
  .about-story-section .about-story-content {
    width: 100%;
  }
  .about-story-section .about-story-image-col {
    flex: none;
    width: 100%;
    max-width: 100%;
  }
  .about-story-section .about-story-heading {
    font-size: 1.9rem;
  }
  .about-story-section .about-story-image-badge {
    bottom: -16px;
    inset-inline-end: 12px;
    padding: 12px 18px;
  }
  .about-story-section .badge-number {
    font-size: 22px;
  }
  .about-story-section .about-story-cta {
    width: 100%;
    text-align: center;
  }
}

/* about-values */
.about-values-section {
  position: relative;
  overflow: visible;
  background-color: #FFFFFF;
  background-image: linear-gradient(180deg, #FFFFFF 0%, #F3FBFE 100%);
  color: var(--text-dark);
  padding: 96px 24px 80px;
  direction: rtl;
}

.about-values-section .about-values-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.about-values-section .about-values-eyebrow {
  display: inline-block;
  font-family: 'Rubik', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(20, 184, 166, 0.08);
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: 6px;
  padding: 4px 14px;
  margin-bottom: 16px;
}

.about-values-section .about-values-title {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  color: #2E6882;
  margin: 0 0 16px;
  max-width: none !important;
}

.about-values-section .about-values-subtitle {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

/* Grid */
.about-values-section .about-values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  direction: rtl;
}

/* Card */
.about-values-section .about-values-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(31, 78, 102, 0.10);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  text-align: right;
}

.about-values-section .about-values-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(31, 78, 102, 0.18);
}

/* Icon */
.about-values-section .about-values-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 60px;
  height: 60px;
  background: rgba(20, 184, 166, 0.09);
  border-radius: 12px;
  color: var(--primary);
  flex-shrink: 0;
  align-self: flex-start;
}

.about-values-section .about-values-icon-wrap svg {
  display: block;
  margin: auto;
}

/* Card content */
.about-values-section .about-values-card-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-values-section .about-values-card-title {
  font-family: 'Rubik', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
  color: #2E6882;
  margin: 0;
}

.about-values-section .about-values-card-text {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

/* Divider */
.about-values-section .about-values-divider-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  pointer-events: none;
  z-index: 5;
}

.about-values-section .about-values-divider-wrapper svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Tablet+ */
@media (min-width: 640px) {
  .about-values-section .about-values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-values-section .about-values-card:last-child {
    grid-column: 1 / -1;
    max-width: 560px;
    margin-inline-start: auto;
    margin-inline-end: auto;
    width: 100%;
  }
}

/* Desktop */
@media (min-width: 900px) {
  .about-values-section .about-values-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-values-section .about-values-card:last-child {
    grid-column: auto;
    max-width: none;
    margin-inline-start: 0;
    margin-inline-end: 0;
  }

  .about-values-section .about-values-card {
    flex-direction: column;
  }
}

/* Mobile */
@media (max-width: 639px) {
  .about-values-section {
    padding: 56px 16px 72px;
  }

  .about-values-section .about-values-header {
    margin-bottom: 36px;
  }

  .about-values-section .about-values-title {
    font-size: 1.6rem;
  }

  .about-values-section .about-values-grid {
    grid-template-columns: 1fr !important;
  }

  .about-values-section .about-values-card:last-child {
    grid-column: auto !important;
    max-width: none !important;
    margin-inline-start: 0 !important;
    margin-inline-end: 0 !important;
  }

  .about-values-section .about-values-card {
    padding: 24px;
  }
}

/* about-assurances */
.about-assurances-section {
  position: relative;
  overflow: visible;
  background-color: #EEF6FA;
  background-image:
    radial-gradient(circle at 80% 10%, rgba(20,184,166,0.07) 0%, transparent 50%),
    linear-gradient(180deg, #F3F9FC 0%, #E8F4FA 100%);
  color: var(--text-dark);
  padding: var(--spacing-section, 96px) 20px;
  padding-bottom: calc(var(--spacing-section, 96px) + 70px);
  direction: rtl;
}

/* ── Container ── */
.about-assurances-section .about-assurances-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* ── Section Header ── */
.about-assurances-section .about-assurances-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 56px;
}

.about-assurances-section .about-assurances-badge {
  display: inline-block;
  background: rgba(20, 184, 166, 0.12);
  color: var(--primary);
  font-family: 'Rubik', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.about-assurances-section .about-assurances-title {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  color: #2E6882;
  margin: 0 0 16px;
  text-align: center;
}

.about-assurances-section .about-assurances-subtitle {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  text-align: center;
  margin: 0;
}

/* ── Two-column body ── */
.about-assurances-section .about-assurances-body {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
  direction: rtl;
}

/* ── Cards column ── */
.about-assurances-section .about-assurances-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-card-gap, 24px);
}

/* ── Individual card ── */
.about-assurances-section .assurance-card {
  background: #FFFFFF;
  border-radius: var(--radius-card, 12px);
  border: 1px solid var(--border-light);
  box-shadow: 0 8px 24px rgba(31, 78, 102, 0.10);
  padding: 24px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  direction: rtl;
}

.about-assurances-section .assurance-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(31, 78, 102, 0.18);
}

.about-assurances-section .assurance-card--wide {
  grid-column: span 2;
}

.about-assurances-section .assurance-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(20, 184, 166, 0.10);
  border-radius: var(--radius-sm, 6px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.about-assurances-section .assurance-card-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.about-assurances-section .assurance-card-content h3 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.4;
  color: #2E6882;
  margin: 0;
  text-align: start;
}

.about-assurances-section .assurance-card-content p {
  font-family: 'Rubik', sans-serif;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
  text-align: start;
}

/* ── Images column ── */
.about-assurances-section .about-assurances-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 120px;
}

.about-assurances-section .assurance-img-main,
.about-assurances-section .assurance-img-secondary {
  margin: 0;
  border-radius: var(--radius-img, 6px);
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(31, 78, 102, 0.12);
  transition: transform 0.22s ease;
}

.about-assurances-section .assurance-img-main:hover,
.about-assurances-section .assurance-img-secondary:hover {
  transform: scale(1.02);
}

.about-assurances-section .assurance-img-main img,
.about-assurances-section .assurance-img-secondary img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-img, 6px);
}

.about-assurances-section .assurance-img-secondary img {
  aspect-ratio: 16/7;
}

.about-assurances-section .assurance-img-main figcaption,
.about-assurances-section .assurance-img-secondary figcaption {
  font-family: 'Rubik', sans-serif;
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: start;
  padding: 8px 4px 0;
  line-height: 1.5;
}

/* ── Trust badge ── */
.about-assurances-section .assurance-trust-badge {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #14B8A6 0%, #0EA7B7 100%);
  border-radius: var(--radius-card, 12px);
  padding: 20px 24px;
  box-shadow: 0 12px 28px rgba(17, 182, 199, 0.28);
  direction: rtl;
}

.about-assurances-section .assurance-trust-badge-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  flex-shrink: 0;
}

.about-assurances-section .assurance-trust-badge strong {
  display: block;
  font-family: 'Rubik', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
}

.about-assurances-section .assurance-trust-badge span {
  display: block;
  font-family: 'Rubik', sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin-top: 2px;
}

/* ── Bottom angled divider ── */
.about-assurances-section .about-assurances-divider-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  pointer-events: none;
  z-index: 5;
}

.about-assurances-section .about-assurances-divider-wrapper svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── Responsive: Tablet ── */
@media (max-width: 1024px) {
  .about-assurances-section .about-assurances-body {
    grid-template-columns: 1fr 340px;
    gap: 32px;
  }
}

/* ── Responsive: Mobile ── */
@media (max-width: 768px) {
  .about-assurances-section {
    padding: 56px 16px;
    padding-bottom: calc(56px + 70px);
  }

  .about-assurances-section .about-assurances-header {
    margin-bottom: 36px;
  }

  .about-assurances-section .about-assurances-title {
    font-size: 1.6rem;
  }

  .about-assurances-section .about-assurances-body {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-assurances-section .about-assurances-cards {
    grid-template-columns: 1fr;
  }

  .about-assurances-section .assurance-card--wide {
    grid-column: span 1;
  }

  .about-assurances-section .about-assurances-images {
    position: static;
    gap: 16px;
  }

  .about-assurances-section .assurance-card {
    padding: 18px;
    gap: 12px;
  }

  .about-assurances-section .assurance-trust-badge {
    padding: 16px 18px;
  }
}

/* about-service-areas */
.about-service-areas-section {
  background-color: #FFFFFF;
  background-image: linear-gradient(180deg, #FFFFFF 0%, #F3FBFE 100%);
  color: var(--text-dark);
  padding: 96px 24px;
  position: relative;
  overflow: visible;
  direction: rtl;
  font-family: 'Rubik', sans-serif;
}

.about-service-areas-section .about-service-areas-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* ── Header ── */
.about-service-areas-section .about-service-areas-header {
  text-align: center;
  margin-bottom: 56px;
}

.about-service-areas-section .about-service-areas-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(20, 184, 166, 0.08);
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: 6px;
  padding: 4px 14px;
  margin-bottom: 16px;
}

.about-service-areas-section .about-service-areas-title {
  font-family: 'Rubik', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  color: #2E6882;
  margin: 0 0 16px;
  max-width: none !important;
}

.about-service-areas-section .about-service-areas-subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

/* ── Body: Two-Column Layout ── */
.about-service-areas-section .about-service-areas-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  direction: rtl;
}

/* ── Text Column (Right / Start) ── */
.about-service-areas-section .about-service-areas-text-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-service-areas-section .about-service-areas-places-title {
  font-family: 'Rubik', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  color: #2E6882;
  margin: 0 0 14px;
}

.about-service-areas-section .about-service-areas-places-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 28px;
  text-align: right;
}

/* ── List ── */
.about-service-areas-section .about-service-areas-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-service-areas-section .about-service-areas-list-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 1px 3px rgba(31, 78, 102, 0.06);
  transition: all 0.22s ease;
}

.about-service-areas-section .about-service-areas-list-item:hover {
  box-shadow: 0 8px 24px rgba(31, 78, 102, 0.10);
  transform: translateY(-2px);
}

.about-service-areas-section .about-service-areas-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(20, 184, 166, 0.1);
  border-radius: 8px;
  color: var(--primary);
  flex-shrink: 0;
}

.about-service-areas-section .about-service-areas-item-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: right;
}

.about-service-areas-section .about-service-areas-item-content strong {
  font-family: 'Rubik', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
}

.about-service-areas-section .about-service-areas-item-content span {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ── Note ── */
.about-service-areas-section .about-service-areas-note {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  background: rgba(56, 189, 248, 0.07);
  border-inline-start: 3px solid var(--secondary);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
  text-align: right;
}

.about-service-areas-section .about-service-areas-note .fa-circle-info {
  color: var(--secondary);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ── Map Column (Left / End) ── */
.about-service-areas-section .about-service-areas-map-col {
  display: flex;
  flex-direction: column;
}

.about-service-areas-section .about-service-areas-map-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(31, 78, 102, 0.10);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.about-service-areas-section .about-service-areas-map-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(31, 78, 102, 0.18);
}

.about-service-areas-section .about-service-areas-map-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: linear-gradient(135deg, #EEF9FD 0%, #D8F3FC 100%);
}

.about-service-areas-section .about-service-areas-map-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
  transition: transform 0.22s ease;
}

.about-service-areas-section .about-service-areas-map-card:hover .about-service-areas-map-visual img {
  transform: scale(1.02);
}

.about-service-areas-section .about-service-areas-map-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.about-service-areas-section .about-service-areas-map-footer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px 20px;
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  justify-content: flex-start;
  direction: rtl;
}

.about-service-areas-section .about-service-areas-map-badge {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 7px;
  background: rgba(20, 184, 166, 0.07);
  border: 1px solid rgba(20, 184, 166, 0.18);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  color: #2E6882;
}

.about-service-areas-section .about-service-areas-map-badge i {
  color: var(--primary);
  font-size: 13px;
  flex-shrink: 0;
}

/* ── Closing Block ── */
.about-service-areas-section .about-service-areas-closing {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  padding: 40px 32px;
  background: rgba(20, 184, 166, 0.04);
  border: 1px solid rgba(20, 184, 166, 0.12);
  border-radius: 12px;
}

.about-service-areas-section .about-service-areas-closing-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0;
  text-align: center;
}

.about-service-areas-section .about-service-areas-cta {
  display: inline-block;
  background: linear-gradient(180deg, #14BED0 0%, #0EA7B7 100%);
  color: #FFFFFF;
  padding: 14px 40px;
  border-radius: 8px;
  border: none;
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(17, 182, 199, 0.28);
  transition: all 0.22s ease;
  cursor: pointer;
}

.about-service-areas-section .about-service-areas-cta:hover {
  box-shadow: 0 12px 28px rgba(17, 182, 199, 0.4);
  transform: translateY(-2px);
  color: #FFFFFF;
  text-decoration: none;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .about-service-areas-section {
    padding: 56px 16px;
  }

  .about-service-areas-section .about-service-areas-header {
    margin-bottom: 36px;
  }

  .about-service-areas-section .about-service-areas-title {
    font-size: 26px;
  }

  .about-service-areas-section .about-service-areas-body {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }

  .about-service-areas-section .about-service-areas-map-col {
    order: -1;
  }

  .about-service-areas-section .about-service-areas-closing {
    margin-top: 36px;
    padding: 28px 20px;
  }

  .about-service-areas-section .about-service-areas-closing-text {
    font-size: 15px;
  }

  .about-service-areas-section .about-service-areas-map-footer {
    flex-direction: column;
    gap: 8px;
  }

  .about-service-areas-section .about-service-areas-cta {
    width: 100%;
    text-align: center;
  }
}

/* contact-contact-intro */
.contact-contact-intro-section {
  background-color: #FFFFFF;
  background-image: radial-gradient(circle at 50% 0, rgba(127,215,243,0.12) 0, rgba(127,215,243,0) 55%),
    linear-gradient(180deg, #FFFFFF 0%, #F3FBFE 100%);
  color: var(--text-dark);
  padding: 120px 16px 72px;
  position: relative;
  overflow: visible;
  direction: rtl;
  font-family: 'Rubik', sans-serif;
}

.contact-contact-intro-section .contact-intro-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

/* ── HEADER ─────────────────────────────────────────────────────── */

.contact-contact-intro-section .contact-intro-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.contact-contact-intro-section .contact-intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(20,184,166,0.10);
  color: var(--primary);
  border: 1px solid rgba(20,184,166,0.25);
  border-radius: 999px;
  padding: 6px 18px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  font-family: 'Rubik', sans-serif;
}

.contact-contact-intro-section .contact-intro-h1 {
  font-family: 'Rubik', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}

.contact-contact-intro-section .desktop-br {
  display: inline;
}

.contact-contact-intro-section .contact-intro-lead {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 24px;
  text-align: center;
  max-width: none !important;
}

.contact-contact-intro-section .contact-intro-reassurance {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  background: rgba(20,184,166,0.06);
  border: 1px solid rgba(20,184,166,0.20);
  border-radius: 8px;
  padding: 10px 20px;
  margin: 0 auto;
  text-align: center;
}

.contact-contact-intro-section .contact-intro-reassurance svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* ── IMAGE STRIP ─────────────────────────────────────────────────── */

.contact-contact-intro-section .contact-intro-image-strip {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 16px;
  align-items: stretch;
  direction: rtl;
}

.contact-contact-intro-section .contact-intro-image-fig {
  margin: 0;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(31,78,102,0.10);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.contact-contact-intro-section .contact-intro-image-fig:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(31,78,102,0.18);
}

.contact-contact-intro-section .contact-intro-image-fig img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  transition: transform 0.22s ease;
  min-height: 220px;
}

.contact-contact-intro-section .contact-intro-image-fig:hover img {
  transform: scale(1.02);
}

.contact-contact-intro-section .contact-intro-fig-main {
  min-height: 280px;
}

.contact-contact-intro-section .contact-intro-fig-secondary,
.contact-contact-intro-section .contact-intro-fig-tertiary {
  min-height: 220px;
}

/* ── BOTTOM TEAL DIVIDER LINE ────────────────────────────────────── */

.contact-contact-intro-section .contact-intro-divider-line {
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 20%, var(--secondary) 60%, transparent 100%);
  opacity: 0.55;
  pointer-events: none;
  z-index: 5;
}

/* ── RESPONSIVE: TABLET ──────────────────────────────────────────── */

@media (max-width: 1024px) {
  .contact-contact-intro-section .contact-intro-image-strip {
    grid-template-columns: 1fr 1fr;
  }

  .contact-contact-intro-section .contact-intro-fig-main {
    grid-column: 1 / -1;
    min-height: 260px;
  }
}

/* ── RESPONSIVE: MOBILE ──────────────────────────────────────────── */

@media (max-width: 768px) {
  .contact-contact-intro-section {
    padding: 100px 16px 60px;
  }

  .contact-contact-intro-section .contact-intro-header {
    margin-bottom: 36px;
  }

  .contact-contact-intro-section .contact-intro-h1 {
    font-size: 2rem;
    line-height: 1.25;
  }

  .contact-contact-intro-section .desktop-br {
    display: none;
  }

  .contact-contact-intro-section .contact-intro-lead {
    font-size: 1rem;
  }

  .contact-contact-intro-section .contact-intro-reassurance {
    font-size: 0.8125rem;
    padding: 8px 14px;
    text-align: center;
  }

  .contact-contact-intro-section .contact-intro-image-strip {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  .contact-contact-intro-section .contact-intro-fig-main {
    grid-column: auto !important;
    min-height: 220px;
  }

  .contact-contact-intro-section .contact-intro-fig-secondary,
  .contact-contact-intro-section .contact-intro-fig-tertiary {
    min-height: 180px;
  }

  .contact-contact-intro-section .contact-intro-image-fig img {
    min-height: unset;
  }
}

/* contact-contact-methods */
.contact-contact-methods-section {
  position: relative;
  overflow: visible;
  background-color: #EEF7FB;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(20,184,166,0.07) 0%, transparent 55%),
    linear-gradient(180deg, #EEF7FB 0%, #DFF1F9 100%);
  color: var(--text-dark);
  padding: 96px 24px 120px;
  direction: rtl;
}

.contact-contact-methods-section .ccm-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Header */
.contact-contact-methods-section .ccm-header {
  text-align: center;
  margin-bottom: 48px;
}

.contact-contact-methods-section .ccm-title {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  color: #2E6882;
  margin: 0 0 14px;
}

.contact-contact-methods-section .ccm-subtitle {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* Cards row */
.contact-contact-methods-section .ccm-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  direction: rtl;
  margin-bottom: 36px;
}

/* Individual card */
.contact-contact-methods-section .ccm-card {
  position: relative;
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  box-shadow: 0 8px 24px rgba(31,78,102,0.10);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  overflow: hidden;
}

.contact-contact-methods-section .ccm-card::before {
  content: '';
  position: absolute;
  inset-inline-end: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 0 12px 12px 0;
}

.contact-contact-methods-section .ccm-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(31,78,102,0.18);
}

/* Icon wrap */
.contact-contact-methods-section .ccm-card-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(20,184,166,0.12) 0%, rgba(56,189,248,0.10) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

/* Card content */
.contact-contact-methods-section .ccm-card-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.contact-contact-methods-section .ccm-card-title {
  font-family: 'Rubik', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
  color: #2E6882;
  margin: 0;
}

.contact-contact-methods-section .ccm-card-desc {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

/* Contact links */
.contact-contact-methods-section .ccm-contact-link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: all 0.22s ease;
  margin-top: 4px;
}

.contact-contact-methods-section .ccm-contact-link:hover {
  color: #0EA7B7;
  text-decoration: underline;
}

.contact-contact-methods-section .ccm-whatsapp-link {
  color: #25D366;
}

.contact-contact-methods-section .ccm-whatsapp-link:hover {
  color: #1aad54;
}

.contact-contact-methods-section .ccm-card-note {
  font-family: 'Rubik', sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
  font-style: italic;
}

/* Availability list */
.contact-contact-methods-section .ccm-availability-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-contact-methods-section .ccm-availability-list li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
}

.contact-contact-methods-section .ccm-availability-list li svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* Badge */
.contact-contact-methods-section .ccm-card-badge {
  position: absolute;
  top: 20px;
  inset-inline-start: 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #FFFFFF;
  font-family: 'Rubik', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 4px 10px;
  border-radius: 6px;
  line-height: 1.4;
}

/* Response note */
.contact-contact-methods-section .ccm-response-note {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  background: rgba(20,184,166,0.07);
  border: 1px solid rgba(20,184,166,0.20);
  border-radius: 10px;
  padding: 20px 24px;
  max-width: 860px;
  margin: 0 auto;
}

.contact-contact-methods-section .ccm-response-note svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-contact-methods-section .ccm-response-note p {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
  text-align: right;
}

/* Bottom divider */
.contact-contact-methods-section .ccm-divider-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  pointer-events: none;
  z-index: 5;
}

.contact-contact-methods-section .ccm-divider-wrapper svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .contact-contact-methods-section .ccm-cards-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .contact-contact-methods-section {
    padding: 56px 16px 90px;
  }

  .contact-contact-methods-section .ccm-header {
    margin-bottom: 32px;
  }

  .contact-contact-methods-section .ccm-title {
    font-size: 1.6rem;
  }

  .contact-contact-methods-section .ccm-cards-row {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .contact-contact-methods-section .ccm-card {
    padding: 24px 20px;
  }

  .contact-contact-methods-section .ccm-card::before {
    width: 100%;
    height: 4px;
    inset-inline-end: 0;
    top: 0;
    border-radius: 12px 12px 0 0;
  }

  .contact-contact-methods-section .ccm-response-note {
    padding: 16px;
    gap: 10px;
  }

  .contact-contact-methods-section .ccm-divider-wrapper {
    height: 40px;
  }
}

/* contact-contact-form */
.contact-contact-form-section {
  position: relative;
  overflow: visible;
  background-color: #FFFFFF;
  background-image: radial-gradient(circle at 50% 0, rgba(127,215,243,0.12) 0, rgba(127,215,243,0) 55%),
    linear-gradient(180deg, #FFFFFF 0%, #F3FBFE 100%);
  color: var(--text-dark);
  padding: 120px 24px 100px;
  direction: rtl;
}

.contact-contact-form-section .contact-form-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Header ── */
.contact-contact-form-section .contact-form-header {
  text-align: center;
  margin-bottom: 56px;
}

.contact-contact-form-section .contact-form-badge {
  display: inline-block;
  background: linear-gradient(180deg, rgba(20,184,166,0.12) 0%, rgba(56,189,248,0.10) 100%);
  color: var(--primary);
  border: 1px solid rgba(20,184,166,0.25);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 14px;
  margin-bottom: 16px;
  font-family: 'Rubik', sans-serif;
  text-transform: uppercase;
}

.contact-contact-form-section .contact-form-title {
  font-family: 'Rubik', sans-serif;
  font-size: 31px;
  font-weight: 700;
  line-height: 1.25;
  color: #2E6882;
  margin: 0 0 16px;
  max-width: none !important;
}

.contact-contact-form-section .contact-form-subtitle {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

/* ── Two-column layout ── */
.contact-contact-form-section .contact-form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  direction: rtl;
}

/* ── Form Card ── */
.contact-contact-form-section .contact-form-card {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(31,78,102,0.12);
  padding: 40px;
  border: 1px solid var(--border-light);
}

.contact-contact-form-section .form-field-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-contact-form-section .form-label {
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  text-align: start;
}

.contact-contact-form-section .form-input {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  color: var(--text-dark);
  background: #FAFCFE;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 12px 16px;
  width: 100%;
  box-sizing: border-box;
  transition: all 0.22s ease;
  outline: none;
  text-align: right;
  direction: rtl;
  box-shadow: inset 0 1px 3px rgba(31,78,102,0.06);
}

.contact-contact-form-section .form-input:focus {
  border-color: var(--primary);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(20,184,166,0.12), inset 0 1px 3px rgba(31,78,102,0.04);
}

.contact-contact-form-section .form-input::placeholder {
  color: #B0BEC5;
  font-size: 14px;
}

.contact-contact-form-section .form-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.7;
}

/* ── Privacy Consent ── */
.contact-contact-form-section .privacy-consent {
  margin-bottom: 20px;
  color: var(--text-muted);
}

.contact-contact-form-section .privacy-consent-label {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  text-align: right;
}

.contact-contact-form-section .privacy-consent-checkbox {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--primary);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.contact-contact-form-section .privacy-consent a {
  color: var(--primary);
  text-decoration: underline;
  transition: color 0.22s ease;
}

.contact-contact-form-section .privacy-consent a:hover {
  color: var(--secondary);
}

/* ── Submit Button ── */
.contact-contact-form-section .contact-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(180deg, #14BED0 0%, #0EA7B7 100%);
  color: #FFFFFF;
  padding: 14px 40px;
  border-radius: 8px;
  border: none;
  font-weight: 700;
  font-size: 16px;
  font-family: 'Rubik', sans-serif;
  box-shadow: 0 8px 18px rgba(17,182,199,0.28);
  cursor: pointer;
  transition: all 0.22s ease;
  letter-spacing: 0.01em;
  width: 100%;
  justify-content: center;
}

.contact-contact-form-section .contact-submit-btn:hover {
  box-shadow: 0 12px 28px rgba(17,182,199,0.38);
  transform: translateY(-2px);
}

/* ── Response Note ── */
.contact-contact-form-section .form-response-note {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  margin-top: 16px;
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  text-align: right;
}

.contact-contact-form-section .form-response-note i {
  color: var(--primary);
  margin-top: 3px;
  flex-shrink: 0;
}

/* ── Image Panel ── */
.contact-contact-form-section .contact-image-panel {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-contact-form-section .contact-image-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(31,78,102,0.14);
}

.contact-contact-form-section .contact-image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.22s ease;
  aspect-ratio: 3/2;
}

.contact-contact-form-section .contact-image-wrapper:hover img {
  transform: scale(1.02);
}

/* ── Trust List ── */
.contact-contact-form-section .contact-trust-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-contact-form-section .contact-trust-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: flex-start;
  direction: rtl;
}

.contact-contact-form-section .contact-trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(20,184,166,0.10) 0%, rgba(56,189,248,0.08) 100%);
  border: 1px solid rgba(20,184,166,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 17px;
  flex-shrink: 0;
}

.contact-contact-form-section .contact-trust-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: right;
}

.contact-contact-form-section .contact-trust-content strong {
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
}

.contact-contact-form-section .contact-trust-content span,
.contact-contact-form-section .contact-trust-content a {
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.22s ease;
}

.contact-contact-form-section .contact-trust-content a:hover {
  color: var(--primary);
}

/* ── Bottom Divider ── */
.contact-contact-form-section .contact-form-divider-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  pointer-events: none;
  z-index: 5;
}

.contact-contact-form-section .contact-form-divider-wrapper svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .contact-contact-form-section .contact-form-layout {
    grid-template-columns: 1fr;
  }

  .contact-contact-form-section .contact-image-panel {
    
  }
}

@media (max-width: 768px) {
  .contact-contact-form-section {
    padding: 100px 16px 90px;
  }

  .contact-contact-form-section .contact-form-header {
    margin-bottom: 36px;
  }

  .contact-contact-form-section .contact-form-title {
    font-size: 24px;
  }

  .contact-contact-form-section .contact-form-card {
    padding: 24px 20px;
  }

  .contact-contact-form-section .contact-form-layout {
    grid-template-columns: 1fr !important;
    gap: 28px;
  }

  .contact-contact-form-section .contact-trust-item {
    grid-template-columns: 40px 1fr;
  }

  .contact-contact-form-section .contact-trust-icon {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }
}
/* ZAPPY_POSTGEN_GUARD_RTL_ORDER:צור קשר-contact-form — stripped 1 order declaration(s) conflicting with RTL grid */


/* contact-coverage */
.contact-coverage-section {
  background-color: #1F2937;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(20,184,166,0.12) 0%, transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(56,189,248,0.08) 0%, transparent 45%),
    linear-gradient(180deg, #1F2937 0%, #162030 100%);
  color: var(--text-light);
  padding: 96px 24px;
  position: relative;
  overflow: visible;
  direction: rtl;
}

.contact-coverage-section .contact-coverage-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  direction: rtl;
}

/* ── RIGHT COLUMN: CONTENT ── */

.contact-coverage-section .contact-coverage-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.contact-coverage-section .contact-coverage-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(20,184,166,0.15);
  border: 1px solid rgba(20,184,166,0.35);
  color: var(--primary);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: 'Rubik', sans-serif;
  width: fit-content;
}

.contact-coverage-section .contact-coverage-badge i {
  font-size: 0.8rem;
}

.contact-coverage-section .contact-coverage-title {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-light);
  margin: 0;
  text-align: start;
}

.contact-coverage-section .contact-coverage-desc {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin: 0;
  text-align: start;
}

.contact-coverage-section .contact-coverage-desc strong {
  color: var(--primary);
  font-weight: 600;
}

/* ── LIST ── */

.contact-coverage-section .contact-coverage-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-coverage-section .contact-coverage-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: flex-start;
  direction: rtl;
}

.contact-coverage-section .coverage-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(20,184,166,0.15);
  border: 1px solid rgba(20,184,166,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-coverage-section .coverage-item-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-coverage-section .coverage-item-text strong {
  font-family: 'Rubik', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.4;
}

.contact-coverage-section .coverage-item-text span {
  font-family: 'Rubik', sans-serif;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ── CTA GROUP ── */

.contact-coverage-section .contact-coverage-cta-group {
  display: flex;
  flex-direction: row;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.contact-coverage-section .contact-coverage-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(180deg, #14BED0 0%, #0EA7B7 100%);
  color: #FFFFFF;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(17,182,199,0.28);
  transition: all 0.22s ease;
  cursor: pointer;
}

.contact-coverage-section .contact-coverage-btn-primary:hover {
  box-shadow: 0 16px 36px rgba(17,182,199,0.40);
  transform: translateY(-2px);
  color: #FFFFFF;
}

.contact-coverage-section .contact-coverage-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-light);
  padding: 13px 26px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.25);
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: all 0.22s ease;
  cursor: pointer;
}

.contact-coverage-section .contact-coverage-btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.45);
  color: var(--text-light);
  transform: translateY(-2px);
}

.contact-coverage-section .contact-coverage-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Rubik', sans-serif;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
  text-align: start;
}

.contact-coverage-section .contact-coverage-note i {
  color: var(--primary);
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* ── LEFT COLUMN: VISUAL ── */

.contact-coverage-section .contact-coverage-visual {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.contact-coverage-section .contact-coverage-map-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.contact-coverage-section .contact-coverage-map-img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  transition: transform 0.22s ease;
}

.contact-coverage-section .contact-coverage-map-wrapper:hover .contact-coverage-map-img {
  transform: scale(1.02);
}

/* Floating badges on map */
.contact-coverage-section .contact-coverage-map-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 6px;
  padding: 7px 12px;
  font-family: 'Rubik', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark);
  box-shadow: 0 8px 24px rgba(31,78,102,0.18);
  border: 1px solid rgba(227,238,243,0.9);
  white-space: nowrap;
}

.contact-coverage-section .contact-coverage-map-badge i {
  color: var(--primary);
  font-size: 0.85rem;
}

.contact-coverage-section .coverage-badge-homes {
  top: 16px;
  inset-inline-end: 16px;
}

.contact-coverage-section .coverage-badge-offices {
  bottom: 56px;
  inset-inline-end: 20px;
}

.contact-coverage-section .coverage-badge-ac {
  bottom: 16px;
  inset-inline-start: 16px;
}

/* ── STATS ROW ── */

.contact-coverage-section .contact-coverage-stat-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  padding: 20px 24px;
  gap: 0;
}

.contact-coverage-section .contact-coverage-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  text-align: center;
}

.contact-coverage-section .contact-coverage-stat strong {
  font-family: 'Rubik', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}

.contact-coverage-section .contact-coverage-stat span {
  font-family: 'Rubik', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

.contact-coverage-section .contact-coverage-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* ── RESPONSIVE ── */

@media (max-width: 768px) {
  .contact-coverage-section {
    padding: 56px 16px;
  }

  .contact-coverage-section .contact-coverage-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-coverage-section .contact-coverage-title {
    font-size: 1.6rem;
  }

  .contact-coverage-section .contact-coverage-cta-group {
    flex-direction: column;
    align-items: stretch;
  }

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

  .contact-coverage-section .contact-coverage-map-badge {
    font-size: 0.72rem;
    padding: 5px 9px;
  }

  .contact-coverage-section .coverage-badge-homes {
    top: 10px;
    inset-inline-end: 10px;
  }

  .contact-coverage-section .coverage-badge-offices {
    bottom: 48px;
    inset-inline-end: 10px;
  }

  .contact-coverage-section .coverage-badge-ac {
    bottom: 10px;
    inset-inline-start: 10px;
  }

  .contact-coverage-section .contact-coverage-stat-row {
    padding: 16px 12px;
  }

  .contact-coverage-section .contact-coverage-stat strong {
    font-size: 1.1rem;
  }

  .contact-coverage-section .contact-coverage-stat span {
    font-size: 0.72rem;
  }

  .contact-coverage-section .contact-coverage-list li {
    grid-template-columns: 40px 1fr;
    gap: 10px;
  }

  .contact-coverage-section .coverage-icon {
    width: 40px;
    height: 40px;
  }
}



/* Global font override - exclude icon fonts and special elements */
*:not(.fas):not(.far):not(.fab):not(.fa):not([class*="fa-"]):not(.iconify):not([class*="icon"]):not(code):not(pre):not(i[class*="fa"]) {
  font-family: 'Rubik', sans-serif !important;
}


/* Logo size constraint - enforce max-height only */
.logo, img.logo, .logo img, .logo-link img, .nav-brand img {
  max-height: 40px !important;
  height: auto !important;
  width: auto !important;
  object-fit: contain !important;
}


/* Hide WhatsApp float button on desktop (mobile-only) */
@media (min-width: 769px) {
  .whatsapp-float {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
}


/* Footer contact alignment fix */
.footer-contact li > a { display: flex; align-items: flex-start; gap: inherit; }


/* ============================================
   MOBILE RESPONSIVE FIXES (Auto-generated)
   Safe, minimal fixes for common overflow issues
   ============================================ */

@media (max-width: 768px) {
  
  /* 1. GLOBAL FIXES - Essential for preventing horizontal scroll */
  html, body {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
  }
  
  *, *::before, *::after {
    box-sizing: border-box !important;
  }

  /* 2. FORM FIXES - Forms often have fixed widths */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  input[type="url"],
  input[type="search"],
  select,
  textarea {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  .form-field,
  .form-group,
  .input-group {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* 3. GRID TO COLUMN CONVERSION */
  /* Only convert grids that don't have proper mobile handling */
  [style*="display: grid"]:not([data-zappy-auto-grid="true"]):not(.zappy-preserve-css-grid),
  [style*="display:grid"]:not([data-zappy-auto-grid="true"]):not(.zappy-preserve-css-grid),
  .grid:not([data-zappy-auto-grid="true"]):not(.zappy-preserve-css-grid) {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
  }
  
  /* Ensure auto-grids use single column on mobile */
  [data-zappy-auto-grid="true"] {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  
  /* Force single-column for AI-generated grids with class names like gallery-grid, features-grid, etc. */
  /* These often have fixed column counts (repeat(3, 1fr) or repeat(4, 1fr)) that don't fit mobile */
  [class*="-grid"]:not([data-zappy-auto-grid="true"]):not([data-zappy-explicit-columns="true"]) {
    grid-template-columns: 1fr !important;
  }
  
  /* Reset any column/row spanning items on mobile - they cause overflow */
  [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;
  }
  
  /* Fix zoom wrapper images to be responsive on mobile */
  [data-zappy-zoom-wrapper="true"] {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }
  
  [data-zappy-zoom-wrapper="true"] img {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    max-height: 300px !important;
    object-fit: cover !important;
    top: 0 !important;
    left: 0 !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;
  }

  /* 4. TYPOGRAPHY SCALING - Only headings, NOT spans (breaks icons) */
  h1 {
    font-size: clamp(28px, 8vw, 48px) !important;
  }
  
  h2 {
    font-size: clamp(24px, 6vw, 36px) !important;
  }
  
  h3 {
    font-size: clamp(20px, 5vw, 28px) !important;
  }
  
  h4 {
    font-size: clamp(18px, 4vw, 24px) !important;
  }

  /* Body text scaling - exclude spans to avoid breaking icons */
  p, li {
    font-size: clamp(14px, 4vw, 18px) !important;
  }

  /* 5. IMAGE RESPONSIVENESS */
  img {
    max-width: 100% !important;
    height: auto !important;
  }

  /* 5b. HERO BG IMAGE EXCEPTION - fullscreen hero backgrounds must fill their
     absolute-positioned wrapper, not shrink to natural aspect-ratio height.
     data-hero-bg is added deterministically by sectionGenerationService. */
  img[data-hero-bg] {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
  }

  /* 6. MULTI-COLUMN LAYOUTS */
  .columns,
  [style*="column-count"],
  [style*="columns:"] {
    column-count: 1 !important;
    columns: 1 !important;
  }

  /* 7. TABLES */
  table {
    width: 100% !important;
    display: block !important;
    overflow-x: auto !important;
  }

  /* 8. CARDS/BLOCKS */
  .card,
  .block,
  .box {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* 9. HERO SECTIONS - Targeted selectors only */
  section.hero,
  section.hero-section,
  section[class*="hero-section"] {
    min-height: auto !important;
    height: auto !important;
    padding: 2rem 1rem !important;
  }

  /* 9b. HERO SECTION CHILDREN - prevent 100vh min-height on inner wrappers
     AI often sets content-wrappers / scrim divs to min-height:100vh which
     creates huge empty space on mobile. Reset direct children so the section
     sizes to its content. Absolute-positioned backgrounds are unaffected. */
  section.hero > *,
  section.hero-section > *,
  section[class*="hero-section"] > * {
    min-height: auto !important;
  }

  /* 9c. FULLSCREEN HERO EXCEPTION - preserve viewport height for fullscreen
     hero sections. Rule 9 above resets all heroes to height:auto which is correct
     for side-by-side heroes, but fullscreen-scrim/fullscreen-card heroes are
     designed to fill the viewport with a background image behind a scrim.
     data-hero-type is added deterministically by sectionGenerationService. */
  section[data-hero-type*="fullscreen"] {
    min-height: 100vh !important;
    height: auto !important;
  }

  /* 10. HERO TITLE ACCENTS - ensure inline display for proper text flow */
  h1 span[class*="accent"],
  h2 span[class*="accent"],
  .hero-title span,
  .hero-heading span {
    display: inline !important;
  }

  /* 11. PACKAGES/CARDS GRIDS - Specific class targeting */
  .packages-grid,
  .cards-grid,
  .pricing-grid {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }

  /* 12. PREVENT HORIZONTAL SCROLL - Safety net */
  body > * {
    max-width: 100vw !important;
  }
}

/* END MOBILE RESPONSIVE FIXES */

/* === NAVBAR STYLE OVERRIDES START === */
.navbar { background-color: transparent !important; background-image: linear-gradient(to bottom, rgba(0,0,0,var(--nav-overlay-opacity,0.35)), transparent) !important; transition: background-color 0.3s ease, background-image 0.3s ease, backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease, box-shadow 0.3s ease !important; }
.zappy-catalog-menu, #zappy-catalog-menu { background-image: linear-gradient(to bottom, rgba(0,0,0,var(--nav-overlay-opacity,0.35)), transparent) !important; transition: background 0.3s ease, background-image 0.3s ease, backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease !important;}
.navbar .nav-menu > li > a,
.navbar .nav-menu > .nav-item > a,
.navbar .nav-link,
.navbar .navbar-nav .nav-link,
.navbar a:not(.nav-cta-btn) { color: #FFFFFF !important; }
.navbar .nav-menu > li > a:hover,
.navbar .nav-menu > .nav-item > a:hover,
.navbar .nav-link:hover,
.navbar a:not(.nav-cta-btn):hover { color: #38BDF8 !important; }
.navbar .navbar-brand, .navbar .navbar-brand a { color: #FFFFFF !important; }
.navbar .dropdown-toggle { color: #FFFFFF !important; }
.navbar .dropdown-toggle:hover { color: #38BDF8 !important; }
.navbar .mobile-hamburger-btn, .navbar .mobile-close-btn { color: #FFFFFF !important; }
.navbar-toggler { color: #FFFFFF !important; border-color: #FFFFFF44 !important; }
.navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23FFFFFF' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important; }
.navbar .dropdown-menu { background-color: #1F2937 !important; }
.navbar .dropdown-menu li a,
.navbar .dropdown-menu .dropdown-item { color: #FFFFFF !important; }
.navbar .dropdown-menu li a:hover,
.navbar .dropdown-menu .dropdown-item:hover { color: #38BDF8 !important; background-color: rgba(128,128,128,0.1) !important; }
.navbar .sub-menu,
.navbar ul.sub-menu,
nav.navbar .sub-menu { background-color: #1F2937 !important; }
.navbar .sub-menu a,
.navbar .sub-menu li a,
.navbar .nav-menu .sub-menu a,
.navbar .nav-menu .sub-menu li a,
.navbar .zappy-products-dropdown .sub-menu a,
nav.navbar .sub-menu li a { color: #FFFFFF !important; }
.navbar .sub-menu a:hover,
.navbar .sub-menu li a:hover,
nav.navbar .sub-menu li a:hover { color: #38BDF8 !important; background-color: rgba(128,128,128,0.1) !important; }
.navbar .mobile-submenu-toggle { color: #FFFFFF !important; }
.navbar .phone-header-btn { color: #FFFFFF !important; }
.navbar .nav-search-input,
.navbar .nav-search-box .nav-search-input { color: #1F2937 !important; }
.navbar .nav-search-input::placeholder { color: var(--text-muted, rgba(128,128,128,0.6)) !important; }
@media (min-width: 769px) {
  .navbar .nav-search-box .nav-search-btn { color: #1F2937 !important; }
  .navbar .nav-search-box .nav-search-btn svg { stroke: #1F2937 !important; fill: none !important; }
}
.navbar .nav-search-result-name { color: #1F2937 !important; }
.navbar .nav-search-result-item a { color: #1F2937 !important; }
.navbar .nav-search-result-price { color: var(--accent, var(--primary)) !important; }
.navbar .nav-search-no-results,
.navbar .search-no-results { color: var(--text-muted, rgba(128,128,128,0.6)) !important; }
.zappy-catalog-menu, #zappy-catalog-menu { background: transparent !important; }
.zappy-catalog-menu .catalog-menu-item,
.zappy-catalog-menu .catalog-menu-all { color: #FFFFFF !important; }
.zappy-catalog-menu .catalog-menu-item:hover,
.zappy-catalog-menu .catalog-menu-all:hover { color: #38BDF8 !important; background: rgba(128,128,128,0.1) !important; }
.navbar .cart-link.nav-cart,
.navbar .login-link.nav-login,
.navbar .nav-search-toggle,
.navbar .search-toggle { background: var(--bg-light, #ffffff) !important; color: var(--text-dark, #1a1a1a) !important; }
.navbar .cart-link.nav-cart:hover,
.navbar .login-link.nav-login:hover,
.navbar .nav-search-toggle:hover,
.navbar .search-toggle:hover { background: rgba(128,128,128,0.15) !important; color: var(--text-dark, #1a1a1a) !important; }
.navbar .cart-link.nav-cart svg, .navbar .login-link.nav-login svg, .navbar .nav-search-toggle svg, .navbar .search-toggle svg { color: inherit !important; fill: none !important; stroke: currentColor !important; }

@media (min-width: 769px) {
  .navbar:not(.scrolled) .dropdown-menu { background-color: #1F2937 !important; }
  .navbar:not(.scrolled) .dropdown-menu li a,
  .navbar:not(.scrolled) .dropdown-menu .dropdown-item { color: #FFFFFF !important; }
  .navbar:not(.scrolled) .dropdown-menu li a:hover,
  .navbar:not(.scrolled) .dropdown-menu .dropdown-item:hover { color: var(--nav-text-hover, var(--accent)) !important; }
  .navbar:not(.scrolled) .sub-menu { background-color: #1F2937 !important; }
  .navbar:not(.scrolled) .sub-menu a,
  .navbar:not(.scrolled) .sub-menu li a,
  .navbar:not(.scrolled) .nav-menu .sub-menu a,
  .navbar:not(.scrolled) .zappy-products-dropdown .sub-menu a { color: #FFFFFF !important; }
  .navbar:not(.scrolled) .sub-menu a:hover,
  .navbar:not(.scrolled) .sub-menu li a:hover { color: var(--nav-text-hover, var(--accent)) !important; }
}
.navbar.scrolled { background-color: rgba(31,41,55,0.85) !important; background-image: none !important; backdrop-filter: blur(12px) !important; -webkit-backdrop-filter: blur(12px) !important; box-shadow: 0 2px 16px rgba(0,0,0,0.12) !important; }
.navbar.scrolled::before, .navbar.scrolled::after { background: transparent !important; opacity: 0 !important; }
.navbar.scrolled ~ .zappy-catalog-menu, .navbar.scrolled ~ #zappy-catalog-menu, .zappy-catalog-menu.scrolled, #zappy-catalog-menu.scrolled { background: rgba(31,41,55,0.85) !important; background-image: none !important; backdrop-filter: blur(12px) !important; -webkit-backdrop-filter: blur(12px) !important; }
.zappy-catalog-menu.scrolled .catalog-menu-item,
.zappy-catalog-menu.scrolled .catalog-menu-all,
#zappy-catalog-menu.scrolled .catalog-menu-item,
#zappy-catalog-menu.scrolled .catalog-menu-all,
.navbar.scrolled ~ .zappy-catalog-menu .catalog-menu-item,
.navbar.scrolled ~ .zappy-catalog-menu .catalog-menu-all,
.navbar.scrolled ~ #zappy-catalog-menu .catalog-menu-item,
.navbar.scrolled ~ #zappy-catalog-menu .catalog-menu-all { color: var(--frosted-text, #FFFFFF) !important; }
.zappy-catalog-menu.scrolled .catalog-menu-item:hover,
.zappy-catalog-menu.scrolled .catalog-menu-all:hover,
#zappy-catalog-menu.scrolled .catalog-menu-item:hover,
#zappy-catalog-menu.scrolled .catalog-menu-all:hover,
.navbar.scrolled ~ .zappy-catalog-menu .catalog-menu-item:hover,
.navbar.scrolled ~ .zappy-catalog-menu .catalog-menu-all:hover,
.navbar.scrolled ~ #zappy-catalog-menu .catalog-menu-item:hover,
.navbar.scrolled ~ #zappy-catalog-menu .catalog-menu-all:hover { color: var(--nav-text-hover, var(--accent)) !important; }
.navbar.scrolled .nav-menu > li > a,
.navbar.scrolled .nav-menu > .nav-item > a,
.navbar.scrolled .nav-link,
.navbar.scrolled a:not(.nav-cta-btn) { color: var(--frosted-text, #FFFFFF) !important; }
.navbar.scrolled .nav-menu > li > a:hover,
.navbar.scrolled .nav-menu > .nav-item > a:hover,
.navbar.scrolled .nav-link:hover,
.navbar.scrolled a:not(.nav-cta-btn):hover { color: var(--nav-text-hover, var(--accent)) !important; }
.navbar.scrolled .navbar-brand, .navbar.scrolled .navbar-brand a { color: var(--frosted-text, #FFFFFF) !important; }
.navbar.scrolled .dropdown-toggle { color: var(--frosted-text, #FFFFFF) !important; }
.navbar.scrolled .mobile-hamburger-btn, .navbar.scrolled .mobile-close-btn { color: var(--frosted-text, #FFFFFF) !important; }
.navbar.scrolled .phone-header-btn { color: var(--frosted-text, #FFFFFF) !important; }
.navbar.scrolled .mobile-toggle { color: var(--frosted-text, #FFFFFF) !important; }
.navbar.scrolled .mobile-toggle svg { color: inherit !important; }
.navbar.scrolled .mobile-toggle svg path { stroke: currentColor !important; }
.navbar.scrolled .nav-search-btn { color: var(--frosted-text, #FFFFFF) !important; }
.navbar.scrolled .nav-search-btn svg { stroke: var(--frosted-text, #FFFFFF) !important; fill: none !important; }
@media (min-width: 769px) {
  .navbar.scrolled .sub-menu,
  .navbar.scrolled ul.sub-menu,
  nav.navbar.scrolled .sub-menu { background-color: #FFFFFF !important; border-radius: 8px !important; box-shadow: 0 4px 20px rgba(0,0,0,0.15) !important; }
  .navbar.scrolled .sub-menu a,
  .navbar.scrolled .sub-menu li a,
  .navbar.scrolled .nav-menu .sub-menu a,
  .navbar.scrolled .nav-menu .sub-menu li a,
  .navbar.scrolled .zappy-products-dropdown .sub-menu a,
  nav.navbar.scrolled .sub-menu li a { color: #1F2937 !important; }
  .navbar.scrolled .sub-menu a:hover,
  .navbar.scrolled .sub-menu li a:hover,
  .navbar.scrolled .nav-menu .sub-menu a:hover,
  nav.navbar.scrolled .sub-menu li a:hover { color: #38BDF8 !important; background-color: rgba(128,128,128,0.1) !important; }
  .navbar.scrolled .dropdown-menu { background-color: #FFFFFF !important; }
  .navbar.scrolled .dropdown-menu li a,
  .navbar.scrolled .dropdown-menu .dropdown-item { color: #1F2937 !important; }
  .navbar.scrolled .dropdown-menu li a:hover,
  .navbar.scrolled .dropdown-menu .dropdown-item:hover { color: #38BDF8 !important; background-color: rgba(128,128,128,0.1) !important; }
  .navbar.scrolled .mobile-submenu-toggle { color: #1F2937 !important; }
}

.navbar.scrolled .cart-link.nav-cart,
.navbar.scrolled .login-link.nav-login,
.navbar.scrolled .nav-search-toggle,
.navbar.scrolled .search-toggle { background: var(--bg-light, #ffffff) !important; color: var(--text-dark, #1a1a1a) !important; }
@media (max-width: 768px) {
  .navbar { background-color: transparent !important; background-image: none !important; backdrop-filter: none !important; -webkit-backdrop-filter: none !important; box-shadow: none !important; }
  .zappy-catalog-menu, #zappy-catalog-menu { background-image: none !important; }
  .navbar::before, .navbar::after { background: transparent !important; opacity: 0 !important; }
  body.menu-open .navbar, body.nav-open .navbar, body.mobile-menu-open .navbar, .navbar.scrolled, .navbar.active, .navbar.open, .navbar.show, .navbar.menu-open, .navbar:has(.nav-menu.active), .navbar:has(#navMenu.active), .navbar:has(.mobile-menu.active), .navbar:has(.mobile-toggle.active), .navbar:has(#mobileToggle.active) { background-color: #1F2937 !important; }
  .nav-menu, .nav-menu.active, .nav-menu.nav-menu-active, #navMenu, #navMenu.active, .mobile-menu, .mobile-menu.active, .mobile-nav, .mobile-nav.active { background-color: #1F2937 !important; background: #1F2937 !important; }
  .nav-menu.active, .nav-menu.nav-menu-active, #navMenu.active, .mobile-menu.active, .mobile-nav.active { max-height: calc(100dvh - 70px) !important; overflow-y: auto !important; }
  .nav-menu a, .nav-menu > li > a, #navMenu a, #navMenu > li > a { color: #FFFFFF !important; }
  .nav-menu a:hover, .nav-menu > li > a:hover { color: #38BDF8 !important; }
  .nav-menu .dropdown-menu { background: rgba(128,128,128,0.06) !important; }
  .nav-menu .dropdown-menu a, .nav-menu .dropdown-menu li a { color: #FFFFFF !important; }
  .nav-menu .dropdown-menu a:hover { color: #38BDF8 !important; }
  .nav-menu .sub-menu a { color: #FFFFFF !important; }
  .nav-menu .sub-menu a:hover { color: #38BDF8 !important; }
  .nav-menu > li { position: relative !important; }
  .navbar .nav-menu .mobile-submenu-toggle { color: #FFFFFF !important; position: static !important; height: auto !important; flex-shrink: 0 !important; align-self: stretch !important; }
  .mobile-toggle { color: #FFFFFF !important; }
  .mobile-toggle svg { color: inherit !important; }
  .mobile-toggle svg path { stroke: currentColor !important; }
  
  /* When menu is open or navbar is scrolled in mobile, the background is dropdownBg, so text should be mobileMenuText */
  .navbar.scrolled .mobile-toggle, .navbar.scrolled .mobile-hamburger-btn, .navbar.scrolled .mobile-close-btn,
  .navbar.scrolled .navbar-brand, .navbar.scrolled .dropdown-toggle, .navbar.scrolled .phone-header-btn,
  body.menu-open .navbar .mobile-toggle, body.nav-open .navbar .mobile-toggle, body.mobile-menu-open .navbar .mobile-toggle,
  .navbar.active .mobile-toggle, .navbar.open .mobile-toggle, .navbar.show .mobile-toggle, .navbar.menu-open .mobile-toggle,
  .navbar:has(.nav-menu.active) .mobile-toggle, .navbar:has(#navMenu.active) .mobile-toggle, .navbar:has(.mobile-menu.active) .mobile-toggle, .navbar:has(.mobile-toggle.active) .mobile-toggle,
  body.menu-open .navbar .navbar-brand, body.nav-open .navbar .navbar-brand, body.mobile-menu-open .navbar .navbar-brand,
  .navbar.active .navbar-brand, .navbar.open .navbar-brand, .navbar.show .navbar-brand, .navbar.menu-open .navbar-brand,
  .navbar:has(.nav-menu.active) .navbar-brand, .navbar:has(#navMenu.active) .navbar-brand, .navbar:has(.mobile-menu.active) .navbar-brand, .navbar:has(.mobile-toggle.active) .navbar-brand,
  body.menu-open .navbar .phone-header-btn, body.nav-open .navbar .phone-header-btn, body.mobile-menu-open .navbar .phone-header-btn,
  .navbar.active .phone-header-btn, .navbar.open .phone-header-btn, .navbar.show .phone-header-btn, .navbar.menu-open .phone-header-btn,
  .navbar:has(.nav-menu.active) .phone-header-btn, .navbar:has(#navMenu.active) .phone-header-btn, .navbar:has(.mobile-menu.active) .phone-header-btn, .navbar:has(.mobile-toggle.active) .phone-header-btn {
    color: #FFFFFF !important;
  }
  
  .navbar.scrolled .mobile-toggle svg { color: inherit !important; }
  .navbar.scrolled .mobile-toggle svg path { stroke: currentColor !important; }
  
  .navbar.scrolled .nav-menu > li > a,
  .navbar.scrolled .nav-menu > .nav-item > a,
  .navbar.scrolled .nav-link,
  .navbar.scrolled a:not(.nav-cta-btn) { color: #FFFFFF !important; }
  .cart-link.nav-cart,
  .login-link.nav-login,
  .nav-search-toggle,
  .search-toggle { background: var(--bg-light, #ffffff) !important; color: var(--text-dark, #1a1a1a) !important; }
  .cart-link.nav-cart svg,
  .login-link.nav-login svg,
  .nav-search-toggle svg,
  .search-toggle svg { stroke: var(--text-dark, #1a1a1a) !important; color: var(--text-dark, #1a1a1a) !important; }
  .mobile-search-panel { color: #FFFFFF !important; }
  .mobile-search-panel input { color: #FFFFFF !important; background: rgba(255,255,255,0.12) !important; }
  .mobile-search-panel .close-search { color: #FFFFFF !important; background: rgba(255,255,255,0.15) !important; }
  .mobile-search-panel .close-search svg { stroke: #FFFFFF !important; color: #FFFFFF !important; }
  .mobile-search-panel .close-search:hover { color: #FFFFFF !important; background: rgba(255,255,255,0.25) !important; }
  .mobile-search-panel .close-search:hover svg { stroke: #FFFFFF !important; color: #FFFFFF !important; }
  .navbar .zappy-products-dropdown .sub-menu,
  .navbar .zappy-products-dropdown > .sub-menu {
    display: none !important; position: static !important; max-height: 0 !important;
    overflow: hidden !important; opacity: 0 !important; visibility: hidden !important;
    pointer-events: none !important; box-shadow: none !important; border: none !important;
    padding: 0 !important; transform: none !important;
  }
  .navbar .zappy-products-dropdown:hover .sub-menu,
  .navbar .zappy-products-dropdown:hover > .sub-menu,
  .navbar .zappy-products-dropdown:focus-within .sub-menu,
  .navbar .zappy-products-dropdown:focus-within > .sub-menu,
  .navbar .menu-item-has-children:hover > .sub-menu,
  .navbar .nav-dropdown:hover > .dropdown-menu {
    display: none !important; opacity: 0 !important; visibility: hidden !important;
    max-height: 0 !important; pointer-events: none !important;
  }
  .navbar .zappy-products-dropdown.open .sub-menu,
  .navbar .zappy-products-dropdown.open > .sub-menu,
  .navbar .zappy-products-dropdown .sub-menu.mobile-expanded,
  .navbar .zappy-products-dropdown > .sub-menu.mobile-expanded,
  .navbar .menu-item-has-children.open > .sub-menu,
  .navbar .menu-item-has-children > .sub-menu.mobile-expanded,
  .navbar .nav-dropdown.open > .dropdown-menu {
    display: block !important; opacity: 1 !important; visibility: visible !important;
    max-height: 60vh !important; pointer-events: auto !important; position: static !important;
    overflow-y: auto !important; padding: 0.5rem 0 !important;
  }
}
/* === NAVBAR STYLE OVERRIDES END === */

/* Legal Pages Content Styles */

/* 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;
}


/* Cookie Consent Styles */

/* Cookie Consent Customizations */
:root {
  --cc-btn-primary-bg: #3b82f6;
  --cc-btn-primary-border: #3b82f6;
  --cc-btn-primary-hover-bg: #2269dd;
}

#cc--main {
  font-family: inherit !important;
}

.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 */
@media (max-width: 768px) {
  #cc--main .cc__btn {
    font-size: 14px !important;
    padding: 8px 16px !important;
  }
  
  .cc__modal .cc__modal-content {
    margin: 10px !important;
  }
}

/* Cookie preferences button in footer */
.cookie-preferences-btn:hover {
  text-decoration: none !important;
}

/* Accessibility Styles */

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

/* 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;
}

/* 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 */
#mic-access-tool-general-button::before,
#mic-access-tool-general-button::after {
  content: none !important;
  display: none !important;
}

/* Hover state - keep text hidden */
#mic-access-tool-general-button:hover {
  background-color: rgba(17, 24, 39, 0.1) !important;
  background: rgba(17, 24, 39, 0.1) !important;
  box-shadow: 0 2px 8px rgba(17, 24, 39, 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: #111827 !important;
  stroke: #111827 !important;
  color: #111827 !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: #111827 !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: #111827 !important;
  color: #111827 !important;
  background-color: rgba(17, 24, 39, 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: #111827 !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 */
#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 {
  display: none !important; /* Hidden by default - can be re-enabled */
}

/* Target Mickidum accessibility menu with high specificity */
#mic-access-tool-box,
.mic-access-tool-box,
#mic-init-access-tool #mic-access-tool-box,
div[id*="mic-access-tool-box"],
._access-menu {
  display: none !important; /* Hidden by default - can be re-enabled */
}

/* Show accessibility widget when ALT+A keyboard shortcut is used (desktop only) */
body.accessibility-widget-visible #mic-access-tool-general-button,
body.accessibility-widget-visible .mic-access-tool-general-button,
body.accessibility-widget-visible #mic-init-access-tool .mic-access-tool-general-button,
body.accessibility-widget-visible #mic-init-access-tool #mic-access-tool-general-button,
body.accessibility-widget-visible ._access-icon {
  display: flex !important; /* Show button when visible class is added */
}

body.accessibility-widget-visible #mic-access-tool-box,
body.accessibility-widget-visible .mic-access-tool-box,
body.accessibility-widget-visible #mic-init-access-tool #mic-access-tool-box,
body.accessibility-widget-visible div[id*="mic-access-tool-box"],
body.accessibility-widget-visible ._access-menu {
  display: block !important; /* Show menu when visible class is added */
}

/* On mobile, ensure it stays hidden */
@media (max-width: 768px) {
  /* Hide the accessibility button on mobile - higher specificity */
  #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 {
    display: none !important; /* Hidden on mobile - can be re-enabled */
  }
  
  /* Hide the accessibility menu on mobile - higher specificity */
  #mic-access-tool-box,
  .mic-access-tool-box,
  #mic-init-access-tool #mic-access-tool-box,
  div[id*="mic-access-tool-box"],
  ._access-menu {
    display: none !important; /* Hidden on mobile - can be re-enabled */
  }
  
  /* Ensure mobile never shows widget even with keyboard shortcut */
  body.accessibility-widget-visible #mic-access-tool-general-button,
  body.accessibility-widget-visible .mic-access-tool-general-button,
  body.accessibility-widget-visible #mic-init-access-tool .mic-access-tool-general-button,
  body.accessibility-widget-visible #mic-init-access-tool #mic-access-tool-general-button,
  body.accessibility-widget-visible ._access-icon,
  body.accessibility-widget-visible #mic-access-tool-box,
  body.accessibility-widget-visible .mic-access-tool-box,
  body.accessibility-widget-visible #mic-init-access-tool #mic-access-tool-box,
  body.accessibility-widget-visible div[id*="mic-access-tool-box"],
  body.accessibility-widget-visible ._access-menu {
    display: none !important;
  }
}

.site-footer .footer-contact {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  text-align: right !important;
}

.site-footer .footer-contact li {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 8px !important;
  margin-bottom: 8px !important;
  text-align: right !important;
  direction: rtl !important;
}

.site-footer .footer-contact .contact-icon {
  flex-shrink: 0 !important;
  order: 1 !important;
}

.site-footer .footer-contact .contact-text {
  text-align: right !important;
  order: 0 !important;
}

.site-footer .footer-col h3.footer-heading {
  text-align: right !important;
}

.site-footer .footer-col:nth-child(3) .footer-contact li {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}

.site-footer .footer-contact li,
.site-footer .footer-col:nth-child(3) .footer-contact li {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-end !important;
  text-align: right !important;
  direction: rtl !important;
  gap: 8px !important;
  margin-bottom: 8px !important;
}

.site-footer .footer-contact .contact-text {
  text-align: right !important;
  order: 0 !important;
}

.site-footer .footer-contact .contact-icon {
  flex-shrink: 0 !important;
  order: 1 !important;
}

.site-footer .footer-contact {
  text-align: right !important;
  direction: rtl !important;
}

/* 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; }


/* ========== 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) ========== */
/* On mobile (especially iOS Safari where 100vh includes the address bar),
   the hero card content + padding can exceed the section height.
   Use 100svh + height:auto so the section grows with its content.
   Restore padding-bottom for the SVG divider area. */

@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"]) {
    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 - they often have fixed pixel widths */
  [data-zappy-zoom-wrapper="true"] {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
  }
  
  /* Fix zoom wrapper images on mobile - make responsive */
  /* Exclude images with mobile overrides — those are handled by JS to honor user settings */
  [data-zappy-zoom-wrapper="true"] 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;
  }
  
  /* ========== 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 ========== */
  /* On mobile (especially iOS Safari where 100vh includes the address bar),
     the hero card content + padding can exceed the section height.
     Use min-height instead of height so the section grows with its content.
     The container also needs padding-bottom to clear the SVG divider area. */
  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"]) {
    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; }
