/* ========================================
   AVRAHAM GAVRIELOV – SOFER STAM
   Elegant Bilingual Website
======================================== */

@font-face {
  font-family: 'Guttman Stam';
  src: url('STAM.TTF') format('truetype');
  font-weight: normal;
}
@font-face {
  font-family: 'Guttman Stam';
  src: url('STAM1.TTF') format('truetype');
  font-weight: bold;
}

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #9A7A2E;
  --black: #0D0D0D;
  --dark: #1A1A1A;
  --dark2: #2A2A2A;
  --white: #FDFAF5;
  --cream: #F5F0E8;
  --gray: #888;
  --font-en: 'Cormorant Garamond', Georgia, serif;
  --font-he: 'Assistant', 'Heebo', sans-serif;
  --transition: 0.3s ease;
  --shadow: 0 8px 40px rgba(0,0,0,0.15);
  --shadow-gold: 0 4px 20px rgba(201,168,76,0.3);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--white); color: var(--dark); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- LANGUAGE SYSTEM ---- */
body.lang-en { font-family: var(--font-en); direction: ltr; }
body.lang-he { font-family: var(--font-he); direction: rtl; }

body.lang-en .he { display: none !important; }
body.lang-he .en { display: none !important; }

body.lang-en h1, body.lang-en h2, body.lang-en h3 { font-family: var(--font-en); font-weight: 600; letter-spacing: 0.02em; }
body.lang-he h1, body.lang-he h2, body.lang-he h3 { font-family: var(--font-he); font-weight: 700; }

/* ---- LANGUAGE TOGGLE ---- */
.lang-toggle {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(8px);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 24px; padding: 4px 12px;
  color: var(--white); font-size: 13px; font-family: var(--font-he);
  margin-inline-start: auto;
}
.lang-btn { background: none; border: none; color: var(--gray); cursor: pointer; font-size: 13px; padding: 2px 4px; transition: var(--transition); }
.lang-btn.active, .lang-btn:hover { color: var(--gold); font-weight: 700; }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 48px;
  background: rgba(13,13,13,0); backdrop-filter: blur(0px);
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}
.navbar.scrolled {
  background: rgba(13,13,13,0.95); backdrop-filter: blur(12px);
  padding: 12px 48px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.nav-logo {
  font-family: var(--font-en); font-size: 22px; font-weight: 600;
  color: var(--white); letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 10px;
}
body.lang-he .nav-logo { font-family: var(--font-he); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.85); font-size: 15px; transition: color var(--transition); letter-spacing: 0.03em; }
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--black) !important;
  padding: 8px 20px; border-radius: 4px; font-weight: 600;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
.hamburger { display: none; background: none; border: none; color: white; font-size: 24px; cursor: pointer; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #0D0D0D 0%, #1a1208 50%, #0D0D0D 100%);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('hero-writing.jpg') center 20%/cover no-repeat;
  opacity: 1; filter: brightness(0.55);
  transform: scale(1.03);
  transition: transform 8s ease;
}
.hero:hover::before { transform: scale(1.08); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(13,13,13,0.15) 0%, rgba(13,13,13,0.75) 100%); }
.hero-content {
  position: relative; z-index: 2; text-align: center;
  max-width: 800px; padding: 0 24px;
}
.hero-subtitle {
  color: var(--gold); font-size: 14px; letter-spacing: 0.2em;
  text-transform: uppercase; margin-bottom: 20px; font-family: var(--font-en);
}
body.lang-he .hero-subtitle { font-family: var(--font-he); letter-spacing: 0.05em; }
.hero-title {
  font-size: clamp(52px, 8vw, 96px); color: var(--white);
  line-height: 1.05; margin-bottom: 24px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.hero-desc {
  font-size: clamp(16px, 2vw, 20px); color: rgba(255,255,255,0.8);
  line-height: 1.7; max-width: 600px; margin: 0 auto 40px;
}
body.lang-he .hero-desc { font-family: var(--font-he); font-size: clamp(16px, 2vw, 19px); }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  color: var(--gold); font-size: 24px; animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ---- BUTTONS ---- */
.btn-gold {
  display: inline-block; background: var(--gold); color: var(--black);
  padding: 14px 32px; border-radius: 4px; font-weight: 700;
  font-size: 15px; letter-spacing: 0.05em; cursor: pointer; border: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.5); }
