/* Navigation Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  transition: var(--transition-normal);
}

.header.scrolled {
  height: 70px;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo-link {
  display: flex;
  align-items: center;
  height: 65px;
  margin-inline-start: -15px;
}

.logo-img {
  height: 100%;
  width: auto;
}

.header-logo img,
.footer-logo img {
  height: 45px;
  width: auto;
  object-fit: contain;
  display: block;
  max-height: 45px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-weight: 600;
  color: var(--dark-navy);
  padding: 10px 5px;
  font-size: 0.95rem;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Lang Switcher Button */
.lang-btn {
  background-color: var(--light-bg);
  border: 1px solid var(--border-color);
  color: var(--dark-navy);
  padding: 6px 12px;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

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

/* Mobile Menu Toggle Button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--dark-navy);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* Hero Section (Video Loop Banner) */
.hero-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  animation: videoFadeIn 1.5s ease-out forwards;
}

@keyframes videoFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-video-desktop {
  display: block;
}

.hero-video-mobile {
  display: none;
}

@media (max-width: 768px) {
  .hero-video-desktop {
    display: none;
  }
  .hero-video-mobile {
    display: block;
  }
}

/* Hero Dark Glass Card Overlay - Removed to show light background video */
.hero-overlay {
  display: none;
}

html[dir="rtl"] .hero-overlay {
  display: none;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  color: #2D3748;
  max-width: 700px;
  animation: fadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-content-wrapper h1 {
  color: #0D4463;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.6);
}

.hero-content-wrapper p {
  color: #2D3748;
  font-size: 1.15rem;
  margin-bottom: 2rem;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.6);
}

/* Hero Badge specific style overrides */
.hero-content-wrapper .badge {
  background-color: rgba(255, 255, 255, 0.9);
  color: #0D4463;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Hero CTA buttons specific style overrides */
#hero-btn1 {
  background-color: #98C23C;
  color: #FFFFFF;
  border: 1px solid transparent;
}

#hero-btn1:hover {
  background-color: #85ab30;
  box-shadow: 0 4px 14px rgba(152, 194, 60, 0.4);
}

#hero-btn2 {
  background-color: transparent;
  color: #0D4463;
  border: 2px solid #0D4463;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

#hero-btn2:hover {
  background-color: #0D4463;
  color: #FFFFFF;
  border-color: #0D4463;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-weight: 700;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
  gap: 8px;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  box-shadow: 0 4px 14px rgba(197, 168, 128, 0.4);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background-color: var(--white);
  color: var(--dark-navy);
  border-color: var(--white);
}

.btn-dark {
  background-color: var(--dark-navy);
  color: var(--white);
}

.btn-dark:hover {
  background-color: var(--dark-slate);
  box-shadow: 0 4px 14px rgba(15, 55, 90, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--dark-navy);
  border: 2px solid var(--dark-navy);
}

.btn-outline:hover {
  background-color: var(--dark-navy);
  color: var(--white);
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Feature / AAC Benefit Card */
.feature-card {
  background-color: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-normal);
}

html[dir="rtl"] .feature-card::before {
  transform-origin: right;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
  font-size: 1.75rem;
}

.feature-card h3 {
  margin-bottom: 0.75rem;
  color: var(--dark-navy);
}

.feature-card p {
  margin-bottom: 0;
  flex-grow: 1;
}

/* Compact Feature Card Modifier for Premium Dense Grid */
.feature-card.is-small {
  padding: 1.75rem 1.5rem;
}

.feature-card.is-small .feature-icon-wrapper {
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.feature-card.is-small h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.feature-card.is-small p {
  font-size: 0.88rem;
  line-height: 1.5;
}

/* Product Card */
.product-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
  background-color: var(--section-bg);
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.product-card:hover .product-img {
  transform: scale(1.08);
}

.product-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-content h3 {
  margin-bottom: 0.5rem;
}

.product-specs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 1rem 0 1.5rem 0;
  font-size: 0.9rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
}

.spec-row {
  display: flex;
  justify-content: space-between;
}

.spec-label {
  color: var(--gray-text);
  font-weight: 500;
}

.spec-value {
  color: var(--dark-navy);
  font-weight: 700;
}

/* Project Filter Tabs & Grid */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 10px 24px;
  background-color: var(--light-bg);
  border: 1px solid var(--border-light);
  color: var(--dark-navy);
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-tab:hover,
.filter-tab.active {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.portfolio-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 280px;
  cursor: pointer;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 55, 90, 0.9) 0%, rgba(15, 55, 90, 0.2) 70%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: var(--white);
  opacity: 0.9;
  transition: var(--transition-normal);
  z-index: 2;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.portfolio-item:hover img {
  transform: scale(1.08);
}

.portfolio-item:hover .portfolio-overlay {
  background: linear-gradient(to top, rgba(140, 179, 57, 0.95) 0%, rgba(15, 55, 90, 0.4) 70%, rgba(15, 55, 90, 0.2) 100%);
}

