/* Main CSS file - compiled from SCSS */

/* CSS Variables */
:root {
  /* Global fonts variables */
  --font-family-default: 'Raleway', sans-serif;
  --font-size-default: 20px;
  --line-height-default: 20px;
  --font-weight-default: 600;

  /* Colors */
  --color-dark: #454545;
  --color-gray: #6D6969;
  --light-gray: #b1b0b0;
  --extra-light-gray: #f5f5f5;
  --color-light-gray: #DBDBDB;
  --color-gray-light: #F5F5F5;
  --color-white: #FFFFFF;
  --color-white-gray: #F7F7F7;
  --color-green: #60D5C5;
  --color-green-dark: #57AEA2;
  --color-green-medium: #9AEADFFF;
  --color-green-light: #9aeadf;
  --color-green-extra-light: #E7F8F6;
  --pink-gray-light: #d9d9d9;

  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-xxl: 64px;

  /* Border radius */
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-xl: 50px;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 16px 32px rgba(0, 0, 0, 0.25);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Z-index */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
}

/* Global Styles */
* {
  box-sizing: border-box;
}

/* Simple Scroll Animations */
.scroll-animate {
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.scroll-animate.animate {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Different animation types */
.scroll-animate.fade-up {
  transform: translateY(30px);
}

.scroll-animate.fade-up.animate {
  transform: translateY(0);
}

.scroll-animate.fade-left {
  transform: translateX(-30px);
}

.scroll-animate.fade-left.animate {
  transform: translateX(0);
}

.scroll-animate.fade-right {
  transform: translateX(30px);
}

.scroll-animate.fade-right.animate {
  transform: translateX(0);
}

.scroll-animate.zoom-in {
  transform: scale(0.8);
}

.scroll-animate.zoom-in.animate {
  transform: scale(1);
}

/* Home Section */
.home {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  max-width: 3000px;
  min-height: 80dvh;
  z-index: 0;
  transition: all 0.8s ease;
  border-radius: 35px;
  padding: 30px 30px 80px 30px;
}

.home-label {
  position: relative;
  display: block;
  text-align: center;
  width: 100%;
  max-width: 345px;
  z-index: 2;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  border-radius: 50px;
  background-color: var(--color-white);
  color: var(--color-dark);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  padding: 13px 56px;
  margin: 80px auto 30px auto;
}

.home-title {
  position: relative;
  display: flex;
  max-width: 1236px;
  text-align: center;
  justify-content: center;
  font-size: 70px;
  font-weight: 600;
  line-height: 80px;
  z-index: 2;
  color: var(--color-dark);
  margin: 0 auto;
}

.home-subtitle {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 600px;
  text-align: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  z-index: 2;
  color: var(--color-gray);
  padding-top: 30px;
  margin: 0 auto;
}

.home-button {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  .home {
    padding: 15px 15px 50px 15px;
  }
  
  .home-label {
    font-size: 12px;
    padding: 5px 56px;
    margin: 60px auto 30px auto;
  }
  
  .home-title {
    font-size: 35px;
    line-height: 45px;
  }
  
  .home-subtitle {
    max-width: 450px;
  }
}

@media screen and (max-width: 450px) {
  .home-label {
    max-width: 220px;
    padding: 5px 25px;
  }
  
  .home-subtitle {
    max-width: 300px;
  }
}

@media screen and (max-width: 600px) {
  .home-subtitle {
    max-width: 300px;
  }
}

@media screen and (max-width: 450px) {
  .home-subtitle {
    max-width: 245px;
  }
}

.theme-dark .home-title {
  color: var(--color-white);
}

.theme-dark .home-subtitle {
  color: var(--color-gray-light);
}

/* Widget Solution */
.widget-solution {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 100px 0;
  overflow: visible;
  position: relative;
  z-index: 1;
}

.solution-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.solution-title {
  font-size: 70px;
  font-weight: 700;
  line-height: 80px;
  color: var(--color-dark);
  margin-bottom: 30px;
}

.solution-subtitle {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: var(--color-gray);
  margin-bottom: 60px;
  max-width: 600px;
}

.solution-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  width: 100%;
}

.solution-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  background-color: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.solution-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 30px;
}

.solution-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.solution-card-title {
  font-size: 25px;
  font-weight: 600;
  line-height: 30px;
  color: var(--color-dark);
  margin-bottom: 20px;
}

.solution-card-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: var(--color-gray);
}

@media screen and (max-width: 768px) {
  .solution-cards {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .solution-title {
    font-size: 35px;
    line-height: 45px;
  }
}

html,
body {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
  overscroll-behavior: contain;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: visible;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family-default);
  font-size: var(--font-size-default);
  line-height: var(--line-height-default);
  font-weight: var(--font-weight-default);
  color: var(--color-dark);
  background-color: var(--color-white);
}

a {
  all: unset;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

p {
  margin: 0;
}

button {
  background: none;
  border: none;
  outline: none;
  padding: 0;
  font-family: inherit;
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 600;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.scrollable-container {
  scroll-behavior: smooth;
  overflow-y: visible;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--color-green-dark) var(--color-green);
}

.scrollable-container::-webkit-scrollbar {
  width: 8px;
}

.scrollable-container::-webkit-scrollbar-track {
  background: var(--color-green);
}

.scrollable-container::-webkit-scrollbar-thumb {
  background-color: var(--color-green-dark);
  border-radius: 4px;
}

.scrollable-container::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-dark);
}

.mobile-only {
  display: flex;
}

@media screen and (min-width: 768px) {
  .mobile-only {
    display: none !important;
  }
}

.tablet-add {
  display: flex;
}

@media screen and (max-width: 767px) {
  .tablet-add {
    display: none !important;
  }
}

.tablet-and-up {
  display: none;
}

@media screen and (min-width: 768px) {
  .tablet-and-up {
    display: flex;
  }
}

.desktop-only {
  display: none;
}

@media screen and (min-width: 1024px) {
  .desktop-only {
    display: flex;
  }
}

.tablet-only {
  display: none;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .tablet-only {
    display: flex;
  }
}

.theme-dark {
  background-color: var(--color-dark);
  color: var(--color-white);
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

*:focus {
  outline: 2px solid var(--color-green);
  outline-offset: 2px;
}

::selection {
  background-color: var(--color-green);
  color: var(--color-dark);
}

::-moz-selection {
  background-color: var(--color-green);
  color: var(--color-dark);
}

/* Container Styles */
.container {
  max-width: 3000px;
  width: 100%;
  height: 100%;
  padding: 30px 30px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .container {
    padding: 15px 15px;
  }
}

.theme-dark.container {
  background-color: var(--color-light-gray);
}

.section {
  padding: var(--spacing-xxl) 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 480px) {
  .section {
    padding: var(--spacing-xl) 0;
    min-height: auto;
  }
}

.section-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

@media screen and (max-width: 480px) {
  .section-content {
    padding: 0 var(--spacing-sm);
  }
}

.grid {
  display: grid;
  gap: var(--spacing-lg);
}

.grid.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

@media screen and (max-width: 767px) {
  .grid.grid-2 {
    grid-template-columns: 1fr;
  }
}

.grid.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 767px) {
  .grid.grid-3 {
    grid-template-columns: 1fr;
  }
}

.grid.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media screen and (max-width: 767px) {
  .grid.grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 480px) {
  .grid.grid-4 {
    grid-template-columns: 1fr;
  }
}

.flex {
  display: flex;
}

.flex.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex.flex-column {
  display: flex;
  flex-direction: column;
}

.flex.flex-column-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.flex.flex-wrap {
  flex-wrap: wrap;
}

.flex.flex-nowrap {
  flex-wrap: nowrap;
}

.gap-sm {
  gap: var(--spacing-sm);
}

.gap-md {
  gap: var(--spacing-md);
}

.gap-lg {
  gap: var(--spacing-lg);
}

.gap-xl {
  gap: var(--spacing-xl);
}

/* App Styles */
.app {
  min-height: 100vh;
  position: relative;
}

.fixed-header-icons {
  position: fixed;
  top: 9rem;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  transform: translateZ(0);
  isolation: isolate;
  will-change: transform;
  pointer-events: auto;
}

