/* =============================================
   Galgalim Mistovevim — Website Styles
   RTL Hebrew Website
   ============================================= */

/* CSS Variables */
:root {
  --purple: #7B5EA7;
  --purple-dark: #4A3670;
  --purple-light: #9B7EC0;
  --light-blue: #A8D4E6;
  --mauve: #B8A0C8;
  --gold: #F5C842;
  --teal: #5AAFA5;
  --orange: #E8943A;
  --white: #FFFFFF;
  --dark-text: #2D2D2D;
  --light-bg: #F0EDF5;
  --gray-text: #666666;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
}

/* Reset & Base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Heebo', 'Assistant', sans-serif;
  color: var(--dark-text);
  direction: rtl;
  text-align: right;
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  line-height: 1.3;
}

h1 {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
}

h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark-text);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-text);
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
}

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

section {
  padding: 5rem 0;
}

/* =============================================
   Navigation
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.12);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--purple);
}

.nav-logo svg {
  width: 40px;
  height: 40px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark-text);
  position: relative;
  padding: 0.3rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--purple);
  transition: var(--transition);
}

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

.nav-cta {
  background: var(--gold) !important;
  color: var(--dark-text) !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: 50px;
  font-weight: 700 !important;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-block;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(245, 200, 66, 0.4);
}

/* Mobile menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--dark-text);
  border-radius: 3px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* =============================================
   Hero Section
   ============================================= */
.hero {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: 70px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 10a4 4 0 0 1 4 4v2.26a10 10 0 0 1 4.9 2.83l1.96-1.13a4 4 0 0 1 5.46 1.46 4 4 0 0 1-1.46 5.47l-1.96 1.13A10 10 0 0 1 44 30a10 10 0 0 1-1.1 4.02l1.96 1.13a4 4 0 0 1-2 7.46 4 4 0 0 1-2-0.53l-1.96-1.13A10 10 0 0 1 34 43.78V46a4 4 0 0 1-8 0v-2.22a10 10 0 0 1-4.9-2.83l-1.96 1.13a4 4 0 0 1-5.46-1.46 4 4 0 0 1 1.46-5.47l1.96-1.13A10 10 0 0 1 16 30a10 10 0 0 1 1.1-4.02l-1.96-1.13a4 4 0 0 1 2-7.46 4 4 0 0 1 2 .53l1.96 1.13A10 10 0 0 1 26 16.22V14a4 4 0 0 1 4-4zm0 14a6 6 0 1 0 0 12 6 6 0 0 0 0-12z' fill='%23ffffff' fill-opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  color: var(--white);
}

.hero-text h1 {
  margin-bottom: 1.2rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.hero-text .subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-badge {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--dark-text);
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(245, 200, 66, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  border: 2px solid rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

.trust-indicators {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.9;
  color: var(--white);
}

.trust-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 480px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.hero-image img:hover {
  transform: scale(1.02);
}

/* =============================================
   About Section
   ============================================= */
#about {
  background: var(--white);
  position: relative;
}

#about .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(123, 94, 167, 0.08);
}

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

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.2rem;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 35px;
  height: 35px;
  color: var(--purple);
}

.feature-card h3 {
  color: var(--purple);
  margin-bottom: 0.8rem;
  font-size: 1.15rem;
}

.feature-card p {
  color: var(--gray-text);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* =============================================
   How to Play Section
   ============================================= */
#how-to-play {
  background: var(--light-bg);
}

#how-to-play .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.how-to-play-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.game-board-image img {
  border-radius: 16px;
  box-shadow: var(--shadow);
  width: 100%;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  background: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.step-item:hover {
  transform: translateX(-5px);
  box-shadow: var(--shadow);
}

.step-number {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  background: var(--purple);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.step-item.words .step-number { background: var(--light-blue); color: var(--dark-text); }
.step-item.task .step-number { background: var(--gold); color: var(--dark-text); }
.step-item.surprise .step-number { background: var(--mauve); }
.step-item.winner .step-number { background: var(--teal); }

.step-content h3 {
  margin-bottom: 0.3rem;
  font-size: 1.1rem;
}

.step-content p {
  color: var(--gray-text);
  font-size: 0.95rem;
}

/* =============================================
   Audiences Section
   ============================================= */
#audiences {
  background: var(--white);
}

