:root {
  --primary-teal: #078493;
  --primary-teal-dark: #056a76;
  --primary-teal-light: #d4eff2;
  --accent-gold: #D4A94A;
  --accent-gold-light: #f5e6c0;
  --text-dark: #1C1F22;
  --text-muted: #7A6A55;
  --bg-cream: #F5F0E8;
  --bg-white: #ffffff;
  --border-color: rgba(7, 132, 147, 0.18);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Cairo', sans-serif;
  background-color: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary-teal);
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

.brand-logo {
  width: auto;
  height: 65px;
  object-fit: contain;
  margin-left: 10px;
}



.hero-home {
  background: linear-gradient(135deg, #faf8f4 0%, #F5F0E8 50%, #ede8df 100%);
  padding: 80px 20px 60px;
  position: relative;
  overflow: hidden;
}

.hero-home::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(7, 132, 147, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  z-index: 2;
}

.eyebrow {
  display: inline-block;
  background: var(--accent-gold-light);
  color: #b45309;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(180, 83, 9, 0.15);
}

.hero-text h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.hero-text h1 .highlight {
  color: var(--primary-teal);
  position: relative;
  display: inline-block;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-teal);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(7, 132, 147, 0.25);
  border: none;
  cursor: pointer;
}

.primary-btn:hover {
  background: var(--primary-teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(7, 132, 147, 0.35);
}

.primary-btn.large {
  padding: 16px 40px;
  font-size: 1.1rem;
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: var(--primary-teal);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-teal);
  cursor: pointer;
}

.secondary-btn:hover {
  background: var(--primary-teal-light);
  transform: translateY(-2px);
}

.secondary-btn.large {
  padding: 16px 40px;
  font-size: 1.1rem;
}

.trust-badges-hero {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.badge-item svg {
  color: var(--primary-teal);
  flex-shrink: 0;
}

.hero-image {
  position: relative;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: auto;
  max-width: 600px;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.section-head {
  margin-bottom: 50px;
}

.section-head.center {
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.section-head p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

.value-section {
  padding: 80px 20px;
}

.grid {
  display: grid;
  gap: 30px;
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.value-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--primary-teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon svg {
  color: var(--primary-teal);
}

.value-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.value-card p {
  color: var(--text-muted);
  line-height: 1.7;
}

.categories-section {
  padding: 80px 20px;
  background: white;
}

.category-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  background: var(--bg-cream);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.category-card:hover {
  box-shadow: var(--shadow-md);
}

.category-image {
  overflow: hidden;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover .category-image img {
  transform: scale(1.05);
}

.category-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.category-content h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.category-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

.text-link {
  color: var(--primary-teal);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.text-link:hover {
  color: var(--primary-teal-dark);
  gap: 8px;
}

.featured-offer-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-dark) 100%);
  position: relative;
  overflow: hidden;
}

.featured-offer-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.offer-card-home {
  background: white;
  border-radius: 24px;
  padding: 50px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.offer-badge {
  position: absolute;
  top: -15px;
  right: 50px;
  background: var(--accent-gold);
  color: white;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(212, 169, 74, 0.4);
}

.offer-content-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.offer-image img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.offer-text h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.offer-description {
  color: var(--text-muted);
  margin-bottom: 25px;
  line-height: 1.7;
}

.offer-price {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  padding: 20px 0;
  border-top: 2px solid var(--bg-cream);
  border-bottom: 2px solid var(--bg-cream);
}

.price-now {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.price-now .amount {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary-teal);
}

.price-now .currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-muted);
}

.price-old {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.price-old span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.price-old del {
  font-size: 1.2rem;
  color: #999;
}

.offer-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin-bottom: 30px;
}

.feature-item {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
}

.reviews-preview-section {
  padding: 80px 20px;
}

.review-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.review-stars {
  color: #fbbf24;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.review-text {
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.review-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.review-author strong {
  display: block;
  color: var(--text-dark);
  font-weight: 700;
}

.review-author span {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.section-cta {
  text-align: center;
  margin-top: 40px;
}

.blog-preview-section {
  padding: 80px 20px;
  background: white;
}

.blog-card {
  background: var(--bg-cream);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.blog-image {
  overflow: hidden;
  height: 200px;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-content {
  padding: 25px;
}

.blog-category {
  display: inline-block;
  background: var(--primary-teal-light);
  color: var(--primary-teal);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.blog-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
  line-height: 1.4;
}

.blog-content p {
  color: var(--text-muted);
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 0.95rem;
}

.faq-preview-section {
  padding: 80px 20px;
  background: var(--bg-cream);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item-home {
  background: white;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: none;
  border: none;
  text-align: right;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Cairo', sans-serif;
}

.faq-question:hover {
  background: var(--bg-cream);
}

.faq-icon {
  color: var(--primary-teal);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-question[aria-expanded="true"] + .faq-answer {
  max-height: 500px;
  padding: 0 25px 20px;
}

.faq-answer p {
  color: var(--text-muted);
  line-height: 1.7;
}

.final-cta-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #faf8f4 0%, #F5F0E8 100%);
  text-align: center;
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.cta-content p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.footer-brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal.delay-1 {
  transition-delay: 0.2s;
}

.reveal.delay-2 {
  transition-delay: 0.4s;
}

.reveal.delay-3 {
  transition-delay: 0.6s;
}

@media (max-width: 768px) {


  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-text {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .trust-badges-hero {
    justify-content: center;
  }

  .hero-image {
    order: -1;
  }

  .category-card {
    grid-template-columns: 1fr;
  }

  .category-image {
    height: 250px;
  }

  .offer-content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .offer-badge {
    right: 20px;
  }

  .grid.three,
  .grid.two {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .offer-card-home {
    padding: 30px 20px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 480px) {
  .primary-btn,
  .secondary-btn {
    width: 100%;
    text-align: center;
  }

  .offer-price {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
