/* Base Styles */
:root {
  --primary: #42B4AE;
  --primary-light: rgba(66, 180, 174, 0.1);
  --primary-dark: #389D98;
  --secondary: #FF7D54;
  --text: #333333;
  --text-light: #666666;
  --background: #FFFFFF;
  --background-light: #effefb;
  --border: #E5E7EB;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  --radius: 8px;
  --radius-full: 9999px;

}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  position: relative;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    min-height: 100%; /* make sure it is at least as tall as the viewport */
    position: relative;
}

body {
    font-family: 'Heebo', 'Rubik', sans-serif;
    color: var(--text);
    line-height: 1.5;
    background-color: var(--background);
    direction: rtl;
    text-align: right;
    height: 100%; /* force the BODY element to match the height of the HTML element */
}


#loading-container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    z-index: 1001;
    background: #42b4ae8c;
}


.centered-div {
    position: fixed; 
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
    background: #f0f0f0;
    padding: 40px;
    border-radius: 8px;
}


.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

/* Buttons */
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  color: white;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  transition: background-color 0.3s;
}

.primary-button:hover {
  background-color: var(--primary-dark);
}

.primary-button i {
  margin-right: 8px;
}

.secondary-button {
  display: inline-block;
  background-color: transparent;
  color: var(--primary);
  font-weight: 600;
  padding: 10px 22px;
  border: 2px solid var(--primary-light);
  border-radius: var(--radius-full);
  transition: border-color 0.3s;
}

.secondary-button:hover {
  border-color: var(--primary);
}

/* Header */
.sticky-header {
  position: sticky;
  top: 0;
  background-color: white;
  box-shadow: var(--shadow);
  z-index: 1000;
  padding: 12px 0;
}

.sticky-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 56px;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
}

.main-nav a {
  font-weight: 500;
  transition: color 0.3s;
}

.main-nav a:hover {
  color: var(--primary);
}

.cta-button {
  background-color: var(--primary);
  color: white;
  font-weight: 600;
  padding: 8px 24px;
  border-radius: var(--radius-full);
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: var(--primary-dark);
}

.mobile-menu-button {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
}

.mobile-menu-button span {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--text);
  transition: all 0.3s;
}

.mobile-menu-button span:first-child {
  top: 0;
}

.mobile-menu-button span:nth-child(2) {
  top: 9px;
}