#audiences .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.audience-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.audience-tab {
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  border: 2px solid var(--purple);
  background: transparent;
  color: var(--purple);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Heebo', sans-serif;
}

.audience-tab:hover,
.audience-tab.active {
  background: var(--purple);
  color: var(--white);
}

.audience-panels {
  position: relative;
}

.audience-panel {
  display: none;
  background: var(--light-bg);
  border-radius: 16px;
  padding: 3rem;
  animation: fadeIn 0.3s ease;
}

.audience-panel.active {
  display: flex;
  gap: 2rem;
  align-items: center;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.audience-panel-text {
  flex: 1;
}

.audience-panel-text h3 {
  color: var(--purple);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.audience-panel-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.audience-panel-image {
  flex: 0 0 280px;
}

.audience-panel-image img {
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.audience-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--purple);
  color: var(--white);
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}

.audience-cta:hover {
  background: var(--purple-dark);
  transform: translateY(-2px);
}

/* =============================================
   Creator Section
   ============================================= */
#creator {
  background: linear-gradient(135deg, var(--light-bg) 0%, #e8e0f0 100%);
  position: relative;
  overflow: hidden;
}

#creator::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 10a4 4 0 0 1 4 4v2.26a10 10 0 0 1 4.9 2.83l1.96-1.13a4 4 0 0 1 5.46 1.46 4 4 0 0 1-1.46 5.47l-1.96 1.13A10 10 0 0 1 44 30a10 10 0 0 1-1.1 4.02l1.96 1.13a4 4 0 0 1-2 7.46 4 4 0 0 1-2-0.53l-1.96-1.13A10 10 0 0 1 34 43.78V46a4 4 0 0 1-8 0v-2.22a10 10 0 0 1-4.9-2.83l-1.96 1.13a4 4 0 0 1-5.46-1.46 4 4 0 0 1 1.46-5.47l1.96-1.13A10 10 0 0 1 16 30a10 10 0 0 1 1.1-4.02l-1.96-1.13a4 4 0 0 1 2-7.46 4 4 0 0 1 2 .53l1.96 1.13A10 10 0 0 1 26 16.22V14a4 4 0 0 1 4-4zm0 14a6 6 0 1 0 0 12 6 6 0 0 0 0-12z' fill='%237B5EA7' fill-opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

.creator-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.creator-photo {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  border: 5px solid var(--white);
}

.creator-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.creator-info h2 {
  margin-bottom: 0.3rem;
}

.creator-title {
  color: var(--purple);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.creator-bio {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--dark-text);
}

.creator-credentials {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  color: var(--purple);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* =============================================
   Testimonials Section
   ============================================= */
#testimonials {
  background: var(--white);
}

#testimonials .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
  border: 1px solid rgba(123, 94, 167, 0.08);
  transition: var(--transition);
}

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

.testimonial-quote {
  color: var(--purple);
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 0.5rem;
  opacity: 0.3;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--dark-text);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.testimonial-name {
  font-weight: 600;
  color: var(--dark-text);
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--gray-text);
}

.testimonial-stars {
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.testimonials-cta {
  text-align: center;
  margin-top: 3rem;
}

.testimonials-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--purple);
  font-weight: 600;
  font-size: 1.05rem;
}

.testimonials-cta a:hover {
  color: var(--purple-dark);
}

/* =============================================
   Order Section
   ============================================= */
#order {
  background: linear-gradient(135deg, #FFF8E1 0%, #FFF3CD 50%, #FFEAA7 100%);
  position: relative;
}

#order .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

#order h2 {
  color: var(--dark-text);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.product-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.product-card.featured::before {
  content: 'הכי פופולרי';
  position: absolute;
  top: 20px;
  left: -30px;
  background: var(--orange);
  color: var(--white);
  padding: 0.3rem 2.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  transform: rotate(45deg);
}