.fixed-header-icons.scrolled {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Scroll to Top Button */
.scroll-to-top,
.go-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  border: none;
  padding: 18px;
  border-radius: 5px;
  background-color: var(--color-dark);
  transition: opacity 0.3s ease-in-out, background-color 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-to-top.visible,
.go-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover,
.go-to-top:hover {
  background-color: var(--color-green);
}

.scroll-to-top i,
.go-to-top i {
  font-size: 20px;
  color: var(--color-white);
}

.theme-dark .scroll-to-top,
.theme-dark .go-to-top {
  background-color: var(--color-green);
}

.theme-dark .scroll-to-top:hover,
.theme-dark .go-to-top:hover {
  background-color: var(--color-dark);
}

@media (max-width: 450px) {
  .scroll-to-top,
  .go-to-top {
    padding: 12px;
  }
  
  .scroll-to-top i,
  .go-to-top i {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .fixed-header-icons {
    right: 15px;
    top: 8rem;
  }
}

@media screen and (max-width: 480px) {
  .fixed-header-icons {
    right: 10px;
    top: 7rem;
    gap: 12px;
  }
}

.fixed-theme-icon,
.fixed-menu-icon {
  width: 50px;
  height: 50px;
  background-color: var(--color-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.fixed-theme-icon:hover,
.fixed-menu-icon:hover {
  transform: scale(1.05);
}

.fixed-theme-icon img,
.fixed-menu-icon img {
  width: 24px;
  height: 24px;
}

@media screen and (max-width: 768px) {
  .fixed-theme-icon,
  .fixed-menu-icon {
    width: 45px;
    height: 45px;
  }

  .fixed-theme-icon img,
  .fixed-menu-icon img {
    width: 20px;
    height: 20px;
  }
}

@media screen and (max-width: 480px) {
  .fixed-theme-icon,
  .fixed-menu-icon {
    width: 40px;
    height: 40px;
  }

  .fixed-theme-icon img,
  .fixed-menu-icon img {
    width: 18px;
    height: 18px;
  }
}

.icon-menu,
.icon-close {
  font-size: 20px;
  color: var(--color-white);
}

@media screen and (max-width: 768px) {
  .icon-menu {
    font-size: 20px;
  }

  .icon-close {
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .icon-menu,
  .icon-close {
    font-size: 18px;
  }
}

.fixed-dropdown-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #525252 0%, #d3d1d1 80%);
  z-index: var(--z-modal);
  transition: right var(--transition-slow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.fixed-dropdown-menu--open {
  right: 0;
}

.fixed-dropdown-menu-logo {
  cursor: pointer;
  margin-bottom: 50px;
}

.fixed-dropdown-menu-item {
  padding: 20px;
  width: 80%;
  max-width: 550px;
  text-align: center;
  color: var(--color-white);
  font-size: 24px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-normal);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fixed-dropdown-menu-item:last-child {
  border-bottom: none;
}

.fixed-dropdown-menu-item:not(:last-child):hover {
  border-radius: var(--border-radius-md);
  font-weight: 600;
  color: var(--color-green);
}

@media screen and (max-width: 768px) {
  .fixed-dropdown-menu-item {
    font-size: 20px;
    padding: 25px;
  }
}

@media screen and (max-width: 900px) {
  .fixed-dropdown-menu-item {
    font-size: 16px;
    padding: 15px;
  }
}

@media screen and (max-width: 480px) {
  .fixed-dropdown-menu-item {
    font-size: 18px;
    padding: 12px;
  }
}

.header-actions-btn-mob-min {
  display: flex;
  justify-content: center;
  width: 220px;
  margin: 0 auto;
  padding: 12px 45px;
  background-color: var(--color-white);
  border-radius: var(--border-radius-xl);
  transition: background-color var(--transition-slow), color var(--transition-fast);
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  color: var(--color-dark);
  cursor: pointer;
}

.header-actions-btn-mob-min:hover {
  background-color: var(--color-green);
  color: var(--color-white);
}

@media screen and (max-width: 900px) {
  .header-actions-btn-mob-min {
    padding: 7px 45px;
  }
}

.menu-close-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-white);
  font-size: 30px;
  transition: transform var(--transition-normal);
}

.menu-close-btn:hover {
  transform: rotate(90deg);
}

@media screen and (max-width: 480px) {
  .menu-close-btn {
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
}

.go-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  border: none;
  padding: 18px;
  border-radius: 5px;
  background-color: var(--color-dark);
  transition: opacity var(--transition-normal), background-color var(--transition-normal);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  z-index: var(--z-fixed);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.go-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.go-to-top:hover {
  background-color: var(--color-green);
}

.go-to-top .icon-arrow-up {
  font-size: 20px;
  color: var(--color-white);
}

@media screen and (max-width: 450px) {
  .go-to-top {
    padding: 12px;
  }

  .go-to-top .icon-arrow-up {
    font-size: 18px;
  }
}

.theme-dark .go-to-top {
  background-color: var(--color-green);
}

.theme-dark .go-to-top:hover {
  background-color: var(--color-dark);
}

/* Button Styles */
.button {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  padding: 18px 51px;
  color: var(--color-white);
  background-color: var(--color-dark);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  border-radius: var(--border-radius-xl);
  transition: background-color var(--transition-slow), color var(--transition-fast);
  display: inline-block;
  user-select: none;
}

.button:hover {
  background-color: var(--color-green);
  color: var(--color-dark);
}

.button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.button.button-secondary {
  background-color: var(--color-white);
  color: var(--color-dark);
  border: 2px solid var(--color-dark);
}

.button.button-secondary:hover {
  background-color: var(--color-dark);
  color: var(--color-white);
}

.button.button-outline {
  background-color: transparent;
  color: var(--color-dark);
  border: 2px solid var(--color-dark);
}

.button.button-outline:hover {
  background-color: var(--color-dark);
  color: var(--color-white);
}

.button.button-ghost {
  background-color: transparent;
  color: var(--color-dark);
  box-shadow: none;
}

.button.button-ghost:hover {
  background-color: var(--color-green);
  color: var(--color-dark);
}

.button.button-sm {
  padding: 8px 24px;
  font-size: 16px;
  border-radius: var(--border-radius-md);
}

.button.button-lg {
  padding: 24px 64px;
  font-size: 24px;
  border-radius: var(--border-radius-xl);
}

.button.button-loading {
  position: relative;
  color: transparent;
}

.button.button-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.button.button-success {
  background-color: var(--color-green);
  color: var(--color-dark);
}

.button.button-success:hover {
  background-color: var(--color-green-dark);
}

.button.button-danger {
  background-color: #e74c3c;
  color: var(--color-white);
}

.button.button-danger:hover {
  background-color: #c0392b;
}

@media screen and (max-width: 768px) {
  .button {
    font-size: 16px;
    padding: 7px 51px;
  }
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Page Styles */
.home {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  max-width: 3000px;
  min-height: 80dvh;
  z-index: 0;
  transition: all 0.8s ease;
  border-radius: 35px;
  padding: 30px 30px 80px 30px;
  overflow-y: visible;
}

.home-label {
  position: relative;
  display: block;
  text-align: center;

  width: 100%;
  max-width: 345px;
  z-index: 2;

  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 1px;

  border-radius: 50px;
  background-color: var(--color-white);
  color: var(--color-dark);

  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  padding: 13px 56px;
  margin: 80px auto 30px auto;
}

@media screen and (max-width: 768px) {
  .home-label {
    font-size: 12px;
    padding: 5px 56px;
    margin: 60px auto 30px auto;
  }
}

@media screen and (max-width: 450px) {
  .home-label {
    max-width: 220px;
    padding: 5px 25px;
    letter-spacing: 0.5px;
  }
}

.home-title {
  position: relative;
  display: flex;
  max-width: 1236px;
  text-align: center;
  justify-content: center;
  font-size: 70px;
  font-weight: 600;
  line-height: 80px;
  z-index: 2;
  color: var(--color-dark);
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .home-title {
    font-size: 35px;
    line-height: 45px;
  }
}

.home-subtitle {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 600px;
  text-align: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  z-index: 2;
  color: var(--color-gray);
  padding-top: 30px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .home-subtitle {
    max-width: 450px;
  }
}

@media screen and (max-width: 600px) {
  .home-subtitle {
    max-width: 300px;
  }
}

@media screen and (max-width: 450px) {
  .home-subtitle {
    max-width: 245px;
  }
}

.home-button {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  .home {
    padding: 15px 15px 50px 15px;
  }
}

.theme-dark .home-title {
  color: var(--color-white);
}

.theme-dark .home-subtitle {
  color: var(--color-gray-light);
}

.particles-background {
  canvas {
    border-radius: 35px;
  }
}

@media screen and (max-width: 768px) {
  .particles-background {
    canvas {
      border-radius: 25px;
    }
  }
}

/* Widget Header Styles */
.widget-header {
  display: flex;
  flex-direction: row;
  position: relative;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 83px;
  max-width: 1236px;
  border-radius: var(--border-radius-xl);
  background-color: white);
  box-shadow: var(--shadow-sm);
  z-index: 3;
  margin: 0 auto;
}

.widget-header-logo {
  cursor: pointer;
  padding-left: 20px;
}

@media screen and (max-width: 600px) {
  .widget-header-logo {
    padding-left: 11px;
  }
}

.widget-header-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.widget-header-nav-item {
  background-image: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 90%,
    var(--color-green) 90%,
    var(--color-green) 100%
  );
  background-repeat: no-repeat;
  background-size: 0 10%;
  background-position-x: right;
  cursor: pointer;
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  color: var(--color-white);
  transition: color var(--transition-slow), background-size var(--transition-slow);
}

.widget-header-nav-item:hover {
  color: var(--color-green);
  background-size: 100% 100%;
  background-position-x: left;
}

@media screen and (max-width: 1080px) {
  .widget-header-nav {
    display: none;
  }
}

.widget-header-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-right: 15px;
  gap: 15px;
}

.widget-header-actions-theme {
  cursor: pointer;
}

.widget-header-actions-menu {
  display: none;
}

.widget-header-actions-menu .icon-menu {
  font-size: 22px;
  color: var(--color-white);
}

.widget-header-actions-menu .icon-close {
  font-size: 20px;
  color: var(--color-white);
}

@media screen and (max-width: 1080px) {
  .widget-header-actions-menu {
    display: block;
    position: relative;
    cursor: pointer;
  }
}

.widget-header-actions-btn {
  padding: 18px 22px;
  background-color: var(--color-white);
  border-radius: var(--border-radius-xl);
  transition: background-color var(--transition-slow), color var(--transition-fast);
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  color: var(--color-dark);
  cursor: pointer;
}

.widget-header-actions-btn:hover {
  background-color: var(--color-green);
  color: var(--color-white);
}

@media screen and (max-width: 1080px) {
  .widget-header-actions-btn {
    display: none;
  }
}

.widget-header-actions-btn-mob {
  width: 225px;
  margin: 0 auto;
  padding: 5px 10px;
  background-color: var(--color-white);
  border-radius: var(--border-radius-xl);
  transition: background-color var(--transition-slow), color var(--transition-fast);
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  color: var(--color-dark);
  cursor: pointer;
}

.widget-header-actions-btn-mob:hover {
  background-color: var(--color-green);
  color: var(--color-white);
}

@media screen and (max-width: 1080px) {
  .widget-header-actions {
    padding-right: 25px;
  }
}

@media screen and (max-width: 768px) {
  .widget-header {
    height: 62px;
  }
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 100%;
  max-width: 11%;
  background-color: var(--color-dark);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-slow);
  z-index: var(--z-dropdown);
}

.dropdown-menu--open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu-item {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  color: var(--color-green-light);
  z-index: 3;
  padding: 12px 16px;
  cursor: pointer;
  text-align: center;
  transition: background-color var(--transition-fast);
  border-bottom: 1px solid var(--color-white);
}

.dropdown-menu-item:last-child {
  border-bottom: none;
}

.dropdown-menu-item:first-child:hover {
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  font-weight: 600;
}

.dropdown-menu-item:not(:last-child):hover {
  background-color: var(--color-green);
  font-weight: 600;
  color: var(--color-dark);
}

@media screen and (max-width: 1200px) {
  .dropdown-menu {
    max-width: 100%;
  }
}

@media screen and (max-width: 900px) {
  .dropdown-menu {
    max-width: 100%;
  }

  .dropdown-menu-item {
    padding: 10px 14px;
  }
}

@media screen and (max-width: 768px) {
  .dropdown-menu {
    max-width: 100%;
  }

  .dropdown-menu-item {
    padding: 8px 12px;
    font-size: 14px;
  }
}

@media screen and (max-width: 600px) {
  .dropdown-menu {
    max-width: 100%;
  }

  .dropdown-menu-item {
    padding: 8px 10px;
    font-size: 13px;
  }
}

/* Widget Statistics */
.widget-statistic {
  display: flex;
  width: 100%;
  max-width: 1236px;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  border-radius: 35px;
  transition: all 0.8s ease;
  background-color: var(--color-green-light);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  padding: 60px 87px;
  margin: 80px auto 0 auto;
  position: relative;
  z-index: 3;
}

.widget-statistic-items {
  display: flex;
  position: relative;
  z-index: 3;
  flex-direction: column;
  text-align: center;
  max-width: 136px;
  gap: 10px;
  flex: 1;
}

.widget-statistic-items:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 100px;
  background-color: var(--color-white);
  right: -43.5px;
}

.widget-statistic-items-value {
  font-size: 60px;
  font-weight: 700;
  line-height: 70px;
  color: var(--color-dark);
}

.widget-statistic-items-label {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  color: var(--color-dark);
}

@media screen and (max-width: 1200px) {
  .widget-statistic {
    padding: 50px 60px;
    gap: 60px;
  }
  
  .widget-statistic-items:not(:last-child)::after {
    right: -30px;
    height: 80px;
  }
  
  .widget-statistic-items-value {
    font-size: 50px;
    line-height: 60px;
  }
}

@media screen and (max-width: 900px) {
  .widget-statistic {
    padding: 40px 40px;
    gap: 40px;
  }
  
  .widget-statistic-items:not(:last-child)::after {
    right: -20px;
    height: 70px;
  }
  
  .widget-statistic-items-value {
    font-size: 40px;
    line-height: 50px;
  }
  
  .widget-statistic-items-label {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .widget-statistic {
    padding: 30px 20px;
    gap: 30px;
  }
  
  .widget-statistic-items:not(:last-child)::after {
    right: -15px;
    height: 60px;
  }
  
  .widget-statistic-items-value {
    font-size: 32px;
    line-height: 40px;
  }
  
  .widget-statistic-items-label {
    font-size: 12px;
    line-height: 16px;
  }
}

@media screen and (max-width: 600px) {
  .widget-statistic {
    flex-direction: column;
    gap: 30px;
    padding: 40px 20px;
    max-width: 238px;
    margin: 50px auto 0 auto;
  }
  
  .widget-statistic-items:not(:last-child)::after {
    display: none;
  }
  
  .widget-statistic-items:not(:last-child)::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background-color: var(--color-white);
  }
  
  .widget-statistic-items-value {
    font-size: 36px;
    line-height: 44px;
  }
  
  .widget-statistic-items-label {
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .widget-statistic {
    padding: 30px 15px;
    gap: 25px;
  }
  
  .widget-statistic-items:not(:last-child)::before {
    bottom: -12px;
    width: 166px;
  }
  
  .widget-statistic-items-value {
    font-size: 28px;
    line-height: 36px;
  }
}

.theme-dark.widget-statistic {
  background-color: var(--color-green-dark);
}

.theme-dark .widget-statistic-items:not(:last-child)::after {
  background-color: rgba(255, 255, 255, 0.3);
}

.theme-dark .widget-statistic-items:not(:last-child)::before {
  background-color: rgba(255, 255, 255, 0.3);
}

.theme-dark .widget-statistic-items-value {
  color: var(--color-white);
}

.theme-dark .widget-statistic-items-label {
  color: var(--color-green-light);
}

/* Widget Partners */
.widget-partners {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 100px 0;
}

.widget-partners-header {
  display: flex;
  width: 100%;
  max-width: 947px;
  flex-direction: column;
  margin: 0 auto;
  gap: 30px;
}

.widget-partners-header-title {
  font-size: 70px;
  font-weight: 700;
  line-height: 80px;
  color: var(--color-dark);
}

@media screen and (max-width: 768px) {
  .widget-partners-header-title {
    font-size: 35px;
    letter-spacing: 2px;
    line-height: 45px;
  }
}

.widget-partners-header-subtitle {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: var(--color-gray);
}

@media screen and (max-width: 768px) {
  .widget-partners-header {
    max-width: 450px;
    gap: 15px;
  }
}

.widget-partners-slider {
  display: flex;
  width: 100%;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .widget-partners {
    padding: 50px 0;
  }
}

/* Partners Slider */
.partners-slider-container {
  width: 100%;
  max-width: 1236px;
  overflow: hidden;
  position: relative;
  padding: 40px 0 0 0;
  margin: 0 auto;
  animation: smoothStart 0.8s ease-out;
}

.partners-slider-container::before,
.partners-slider-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.partners-slider-container::before {
  left: 0;
}

.partners-slider-container::after {
  right: 0;
}

.partners-slider {
  width: 100%;
  overflow: hidden;
}

.partners-slider-track {
  display: flex;
  align-items: center;
  will-change: transform;
  width: max-content;
  animation: infiniteScroll 30s linear infinite;
}

.partners-slider-track:hover {
  animation-play-state: paused;
}

.partners-slider-track:hover .partner-logo {
  transform: scale(1.05);
  filter: brightness(1.1);
}

@keyframes infiniteScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% / 2));
  }
}