.btn-gold.full-width { width: 100%; text-align: center; }
.btn-outline {
  display: inline-block; border: 2px solid var(--gold); color: var(--gold);
  padding: 12px 32px; border-radius: 4px; font-weight: 600;
  font-size: 15px; letter-spacing: 0.05em;
  transition: background var(--transition), color var(--transition);
}
.btn-outline:hover { background: var(--gold); color: var(--black); }

/* ---- STATS BAR ---- */
.stats-bar {
  background: var(--dark); border-top: 1px solid rgba(201,168,76,0.3);
  border-bottom: 1px solid rgba(201,168,76,0.3);
  display: flex; justify-content: center; flex-wrap: wrap;
  padding: 32px 48px; gap: 0;
}
.stat {
  display: flex; flex-direction: column; align-items: center;
  padding: 16px 48px; border-right: 1px solid rgba(255,255,255,0.1);
  flex: 1; min-width: 160px;
}
.stat:last-child { border-right: none; }
body.lang-he .stat { border-right: none; border-left: 1px solid rgba(255,255,255,0.1); }
body.lang-he .stat:last-child { border-left: none; }
.stat-num { font-family: var(--font-en); font-size: 42px; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 6px; text-align: center; letter-spacing: 0.05em; }
body.lang-he .stat-label { font-family: var(--font-he); }

/* ---- CONTAINER ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ---- SECTION HEADER ---- */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block; color: var(--gold); font-size: 12px;
  letter-spacing: 0.25em; text-transform: uppercase; margin-bottom: 12px;
  font-family: var(--font-en);
}
body.lang-he .section-tag { font-family: var(--font-he); letter-spacing: 0.05em; }
.section-header h2 { font-size: clamp(32px, 5vw, 52px); color: var(--dark); line-height: 1.2; margin-bottom: 16px; }
.section-header p { font-size: 17px; color: var(--gray); max-width: 600px; margin: 0 auto; line-height: 1.7; }
body.lang-he .section-header p { font-family: var(--font-he); }
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,0.7); }
.section-header.light .section-tag { color: var(--gold); }