.product-image {
  width: 160px;
  height: 160px;
  margin: 0 auto 1.5rem;
  border-radius: 12px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card h3 {
  color: var(--purple);
  margin-bottom: 0.5rem;
}

.product-description {
  color: var(--gray-text);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.product-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 0.3rem;
}

.product-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray-text);
}

.product-vat {
  font-size: 0.85rem;
  color: var(--gray-text);
  margin-bottom: 1.5rem;
}

.bulk-discount {
  text-align: center;
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.bulk-discount p {
  font-weight: 600;
  color: var(--orange);
  font-size: 1.1rem;
}

.order-cta-wrapper {
  text-align: center;
}

.order-cta-wrapper .btn-primary {
  font-size: 1.3rem;
  padding: 1rem 3rem;
}

.order-info {
  text-align: center;
  margin-top: 1.5rem;
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.order-info span {
  font-size: 0.9rem;
  color: var(--gray-text);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.institutional-cta {
  text-align: center;
  margin-top: 2rem;
}

.institutional-cta a {
  color: var(--purple);
  font-weight: 600;
  text-decoration: underline;
}

/* =============================================
   Shipping Section
   ============================================= */
.shipping-info {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  margin-top: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.shipping-info h3 {
  text-align: center;
  color: var(--purple);
  margin-bottom: 1.5rem;
}

.shipping-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.shipping-option {
  text-align: center;
  padding: 1.2rem;
  background: var(--light-bg);
  border-radius: 12px;
}

.shipping-option .method {
  font-weight: 600;
  color: var(--purple);
  margin-bottom: 0.3rem;
}

.shipping-option .cost {
  font-weight: 700;
  color: var(--orange);
  font-size: 1.2rem;
}

.shipping-option .details {
  font-size: 0.85rem;
  color: var(--gray-text);
  margin-top: 0.3rem;
}

/* =============================================
   FAQ Section
   ============================================= */
#faq {
  background: var(--light-bg);
}

#faq .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  width: 100%;
  text-align: right;
  padding: 1.3rem 1.5rem;
  background: none;
  border: none;
  font-family: 'Heebo', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--purple);
}

.faq-question .arrow {
  transition: var(--transition);
  font-size: 1.3rem;
  color: var(--purple);
}

.faq-item.open .faq-question .arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.3rem;
  color: var(--gray-text);
  line-height: 1.8;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

/* =============================================
   Contact Section
   ============================================= */
#contact {
  background: var(--purple);
  color: var(--white);
}

#contact .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

#contact h2 {
  color: var(--white);
}

#contact .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.05rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

.contact-item a {
  color: var(--white);
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

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

.social-link:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.social-link svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

/* Contact Form */
.contact-form {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 500;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: 'Heebo', sans-serif;
  font-size: 1rem;
  direction: rtl;
  transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.15);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.form-submit {
  background: var(--gold);
  color: var(--dark-text);
  padding: 0.8rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  font-family: 'Heebo', sans-serif;
  transition: var(--transition);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(245, 200, 66, 0.4);
}

/* =============================================
   Footer
   ============================================= */
.footer {
  background: var(--purple-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.9rem;
  opacity: 0.8;
  transition: var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--gold);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  fill: rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
}

.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.footer-social svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer-bottom p {
  margin-bottom: 0.3rem;
}

/* =============================================
   WhatsApp Floating Button
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

/* =============================================
   Scroll-to-top
   ============================================= */
.scroll-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  background: var(--purple);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  box-shadow: var(--shadow);
  transition: var(--transition);
  font-size: 1.2rem;
}

.scroll-top.visible {
  display: flex;
}

.scroll-top:hover {
  background: var(--purple-dark);
  transform: translateY(-3px);
}

/* =============================================
   Animations
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   Responsive Design
   ============================================= */