@keyframes smoothStart {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.partner-item {
  flex: 0 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
  max-width: 180px;
}

@media screen and (min-width: 1920px) {
  .partner-logo {
    height: 80px;
    max-width: 220px;
  }
}

@media screen and (max-width: 1200px) {
  .partners-slider-container {
    padding: 30px 0 0 0;
    max-width: 800px;
  }
  
  .partners-slider-container::before,
  .partners-slider-container::after {
    width: 80px;
  }
  
  .partner-item {
    padding: 0 25px;
  }
  
  .partners-slider-track {
    animation-duration: 25s;
  }
}

@media screen and (max-width: 900px) {
  .partners-slider-container {
    max-width: 700px;
  }
  
  .partners-slider-container::before,
  .partners-slider-container::after {
    width: 70px;
  }
  
  .partner-item {
    padding: 0 20px;
  }
}

@media screen and (max-width: 768px) {
  .partners-slider-container {
    padding: 25px 0 0 0;
    max-width: 600px;
  }
  
  .partners-slider-container::before,
  .partners-slider-container::after {
    width: 60px;
  }
  
  .partner-item {
    padding: 0 18px;
  }
  
  .partners-slider-track {
    animation-duration: 20s;
  }
}

@media screen and (max-width: 600px) {
  .partners-slider-container {
    max-width: 500px;
  }
  
  .partners-slider-container::before,
  .partners-slider-container::after {
    width: 50px;
  }
  
  .partner-item {
    padding: 0 15px;
  }
}

@media screen and (max-width: 480px) {
  .partners-slider-container {
    padding: 20px 0 0 0;
    max-width: 300px;
  }
  
  .partners-slider-container::before,
  .partners-slider-container::after {
    width: 40px;
  }
  
  .partner-item {
    padding: 0 12px;
  }
  
  .partners-slider-track {
    animation-duration: 15s;
  }
}

.theme-dark .widget-partners-header-title {
  color: var(--color-white);
}

/* Ensure partners section has no background in dark theme */
.theme-dark .widget-partners {
  background-color: transparent !important;
}

/* Partners Slider Theme Styles */
.theme-dark .partners-slider-container::before,
.theme-dark .partners-slider-container::after {
  background: transparent;
}

.theme-dark .partner-logo {
  filter: brightness(0.8) contrast(1.2);
}

.theme-dark .partners-slider-track:hover .partner-logo {
  filter: brightness(1.1) contrast(1.3);
}

/* Atropos Container - Match Angular exactly */
.atropos-container {
  width: 100%;
  max-width: 637px;
  perspective: 1000px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.atropos {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  transform-style: preserve-3d;
  transition: transform 0.15s ease;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  flex: 1;
}

.atropos-inner {
  border-radius: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Fix Atropos blocking hover events for Products Section */
.widget-products .atropos {
  pointer-events: none; /* Prevent Atropos from capturing events */
}

.widget-products .atropos-scale,
.widget-products .atropos-rotate,
.widget-products .atropos-inner {
  pointer-events: none; /* Prevent Atropos inner elements from capturing events */
}

.widget-products-cards-item {
  pointer-events: auto; /* Re-enable pointer events for the card item itself */
}

.widget-products-cards-item a {
  pointer-events: auto; /* Re-enable pointer events for links */
}

/* FAQ Section Styles - Match Angular exactly */
.widget-faq {
  width: 100%;
  max-width: 3000px;
  min-height: 60dvh;
  z-index: 1;
  transition: all 0.8s ease;
  border-radius: 35px;
  padding: 80px 0;
}

.widget-faq-content {
  display: flex;
  width: 100%;
  max-width: 1296px;
  flex-direction: row;
  margin: 0 auto;
  gap: 88px;
}

.widget-faq-content-left {
  display: flex;
  width: 100%;
  max-width: 604px;
  flex-direction: column;
  gap: 92px;
}

.widget-faq-content-left-header {
  display: flex;
  flex-direction: column;
  justify-content: start;
  text-align: left;
  gap: 15px;
}

.widget-faq-content-left-header-label {
  display: flex;
  text-align: center;

  width: 100%;
  max-width: 97px;
  z-index: 2;

  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 3px;

  border-radius: 50px;
  background-color: var(--color-white);
  color: var(--color-dark);

  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  padding: 13px 33px;
}

.widget-faq-content-left-header-title {
  font-size: 70px;
  font-weight: 600;
  line-height: 80px;
  color: var(--color-dark);
}

.widget-faq-content-left-message {
  display: flex;
  flex-direction: column;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  gap: 30px;
  padding: 30px 30px;
}

.widget-faq-content-left-message-title {
  font-size: 35px;
  font-weight: 600;
  line-height: 45px;
  color: var(--color-dark);
}

.widget-faq-content-left-message-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: var(--color-gray);
}

.widget-faq-content-right {
  display: flex;
  width: 100%;
  max-width: 604px;
  flex-direction: column;
  gap: 15px;
}

.widget-faq-content-message {
  display: none;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  gap: 30px;
  padding: 30px 30px;
}

.widget-faq-content-message-title {
  font-size: 35px;
  font-weight: 600;
  line-height: 45px;
  color: var(--color-dark);
}

.widget-faq-content-message-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: var(--color-gray);
}

/* Expansion Panel Styles */
.expansion-panel {
  border-radius: 16px;
  margin-bottom: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, #F7F7F7 0%, #E7F8F6 100%);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.expansion-panel:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.panel-header {
  width: 100%;
  padding: 30px 30px 30px 30px;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s ease;
  text-align: left;
  outline: none;
  background: transparent;
}

.panel-header:focus {
  outline: none;
}

.panel-title {
  display: flex;
  max-width: 400px;

  font-weight: 600;
  font-size: 22px;
  line-height: 26px;
  color: var(--color-dark);
}

.panel-icon-down,
.panel-icon-up {
  width: 35px;
  height: 35px;
  padding: 8px;
  border-radius: 8px;
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.panel-icon-down img,
.panel-icon-up img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.panel-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.panel-content.expanded {
  max-height: 1000px;
}

.content-inner {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: var(--color-gray);
  padding: 0 30px 30px 30px;
}

.content-inner span {
  margin: 0;
}

/* Dark Theme Styles */
.theme-dark .widget-faq-content-left-header-title {
  color: var(--color-white);
}

.theme-dark .widget-faq {
  background-color: transparent !important;
}

.theme-dark .expansion-panel {
  background: linear-gradient(135deg, #ABABAB 5%, #F7F7F7 100%);
}

/* Light Theme Styles */
.widget-faq {
  background-color: transparent !important;
}

/* Responsive Styles */
@media screen and (max-width: 1280px) {
  .widget-faq-content-left-message {
    display: none;
  }
  
  .widget-faq-content-message {
    display: flex;
    width: 100%;
    max-width: 604px;
    flex-direction: column;
  }
  
  .widget-faq-content {
    max-width: inherit;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
  }
}

@media screen and (max-width: 768px) {
  .widget-faq {
    padding: 50px 0;
  }
  
  .widget-faq-content-left-header-label {
    font-size: 12px;
    margin: 0 auto;
    padding: 5px 36px;
  }
  
  .widget-faq-content-left-header-title {
    font-size: 35px;
    line-height: 45px;
  }
  
  .widget-faq-content-left-header {
    text-align: center;
    justify-content: center;
  }
  
  .panel-title {
    font-size: 20px;
    max-width: 290px;
  }
}

@media screen and (max-width: 450px) {
  .panel-header {
    padding: 15px 15px;
  }

  .content-inner {
    padding: 0 15px 15px 15px;
  }

  .panel-title {
    font-size: 18px;
    max-width: 250px;
  }
}

@media screen and (max-width: 380px) {
  .panel-title {
    font-size: 16px;
    max-width: 220px;
  }
}

/* Dialog Styles - Match Angular exactly */
.dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
  box-sizing: border-box;
}

.dialog-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.dialog {
  display: flex;
  width: 100%;
  max-width: 450px;
  height: auto;
  align-items: center;
  flex-direction: column;
  border-radius: 16px;
  position: relative;
  background-color: var(--color-white);
  margin: 0 auto;
}

.dialog-pic {
  display: flex;
  position: relative;
}

.dialog-pic img {
  width: 100%;
  max-width: 450px;
}

.dialog-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.dialog-icon:hover {
  background: rgba(255, 255, 255, 1);
}

.dialog-icon:hover .icon-close24 {
  animation: rotateOnce 0.6s ease forwards;
}

.dialog-icon .icon-close24 {
  font-size: 20px;
  color: var(--color-dark);
}

@keyframes rotateOnce {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.dialog-container {
  padding: 15px 40px 40px 40px;
}

.dialog-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 15px;
}

.dialog-header h3 {
  font-size: 25px;
  font-weight: 600;
  line-height: 35px;
  color: var(--color-dark);
}

.dialog-header-subtitle {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 290px;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: var(--color-gray);
}

.dialog-form {
  display: flex;
  flex-direction: column;
  padding-top: 15px;
  gap: 15px;
}

.dialog-form-btn {
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  padding: 12px 0;
  color: var(--color-white);
  background-color: var(--color-dark);
  cursor: pointer;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  border-radius: 50px;
  transition: background-color 0.5s ease-in, color 0.2s ease-in;
  border: none;
  margin-top: 20px;
}

.dialog-form-btn:hover {
  background-color: var(--color-green);
  color: var(--color-dark);
}

.dialog-form-btn--disabled {
  background-color: var(--light-gray) !important;
  color: var(--color-gray) !important;
  cursor: not-allowed !important;
}

.dialog-form-btn--disabled:hover {
  background-color: var(--light-gray) !important;
  color: var(--color-gray) !important;
}

/* Form Group Styles */
.form-group {
  display: flex;
  flex-direction: column;
}

.form-group-label {
  display: block;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: var(--color-gray);
}

.form-control {
  display: block;
  width: 100%;
  min-width: 266px;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: var(--light-gray);
  background-color: var(--extra-light-gray);
  background-clip: padding-box;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: border-color 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
  border: none;
  outline: none;
}

.form-control:focus {
  color: var(--light-gray);
  background-color: var(--extra-light-gray);
  outline: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.form-control:disabled {
  background-color: var(--pink-gray-light);
  opacity: 1;
}

.form-control::placeholder {
  color: var(--color-gray);
}

.form-control::-webkit-input-placeholder {
  color: var(--color-gray);
}

.form-control:-ms-input-placeholder {
  color: var(--light-gray);
}

.form-control::-moz-placeholder {
  color: var(--light-gray);
}

textarea.form-control {
  font-family: var(--font-family-default);
  resize: none;
}

/* Dark Theme Dialog Styles */
.theme-dark .dialog {
  background-color: var(--color-light-gray);
}

.theme-dark .dialog-header h3 {
  color: var(--color-white);
}

.theme-dark .dialog-header-subtitle {
  color: var(--color-gray);
}

.theme-dark .form-group label {
  color: var(--color-gray);
}

.theme-dark .form-control {
  color: var(--color-dark);
  background-color: var(--color-white);
}

.theme-dark .form-control:focus {
  color: var(--color-dark);
  background-color: var(--color-white);
}

.theme-dark .form-control::placeholder {
  color: var(--color-gray);
}

.theme-dark .form-control::-webkit-input-placeholder {
  color: var(--color-gray);
}

.theme-dark .form-control:-ms-input-placeholder {
  color: var(--light-gray);
}

.theme-dark .form-control::-moz-placeholder {
  color: var(--light-gray);
}

/* Responsive Dialog Styles */
@media screen and (max-width: 768px) {
  .dialog-overlay {
    padding: 15px;
  }
  
  .dialog {
    max-width: 100%;
    margin: 0 auto;
  }
  
  .dialog-icon {
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
  }
  
  .dialog-icon .icon-close24 {
    font-size: 18px;
  }
  
  .dialog-form-btn {
    font-size: 18px;
  }
}

@media screen and (max-width: 450px) {
  .dialog-overlay {
    padding: 10px;
  }
  
  .dialog {
    max-width: 100%;
    margin: 0 auto;
  }
  
  .dialog-icon {
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
  }
  
  .dialog-icon .icon-close24 {
    font-size: 16px;
  }
  
  .dialog-container {
    padding: 15px 10px 40px 10px;
  }
}

/* Product Cards Box Shadow - Only on hover */

@media screen and (max-width: 645px) {
  .atropos-container {
    padding: 0 15px;
  }
}

.widget-products {
  position: relative;
  width: 100%;
  max-width: 3000px;
  min-height: 80dvh;
  z-index: 0;
  transition: all 0.8s ease;
  border-radius: 35px;
  overflow: hidden;
  padding: 30px 30px 58px 30px;
  background: linear-gradient(180deg, #F5F5F5 0%, #bffaf3 100%);
}

.theme-dark.widget-products {
  background: linear-gradient(180deg, #525252 0%, #d3d1d1 80%);
}

.theme-dark .widget-products-header-title {
  color: var(--color-white);
}

.theme-dark .widget-products-header-subtitle {
  color: var(--color-light-gray);
}

.theme-dark .widget-products-cards-item {
  background-color: var(--color-light-gray);
}

.theme-dark .widget-products-cards-item-def {
  background-color: var(--color-light-gray);
}

.theme-dark .widget-products-cards-item-content-title {
  color: var(--color-white);
}

.theme-dark .widget-products-cards-item-def-content-title {
  color: var(--color-white);
}

/* Fallback gradient animation */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.widget-products-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.widget-products-content {
  position: relative;
  z-index: 2;
}

.widget-products-header {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  width: 100%;
  max-width: 589px;
  margin: 0 auto;
  padding: 50px 0 30px 0;
  gap: 30px;
}

.widget-products-header-title {
  font-size: 70px;
  font-weight: 700;
  line-height: 80px;
  color: var(--color-dark);
}

@media screen and (max-width: 768px) {
  .widget-products-header-title {
    font-size: 35px;
    line-height: 45px;
  }
}

.widget-products-header-subtitle {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: var(--color-gray);
}

@media screen and (max-width: 768px) {
  .widget-products-header {
    gap: 15px;
    padding: 20px 0;
  }
}

.widget-products-cards {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  max-width: 1296px;
  gap: 22px;
  margin: 0 auto;
  align-items: stretch;
  min-height: 320px;
}

.widget-products-cards-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 637px;
  border-radius: 16px;
  background-color: var(--color-white-gray);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  transform-style: preserve-3d;
  cursor: pointer;
  gap: 15px;
  padding: 30px 30px;
  height: 100%;
  justify-content: space-between;
}

.widget-products-cards-item-img {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
}

.widget-products-cards-item-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.3s ease;
}

.widget-products-cards-item-img img:hover {
  transform: scale(1.05);
}

.widget-products-cards-item-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
  transform-style: preserve-3d;
  gap: 8px;
  flex: 1;
}

.widget-products-cards-item-content-title {
  font-size: 25px;
  font-weight: 600;
  line-height: 30px;
  transform: translateZ(20px);
  color: var(--color-dark);
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.widget-products-cards-item-content-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  transform: translateZ(10px);
  color: var(--color-gray);
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media screen and (min-width: 1281px) {
  .widget-products-cards-item-content-title {
    min-height: auto !important;
  }
  
  .widget-products-cards-item-content-description {
    min-height: auto !important;
  }
}

@media screen and (max-width: 768px) {
  .widget-products-cards-item-content-title {
    font-size: 20px;
    line-height: 25px;
    min-height: auto !important;
  }
  
  .widget-products-cards-item-content-description {
    min-height: auto !important;
  }
  
  .widget-products-cards-item-content {
    gap: 5px;
  }
}

.widget-products-cards-item-def {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1296px;
  border-radius: 16px;
  background-color: var(--color-white-gray);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  gap: 15px;
  margin: 22px auto 0 auto;
  padding: 30px 30px;
  transition: transform 0.3s ease;
}

.widget-products-cards-item-def:hover .widget-products-cards-item-def-img img {
  transform: scale(1.05);
}

.widget-products-cards-item-def:hover .widget-products-cards-item-def-img-min img {
  transform: scale(1.05);
}

.widget-products-cards-item-def-img {
  display: flex;
  width: 100%;
  max-width: 1244px;
  height: auto;
  overflow: hidden;
  border-radius: 16px;
  transition: box-shadow 0.3s ease;
}

.widget-products-cards-item-def:hover .widget-products-cards-item-def-img {
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.widget-products-cards-item-def-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.3s ease;
}

@media screen and (max-width: 768px) {
  .widget-products-cards-item-def-img {
    display: none;
  }
}

.widget-products-cards-item-def-img-min {
  display: none;
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 16px;
  transition: box-shadow 0.3s ease;
}

.widget-products-cards-item-def:hover .widget-products-cards-item-def-img-min {
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.widget-products-cards-item-def-img-min img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: none;
  transition: transform 0.3s ease;
}

@media screen and (max-width: 768px) {
  .widget-products-cards-item-def-img-min {
    display: flex;
  }
  
  .widget-products-cards-item-def-img-min img {
    display: block;
  }
}

.widget-products-cards-item-def-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 15px;
}

.widget-products-cards-item-def-content-title {
  font-size: 25px;
  font-weight: 600;
  line-height: 30px;
  color: var(--color-dark);
}

@media screen and (max-width: 768px) {
  .widget-products-cards-item-def-content-title {
    font-size: 20px;
    line-height: 25px;
  }
}

.widget-products-cards-item-def-content-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: var(--color-gray);
}

@media screen and (max-width: 768px) {
  .widget-products-cards {
    align-items: center;
    flex-direction: column;
    max-width: inherit;
    margin: 0 auto 22px auto;
    min-height: 280px;
  }
  
  .widget-products-cards-item-def {
    align-items: center;
    flex-direction: column;
    max-width: inherit;
    margin: 0 auto;
  }
}

@media screen and (max-width: 450px) {
  .widget-products-cards {
    min-height: 250px;
  }
}

/* Mobile-only and tablet-add classes */
.mobile-only {
  display: none;
}

.tablet-add {
  display: block;
}

@media screen and (max-width: 768px) {
  .mobile-only {
    display: block;
  }
  
  .tablet-add {
    display: none;
  }
}

/* Particles Background */
.particles-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition-slow);
}