.portfolio-title {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 4px;
}

.portfolio-category {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  text-transform: uppercase;
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: fadeIn 0.3s ease;
}

.lightbox-content {
  position: relative;
  max-width: 800px;
  width: 100%;
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: absolute;
  top: 15px;
  right: 20px;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 2001;
  line-height: 1;
}
html[dir="rtl"] .lightbox-close {
  right: auto;
  left: 20px;
}

.lightbox-img-wrapper {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  background-color: #000;
}

.lightbox-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lightbox-info {
  padding: 1.5rem;
}

.lightbox-info h3 {
  margin-bottom: 0.5rem;
}

/* Calculator CSS */
.calc-container {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
}

.calc-tabs {
  display: flex;
  background-color: var(--light-bg);
  border-bottom: 1px solid var(--border-light);
}

.calc-tab-btn {
  flex: 1;
  padding: 18px 10px;
  border: none;
  background: none;
  font-weight: 700;
  color: var(--dark-navy);
  cursor: pointer;
  transition: var(--transition-fast);
  border-bottom: 3px solid transparent;
}

.calc-tab-btn.active {
  background-color: var(--white);
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.calc-panel {
  display: none;
  padding: 2.5rem 2rem;
}

.calc-panel.active {
  display: block;
}

.calc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

@media (max-width: 768px) {
  .calc-layout {
    grid-template-columns: 1fr;
  }
}

.calc-results {
  background-color: var(--primary-light);
  padding: 2rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(197, 168, 128, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.calc-results-title {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--dark-navy);
  margin-bottom: 1.5rem;
  border-bottom: 2px solid rgba(197, 168, 128, 0.3);
  padding-bottom: 0.5rem;
}

.result-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.result-row.total {
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--primary);
  border-top: 1px dashed rgba(197, 168, 128, 0.4);
  padding-top: 1rem;
  margin-top: 1rem;
  margin-bottom: 0;
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-header {
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  color: var(--dark-navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}

.faq-icon {
  font-size: 1.25rem;
  transition: var(--transition-fast);
  color: var(--primary);
}

.faq-item.active {
  box-shadow: var(--shadow-md);
  border-color: rgba(197, 168, 128, 0.3);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: var(--light-bg);
}

.faq-content-inner {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border-light);
}

/* Blog Cards */
.blog-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.blog-img-wrapper {
  height: 200px;
  overflow: hidden;
  background-color: var(--section-bg);
  position: relative;
}

.blog-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.blog-category-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background-color: var(--primary);
  color: var(--white);
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 4px;
}
html[dir="rtl"] .blog-category-tag {
  left: auto;
  right: 12px;
}

.blog-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-date {
  font-size: 0.8rem;
  color: var(--gray-text);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.blog-card-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-card-content p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.blog-read-more {
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.blog-read-more:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

/* Floating Widgets */
/* Floating WhatsApp Button */
.whatsapp-floating {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  z-index: 999;
  animation: pulse 2s infinite;
}

html[dir="rtl"] .whatsapp-floating {
  right: auto;
  left: 25px;
}

/* Sticky Contact Sidebar */
.sticky-sidebar {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 998;
}

html[dir="rtl"] .sticky-sidebar {
  right: auto;
  left: 0;
}

.sidebar-tab {
  background-color: var(--dark-navy);
  color: var(--white);
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 1.25rem;
}

.sidebar-tab:first-child {
  border-top-left-radius: 8px;
}
html[dir="rtl"] .sidebar-tab:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 8px;
}

.sidebar-tab:last-child {
  border-bottom-left-radius: 8px;
  border-bottom: none;
}
html[dir="rtl"] .sidebar-tab:last-child {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 8px;
  border-bottom: none;
}

.sidebar-tab:hover {
  background-color: var(--primary);
  transform: translateX(-4px);
}
html[dir="rtl"] .sidebar-tab:hover {
  transform: translateX(4px);
}

.sidebar-tab span.tooltip {
  position: absolute;
  right: 55px;
  background-color: var(--dark-navy);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  pointer-events: none;
}
html[dir="rtl"] .sidebar-tab span.tooltip {
  right: auto;
  left: 55px;
}

.sidebar-tab:hover span.tooltip {
  opacity: 1;
  visibility: visible;
}

/* Exit Intent Modal */
.exit-modal {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(4px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.exit-modal-content {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  max-width: 500px;
  width: 100%;
  padding: 2.5rem;
  position: relative;
  text-align: center;
  animation: fadeIn 0.4s ease;
}

.exit-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  color: var(--gray-text);
  cursor: pointer;
}
html[dir="rtl"] .exit-close {
  right: auto;
  left: 15px;
}

.exit-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.exit-modal h3 {
  margin-bottom: 0.75rem;
}

.exit-modal p {
  margin-bottom: 1.5rem;
}

/* Cookie Consent Bar */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(15, 37, 56, 0.95);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 1.25rem 2rem;
  z-index: 1999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 -4px 10px rgba(0,0,0,0.15);
  animation: fadeIn 0.5s ease;
}

.cookie-text {
  font-size: 0.9rem;
}

.cookie-text p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 0;
}

.cookie-text a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}