/* ---- ABOUT ---- */
.about { padding: 100px 0; background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
body.lang-he .about-grid { direction: rtl; }
.about-img { position: relative; }
.about-img img { width: 100%; height: 550px; object-fit: cover; border-radius: 2px; box-shadow: var(--shadow); }
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--gold); color: var(--black);
  padding: 14px 24px; font-weight: 700; font-size: 14px;
  letter-spacing: 0.08em; text-transform: uppercase;
  box-shadow: var(--shadow-gold);
}
body.lang-he .about-badge { right: auto; left: -20px; font-family: var(--font-he); }
.about-text .section-tag { display: block; margin-bottom: 12px; }
.about-text h2 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 24px; line-height: 1.2; }
.about-text p { font-size: 17px; line-height: 1.8; color: #444; margin-bottom: 16px; }
body.lang-he .about-text p { font-family: var(--font-he); }
.about-list { margin-top: 28px; display: flex; flex-direction: column; gap: 10px; }
.about-list li { font-size: 15px; color: #333; padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
body.lang-he .about-list li { font-family: var(--font-he); }

/* ---- VIDEO SECTION ---- */
.video-section { padding: 80px 0; background: var(--dark); }
.video-section .section-header h2 { color: var(--white); }
.video-section .section-tag { color: var(--gold); }
.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.video-wrap { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 4px; box-shadow: var(--shadow); background: #000; }
.video-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.video-wrap video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: contain; }
.video-card { background: rgba(255,255,255,0.05); border-radius: 12px; overflow: hidden; border: 1px solid rgba(201,168,76,0.2); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.video-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.video-card .video-wrap { border-radius: 0; }
.video-caption { padding: 20px 24px; }
.video-caption h3 { color: var(--gold); font-size: 1rem; margin-bottom: 8px; font-weight: 600; }
.video-caption p { color: rgba(255,255,255,0.7); font-size: 0.875rem; line-height: 1.6; margin: 0; }

/* ---- HOW IT WORKS ---- */
.how-section { padding: 100px 0; background: var(--cream); }
.steps-grid { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 16px; margin-top: 60px; }
.step-card { background: var(--white); border-radius: 16px; padding: 40px 32px; text-align: center; box-shadow: 0 4px 24px rgba(0,0,0,0.08); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.step-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.12); }
.step-number { font-size: 48px; font-weight: 800; color: rgba(201,168,76,0.15); line-height: 1; margin-bottom: 8px; font-family: var(--font-en); }
.step-icon { font-size: 36px; margin-bottom: 16px; }
.step-card h3 { font-size: 1.15rem; color: var(--black); margin-bottom: 12px; }
.step-card p { font-size: 0.9rem; color: #666; line-height: 1.7; margin: 0; }
.step-arrow { font-size: 32px; color: var(--gold); opacity: 0.6; }
body.lang-he .step-arrow { transform: rotate(180deg); }
@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; }
  .step-arrow { transform: rotate(90deg); }
  body.lang-he .step-arrow { transform: rotate(90deg); }
}

/* ---- FAQ ---- */
.faq-section { padding: 100px 0; background: var(--black); }
.faq-section .section-tag { color: var(--gold); }
.faq-section h2 { color: var(--white); }
.faq-list { max-width: 800px; margin: 60px auto 0; display: flex; flex-direction: column; gap: 16px; }
.faq-item { border: 1px solid rgba(201,168,76,0.25); border-radius: 12px; overflow: hidden; }
.faq-q { width: 100%; background: rgba(255,255,255,0.04); border: none; padding: 22px 28px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; color: var(--white); font-size: 1rem; font-family: inherit; text-align: right; gap: 16px; transition: background 0.2s; }
.faq-q:hover { background: rgba(201,168,76,0.1); }
.faq-icon { font-size: 24px; color: var(--gold); flex-shrink: 0; transition: transform 0.3s; }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 28px 22px; }
.faq-a.open { display: block; }
.faq-a p { color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.8; margin: 0; }