.preloader-content {
  text-align: center;
}

.preloader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--color-light-gray);
  border-top: 4px solid var(--color-green);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto var(--spacing-lg);
}

/* Dialog */
.dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: var(--z-modal);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.dialog-overlay.visible {
  opacity: 1;
}

.dialog {
  display: flex;
  width: 100%;
  max-width: 450px;
  height: auto;
  align-items: center;
  flex-direction: column;
  border-radius: 16px;
  position: relative;
  background-color: var(--color-white);
  box-shadow: var(--shadow-xl);
  transform: scale(0.9);
  transition: transform var(--transition-normal);
}

.dialog-overlay.visible .dialog {
  transform: scale(1);
}

.dialog-pic {
  display: flex;
  position: relative;
}

.dialog-pic img {
  width: 100%;
  max-width: 450px;
}

.dialog-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.dialog-icon:hover {
  background: rgba(255, 255, 255, 1);
}

.dialog-icon .icon-close24 {
  font-size: 20px;
  color: var(--color-dark);
}

@media screen and (max-width: 768px) {
  .dialog-icon {
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
  }
  
  .dialog-icon .icon-close24 {
    font-size: 18px;
  }
}

@media screen and (max-width: 450px) {
  .dialog-icon {
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
  }
  
  .dialog-icon .icon-close24 {
    font-size: 16px;
  }
}

.dialog-container {
  padding: 15px 40px 40px 40px;
}

@media screen and (max-width: 450px) {
  .dialog-container {
    padding: 15px 10px 40px 10px;
  }
}

.dialog-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 15px;
}

.dialog-header h3 {
  font-size: 25px;
  font-weight: 600;
  line-height: 35px;
  color: var(--color-dark);
  margin: 0;
}

.dialog-header-subtitle {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 290px;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: var(--color-gray);
}

.dialog-form {
  display: flex;
  flex-direction: column;
  padding-top: 15px;
  gap: 15px;
}

.dialog-form .form-group {
  margin-bottom: 0;
}

.dialog-form .form-group label {
  display: block;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: var(--color-gray);
}

.dialog-form .form-group input,
.dialog-form .form-group textarea {
  display: block;
  width: 100%;
  min-width: 266px;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: var(--light-gray);
  background-color: var(--extra-light-gray);
  background-clip: padding-box;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: border-color 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
  border: none;
  outline: none;
  font-family: var(--font-family-default);
}

.dialog-form .form-group input:focus,
.dialog-form .form-group textarea:focus {
  color: var(--light-gray);
  background-color: var(--extra-light-gray);
  outline: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.dialog-form .form-group input::placeholder,
.dialog-form .form-group textarea::placeholder {
  color: var(--color-gray);
}

.dialog-form .form-group textarea {
  resize: none;
  min-height: 100px;
}

.dialog-form-btn {
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  padding: 12px 0;
  color: var(--color-white);
  background-color: var(--color-dark);
  cursor: pointer;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  border-radius: 50px;
  transition: background-color 0.5s ease-in, color 0.2s ease-in;
  border: none;
  outline: none;
}

.dialog-form-btn:hover {
  background-color: var(--color-green);
  color: var(--color-dark);
}

.dialog-form-btn--disabled {
  background-color: var(--light-gray) !important;
  color: var(--color-gray) !important;
  cursor: not-allowed !important;
}

.dialog-form-btn--disabled:hover {
  background-color: var(--light-gray) !important;
  color: var(--color-gray) !important;
}

@media screen and (max-width: 768px) {
  .dialog-form-btn {
    font-size: 18px;
  }
}

.theme-dark.dialog {
  background-color: var(--color-light-gray);
}

/* Snackbar */
.snackbar {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background-color: var(--color-green);
  color: var(--color-dark);
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  z-index: var(--z-tooltip);
  font-size: 16px;
  font-weight: 600;
  opacity: 0;
  transition: all var(--transition-normal);
  max-width: 400px;
  text-align: center;
}

.snackbar.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media screen and (max-width: 480px) {
  .snackbar {
    left: var(--spacing-md);
    right: var(--spacing-md);
    transform: translateY(100px);
    max-width: none;
  }

  .snackbar.visible {
    transform: translateY(0);
  }
}

/* Theme Dark Styles */
.theme-dark .widget-partners {
  background-color: var(--color-dark);
}

.theme-dark .partners-title {
  color: var(--color-white);
}

.theme-dark .partners-subtitle {
  color: var(--color-light-gray);
}

.theme-dark .widget-products-header-title {
  color: var(--color-white);
}

.theme-dark .widget-products-header-subtitle {
  color: var(--color-light-gray);
}

.theme-dark .widget-products-cards-item {
  background-color: var(--color-light-gray);
}

.theme-dark .widget-products-cards-item-def {
  background-color: var(--color-light-gray);
}

.theme-dark .widget-products-cards-item-content-title {
  color: var(--color-white);
}

.theme-dark .widget-products-cards-item-def-content-title {
  color: var(--color-white);
}

.theme-dark .statistic-item {
  background-color: rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.1);
}