/* ---------- Tablet (992px) ---------- */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text { order: 1; }
  .hero-image { order: 2; }

  .hero-image img {
    max-width: 300px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .trust-indicators {
    justify-content: center;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .how-to-play-content {
    grid-template-columns: 1fr;
  }

  .creator-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .creator-photo {
    margin: 0 auto;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

/* ---------- Mobile (768px) ---------- */
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  section {
    padding: 2.5rem 0;
  }

  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .container {
    padding: 0 1rem;
  }

  /* -- Nav -- */
  .nav-container {
    height: 56px;
    padding: 0 1rem;
  }

  .nav-logo {
    font-size: 1rem;
    gap: 0.3rem;
  }

  .nav-logo svg {
    width: 32px;
    height: 32px;
  }

  .nav-links {
    position: fixed;
    top: 56px;
    right: -100%;
    width: 75%;
    max-width: 280px;
    height: calc(100vh - 56px);
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.2rem;
    gap: 0;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    overflow-y: auto;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    padding: 0.75rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav-cta {
    text-align: center;
    margin-top: 0.8rem;
    padding: 0.5rem 1.2rem !important;
  }

  .hamburger {
    display: flex;
  }

  /* -- Hero -- */
  .hero {
    min-height: auto;
    padding-top: 56px;
    padding-bottom: 0;
  }

  .hero-content {
    gap: 1.5rem;
    padding: 1.5rem 0 2rem;
  }

  .hero-badge {
    padding: 0.35rem 1rem;
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
  }

  .hero-text h1 {
    margin-bottom: 0.6rem;
    font-size: 1.65rem;
  }

  .hero-text .subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    line-height: 1.6;
  }

  .hero-buttons {
    margin-bottom: 1.2rem;
    gap: 0.6rem;
  }

  .btn-primary {
    padding: 0.65rem 1.6rem;
    font-size: 0.95rem;
  }

  .btn-secondary {
    padding: 0.6rem 1.4rem;
    font-size: 0.9rem;
  }

  .hero-image img {
    max-width: 220px;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  }

  .trust-indicators {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem 1rem;
  }

  .trust-item {
    font-size: 0.75rem;
    gap: 0.25rem;
  }

  .trust-item svg {
    width: 16px;
    height: 16px;
  }

  /* -- About / Features -- */
  #about .section-header {
    margin-bottom: 1.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }

  .feature-card {
    padding: 1rem;
    border-radius: 12px;
  }

  .feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 0.6rem;
  }

  .feature-icon svg {
    width: 24px;
    height: 24px;
  }

  .feature-card h3 {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
  }

  .feature-card p {
    font-size: 0.8rem;
    line-height: 1.45;
  }

  /* -- How to Play -- */
  #how-to-play .section-header {
    margin-bottom: 1.5rem;
  }

  .game-board-image img {
    border-radius: 12px;
    margin-bottom: 0.5rem;
  }

  .steps-list {
    gap: 0.6rem;
  }

  .step-item {
    padding: 0.8rem;
    gap: 0.7rem;
    border-radius: 10px;
  }

  .step-number {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
  }

  .step-content h3 {
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
  }

  .step-content p {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  /* -- Audiences -- */
  #audiences .section-header {
    margin-bottom: 1.2rem;
  }

  .audience-tabs {
    gap: 0.35rem;
    margin-bottom: 1rem;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-bottom: 0.3rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .audience-tabs::-webkit-scrollbar {
    display: none;
  }

  .audience-tab {
    padding: 0.45rem 1rem;
    font-size: 0.82rem;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .audience-panel {
    padding: 1.2rem;
    border-radius: 12px;
  }

  .audience-panel.active {
    flex-direction: column;
    gap: 1rem;
  }

  .audience-panel-image {
    flex: none;
    width: 100%;
    max-height: 180px;
    overflow: hidden;
    border-radius: 10px;
  }

  .audience-panel-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
  }

  .audience-panel-text h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
  }

  .audience-panel-text p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  .audience-cta {
    padding: 0.6rem 1.4rem;
    font-size: 0.9rem;
  }

  /* -- Creator -- */
  .creator-content {
    gap: 1.2rem;
  }

  .creator-photo {
    width: 160px;
    height: 160px;
    border-width: 3px;
  }

  .creator-info h2 {
    font-size: 1.4rem;
  }

  .creator-title {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
  }

  .creator-bio {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .creator-credentials {
    margin-top: 1rem;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    gap: 0.3rem;
  }

  .creator-credentials svg {
    width: 16px;
    height: 16px;
  }

  /* -- Testimonials -- */
  #testimonials .section-header {
    margin-bottom: 1.5rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .testimonial-card {
    padding: 1.2rem;
    border-radius: 12px;
  }

  .testimonial-stars {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
  }

  .testimonial-quote {
    font-size: 2rem;
    margin-bottom: 0.2rem;
  }

  .testimonial-text {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
  }

  .testimonial-avatar {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .testimonial-name {
    font-size: 0.9rem;
  }

  .testimonial-role {
    font-size: 0.78rem;
  }

  .testimonials-cta {
    margin-top: 1.5rem;
  }

  .testimonials-cta a {
    font-size: 0.9rem;
  }

  /* -- Order -- */
  #order .section-header {
    margin-bottom: 1.5rem;
  }

  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 1rem;
  }

  .product-card {
    padding: 1rem;
    border-radius: 12px;
  }

  .product-card.featured::before {
    font-size: 0.7rem;
    padding: 0.2rem 2rem;
    top: 14px;
    left: -32px;
  }

  .product-image {
    width: 100px;
    height: 100px;
    margin-bottom: 0.8rem;
    border-radius: 8px;
  }

  .product-card h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
  }

  .product-description {
    font-size: 0.78rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
  }

  .product-price {
    font-size: 1.6rem;
    margin-bottom: 0.15rem;
  }

  .product-price span {
    font-size: 0.8rem;
  }

  .product-vat {
    font-size: 0.75rem;
    margin-bottom: 0.8rem;
  }

  .product-card .btn-primary {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
  }

  .bulk-discount {
    padding: 0.8rem 1rem;
    margin-bottom: 1.2rem;
    border-radius: 10px;
  }

  .bulk-discount p {
    font-size: 0.9rem;
  }

  /* Shipping — compact horizontal row */
  .shipping-info {
    padding: 1.2rem;
    margin-top: 1.2rem;
    border-radius: 12px;
  }

  .shipping-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }

  .shipping-options {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .shipping-option {
    padding: 0.7rem 0.4rem;
    border-radius: 8px;
  }

  .shipping-option .method {
    font-size: 0.78rem;
    margin-bottom: 0.15rem;
  }

  .shipping-option .cost {
    font-size: 1rem;
  }

  .shipping-option .details {
    font-size: 0.7rem;
    margin-top: 0.15rem;
    line-height: 1.3;
  }

  .order-info {
    margin-top: 1rem;
    gap: 0.5rem 1rem;
  }

  .order-info span {
    font-size: 0.78rem;
  }

  .institutional-cta {
    margin-top: 1rem;
    font-size: 0.85rem;
  }

  /* -- FAQ -- */
  #faq .section-header {
    margin-bottom: 1.5rem;
  }

  .faq-list {
    gap: 0.5rem;
  }

  .faq-item {
    border-radius: 10px;
  }

  .faq-question {
    padding: 0.9rem 1rem;
    font-size: 0.92rem;
  }

  .faq-question .arrow {
    font-size: 1rem;
  }

  .faq-answer-inner {
    padding: 0 1rem 0.9rem;
    font-size: 0.85rem;
    line-height: 1.6;
  }

  /* -- Contact -- */
  #contact .section-header {
    margin-bottom: 1.5rem;
  }

  .contact-details {
    gap: 0.8rem;
  }

  .contact-item {
    font-size: 0.9rem;
    gap: 0.7rem;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
  }

  .contact-icon svg {
    width: 20px;
    height: 20px;
  }

  .contact-social {
    gap: 0.7rem;
    margin-top: 0.5rem;
  }

  .social-link {
    width: 42px;
    height: 42px;
  }

  .contact-form {
    padding: 1.2rem;
    border-radius: 12px;
  }

  .form-group {
    margin-bottom: 0.8rem;
  }

  .form-group label {
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
    border-radius: 8px;
  }

  .form-group textarea {
    height: 90px;
  }

  .form-submit {
    padding: 0.65rem 2rem;
    font-size: 0.95rem;
  }

  /* -- Footer -- */
  .footer {
    padding: 2rem 0 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
    text-align: center;
  }

  .footer-section:first-child {
    grid-column: 1 / -1;
  }

  .footer-section h4 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }

  .footer-section p {
    font-size: 0.82rem;
  }

  .footer-links a {
    font-size: 0.82rem;
  }

  .footer-links {
    gap: 0.3rem;
  }

  .footer-contact-item {
    font-size: 0.82rem;
    justify-content: center;
    margin-bottom: 0.3rem;
  }

  .footer-social {
    justify-content: center;
    margin-top: 0.5rem;
  }

  .footer-social a {
    width: 36px;
    height: 36px;
  }

  .footer-bottom {
    padding-top: 1rem;
    font-size: 0.78rem;
  }

  /* -- Floating buttons -- */
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 16px;
    left: 16px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }

  .scroll-top {
    width: 38px;
    height: 38px;
    bottom: 16px;
    right: 16px;
    font-size: 1rem;
  }
}