/* ---- PACKAGES ---- */
.packages { padding: 100px 0; background: var(--white); }
.packages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; margin-bottom: 32px; }
.package-card {
  background: var(--cream); border: 1px solid rgba(0,0,0,0.08);
  border-radius: 4px; padding: 36px 28px; position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column; gap: 12px;
}
.package-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.package-card.featured { border: 2px solid var(--gold); background: #fff; box-shadow: var(--shadow-gold); }
.package-card.premium { background: var(--dark); color: var(--white); border-color: var(--gold-dark); }
.package-card.premium h3 { color: var(--gold); }
.package-card.premium .package-tagline { color: rgba(255,255,255,0.7); }
.package-card.premium .package-features li { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.1); }
.package-tier { color: white; padding: 6px 14px; border-radius: 3px; font-size: 13px; font-weight: 700; display: inline-block; letter-spacing: 0.05em; margin-bottom: 8px; }
.package-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--black); font-size: 12px; font-weight: 700;
  padding: 4px 16px; border-radius: 12px; letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap;
}
body.lang-he .package-badge { font-family: var(--font-he); }
.package-card h3 { font-size: 26px; color: var(--dark); margin: 0; }
.package-tagline { font-size: 15px; color: var(--gray); line-height: 1.5; }
body.lang-he .package-tagline { font-family: var(--font-he); }
.package-features { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.package-features li { font-size: 14px; color: #444; padding: 5px 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
body.lang-he .package-features li { font-family: var(--font-he); }
.package-price { font-family: var(--font-en); font-size: 24px; font-weight: 700; color: var(--gold); margin: 8px 0; }
.packages-note { text-align: center; font-size: 14px; color: var(--gray); margin-top: 12px; }
body.lang-he .packages-note { font-family: var(--font-he); }

/* ---- GALLERY ---- */
.gallery { padding: 100px 0; background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}
.gallery-item { position: relative; overflow: hidden; border-radius: 3px; cursor: pointer; }
.gallery-item.large { grid-column: span 2; }
.gallery-item img { width: 100%; height: 280px; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item.large img { height: 380px; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: white; padding: 24px 16px 12px; font-size: 14px;
  transform: translateY(100%); transition: transform var(--transition);
}
body.lang-he .gallery-caption { font-family: var(--font-he); text-align: right; }
.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* ---- WORLDWIDE ---- */
.world-section { padding: 100px 0; background: var(--dark); }
.world-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.world-region h3 { color: var(--gold); font-size: 18px; margin-bottom: 16px; border-bottom: 1px solid rgba(201,168,76,0.3); padding-bottom: 10px; }
body.lang-he .world-region h3 { font-family: var(--font-he); }
.world-region ul { display: flex; flex-direction: column; gap: 8px; }
.world-region li { font-size: 14px; color: rgba(255,255,255,0.7); padding: 3px 0; }
body.lang-he .world-region li { font-family: var(--font-he); text-align: right; }

/* ---- TESTIMONIALS ---- */
.testimonials { padding: 60px 0; background: var(--gold); }
.testimonial-item { text-align: center; max-width: 700px; margin: 0 auto; }
.testimonial-item p { font-size: 20px; font-style: italic; color: var(--black); line-height: 1.7; margin-bottom: 16px; }
body.lang-he .testimonial-item p { font-family: var(--font-he); font-style: normal; }
.testimonial-author { font-size: 14px; color: rgba(0,0,0,0.6); font-weight: 600; letter-spacing: 0.05em; }

/* ---- CONTACT ---- */
.contact { padding: 100px 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
body.lang-he .contact-grid { direction: rtl; }
.contact-info .section-tag { display: block; margin-bottom: 12px; }
.contact-info h2 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 20px; line-height: 1.2; }
.contact-info p { font-size: 17px; color: var(--gray); line-height: 1.7; margin-bottom: 32px; }
body.lang-he .contact-info p { font-family: var(--font-he); }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; border: 1px solid rgba(0,0,0,0.1);
  border-radius: 4px; font-size: 15px; color: var(--dark);
  transition: border-color var(--transition), background var(--transition);
}
.contact-item:hover { border-color: var(--gold); background: rgba(201,168,76,0.05); }
.contact-icon { font-size: 20px; }

/* ---- FORM ---- */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-input {
  width: 100%; padding: 14px 18px; border: 1px solid rgba(0,0,0,0.15);
  border-radius: 4px; font-size: 15px; font-family: inherit;
  background: var(--cream); color: var(--dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.15); }
.form-textarea { min-height: 130px; resize: vertical; }
body.lang-he .form-input { text-align: right; font-family: var(--font-he); }

/* ---- FOOTER ---- */
.footer { background: var(--black); padding: 48px 0 24px; }
.footer-content { display: flex; justify-content: space-between; align-items: start; flex-wrap: wrap; gap: 32px; margin-bottom: 32px; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 14px; margin-top: 8px; }
.footer-name { color: var(--gold) !important; font-size: 18px; font-weight: 600; }
body.lang-he .footer-name { font-family: var(--font-he); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 14px; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-copy { text-align: center; font-size: 12px; color: rgba(255,255,255,0.3); border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; }

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulse-green 2.5s infinite;
}
body.lang-he .whatsapp-float { right: auto; left: 28px; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.7); animation: none; }
@keyframes pulse-green {
  0%,100%{box-shadow:0 4px 20px rgba(37,211,102,0.5)}
  50%{box-shadow:0 4px 32px rgba(37,211,102,0.8), 0 0 0 8px rgba(37,211,102,0.1)}
}

/* ---- SEO BLOCK ---- */
.seo-block {
  background: var(--cream); padding: 48px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.seo-block h2 { font-size: 18px; color: var(--dark); margin-bottom: 16px; font-weight: 600; }
.seo-block p { font-size: 14px; color: #666; line-height: 1.8; margin-bottom: 10px; font-family: var(--font-he); }

/* ---- MOBILE NAV ---- */
.nav-mobile { display: none; flex-direction: column; gap: 16px; background: rgba(13,13,13,0.97); padding: 80px 32px 32px; position: fixed; inset: 0; z-index: 999; }
.nav-mobile.open { display: flex; }
.nav-mobile a { color: white; font-size: 22px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 12px; }
.nav-mobile .close-btn { position: absolute; top: 20px; right: 24px; background: none; border: none; color: white; font-size: 28px; cursor: pointer; }

/* ---- RESPONSIVE ---- */
@media (max-width: 992px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img img { height: 380px; }
  .about-badge { bottom: 12px; right: 12px; }
  body.lang-he .about-badge { left: 12px; right: auto; }
  .world-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: 1fr; }
  .stats-bar { gap: 0; }
  .stat { padding: 16px 24px; }
}

@media (max-width: 768px) {
  .navbar { padding: 16px 24px; }
  .navbar.scrolled { padding: 12px 24px; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .hero-title { font-size: clamp(40px, 10vw, 72px); }
  .packages-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.large { grid-column: span 2; }
  .world-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .stats-bar { flex-direction: row; flex-wrap: wrap; }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); flex: 1 1 45%; }
  .lang-toggle { margin-inline-start: 0; padding: 3px 10px; font-size: 12px; }
  .footer-content { flex-direction: column; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: span 1; }
  .gallery-item img { height: 240px; }
  .gallery-item.large img { height: 280px; }
  .world-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .about { padding: 60px 0; }
  .packages { padding: 60px 0; }
  .gallery { padding: 60px 0; }
  .contact { padding: 60px 0; }
  .video-section { padding: 60px 0; }
  .world-section { padding: 60px 0; }
  .container { padding: 0 20px; }
}

/* ======================================
   FLOATING WHATSAPP
====================================== */
.whatsapp-float {
  position: fixed; bottom: 28px; left: 28px; z-index: 9000;
  display: flex; align-items: center; gap: 10px;
  background: #25D366; color: white;
  border-radius: 50px; padding: 14px 20px 14px 18px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-size: 15px; font-weight: 600;
  animation: waPulse 2.5s ease-in-out infinite;
}
body.lang-he .whatsapp-float { right: 28px; left: auto; }
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.7);
  animation: none;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,0.8); }
}
.whatsapp-label { font-family: var(--font-he); font-size: 14px; }
@media (max-width: 768px) {
  .whatsapp-float { border-radius: 50%; padding: 14px; }
  .whatsapp-label { display: none; }
}