.theme-dark .preloader {
  background-color: var(--color-dark);
}

.theme-dark .preloader-spinner {
  border-color: var(--color-gray);
  border-top-color: var(--color-green);
}

.theme-dark .dialog-content {
  background-color: var(--color-dark);
  border: 1px solid var(--color-gray);
}

.theme-dark .dialog-header {
  border-bottom-color: var(--color-gray);
}

.theme-dark .dialog-header h3 {
  color: var(--color-white);
}

.theme-dark .dialog-close {
  background-color: var(--color-gray);
}

.theme-dark .dialog-close:hover {
  background-color: var(--color-light-gray);
}

.theme-dark .dialog-close i {
  color: var(--color-white);
}

.theme-dark .dialog-form .form-group label {
  color: var(--color-white);
}

.theme-dark .dialog-form .form-group input,
.theme-dark .dialog-form .form-group textarea {
  background-color: var(--color-gray);
  border-color: var(--color-gray);
  color: var(--color-white);
}

.theme-dark .dialog-form .form-group input:focus,
.theme-dark .dialog-form .form-group textarea:focus {
  border-color: var(--color-green);
}

.theme-dark .dialog-form .form-group input::placeholder,
.theme-dark .dialog-form .form-group textarea::placeholder {
  color: var(--color-light-gray);
}

/* Widget FAQ */
.widget-faq {
  padding: var(--spacing-xxl) 0;
  background-color: var(--color-white-gray);
}

.faq-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  text-align: center;
}

.faq-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: var(--spacing-xxl);
  line-height: 1.2;
}

@media screen and (max-width: 767px) {
  .faq-title {
    font-size: 28px;
  }
}

@media screen and (max-width: 480px) {
  .faq-title {
    font-size: 24px;
  }
}

.faq-cards {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xxl);
}

.faq-card {
  background-color: var(--color-white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--transition-normal);
}

.faq-card:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: var(--spacing-xl);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color var(--transition-normal);
}

.faq-question:hover {
  background-color: var(--color-green-extra-light);
}

.faq-question h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-dark);
  margin: 0;
  flex: 1;
  text-align: left;
}

@media screen and (max-width: 480px) {
  .faq-question h3 {
    font-size: 18px;
  }
}

.faq-question i {
  font-size: 20px;
  color: var(--color-green);
  transition: transform var(--transition-normal);
}

.faq-card.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.faq-card.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 var(--spacing-xl) var(--spacing-xl);
  font-size: 16px;
  color: var(--color-gray);
  line-height: 1.6;
  margin: 0;
}

@media screen and (max-width: 480px) {
  .faq-answer p {
    font-size: 14px;
  }
}

.faq-message-card {
  background-color: var(--color-green-extra-light);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-xl);
  text-align: center;
}

.faq-message-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: var(--spacing-md);
}

@media screen and (max-width: 480px) {
  .faq-message-card h3 {
    font-size: 20px;
  }
}

.faq-message-card p {
  font-size: 16px;
  color: var(--color-gray);
  margin-bottom: var(--spacing-lg);
  line-height: 1.6;
}

@media screen and (max-width: 480px) {
  .faq-message-card p {
    font-size: 14px;
  }
}

/* Widget Solutions - Match Angular exactly */
.widget-solution {
  position: relative;
  width: 100%;
  max-width: 3000px;
  min-height: 80dvh;
  z-index: 0;
  transition: all 0.8s ease;
  border-radius: 35px;
  overflow: hidden;
  padding: 30px 30px 30px 30px;
  background: linear-gradient(180deg, #F5F5F5 0%, #bffaf3 100%);
}

.widget-solution-content {
  position: relative;
  z-index: 2;
}

.widget-solution-header {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  width: 100%;
  max-width: 589px;
  margin: 0 auto;
  padding: 50px 0 20px 0;
  gap: 30px;
}

.widget-solution-header-title {
  font-size: 70px;
  font-weight: 700;
  line-height: 80px;
  color: var(--color-dark);
}

@media screen and (max-width: 768px) {
  .widget-solution-header-title {
    font-size: 35px;
    line-height: 45px;
  }
}

.widget-solution-header-subtitle {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: var(--color-gray);
}

@media screen and (max-width: 768px) {
  .widget-solution-header {
    max-width: 380px;
    gap: 15px;
    padding: 20px 0;
  }
}

.widget-solution-cards {
  display: grid;
  max-width: 1294px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-auto-rows: 1fr;
  gap: 32px;
  margin: 0 auto;
  align-items: stretch;
  min-height: 350px;
}

.widget-solution-cards-item {
  display: flex;
  flex-direction: column;
  text-align: left;
  background: var(--color-white-gray);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  cursor: pointer;
  gap: 30px;
  padding: 30px;
  height: 100%;
  min-height: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.widget-solution-cards-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.widget-solution-cards-item a {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.widget-solution-cards-item a:hover {
  cursor: pointer;
}

/* Fix Atropos blocking hover events in Solutions */
.widget-solution .atropos {
  pointer-events: none;
}

.widget-solution .atropos-scale,
.widget-solution .atropos-rotate,
.widget-solution .atropos-inner {
  pointer-events: none;
}

.widget-solution-cards-item {
  pointer-events: auto;
}

.widget-solution-cards-item-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1;
  justify-content: space-between;
}

.widget-solution-cards-item-content-title {
  display: flex;
  width: 100%;
  max-width: 260px;
  font-size: 25px;
  font-weight: 600;
  line-height: 30px;
  color: var(--color-dark);
}

@media screen and (max-width: 768px) {
  .widget-solution-cards-item-content-title {
    font-size: 20px;
  }
}

@media screen and (max-width: 450px) {
  .widget-solution-cards-item-content-title {
    font-size: 20px;
    line-height: 25px;
  }
}

.widget-solution-cards-item-content-subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: var(--color-gray);
}

@media screen and (max-width: 450px) {
  .widget-solution-cards-item-content-subtitle {
    font-size: 12px;
    line-height: 16px;
  }
}

@media screen and (max-width: 768px) {
  .widget-solution-cards {
    min-height: 250px;
  }
  
  .widget-solution-cards-item {
    gap: 15px;
    padding: 15px;
    min-height: 220px;
  }
}

@media screen and (max-width: 400px) {
  .widget-solution-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
    min-height: 200px;
  }
  
  .widget-solution-cards-item {
    min-height: 180px;
  }
}

@media screen and (max-width: 600px) {
  .widget-solution-cards {
    width: 100%;
    max-width: inherit;
    gap: 24px;
    padding: 0 15px;
    margin: 0;
  }
}

.solution-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  flex-shrink: 0;
}

.solution-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

@media screen and (max-width: 480px) {
  .solution-icon img {
    width: 60px;
    height: 60px;
  }
}

/* Widget shine animation */
.widget-solution::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(145, 215, 205, 0.1) 20%,
      rgba(130, 205, 195, 0.2) 40%,
      rgba(110, 195, 185, 0.3) 50%,
      rgba(130, 205, 195, 0.2) 60%,
      rgba(145, 215, 205, 0.1) 80%,
      transparent 100%
  );
  transform: skewX(-25deg);
  animation: widget-shine 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes widget-shine {
  0% {
    left: -100%;
  }
  30% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

/* Dark theme styles */
.theme-dark .widget-solution {
  background: linear-gradient(180deg, #525252 0%, #d3d1d1 80%);
}

.theme-dark .widget-solution-header-title {
  color: var(--color-white);
}

.theme-dark .widget-solution-header-subtitle {
  color: var(--extra-light-gray);
}

.theme-dark .widget-solution-cards-item {
  background: linear-gradient(140deg, #525252 0%, #bdbdbd 85%);
}

.theme-dark .widget-solution-cards-item-content-title {
  color: var(--color-white);
}

.theme-dark .widget-solution-cards-item-content-subtitle {
  color: var(--extra-light-gray);
}

.theme-dark.widget-solution::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.1) 25%,
      rgba(255, 255, 255, 0.3) 50%,
      rgba(255, 255, 255, 0.1) 75%,
      transparent 100%
  );
  transform: skewX(-25deg);
  animation: widget-shine 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

/* Toggle Component */
.toggle-container {
  display: inline-flex;
}

.toggle-container.disabled {
  opacity: 0.6;
  pointer-events: none;
}

.toggle-container.small .toggle-wrapper {
  width: 120px;
  height: 40px;
}

.toggle-container.small .toggle-thumb {
  width: 60px;
  height: 32px;
}

.toggle-container.small .toggle-thumb .thumb-text {
  font-size: 12px;
}

.toggle-container.small .static-text {
  font-size: 11px;
}

.toggle-container.medium .toggle-wrapper {
  width: 220px;
  height: 60px;
}

.toggle-container.medium .toggle-thumb {
  width: 100px;
  height: 48px;
}

.toggle-container.medium .toggle-thumb .thumb-text {
  font-size: 16px;
}

.toggle-container.medium .static-text {
  font-size: 16px;
}

@media screen and (max-width: 600px) {
  .toggle-container.medium .toggle-wrapper {
    height: 37px;
  }
  
  .toggle-container.medium .toggle-thumb {
    height: 28px;
  }
  
  .toggle-container.medium .toggle-thumb .thumb-text {
    font-size: 12px;
  }
  
  .toggle-container.medium .static-text {
    font-size: 12px;
  }
}

.toggle-container.large .toggle-wrapper {
  width: 160px;
  height: 56px;
}

.toggle-container.large .toggle-thumb {
  width: 80px;
  height: 44px;
}

.toggle-container.large .toggle-thumb .thumb-text {
  font-size: 14px;
}

.toggle-container.large .static-text {
  font-size: 13px;
}

.toggle-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--color-white-gray);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

.toggle-container.disabled .toggle-wrapper {
  cursor: not-allowed;
}

.toggle-thumb {
  position: absolute;
  top: 50%;
  left: 6px;
  transform: translateY(-50%);
  background-color: var(--color-green);
  border-radius: 24px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 3;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.toggle-thumb.active {
  left: calc(100% - 4px);
  transform: translate(-100%, -50%);
}

.thumb-text {
  font-weight: 600;
  color: var(--color-white);
  transition: color 0.3s ease;
  white-space: nowrap;
}

.static-text {
  position: absolute;
  font-weight: 500;
  transition: opacity 0.2s ease 0.1s;
  z-index: 2;
}

.static-text.inactive-text {
  left: 25%;
  transform: translateX(-50%);
  color: #2a2a2a;
}

.static-text.active-text {
  right: 25%;
  transform: translateX(50%);
  color: #2a2a2a;
}

.static-text.active {
  opacity: 1;
}

.theme-dark .toggle-wrapper {
  background-color: var(--light-gray);
}

.theme-dark .static-text.active-text {
  color: #ffffff;
}

.theme-dark .static-text.inactive-text {
  color: #ffffff;
}

/* Widget Pricing */
.widget-prices {
  position: relative;
  width: 100%;
  max-width: 3000px;
  min-height: 80dvh;
  z-index: 0;
  transition: all 0.8s ease;
  overflow: hidden;
  padding: 50px 0 80px 0;
  background-color: transparent;
}

.widget-prices-label {
  position: relative;
  display: block;
  text-align: center;

  width: 100%;
  max-width: 365px;
  z-index: 2;

  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 1px;

  border-radius: 50px;
  background-color: var(--color-white);
  color: var(--color-dark);

  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  padding: 13px 45px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .widget-prices-label {
    font-size: 12px;
    max-width: 265px;
    padding: 5px 0;
  }
}

@media screen and (max-width: 450px) {
  .widget-prices-label {
    max-width: 245px;
  }
}

.widget-prices-header {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  width: 100%;
  max-width: 651px;
  margin: 0 auto;
  padding: 50px 0 30px 0;
  gap: 30px;
}

.widget-prices-header-title {
  font-size: 70px;
  font-weight: 700;
  line-height: 80px;
  color: var(--color-dark);
}

@media screen and (max-width: 768px) {
  .widget-prices-header-title {
    font-size: 35px;
    line-height: 45px;
  }
}

.widget-prices-header-subtitle {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: var(--color-gray);
}

@media screen and (max-width: 768px) {
  .widget-prices-header {
    max-width: 380px;
    gap: 15px;
    padding: 20px 0;
  }
}

.widget-prices-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
}