.cookie-btns {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  border: none;
}

.cookie-accept {
  background-color: var(--primary);
  color: var(--white);
}

.cookie-decline {
  background-color: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.3);
}

.cookie-accept:hover {
  background-color: var(--primary-hover);
}

.cookie-decline:hover {
  background-color: rgba(255,255,255,0.1);
  color: var(--white);
}

@media (max-width: 768px) {
  .cookie-bar {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1.25rem;
  }
}

/* Footer Section */
.footer {
  background-color: #0b1a27;
  color: #a0aec0;
  padding: 80px 0 30px 0;
  border-top: 5px solid var(--primary);
}

.footer-title {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 8px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: 35px;
  height: 2px;
  background-color: var(--primary);
}

.footer-desc {
  color: #a0aec0;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  color: #a0aec0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-link:hover {
  color: var(--primary);
  transform: translateX(4px);
}
html[dir="rtl"] .footer-link:hover {
  transform: translateX(-4px);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  align-items: flex-start;
}

.footer-contact-icon {
  color: var(--primary);
  margin-top: 4px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 1rem;
}

.social-link {
  width: 38px;
  height: 38px;
  background-color: rgba(255,255,255,0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition-fast);
}

.social-link:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-newsletter-form {
  display: flex;
  margin-top: 1rem;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.footer-newsletter-input {
  flex-grow: 1;
  padding: 10px 14px;
  border: none;
  outline: none;
  background-color: rgba(255,255,255,0.08);
  color: var(--white);
}

.footer-newsletter-btn {
  background-color: var(--primary);
  border: none;
  color: var(--white);
  padding: 0 16px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.footer-newsletter-btn:hover {
  background-color: var(--primary-hover);
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.85rem;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .footer-bottom .container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .footer-legal-links {
    justify-content: center;
  }
}

/* Mobile Responsiveness Styles for Nav */
@media (max-width: 1024px) {
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    inset-inline-start: -100%;
    width: 280px;
    height: calc(100vh - var(--header-height));
    background-color: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    z-index: 999;
  }

  .nav-menu.active {
    inset-inline-start: 0;
  }

  /* Hamburger transform when menu active */
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

/* Testimonial Styles */
.testimonial-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  position: relative;
}

.testimonial-rating {
  color: #ffb800;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.testimonial-quote {
  font-size: 1rem;
  font-style: italic;
  color: var(--dark-slate);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
}

.testimonial-info h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.testimonial-info p {
  font-size: 0.8rem;
  margin-bottom: 0;
  color: var(--gray-text);
}

/* Client logos slider */
.client-slider {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  opacity: 0.7;
}

.client-logo-item {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--border-color);
  letter-spacing: 2px;
  user-select: none;
}

/* Form disclaimer notice */
.form-notice {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: var(--border-radius);
  background-color: var(--light-bg);
  border-inline-start: 4px solid var(--primary);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  text-align: start;
}

.form-notice-icon {
  font-size: 1.15rem;
  color: var(--primary);
  line-height: 1.2;
  flex-shrink: 0;
}

.form-notice-text {
  font-size: 0.825rem;
  line-height: 1.5;
  color: var(--gray-text);
  margin: 0;
}

html[dir="rtl"] .form-notice {
  text-align: right;
}

/* Phone number LTR rendering fix in RTL layouts */
.phone-number {
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block;
}

/* Responsive adjustments for horizontal side sliding grid on mobile */
@media (max-width: 768px) {
  #why-choose-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 16px !important;
    padding: 10px 4px 20px 4px !important; /* bottom padding allows shadow space */
    scrollbar-width: none !important; /* Firefox */
  }
  #why-choose-grid::-webkit-scrollbar {
    display: none !important; /* Chrome/Safari */
  }
  #why-choose-grid .feature-card.is-small {
    flex: 0 0 270px !important; /* Fixed premium card width on mobile */
    scroll-snap-align: start !important;
    padding: 1.75rem 1.5rem !important;
    align-items: flex-start !important;
    text-align: start !important;
    height: auto !important;
  }
  #why-choose-grid .feature-card.is-small .feature-icon-wrapper {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
    font-size: 1.35rem !important;
    margin-bottom: 1.25rem !important;
  }
  #why-choose-grid .feature-card.is-small h3 {
    font-size: 1.15rem !important;
    margin-bottom: 0.5rem !important;
    line-height: 1.3 !important;
  }
  #why-choose-grid .feature-card.is-small p {
    font-size: 0.88rem !important;
    line-height: 1.5 !important;
  }
}