/* ======================================
   TESTIMONIALS
====================================== */
.testimonials-section {
  padding: 100px 0; background: var(--cream);
}
.star-testimonial {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center; margin: 60px 0 72px;
  background: var(--dark); border-radius: 16px;
  overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.star-video { overflow: hidden; background: #000; }
.star-video video { width: 100%; height: auto; display: block; max-height: 480px; object-fit: contain; }
.star-info { padding: 48px; color: var(--white); }
.star-badge {
  display: inline-block; background: var(--gold);
  color: var(--black); font-size: 12px; font-weight: 700;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 16px;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.star-info h3 { font-size: 32px; color: var(--gold); margin-bottom: 4px; }
.star-title { color: rgba(255,255,255,0.6); font-size: 15px; margin-bottom: 24px; }
.star-info p { color: rgba(255,255,255,0.85); font-size: 17px; line-height: 1.7; font-style: italic; }

.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px;
}
.testimonial-card {
  background: white; border-radius: 12px; padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border-top: 3px solid var(--gold);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); }
.testimonial-stars { color: var(--gold); font-size: 20px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p { font-size: 16px; line-height: 1.7; font-style: italic; color: var(--dark2); margin-bottom: 20px; }
.testimonial-author strong { display: block; font-size: 15px; font-weight: 700; color: var(--dark); }
.testimonial-author span { font-size: 13px; color: var(--gray); }

@media (max-width: 768px) {
  .star-testimonial { grid-template-columns: 1fr; }
  .star-info { padding: 28px; }
  .star-info h3 { font-size: 24px; }
}

/* ======================================
   HERO SLIDER
====================================== */
.hero-slides {
  position: absolute; inset: 0; z-index: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
  transform: scale(1.05);
  animation: none;
}
.hero-slide.active {
  opacity: 1;
  animation: kenBurns 7s ease forwards;
}
@keyframes kenBurns {
  from { transform: scale(1.05); }
  to   { transform: scale(1.0); }
}
.hero-dots {
  position: absolute; bottom: 80px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 10;
}
.hero-dot {
  width: 10px; height: 10px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6);
  background: transparent; cursor: pointer;
  transition: background 0.3s, transform 0.3s, border-color 0.3s;
  padding: 0;
}
.hero-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.3);
}