.widget-prices-cards {
  display: grid;
  max-width: 1296px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-auto-rows: 1fr;
  gap: 18px;
  margin: 50px auto 0 auto;
  align-items: stretch;
  min-height: 500px;
}

.widget-prices-cards-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  border-radius: 16px;
  background: linear-gradient(180deg, #F5F5F5 0%, #bffaf3 100%);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  gap: 25px;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  height: 100%;
  min-height: 450px;
}

.widget-prices-cards-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.widget-prices-cards-item .button {
  position: relative;
  z-index: 10;
  pointer-events: auto;
}

.widget-prices-cards-item .button:hover {
  background-color: var(--color-green);
  color: var(--color-dark);
  transform: none;
}

/* Fix Atropos blocking hover events */
.widget-prices .atropos {
  pointer-events: none;
}

.widget-prices .atropos-scale,
.widget-prices .atropos-rotate,
.widget-prices .atropos-inner {
  pointer-events: none;
}

.widget-prices-cards-item {
  pointer-events: auto;
}

.widget-prices-cards-item-title {
  font-size: 35px;
  font-weight: 600;
  line-height: 45px;
  color: var(--color-gray);
}

@media screen and (max-width: 450px) {
  .widget-prices-cards-item-title {
    font-size: 25px;
    line-height: 35px;
  }
}

.widget-prices-cards-item-price {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.widget-prices-cards-item-price-coast {
  font-size: 35px;
  font-weight: 600;
  line-height: 45px;
  color: var(--color-dark);
}

@media screen and (max-width: 450px) {
  .widget-prices-cards-item-price-coast {
    font-size: 25px;
    line-height: 35px;
  }
}

.widget-prices-cards-item-price-value {
  font-size: 25px;
  font-weight: 500;
  line-height: 35px;
  color: var(--color-gray);
}

@media screen and (max-width: 450px) {
  .widget-prices-cards-item-price-value {
    font-size: 16px;
    line-height: 20px;
  }
}

.widget-prices-cards-item-descr {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: var(--color-gray);
}

@media screen and (max-width: 450px) {
  .widget-prices-cards-item-descr {
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
  }
}

.widget-prices-cards-item-btn {
  display: inline-block;
  max-width: 360px;
  text-align: center;
  justify-content: center;
  margin-top: auto;
  flex-shrink: 0;
}

@media screen and (max-width: 650px) {
  .widget-prices-cards-item-btn {
    max-width: inherit;
  }
}

@media screen and (max-width: 480px) {
  .widget-prices-cards-item-btn {
    margin: 0;
  }
}

.widget-prices-cards-item-condition {
  display: flex;
  flex-direction: column;
  justify-content: left;
  gap: 15px;
}

.widget-prices-cards-item-condition-item {
  display: flex;
  height: 20px;
  flex-direction: row;
  align-items: start;
  gap: 15px;
}

.widget-prices-cards-item-condition-item-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--color-dark);
}

@media screen and (max-width: 450px) {
  .widget-prices-cards-item-condition-item-text {
    font-size: 12px;
    line-height: 16px;
  }
  
  .widget-prices-cards-item-condition-item {
    align-items: center;
  }
}

@media screen and (max-width: 450px) {
  .widget-prices-cards-item-condition {
    gap: 10px;
  }
  
  .widget-prices-cards-item {
    gap: 15px;
    padding: 15px;
  }
}

@media screen and (max-width: 450px) {
  .widget-prices-cards {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .widget-prices {
    padding: 50px 0 50px 0;
  }
  
  .widget-prices-cards {
    min-height: 400px;
  }
  
  .widget-prices-cards-item {
    min-height: 350px;
  }
}

@media screen and (max-width: 450px) {
  .widget-prices-cards {
    min-height: 350px;
  }
  
  .widget-prices-cards-item {
    min-height: 300px;
  }
}

.theme-dark .widget-prices {
  background-color: transparent;
}

.theme-dark .widget-prices-header-title {
  color: var(--color-white);
}

.theme-dark .widget-prices-cards-item {
  background: linear-gradient(140deg, #525252 0%, #bdbdbd 85%);
}

.theme-dark .widget-prices-cards-item-title {
  color: var(--color-white);
}

.theme-dark .widget-prices-cards-item-price-coast {
  color: var(--color-green-medium);
}

.theme-dark .widget-prices-cards-item-descr {
  color: var(--color-white);
}

.theme-dark .widget-prices-cards-item-price-value {
  color: var(--color-white);
}

.theme-dark .widget-prices-cards-item-condition-item-text {
  color: var(--color-white-gray);
}

.theme-dark .widget-prices-cards-item .button:hover {
  background-color: var(--color-green);
  color: var(--color-dark);
}

/* Widget About */
.widget-about {
  padding: var(--spacing-xxl) 0;
  background-color: var(--color-white);
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  text-align: center;
}

.about-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-green);
  margin-bottom: var(--spacing-md);
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media screen and (max-width: 480px) {
  .about-label {
    font-size: 14px;
  }
}

.about-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

@media screen and (max-width: 767px) {
  .about-title {
    font-size: 28px;
  }
}

@media screen and (max-width: 480px) {
  .about-title {
    font-size: 24px;
  }
}

.about-subtitle {
  font-size: 18px;
  color: var(--color-gray);
  margin-bottom: var(--spacing-xxl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

@media screen and (max-width: 480px) {
  .about-subtitle {
    font-size: 16px;
  }
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-xl);
}

@media screen and (max-width: 767px) {
  .about-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
  }
}

@media screen and (max-width: 480px) {
  .about-cards {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
}

.about-card {
  background-color: var(--color-white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  padding: var(--spacing-xl);
  text-align: center;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.about-icon {
  margin-bottom: var(--spacing-lg);
}

.about-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

@media screen and (max-width: 480px) {
  .about-icon img {
    width: 50px;
    height: 50px;
  }
}

.about-card-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: var(--spacing-md);
  line-height: 1.3;
}

@media screen and (max-width: 480px) {
  .about-card-title {
    font-size: 18px;
  }
}

.about-card-description {
  font-size: 16px;
  color: var(--color-gray);
  line-height: 1.6;
}

@media screen and (max-width: 480px) {
  .about-card-description {
    font-size: 14px;
  }
}

/* Widget Contact */
.widget-contact {
  padding: var(--spacing-xxl) 0;
  background-color: var(--color-white-gray);
}

.contact-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.contact-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-green);
  margin-bottom: var(--spacing-md);
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media screen and (max-width: 480px) {
  .contact-label {
    font-size: 14px;
  }
}

.contact-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: var(--spacing-xl);
  line-height: 1.2;
}

@media screen and (max-width: 767px) {
  .contact-title {
    font-size: 28px;
  }
}

@media screen and (max-width: 480px) {
  .contact-title {
    font-size: 24px;
  }
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xxl);
  text-align: left;
}

@media screen and (max-width: 767px) {
  .contact-info {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.contact-label-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-dark);
}

@media screen and (max-width: 480px) {
  .contact-label-text {
    font-size: 14px;
  }
}

.contact-value {
  font-size: 16px;
  color: var(--color-gray);
  line-height: 1.6;
}

@media screen and (max-width: 480px) {
  .contact-value {
    font-size: 14px;
  }
}

.contact-social {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.social-links {
  display: flex;
  gap: var(--spacing-md);
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-white);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.social-link img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.contact-form .form-group {
  margin-bottom: var(--spacing-lg);
}

.contact-form .form-group label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: var(--spacing-sm);
}

@media screen and (max-width: 480px) {
  .contact-form .form-group label {
    font-size: 14px;
  }
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  width: 100%;
  padding: var(--spacing-md);
  border: 2px solid var(--color-light-gray);
  border-radius: var(--border-radius-md);
  font-size: 16px;
  font-family: inherit;
  transition: border-color var(--transition-normal);
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  outline: none;
  border-color: var(--color-green);
}

@media screen and (max-width: 480px) {
  .contact-form .form-group input,
  .contact-form .form-group textarea {
    font-size: 14px;
    padding: var(--spacing-sm);
  }
}

.contact-form .form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form .button {
  width: 100%;
}

/* Widget Footer */
.widget-footer {
  padding: var(--spacing-xxl) 0 var(--spacing-lg);
  background-color: var(--color-dark);
  color: var(--color-white);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xxl);
}

@media screen and (max-width: 767px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    text-align: center;
  }
}

.footer-logo {
  margin-bottom: var(--spacing-lg);
}

.footer-logo img {
  height: 40px;
  width: auto;
}

.footer-description {
  font-size: 16px;
  color: var(--color-light-gray);
  line-height: 1.6;
  max-width: 400px;
}

@media screen and (max-width: 480px) {
  .footer-description {
    font-size: 14px;
  }
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
}

@media screen and (max-width: 767px) {
  .footer-links {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    text-align: center;
  }
}

.footer-column h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: var(--spacing-lg);
}

@media screen and (max-width: 480px) {
  .footer-column h4 {
    font-size: 16px;
  }
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: var(--spacing-sm);
}

.footer-column ul li a {
  font-size: 16px;
  color: var(--color-light-gray);
  transition: color var(--transition-normal);
}

.footer-column ul li a:hover {
  color: var(--color-green);
}

@media screen and (max-width: 480px) {
  .footer-column ul li a {
    font-size: 14px;
  }
}

.footer-social {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .footer-social {
    justify-content: center;
  }
}

.footer-subscribe {
  display: flex;
  gap: var(--spacing-sm);
}

@media screen and (max-width: 480px) {
  .footer-subscribe {
    flex-direction: column;
  }
}

.footer-subscribe input {
  flex: 1;
  padding: var(--spacing-sm) var(--spacing-md);
  border: 2px solid var(--color-gray);
  border-radius: var(--border-radius-md);
  background-color: var(--color-dark);
  color: var(--color-white);
  font-size: 16px;
  font-family: inherit;
}

.footer-subscribe input:focus {
  outline: none;
  border-color: var(--color-green);
}

.footer-subscribe input::placeholder {
  color: var(--color-light-gray);
}

@media screen and (max-width: 480px) {
  .footer-subscribe input {
    font-size: 14px;
  }
}

.footer-bottom {
  border-top: 1px solid var(--color-gray);
  padding-top: var(--spacing-lg);
  text-align: center;
}

.footer-copyright {
  font-size: 16px;
  color: var(--color-light-gray);
  margin: 0;
}

@media screen and (max-width: 480px) {
  .footer-copyright {
    font-size: 14px;
  }
}

/* Additional Theme Dark Styles */
.theme-dark .widget-faq {
  background-color: var(--color-dark);
}

.theme-dark .faq-title {
  color: var(--color-white);
}

.theme-dark .faq-card {
  background-color: var(--color-gray);
  border: 1px solid var(--color-light-gray);
}

.theme-dark .faq-question h3 {
  color: var(--color-white);
}

.theme-dark .faq-answer p {
  color: var(--color-light-gray);
}

.theme-dark .faq-message-card {
  background-color: var(--color-gray);
  border: 1px solid var(--color-green);
}

.theme-dark .faq-message-card h3 {
  color: var(--color-white);
}