.mobile-menu-button span:last-child {
  bottom: 0;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(to bottom right, #E6F7F6, #EAF7F9, #E6F7F6);
  padding: 60px 0;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 48px;
}

.hero-text {
  flex: 1;
}

.badge {
  display: inline-block;
  background-color: var(--primary-light);
  color: var(--primary);
  font-weight: 500;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.hero-text h1 {
  margin-bottom: 24px;
}

.hero-text h1 span {
  color: var(--primary);
}

.hero-text p {
  color: var(--text-light);
  font-size: 1.125rem;
  margin-bottom: 32px;
  max-width: 500px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-item i {
  color: var(--primary);
}

.hero-image {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
}

.image-glow {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background-color: rgba(66, 180, 174, 0.2);
  filter: blur(60px);
  opacity: 0.3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.hero-image img {
  position: relative;
  z-index: 1;
  max-height: 500px;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15));
}

.discount-badge {
  position: absolute;
  top: 40px;
  right: -20px;
  width: 96px;
  height: 96px;
  background-color: var(--secondary);
  color: white;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(-12deg);
  box-shadow: var(--shadow);
  z-index: 2;
}

.discount-badge div:first-child {
  font-size: 0.875rem;
}

.discount-badge div:last-child {
  font-size: 1.5rem;
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
}

/* Problem Section */
.problem-section {
  padding: 40px 0;
  background-color: var(--background);
}

.problem-grid {
  display: grid;
  flex-wrap: wrap;
	gap:30px;
	    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.problem-card {
  box-sizing:border-box;
  background-color: #effefb;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s;
	
}

@media (max-width: 768px) {
	.problem-card {width: calc(100%); padding:20px; gap:10px; display: flex;}
	.problem-card .problem-icon{width: 48px; height: 48px;}
	.problem-card .problem-icon i{font-size:20px;}
	.problem-card h3{text-align: start; margin-bottom: 10px;}
	.problem-card p{font-size:15px; text-align: start; line-height: 1.2;margin-bottom: 0px;}
}
.problem-card:hover {
  transform: translateY(-5px);
}

.problem-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.problem-icon i {
  font-size: 30px;
}

/* Benefits Section */
.benefits-section {
  padding: 80px 0;
  background-color: var(--background-light);
}

.benefits-grid {
  display: flex;
	justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  flex-wrap: wrap;
}

.benefit-card {
  width:calc(25% - 23px);
  background-color: white;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
@media (max-width: 768px) {
	.benefit-card {width:calc(100%);}
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.benefit-icon i {
  font-size: 24px;
}

/* Difference Section */
.difference-section {
  padding: 80px 0;
  background-color: white;
}

.difference-grid {
  display: flex;
  flex-wrap: wrap;
	gap:10px;
	justify-content: center;
}

.difference-item {
	width: calc(25% - 10px);
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--primary-light);
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
@media (max-width: 768px) {
	.difference-item {
	width: calc(100% - 10px);
	}
	
}

.difference-item:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background-color: var(--background-light);
}

.testimonials-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 20px 0;
  scrollbar-width: none; /* Firefox */
}

.testimonials-slider::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.testimonial-card {
  background-color: white;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 300px;
  flex: 1;
}

.testimonial-rating {
  color: gold;
  font-size: 20px;
  margin-bottom: 15px;
}

.testimonial-text {
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author h4 {
  margin-bottom: 0;
}

.testimonial-author p {
  margin-bottom: 0;
  font-size: 14px;
  color: var(--text-light);
}

/* Pricing Section */
.pricing-section {
  padding: 80px 0;
  background-color: white;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.pricing-card {
  background-color: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--secondary);
  color: white;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 0 var(--radius) 0 var(--radius);
}

.pricing-card h3 {
  text-align: center;
  padding: 25px 0;
  margin-bottom: 0;
  background-color: var(--primary-light);
  color: var(--primary);
}

.pricing-image {
  padding: 20px;
  background-color: white;
  display: flex;
  justify-content: center;
}

.pricing-image img {
  max-height: 200px;
}

.pricing-price {
  text-align: center;
  padding: 20px;
  background-color: var(--background-light);
}

.old-price {
  text-decoration: line-through;
  color: var(--text-light);
  font-size: 1.25rem;
  margin-right: 10px;
}

.current-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.save {
  display: block;
  color: var(--secondary);
  font-weight: 600;
  margin-top: 5px;
  font-size: 0.875rem;
}

.pricing-features {
  list-style: none;
  padding: 20px;
  margin: 0;
}

.pricing-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  padding-right: 25px;
}

    .pricing-features li.helper {
        border-bottom: none;
    }

.pricing-features li:before {
  content: '✓';
  color: var(--primary);
  position: absolute;
  right: 0;
}

    .pricing-features li.helper:before {
        content: ' ';
        color: var(--primary);
        position: absolute;
        right: 0;
    }

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-button {
  display: block;
  background-color: var(--primary);
  color: white;
  text-align: center;
  padding: 15px 0;
  font-weight: 600;
  transition: background-color 0.3s;
}

.pricing-button:hover {
  background-color: var(--primary-dark);
}

/* Video Section */
.video-section {
  padding: 80px 0;
  background: linear-gradient(to bottom right, #E6F7F6, #FFFFFF, #E6F7F6);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 32px;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.info-box {
  background-color: white;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(66, 180, 174, 0.1);
}

.info-box h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background-color: var(--background-light);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: white;
  border-radius: var(--radius);
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  margin-bottom: 0;
  font-size: 1.125rem;
}

.faq-toggle {
  font-size: 24px;
  color: var(--primary);
  transition: transform 0.3s;
}

.faq-answer {
  padding: 0 20px 20px;
  display: none;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  display: block;
}

/* Sticky Order */
.sticky-order {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
  z-index: 999;
}

.sticky-order .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.free-shipping {
  font-weight: 700;
  color: var(--secondary);
}

.order-button {
  background-color: var(--primary);
  color: white;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  transition: background-color 0.3s;
}

.order-button:hover {
  background-color: var(--primary-dark);
}

/* Footer */
.footer {
  background-color: #1A1A1A;
  color: white;
  padding: 60px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 15px;
}

.footer-logo p {
  color: #AAAAAA;
}

.footer-links h4, .footer-contact h4 {
  color: white;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #AAAAAA;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact p {
  color: #AAAAAA;
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #333333;
  color: white;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.social-icons a:hover {
  background-color: var(--primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #333333;
  padding: 20px 0;
}

.footer-bottom p {
  color: #AAAAAA;
  margin-bottom: 0;
}

.footer-policies {
  display: flex;
  gap: 20px;
}

.footer-policies a {
  color: #AAAAAA;
  transition: color 0.3s;
}

.footer-policies a:hover {
  color: var(--primary);
}

/* Exit Popup */
.exit-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.exit-popup.show {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  background-color: white;
  border-radius: var(--radius);
  padding: 40px;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.close-button {
  position: absolute;
  top: 16px;
  left: 16px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-light);
}

.popup-content h2 {
  color: var(--primary);
  text-align: center;
  margin-bottom: 16px;
}

.popup-content p {
  text-align: center;
  margin-bottom: 24px;
}

.popup-form .form-group {
  margin-bottom: 20px;
}

.popup-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.popup-form input {
  width: 100%;
  padding: 12px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 16px;
}

.popup-button {
  width: 100%;
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 12px;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.popup-button:hover {
  background-color: var(--primary-dark);
}

/* Responsive Styles */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero-content {
    flex-direction: column;
	gap:0;
  }
  
  .hero-text {
    order: 1;
  }
  
  .hero-section{
	  padding:20px 0px;
	}
	
  .hero-image {
    order: 0;
  }
  
  .main-nav {
    display: none;
  }
  
  .cta-button {
    display: none;
  }
  
  .mobile-menu-button {
    display: block;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .discount-badge {
    width: 80px;
    height: 80px;
    top: 20px;
    right: -10px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
  }
}