/* ======================================
   ENTRANCE ANIMATIONS
====================================== */

/* Hero content animates in on load */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(60px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.8); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes goldPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.4); }
  50%       { box-shadow: 0 0 0 12px rgba(201,168,76,0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.hero-subtitle  { animation: heroFadeIn  0.8s ease both; animation-delay: 0.2s; }
.hero-title     { animation: heroFadeUp  0.9s ease both; animation-delay: 0.5s; }
.hero-desc      { animation: heroFadeUp  0.9s ease both; animation-delay: 0.8s; }
.hero-btns      { animation: heroFadeUp  0.9s ease both; animation-delay: 1.1s; }
.hero-scroll-hint { animation: heroFadeIn 1s ease both; animation-delay: 1.6s; }

/* Scroll hint bounces */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(10px); }
}
.hero-scroll-hint { animation: bounce 1.8s ease-in-out infinite, heroFadeIn 1s ease both 1.6s; }

/* ---- SCROLL PROGRESS BAR ---- */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  background-size: 200% 100%;
  animation: shimmer 2s linear infinite;
  z-index: 9999; transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* ---- FLOATING PARTICLES ---- */
.hero-particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold-light);
  pointer-events: none;
  animation: particleFloat linear infinite;
  opacity: 0;
}
@keyframes particleFloat {
  0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

/* ---- STAT COUNTER ANIMATION ---- */
.stat-num {
  display: inline-block;
  transition: transform 0.3s ease;
}
.stat:hover .stat-num {
  transform: scale(1.15);
  color: var(--gold-light);
}

/* ---- BUTTON EFFECTS ---- */
.btn-gold, .btn-outline {
  position: relative; overflow: hidden;
}
.btn-gold::after, .btn-outline::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease, opacity 0.5s ease;
  opacity: 0;
}
.btn-gold:active::after, .btn-outline:active::after {
  width: 300px; height: 300px; opacity: 1;
  transition: 0s;
}
.btn-gold { animation: goldPulse 2.5s ease-in-out infinite; }
.btn-gold:hover { animation: none; }

/* ---- CURSOR SPARKLE ---- */
.cursor-spark {
  position: fixed;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-light), transparent);
  transform: translate(-50%, -50%);
  animation: sparkFade 0.7s ease forwards;
  z-index: 9998;
}
@keyframes sparkFade {
  0%   { opacity: 0.8; transform: translate(-50%,-50%) scale(1); }
  100% { opacity: 0;   transform: translate(-50%,-50%) scale(0.1); }
}

/* ---- SECTION REVEAL (enhanced) ---- */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.left  { transform: translateX(-40px); }
.reveal.right { transform: translateX(40px); }
.reveal.scale { transform: scale(0.92); }
.reveal.visible {
  opacity: 1 !important;
  transform: none !important;
}