.theme-dark .faq-message-card p {
  color: var(--color-light-gray);
}

.theme-dark .widget-solution {
  background-color: var(--color-dark);
}

.theme-dark .solution-title {
  color: var(--color-white);
}

.theme-dark .solution-subtitle {
  color: var(--color-light-gray);
}

.theme-dark .solution-card {
  background-color: var(--color-gray);
  border: 1px solid var(--color-light-gray);
}

.theme-dark .solution-card-title {
  color: var(--color-white);
}

.theme-dark .solution-card-description {
  color: var(--color-light-gray);
}

.theme-dark .widget-prices {
  background-color: transparent;
}

.theme-dark .prices-title {
  color: var(--color-white);
}

.theme-dark .prices-subtitle {
  color: var(--color-light-gray);
}

.theme-dark .price-card {
  background-color: var(--color-gray);
  border: 1px solid var(--color-light-gray);
}

.theme-dark .price-card.featured {
  border-color: var(--color-green);
}

.theme-dark .price-card-title {
  color: var(--color-white);
}

.theme-dark .price-card-description {
  color: var(--color-light-gray);
}

.theme-dark .price-card-conditions li {
  color: var(--color-light-gray);
}

.theme-dark .widget-about {
  background-color: var(--color-dark);
}

.theme-dark .about-title {
  color: var(--color-white);
}

.theme-dark .about-subtitle {
  color: var(--color-light-gray);
}

.theme-dark .about-card {
  background-color: var(--color-gray);
  border: 1px solid var(--color-light-gray);
}

.theme-dark .about-card-title {
  color: var(--color-white);
}

.theme-dark .about-card-description {
  color: var(--color-light-gray);
}

.theme-dark .widget-contact {
  background-color: var(--color-dark);
}

.theme-dark .contact-title {
  color: var(--color-white);
}

.theme-dark .contact-label-text {
  color: var(--color-white);
}

.theme-dark .contact-value {
  color: var(--color-light-gray);
}

.theme-dark .contact-form .form-group label {
  color: var(--color-white);
}

.theme-dark .contact-form .form-group input,
.theme-dark .contact-form .form-group textarea {
  background-color: var(--color-gray);
  border-color: var(--color-gray);
  color: var(--color-white);
}

.theme-dark .contact-form .form-group input:focus,
.theme-dark .contact-form .form-group textarea:focus {
  border-color: var(--color-green);
}

.theme-dark .contact-form .form-group input::placeholder,
.theme-dark .contact-form .form-group textarea::placeholder {
  color: var(--color-light-gray);
}

.theme-dark .social-link {
  background-color: var(--color-gray);
}

.theme-dark .social-link:hover {
  background-color: var(--color-green);
}

.theme-dark .widget-footer {
  background-color: var(--color-dark);
}

.theme-dark .footer-description {
  color: var(--color-light-gray);
}

.theme-dark .footer-column h4 {
  color: var(--color-white);
}

.theme-dark .footer-column ul li a {
  color: var(--color-light-gray);
}

.theme-dark .footer-column ul li a:hover {
  color: var(--color-green);
}

.theme-dark .footer-subscribe input {
  background-color: var(--color-gray);
  border-color: var(--color-gray);
  color: var(--color-white);
}

.theme-dark .footer-subscribe input:focus {
  border-color: var(--color-green);
}

.theme-dark .footer-subscribe input::placeholder {
  color: var(--color-light-gray);
}

.theme-dark .footer-copyright {
  color: var(--color-light-gray);
}

/* Preloader Styles */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

/* Hide main content while preloader is showing */
.app {
  opacity: 1;
  visibility: visible;
  transform: none;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
}

.app.loaded {
  opacity: 1;
  visibility: visible;
  transform: none;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.preloader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--color-gray);
  border-top: 4px solid var(--color-green);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Dark Theme Preloader */
.theme-dark .preloader {
  background-color: var(--color-dark);
}

.theme-dark .preloader-spinner {
  border-color: var(--color-light-gray);
  border-top-color: var(--color-green);
}

/* About Section Styles */
.widget-about {
  position: relative;
  width: 100%;
  max-width: 3000px;
  min-height: 50dvh;
  z-index: 0;
  transition: all 0.8s ease;
  border-radius: 35px;
  overflow: hidden;
  padding: 50px 30px 58px 30px;
  background: linear-gradient(180deg, #F5F5F5 0%, #bffaf3 100%);
}

.widget-about::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(145, 215, 205, 0.1) 20%,
      rgba(130, 205, 195, 0.2) 40%,
      rgba(110, 195, 185, 0.3) 50%,
      rgba(130, 205, 195, 0.2) 60%,
      rgba(145, 215, 205, 0.1) 80%,
      transparent 100%
  );
  transform: skewX(-25deg);
  animation: widget-shine 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.widget-about-content {
  position: relative;
  z-index: 2;
}

.widget-about-content-section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  max-width: 854px;
  gap: 30px;
  margin: 0 auto;
}

.widget-about-content-section-cards {
  width: 100%;
  max-width: 452px;
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.widget-about .atropos-container {
  width: 100%;
  max-width: 637px;
  perspective: 1000px;
  height: 100%;
}

.widget-about .atropos {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  transform-style: preserve-3d;
  transition: transform 0.15s ease;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}

.widget-about .atropos-inner {
  border-radius: 16px;
  height: 100%;
  display: flex;
}

.widget-about-content-section-cards-item {
  display: flex;
  width: 100%;
  max-width: 211px;
  flex-direction: column;
  justify-content: left;
  cursor: pointer;
  gap: 6px;
  padding: 15px;
  border-radius: 16px;
  background: var(--color-white-gray);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  height: 100%;
}

.widget-about-content-section-cards-item-head {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.widget-about-content-section-cards-item-head-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
  color: var(--color-dark);
}

.widget-about-content-section-cards-item-head-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.widget-about-content-section-cards-item-head-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.widget-about-content-section-cards-item-description {
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  color: var(--color-dark);
}

.widget-about-content-section-video {
  width: 100%;
}

.video-splash-container {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 282px;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  background: transparent;
  aspect-ratio: 16/9;
  transition: all 0.3s ease;
}

.video-poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  background: transparent;
}

.video-poster:hover {
  transform: scale(1.01);
}

.video-poster.hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.poster-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.video-player {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  transition: opacity 0.5s ease;
  border-radius: 12px;
  object-fit: cover;
}

.video-player.visible {
  opacity: 1;
}

.poster-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border-radius: 12px;
  background: transparent;
}

.poster-overlay:hover {
  transform: scale(1.02);
}

.poster-overlay:hover .play-button {
  transform: scale(1.15);
  background: var(--color-gray);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.poster-overlay:hover ~ .poster-image {
  filter: brightness(0.9);
}

.play-button {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-green);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  animation: pulse 2s infinite;
}

.play-button:hover {
  transform: scale(1.15);
  background: var(--color-gray);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
  animation: none;
}

.play-button:active {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.play-icon {
  width: 30px;
  height: 30px;
  fill: var(--color-white-gray);
  transition: fill 0.2s ease;
}

.play-button:hover .play-icon {
  fill: var(--color-white-gray);
}

.video-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  opacity: 0;
  z-index: 5;
  transition: opacity 0.5s ease;
}

.custom-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  gap: 10px;
  z-index: 20;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
}

.custom-controls.show {
  display: flex;
}

.custom-controls.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) scale(0.95);
}

.control-button {
  padding: 12px;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.control-button:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.25);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }
}

.widget-about-label {
  position: relative;
  display: block;
  text-align: center;

  width: 100%;
  max-width: 169px;
  z-index: 2;

  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 1px;

  border-radius: 50px;
  background-color: var(--color-white);
  color: var(--color-dark);

  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  padding: 13px 30px;
  margin: 0 auto;
}

.widget-about-header {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  width: 100%;
  max-width: 589px;
  margin: 0 auto;
  padding: 50px 0 30px 0;
  gap: 30px;
}

.widget-about-header-title {
  font-size: 70px;
  font-weight: 700;
  line-height: 80px;
  color: var(--color-dark);
}

.widget-about-header-subtitle {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: var(--color-gray);
}

/* Responsive styles for About Section */
@media screen and (max-width: 900px) {
  .widget-about-content-section {
    max-width: inherit;
    flex-direction: column;
  }
  
  .widget-about-content-section-cards {
    max-width: inherit;
  }
  
  .widget-about-content-section-cards-item {
    max-width: inherit;
  }
  
  .widget-about-content-section-video {
    order: -1;
  }
}

@media screen and (max-width: 600px) {
  .widget-about-content-section-cards {
    gap: 15px;
  }
}