/* ---------- Small Mobile (480px) ---------- */
@media (max-width: 480px) {
  html {
    font-size: 13.5px;
  }

  section {
    padding: 2rem 0;
  }

  .container {
    padding: 0 0.85rem;
  }

  /* Hero — extra compact */
  .hero-content {
    padding: 1.2rem 0 1.5rem;
    gap: 1rem;
  }

  .hero-text h1 {
    font-size: 1.5rem;
  }

  .hero-text .subtitle {
    font-size: 0.88rem;
    margin-bottom: 1rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
    margin-bottom: 0.6rem;
  }

  .hero-image img {
    max-width: 180px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .trust-indicators {
    gap: 0.3rem 0.6rem;
  }

  .trust-item {
    font-size: 0.72rem;
  }

  /* Features — keep 2-col but ultra-compact */
  .features-grid {
    gap: 0.6rem;
  }

  .feature-card {
    padding: 0.8rem;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0.4rem;
  }

  .feature-icon svg {
    width: 20px;
    height: 20px;
  }

  .feature-card h3 {
    font-size: 0.88rem;
    margin-bottom: 0.2rem;
  }

  .feature-card p {
    font-size: 0.75rem;
  }

  /* Steps — tighter */
  .step-item {
    padding: 0.65rem;
    gap: 0.6rem;
  }

  .step-number {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }

  .step-content h3 {
    font-size: 0.88rem;
  }

  .step-content p {
    font-size: 0.78rem;
  }

  /* Audience panels */
  .audience-panel {
    padding: 1rem;
  }

  .audience-panel-image {
    max-height: 140px;
  }

  .audience-panel-image img {
    height: 140px;
  }

  /* Products side-by-side */
  .products-grid {
    gap: 0.6rem;
  }

  .product-image {
    width: 80px;
    height: 80px;
    margin-bottom: 0.5rem;
  }

  .product-card h3 {
    font-size: 0.92rem;
  }

  .product-description {
    font-size: 0.72rem;
  }

  .product-price {
    font-size: 1.4rem;
  }

  /* Testimonials */
  .testimonial-card {
    padding: 1rem;
  }

  .testimonial-text {
    font-size: 0.85rem;
  }

  /* FAQ */
  .faq-question {
    padding: 0.75rem 0.8rem;
    font-size: 0.85rem;
  }

  .faq-answer-inner {
    padding: 0 0.8rem 0.75rem;
    font-size: 0.8rem;
  }

  /* Contact */
  .contact-form {
    padding: 1rem;
  }

  /* Creator */
  .creator-photo {
    width: 130px;
    height: 130px;
  }

  .creator-bio {
    font-size: 0.85rem;
    line-height: 1.55;
  }

  /* Hide audience panel images on very small screens to save space */
  .audience-panel-image {
    display: none;
  }

  /* Testimonials — horizontal scroll */
  .testimonials-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0.6rem;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .testimonials-grid::-webkit-scrollbar {
    display: none;
  }

  .testimonial-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
  }

  /* Shipping — stacked on very small */
  .shipping-options {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .shipping-option .details {
    font-size: 0.65rem;
  }

  /* Footer — single col */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