@media screen and (max-width: 500px) {
  .widget-about-content-section-cards {
    grid-template-rows: repeat(1, 1fr);
    grid-template-columns: repeat(1, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .widget-about-label {
    font-size: 12px;
    padding: 5px 0;
  }
  
  .widget-about-header {
    max-width: 380px;
    gap: 15px;
    padding: 20px 0;
  }
  
  .widget-about-header-title {
    font-size: 35px;
    line-height: 45px;
  }
}

@media (max-width: 768px) {
  .video-splash-container {
    border-radius: 8px;
    max-width: 100%;
    max-height: 250px;
  }

  .poster-image {
    border-radius: 8px;
  }

  .poster-overlay {
    border-radius: 8px;
  }

  .play-button {
    width: 60px;
    height: 60px;
  }

  .play-icon {
    width: 24px;
    height: 24px;
  }

  .control-button {
    padding: 10px;
    font-size: 14px;
  }

  .custom-controls {
    bottom: 15px;
    padding: 6px;
  }
}

@media screen and (max-width: 645px) {
  .atropos-container {
    padding: 0;
  }
}

@media (max-width: 480px) {
  .video-splash-container {
    max-height: 200px;
  }

  .play-button {
    width: 50px;
    height: 50px;
  }

  .play-icon {
    width: 20px;
    height: 20px;
  }

  .custom-controls {
    bottom: 10px;
    gap: 8px;
  }

  .control-button {
    padding: 8px;
    font-size: 12px;
  }
}

/* Dark theme styles for About Section */
.theme-dark .widget-about {
  background: linear-gradient(180deg, #525252 0%, #d3d1d1 80%);
}

.theme-dark.widget-about::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.1) 25%,
      rgba(255, 255, 255, 0.3) 50%,
      rgba(255, 255, 255, 0.1) 75%,
      transparent 100%
  );
  transform: skewX(-25deg);
  animation: widget-shine 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.theme-dark .widget-about-header-title {
  color: var(--color-white);
}

.theme-dark .widget-about-header-subtitle {
  color: var(--color-white-gray);
}

.theme-dark .widget-about-content-section-cards-item {
  background: linear-gradient(140deg, #525252 0%, #bdbdbd 85%);
}

.theme-dark .widget-about-content-section-cards-item-head-title {
  color: var(--color-white);
}

.theme-dark .widget-about-content-section-cards-item-description {
  color: var(--extra-light-gray);
}

/* Atropos pointer-events fix for About Section */
.widget-about .atropos {
  pointer-events: none;
}

.widget-about .atropos-scale,
.widget-about .atropos-rotate,
.widget-about .atropos-inner {
  pointer-events: none;
}

.widget-about-content-section-cards-item {
  pointer-events: auto;
}

.widget-about-content-section-cards-item a {
  pointer-events: auto;
}

/* Contact Section Styles - Adapted for Native HTML Structure */
.contact {
  width: 100%;
  max-width: 3000px;
  min-height: 50dvh;
  z-index: 1;
  transition: all 0.8s ease;
  border-radius: 35px;
  padding: 80px 0;
}

.contact-content {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: center;
  gap: 80px;
}

/* Left Section - Contact Info */
.contact-content-left {
  display: flex;
  width: 100%;
  max-width: 417px;
  flex-direction: column;
  justify-content: left;
  gap: 30px;
}

.contact-content-left-header {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-content-left-header-label {
  display: flex;
  text-align: center;
  width: 100%;
  max-width: 196px;
  z-index: 2;

  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 1.5px;

  border-radius: 50px;
  background-color: var(--color-white);
  color: var(--color-dark);

  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  padding: 13px 40px;
}

.contact-content-left-header-title {
  font-size: 70px;
  font-weight: 600;
  line-height: 80px;
  color: var(--color-dark);
}

.contact-content-left-info {
  display: flex;
  text-align: left;
  flex-direction: column;
  gap: 15px;
}

.contact-content-left-info-item {
  display: flex;
  flex-direction: column;
  justify-content: left;
  gap: 15px;
}

.contact-content-left-info-item-label {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  color: var(--color-gray);
}

.contact-content-left-info-item-value {
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  color: var(--color-dark);
}

.contact-link {
  text-decoration: none;
  color: inherit;
}

/* Social Links - Left Side (Desktop) */
.contact-content-left-info-social {
  display: none;
  flex-direction: column;
  justify-content: left;
  gap: 15px;
}

.contact-content-left-info-social-label {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  color: var(--color-gray);
}

.contact-content-left-info-social-links {
  display: flex;
  width: 100%;
  max-width: 205px;
  flex-direction: row;
  justify-content: space-between;
  gap: 15px;
}

.contact-content-left-info-social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-content-left-info-social-links-item {
  padding: 10px;
  border-radius: 50%;
  background-color: var(--color-green);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-content-left-info-social-links-item img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}

.contact-content-left-info-social-links-item:hover {
  background-color: var(--color-dark);
}

/* Right Section - Contact Form */
.contact-content-right {
  display: flex;
  width: 100%;
  max-width: 637px;
  flex-direction: column;
  gap: 15px;
}

.contact-content-right-horizontal {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 21px;
}

.contact-content-right-horizontal-name {
  display: flex;
  flex-direction: column;
  justify-content: left;
  gap: 15px;
}

.contact-content-right-btn {
  margin-top: 15px;
}

/* Social Links - Right Side (Mobile/Tablet) */
.contact-content-right-info-social {
  display: none;
  flex-direction: column;
  text-align: left;
  justify-content: left;
  gap: 15px;
}

.contact-content-right-info-social-label {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  color: var(--color-gray);
}

.contact-content-right-info-social-links {
  display: flex;
  width: 100%;
  max-width: 205px;
  flex-direction: row;
  justify-content: space-between;
  gap: 15px;
}

.contact-content-right-info-social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-content-right-info-social-links-item {
  padding: 10px;
  border-radius: 50%;
  background-color: var(--color-green);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-content-right-info-social-links-item img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}

.contact-content-right-info-social-links-item:hover {
  background-color: var(--color-dark);
}

/* Contact Form Styles - Angular Input Custom Component */
.contact-content-right .form-group {
  display: block;
}

.contact-content-right .form-group-label {
  display: block;
  text-align: left;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: var(--color-gray);
}

.contact-content-right .form-control {
  display: block;
  width: 100%;
  min-width: 308px;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: var(--light-gray);
  background-color: var(--extra-light-gray);
  background-clip: padding-box;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: border-color 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
  border: none;
  outline: none;
  font-family: var(--font-family-default);
}

.contact-content-right .form-control:focus {
  color: var(--light-gray);
  background-color: var(--extra-light-gray);
  outline: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-content-right .form-control::placeholder {
  color: var(--color-gray);
}

.contact-content-right .form-control::-webkit-input-placeholder {
  color: var(--color-gray);
}

.contact-content-right .form-control:-ms-input-placeholder {
  color: var(--light-gray);
}

.contact-content-right .form-control::-moz-placeholder {
  color: var(--light-gray);
}

.contact-content-right textarea.form-control {
  font-family: var(--font-family-default);
  resize: none;
  height: 292px;
}

/* Contact Button - Angular Button Component */
.contact-content-right .button {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  padding: 18px 51px;
  color: var(--color-white);
  background-color: var(--color-dark);
  cursor: pointer;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  border-radius: 50px;
  transition: background-color 0.5s ease-in, color 0.2s ease-in;
  border: none;
  width: 100%;
  max-width: inherit;
}

.contact-content-right .button:hover {
  background-color: var(--color-green);
  color: var(--color-dark);
}

/* Responsive styles for Contact Section */
@media screen and (max-width: 1200px) {
  .contact-content {
    width: 100%;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
  }
  
  .contact-content-left {
    max-width: inherit;
    align-items: center;
    justify-content: left;
  }
  
  .contact-content-left-header-label {
    margin: 0 auto;
  }

  .contact-content-right {
    justify-content: center;
    margin: 0 auto;
  }
}

/* Show social links on left side for desktop */
@media screen and (min-width: 1200px) {
  .contact-content-left-info-social {
    display: flex;
  }
  
  .contact-content-right-info-social {
    display: none;
  }
}

/* Show social links on right side for mobile/tablet */
@media screen and (max-width: 1199px) {
  .contact-content-right-info-social {
    display: flex;
  }
}

/* Mobile styles */
@media screen and (max-width: 768px) {
  .contact {
    padding: 50px 0;
  }
  
  .contact-content-left-header-label {
    max-width: 125px;
    font-size: 12px;
    letter-spacing: 1.8px;
    padding: 5px 15px;
  }
  
  .contact-content-left-header-title {
    font-size: 35px;
    line-height: 45px;
  }
  
  .contact-content-right-horizontal {
    flex-direction: column;
  }
  
  .contact-content-right .button {
    font-size: 16px;
    padding: 7px 51px;
  }
}

@media screen and (max-width: 400px) {
  .contact-content-right .form-control {
    min-width: 222px;
  }
}

/* Dark theme styles for Contact Section - Adapted from Angular */
.theme-dark .contact-content-left-header-title {
  color: var(--color-white);
}

.theme-dark .contact-content-left-info-item-value {
  color: var(--color-dark);
}

.theme-dark .contact-content-left-info-item-label {
  color: var(--color-gray);
}

.theme-dark .contact-content-left-info-social-label {
  color: var(--color-gray);
}

.theme-dark .contact-content-right-info-social-label {
  color: var(--color-light-gray);
}

/* Footer Section Styles */
.widget-footer {
  width: 100%;
  max-width: 3000px;
  min-height: 15dvh;
  z-index: 0;
  transition: all 0.8s ease;
  border-radius: 35px;
  overflow: hidden;
  padding: 50px 30px 50px 30px;
  background: linear-gradient(180deg, #F5F5F5 0%, #bffaf3 100%);
}

.widget-footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  width: 100%;
  max-width: 1296px;
  margin: 0 auto 60px auto;
}

.widget-footer-content-description {
  display: flex;
  flex-direction: column;
  justify-content: left;
  gap: 30px;
}

.widget-footer-content-description-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
  color: var(--color-gray);
}

.widget-footer-content-description-logo {
  cursor: pointer;
}

.widget-footer-content-links {
  display: flex;
  flex-direction: column;
  justify-content: left;
  gap: 30px;
}

.widget-footer-content-links-title {
  font-size: 25px;
  font-weight: 700;
  line-height: 30px;
  color: var(--color-dark);
}

.widget-footer-content-links-inner {
  display: flex;
  flex-direction: column;
  justify-content: left;
  gap: 15px;
}

.widget-footer-content-links-inner-item {
  font-size: 18px;
  font-weight: 600;
  line-height: 25px;
  color: var(--color-gray);
  cursor: pointer;
  transition: color 0.5s ease;
}

.widget-footer-content-links-inner-item:hover {
  color: var(--color-green);
}

.widget-footer-content-follow {
  display: flex;
  flex-direction: column;
  justify-content: left;
  gap: 30px;
}

.widget-footer-content-follow-title {
  font-size: 25px;
  font-weight: 700;
  line-height: 30px;
  color: var(--color-dark);
}

.widget-footer-content-follow-inner {
  display: flex;
  flex-direction: column;
  justify-content: left;
  gap: 15px;
}

.widget-footer-content-follow-inner-item {
  font-size: 18px;
  font-weight: 600;
  line-height: 25px;
  color: var(--color-gray);
  cursor: pointer;
  transition: color 0.5s ease;
  text-decoration: none;
}

.widget-footer-content-follow-inner-item:hover {
  color: var(--color-green);
}

.widget-footer-content-subscribe {
  display: flex;
  width: 100%;
  max-width: 252px;
  flex-direction: column;
  justify-content: left;
  gap: 30px;
}

/* Responsive styles for subscribe section */

@media screen and (max-width: 600px) {
  .widget-footer-content-follow {
    max-width: 236px;
  }

  .widget-footer-content-follow-inner {
    max-width: 236px;
  }

  .widget-footer-content-follow-inner-item {
    font-size: 16px
  }

  .widget-footer-content-subscribe {
    max-width: 220px;
    gap: 20px;
  }
}

.widget-footer-content-subscribe-title {
  font-size: 25px;
  font-weight: 700;
  line-height: 30px;
  color: var(--color-dark);
}

/* Angular Input-Button Component Styles */
.input-button {
  width: 100%;
}

.input-button__wrapper {
  position: relative;
  display: flex;
  height: 49px;
  align-items: center;
  background: var(--color-white);
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  padding: 0 7px 0 15px;
}

.input-button__input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 14px;
  color: #606266;
  min-width: 0;
}

.input-button__input:focus {
  color: var(--color-gray);
  outline: 0;
}

.input-button__input::placeholder {
  color: var(--color-gray);
}

.input-button__input::-webkit-input-placeholder {
  color: var(--color-gray);
}

.input-button__input:-ms-input-placeholder {
  color: var(--light-gray);
}

.input-button__input::-moz-placeholder {
  color: var(--light-gray);
}

.input-button__button {
  display: flex;
  height: 35px;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  border: none;
  border-radius: 8px;
  background: var(--color-green);
  color: var(--color-white);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.input-button__button:focus {
  outline: none;
}

.input-button__button:hover:not(:disabled) {
  background: var(--color-dark);
}

.input-button__button:active:not(:disabled) {
  background: var(--color-gray);
}

/* Responsive styles for input-button */
@media screen and (max-width: 600px) {
  .input-button__wrapper {
    height: 45px;
    padding: 0 5px 0 12px;
  }
  
  .input-button__input {
    font-size: 13px;
  }
  
  .input-button__button {
    height: 32px;
    padding: 0 10px;
    font-size: 11px;
  }
}

.widget-footer-rights {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  max-width: 1296px;
  margin: 0 auto;
}

.widget-footer-rights-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}

.widget-footer-rights-content-text {
  font-size: 18px;
  font-weight: 600;
  line-height: 25px;
  color: var(--color-gray);
}

.widget-footer-rights-text {
  font-size: 18px;
  font-weight: 600;
  line-height: 25px;
  color: var(--color-gray);
}

/* Responsive styles for Footer Section */
@media screen and (max-width: 768px) {
  .widget-footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 0 auto 30px auto;
  }
}

@media screen and (min-width: 769px) and (max-width: 1149px) {
  .widget-footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 1150px) {
  .widget-footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .widget-footer {
    padding: 50px 30px 50px 30px;
  }
  
  .widget-footer-rights {
    max-width: inherit;
    flex-direction: column;
  }
  
  .widget-footer-rights-content {
    justify-content: center;
  }
  
  .widget-footer-rights-text {
    text-align: center;
  }
}

/* Dark theme styles for Footer Section */
.theme-dark .widget-footer {
  background: linear-gradient(180deg, #525252 0%, #d3d1d1 80%);
}

.theme-dark .widget-footer-content-description-text {
  color: var(--color-light-gray);
}

.theme-dark .widget-footer-content-links-title {
  color: var(--color-light-gray);
}

.theme-dark .widget-footer-content-links-inner-item {
  color: var(--pink-gray-light);
}

.theme-dark .widget-footer-content-links-inner-item:hover {
  color: var(--color-green);
}

.theme-dark .widget-footer-content-follow-title {
  color: var(--color-light-gray);
}

.theme-dark .widget-footer-content-follow-inner-item {
  color: var(--pink-gray-light);
}

.theme-dark .widget-footer-content-follow-inner-item:hover {
  color: var(--color-green);
}

.theme-dark .widget-footer-content-subscribe-title {
  color: var(--color-light-gray);
}
