/* ===== Hero Section Enhanced ===== */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

@media (min-width: 768px) {
  .hero-trust {
    justify-content: center;
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.875rem;
  font-weight: 600;
}

.trust-item i {
  color: var(--primary);
  font-size: 1rem;
}

/* ===================================================
   ===== Service Cards - Upgraded & Polished Design =====
   =================================================== */

/* עיצוב כללי לאזור השירותים עם רקע נקי וגבולות עדינים */
.services-section {
  background: var(--bg); /* רקע לבן נקי במקום אפור */
  padding-top: clamp(48px, 8vh, 80px); /* הגדלת המרווח העליון */
  padding-bottom: clamp(48px, 8vh, 80px);
  position: relative;
  overflow: hidden;
}

/* אלמנט עיצובי דקורטיבי ברקע */
.services-section::before {
  content: '✓';
  position: absolute;
  top: 20px;
  right: -50px;
  font-size: 200px;
  font-weight: 900;
  color: var(--bg-alt);
  opacity: 0.8;
  transform: rotate(15deg);
  z-index: 0;
  line-height: 1;
}

/* שיפור כותרת האזור */
.services-section .section-title h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--ink);
}

.services-section .section-title p {
  font-size: 1.125rem;
  color: var(--ink-light);
}

/* עיצוב חדש לכרטיסיות השירות */
.service-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* יישור לשמאל (לימין ב-RTL) */
  text-align: start;       /* יישור טקסט לשמאל (לימין ב-RTL) */
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--line); /* גבול עליון דקורטיבי */
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  border-color: var(--line-dark);
  border-top-color: var(--primary); /* הדגשת הגבול העליון במעבר עכבר */
}

/* אייקון משודרג */
.service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.service-card:hover .service-icon {
  background: var(--primary-dark);
  transform: scale(1.05);
}

/* טיפוגרפיה משופרת בכרטיסייה */
.service-card h3 {
  font-size: 1.375rem; /* כותרת גדולה ובולטת יותר */
  color: var(--ink);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 24px;
  flex-grow: 1; /* מוודא שהקישור תמיד בתחתית */
}

/* קישור שנראה יותר כמו כפתור פעולה */
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
  font-size: 1rem;
  margin-top: auto;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  background: var(--bg-alt);
  transition: all 0.25s ease;
}

.service-link i {
  transition: transform 0.25s ease;
}

.service-link:hover {
  background: var(--secondary);
  color: white;
}

/* אנימציה לחץ בקישור */
[dir="rtl"] .service-link:hover i {
  transform: translateX(-4px);
}
/* ===== About Section Enhanced ===== */
.about-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-image {
  position: relative;
}

.experience-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--primary);
  color: white;
  padding: 16px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(8px);
}

.badge-number {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
}

.badge-text {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
}

.about-label {
  display: inline-block;
  padding: 6px 14px;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.about-lead {
  font-size: 1.125rem;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.7;
}

.about-features {
  display: grid;
  gap: 16px;
  margin: 24px 0;
}

.feature-item {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: all var(--transition);
}

.feature-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.feature-item i {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: var(--radius);
  background: var(--bg-alt);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.feature-item strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  margin-bottom: 4px;
}

.feature-item p {
  color: var(--muted);
  font-size: 0.9375rem;
  margin: 0;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* ===== Why Us Enhanced ===== */
.stats-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  justify-content: space-around;
  gap: 16px;
  backdrop-filter: blur(10px);
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 600;
}

/* ===== Testimonials Enhanced ===== */
.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: #FFA500;
  font-size: 1rem;
}

.review-summary {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(24px, 5vw, 48px);
  margin-top: clamp(32px, 5vw, 48px);
  padding: 28px;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}

.summary-item {
  text-align: center;
}

.summary-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.summary-stars {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-bottom: 8px;
  color: #FFA500;
}

.summary-label {
  display: block;
  font-size: 0.875rem;
  color: var(--muted);
  font-weight: 600;
}

/* ===================================================
   ===== Emergency Banner - High-Impact Redesign =====
   =================================================== */

.emergency-banner {
  padding: 0; /* הסרת ריפודים מיותרים */
  background: #B91C1C; /* רקע אדום עמוק ובולט */
  margin: clamp(40px, 8vh, 80px) 0; /* שמירה על מרווחים אנכיים */
}

.emergency-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  padding: clamp(32px, 6vw, 56px) var(--container-padding);
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
}

@media (min-width: 992px) {
  .emergency-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: start;
    gap: 32px;
  }
}

/* אייקון משודרג עם אנימציית "דופק" */
.emergency-icon {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 50%;
  background: white;
  color: #DC2626; /* צבע אדום תואם */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 1);
  animation: emergency-pulse 1.5s infinite;
}

/* אנימציה חדשה ובולטת יותר */
@keyframes emergency-pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.emergency-text {
  flex: 1;
}

.emergency-text h2 {
  color: white;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 900;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
  margin-bottom: 8px;
}

.emergency-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.0625rem;
  margin: 0;
}

/* כפתור פעולה משודרג */
.emergency-actions {
  flex-shrink: 0;
}

.btn-emergency {
  background: white;
  color: #DC2626;
  font-size: 1.125rem;
  font-weight: 800;
  padding: 16px 32px;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: all 0.2s ease-in-out;
}

.btn-emergency:hover {
  background: #F3F4F6; /* צבע אפרפר בהיר במעבר עכבר */
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
/* ===== FAQ Section ===== */
.faq-section {
  background: var(--bg-alt);
}

.faq-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.faq-item {
  background: white;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.faq-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.faq-item h3 {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink);
  font-size: 1.0625rem;
  margin-bottom: 12px;
}

.faq-item h3 i {
  color: var(--primary);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.faq-item p {
  color: var(--ink-light);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 0;
}

.faq-cta {
  text-align: center;
  margin-top: clamp(32px, 5vw, 48px);
}

.faq-cta p {
  font-size: 1.0625rem;
  color: var(--ink-light);
  margin-bottom: 16px;
}

/* ===== Contact CTA Enhanced ===== */
.contact-cta {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: white;
  padding: clamp(48px, 8vh, 80px) 0;
  text-align: center;
}

.contact-content {
  max-width: 900px;
  margin: 0 auto;
}

.contact-header h2 {
  color: white;
  margin-bottom: 12px;
}

.contact-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.0625rem;
  margin-bottom: 40px;
  max-width: 65ch;
  margin-left: auto;
  margin-right: auto;
}

.contact-methods {
  display: grid;
  gap: 20px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .contact-methods {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-method {
  background: rgba(255, 255, 255, 0.1);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all var(--transition);
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.method-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 16px;
}

.method-icon.whatsapp {
  background: #25D366;
}

.method-content h3 {
  color: white;
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.method-link {
  display: block;
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  transition: opacity var(--transition-fast);
}

.method-link:hover {
  opacity: 0.8;
}

.method-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  margin: 0;
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 32px;
}

.btn-whatsapp {
  background: #25D366;
  color: white;
}

.btn-whatsapp:hover {
  background: #20BA5A;
}

.contact-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-badge i {
  color: var(--primary);
}

/* ===================================================
   ===== Service Area Section - Polished & Clear Design =====
   =================================================== */

.service-area-section {
  background: var(--bg-alt); /* רקע אפור בהיר להפרדה ויזואלית */
  padding: clamp(48px, 8vh, 80px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* כותרת מודגשת יותר */
.service-area-section .section-title h2 {
    margin-bottom: 8px;
}
.service-area-section .section-title p {
    font-size: 1.125rem;
}


.service-areas {
  display: grid;
  gap: 24px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .service-areas {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* עיצוב חדש לעמודות האזורים */
.area-column {
  background: white;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.area-column:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.area-column h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.area-column h3 i {
  color: var(--primary);
  font-size: 1.5rem;
}

.area-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px; /* הגדלת המרווח בין השורות */
}

.area-column li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-light);
  font-size: 1rem;
  font-weight: 500;
}

/* ==========================================================
   ===== התיקון המרכזי נמצא כאן - החלפת ה"וי" באייקון =====
   ========================================================== */
.area-column li::before {
  content: '\f00c'; /* קוד ה-Unicode של אייקון "check" מ-Font Awesome */
  font-family: 'Font Awesome 6 Free'; /* הגדרת משפחת הפונטים של Font Awesome */
  font-weight: 900; /* נדרש עבור אייקונים מסוג Solid */
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

/* עיצוב משופר להערה התחתונה */
.area-note {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: var(--radius);
  color: var(--ink-light);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.area-note i {
  color: var(--primary);
  font-size: 1.25rem;
}

/* ===== WebLite Promos Enhanced ===== */
.weblite-promo-1 {
  background: linear-gradient(135deg, #F3F4F6, #E5E7EB);
  padding: clamp(48px, 8vh, 80px) 0;
  margin: clamp(40px, 8vh, 80px) 0;
}

.promo-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.promo-content h2 {
  margin-bottom: 16px;
}

.promo-content > p {
  color: var(--ink-light);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 70ch;
  margin-left: auto;
  margin-right: auto;
}

.promo-features {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .promo-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

.promo-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: white;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink);
  border: 1px solid var(--line);
}

.promo-feature i {
  color: var(--primary);
  font-size: 1.125rem;
  flex-shrink: 0;
}

.promo-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 1.125rem;
}

.price-label {
  color: var(--muted);
  font-weight: 500;
}

.price-amount {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.price-period {
  color: var(--muted);
  font-weight: 600;
}

.promo-note {
  color: var(--muted);
  font-size: 0.875rem;
  margin-top: 16px;
}

.weblite-promo-2 {
  margin: clamp(40px, 6vh, 60px) 0;
}

.promo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 32px;
  background: white;
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
}

@media (min-width: 768px) {
  .promo-wrapper {
    flex-direction: row;
    justify-content: space-between;
    text-align: start;
  }
}

.promo-text {
  flex: 1;
}

.promo-text h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .promo-text h3 {
    justify-content: flex-start;
  }
}

.promo-text h3 i {
  color: #EF4444;
}

.promo-text p {
  color: var(--ink-light);
  font-size: 1rem;
  margin: 0;
}

.promo-text strong {
  color: var(--primary);
}

.promo-action {
  flex-shrink: 0;
}

/* ===== Animations with AOS ===== */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}

[data-aos="fade-right"] {
  transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-left"] {
  transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

[data-aos="zoom-in"] {
  transform: scale(0.95);
}

[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
}

/* ===== Print Styles ===== */
@media print {
  .announce-bar,
  .menu-toggle,
  .floating-cta,
  .back-to-top-btn,
  .emergency-banner,
  .weblite-promo-1,
  .weblite-promo-2,
  .header-actions {
    display: none !important;
  }
  
  .hero {
    background: none !important;
    color: black !important;
  }
  
  .service-card,
  .testimonial-card {
    break-inside: avoid;
  }
}/* ============================================
   WebLite • Locksmith Demo - Steel Edition
   Mobile-First, RTL, Optimized
   ============================================ */

/* ===== CSS Variables ===== */
:root {
  /* Colors */
  --primary: #0A84FF;
  --primary-dark: #0066CC;
  --secondary: #111827;
  --secondary-light: #1F2937;
  
  --ink: #111827;
  --ink-light: #374151;
  --muted: #6B7280;
  --muted-light: #9CA3AF;
  
  --bg: #FFFFFF;
  --bg-alt: #F9FAFB;
  --bg-gray: #F3F4F6;
  
  --line: #E5E7EB;
  --line-dark: #D1D5DB;
  
  --success: #10B981;
  --warning: #F59E0B;
  --danger: #EF4444;
  
  /* Spacing */
  --container-width: 1280px;
  --container-padding: 16px;
  --section-gap: 32px;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-full: 999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 8px 32px rgba(0, 0, 0, 0.16);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition: 250ms ease;
  --transition-slow: 350ms ease;
  
  /* Z-index */
  --z-announce: 1001;
  --z-header: 1000;
  --z-overlay: 999;
  --z-floating: 998;
}

/* ===== CSS Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Rubik', system-ui, -apple-system, 'Segoe UI', Arial, 'Noto Sans Hebrew', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
  color: var(--ink);
}

h1 { font-size: clamp(1.75rem, 5vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.125rem, 3vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
  margin: 0;
  line-height: 1.65;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== Utilities ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  right: 0;
  z-index: 9999;
  padding: 12px 20px;
  background: var(--secondary);
  color: white;
  font-weight: 700;
  border-radius: 0 0 0 var(--radius);
  transition: top var(--transition);
}

.skip-link:focus {
  top: 0;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ===== Announce Bar ===== */
.announce-bar {
  position: sticky;
  top: 0;
  z-index: var(--z-announce);
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
  font-size: 0.875rem;
}

.announce-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px var(--container-padding);
  flex-wrap: wrap;
}

.announce-text {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--ink-light);
}

.announce-label {
  display: inline-flex;
  padding: 2px 8px;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.announce-separator {
  color: var(--muted-light);
  font-weight: 300;
}

.announce-price {
  color: var(--primary);
  font-weight: 800;
}

.announce-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.875rem;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.announce-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: white;
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--transition);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow);
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  padding: 8px 0;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  transition: opacity var(--transition-fast);
}

.logo:hover {
  opacity: 0.85;
}

.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  object-fit: cover;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  gap: 2px;
}

.logo-brand {
  font-weight: 900;
  font-size: 1.125rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.logo-light {
  color: var(--primary);
  font-weight: 800;
}

.logo-tagline {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
}

/* Header Actions (Mobile) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-call-mobile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: white;
  border-radius: var(--radius);
  font-size: 1.125rem;
  transition: all var(--transition-fast);
}

.btn-call-mobile:hover {
  background: var(--primary-dark);
  transform: scale(1.05);
}

/* Menu Toggle */
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.menu-toggle:hover {
  background: var(--bg-alt);
  border-color: var(--line-dark);
}

.menu-toggle[aria-expanded="true"] {
  background: var(--secondary);
}

.menu-icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 20px;
}

.menu-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all var(--transition);
}

.menu-toggle[aria-expanded="true"] .menu-line {
  background: white;
}

.menu-toggle[aria-expanded="true"] .menu-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-line:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Navigation */
.main-nav {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition);
  pointer-events: none;
}

.main-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px;
  margin: 8px var(--container-padding);
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.nav-link {
  display: block;
  padding: 12px 14px;
  color: var(--ink);
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.nav-link:hover {
  background: var(--bg-alt);
  color: var(--primary);
}

.nav-item-cta {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

/* Menu Overlay */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: var(--z-overlay);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  backdrop-filter: blur(2px);
}

.menu-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

/* Desktop Navigation */
@media (min-width: 992px) {
  .header-actions {
    display: none;
  }

  .main-nav {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  .nav-list {
    flex-direction: row;
    align-items: center;
    gap: 6px;
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .nav-link {
    padding: 8px 12px;
    font-size: 0.9375rem;
  }

  .nav-item-cta {
    margin: 0 0 0 8px;
    padding: 0;
    border: none;
  }

  .btn-call-mobile {
    display: none;
  }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 0.9375rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: var(--secondary);
  color: white;
}

.btn-secondary:hover {
  background: var(--secondary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn:active {
  transform: translateY(0);
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  padding: clamp(64px, 12vh, 120px) 0;
  color: white;
  text-align: start;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero .subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.875rem;
  backdrop-filter: blur(8px);
  margin-bottom: 16px;
}

.hero h1 {
  margin: 0 0 16px;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero p {
  max-width: 60ch;
  margin: 0 0 24px;
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
}

.hero .btn {
  font-size: 1rem;
  padding: 14px 28px;
}

@media (min-width: 768px) {
  .hero {
    text-align: center;
  }

  .hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero p {
    max-width: 70ch;
  }
}

/* ===== Sections ===== */
section {
  padding: var(--section-gap) 0;
}

@media (min-width: 768px) {
  section {
    padding: clamp(40px, 8vh, 64px) 0;
  }
}

.section-title {
  text-align: center;
  margin-bottom: clamp(24px, 4vw, 40px);
}

.section-title h2 {
  margin-bottom: 12px;
}

.section-title p {
  color: var(--muted);
  font-size: 1.0625rem;
  max-width: 65ch;
  margin: 0 auto;
}

/* ===== Services Grid ===== */
.services-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.service-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.service-card .icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--secondary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.service-card h3 {
  margin: 0;
  font-size: 1.125rem;
  color: var(--ink);
}

.service-card picture {
  margin: 8px 0;
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.service-card p {
  color: var(--muted);
  font-size: 0.9375rem;
  margin: 0;
}

/* ===== About Section ===== */
.about-grid {
  display: grid;
  gap: clamp(24px, 5vw, 48px);
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1.2fr;
  }
}

.about-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.about-content h2 {
  margin-bottom: 16px;
}

.about-content p {
  color: var(--ink-light);
  margin-bottom: 20px;
  font-size: 1.0625rem;
}

.about-content ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 20px 0 24px;
}

.about-content li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink-light);
  font-size: 0.9375rem;
}

.about-content li::before {
  content: "✓";
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

/* ===== Why Us Section ===== */
.why-us {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.why-us-grid-new {
  display: grid;
  gap: clamp(24px, 5vw, 48px);
  align-items: center;
}

@media (min-width: 1024px) {
  .why-us-grid-new {
    grid-template-columns: 1.2fr 1fr;
  }
}

.why-us-grid-new > div:first-child {
  display: grid;
  gap: 16px;
}

.advantage-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.advantage-item:hover {
  transform: translateX(-4px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}

.advantage-item .icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: var(--radius);
  background: var(--secondary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.advantage-item h3 {
  margin: 0 0 6px;
  font-size: 1.0625rem;
}

.advantage-item p {
  color: var(--muted);
  font-size: 0.9375rem;
  margin: 0;
}

.why-us-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* ===== Testimonials ===== */
.testimonial-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.testimonial-card p {
  color: var(--ink-light);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card p::before {
  content: '"';
  color: var(--primary);
  font-size: 2rem;
  font-weight: 900;
  line-height: 0;
  margin-left: -4px;
}

.author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--line);
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-info strong {
  color: var(--ink);
  font-size: 0.9375rem;
  font-weight: 700;
}

.author-info span {
  color: var(--muted);
  font-size: 0.875rem;
}

/* ===== WebLite Promo Sections ===== */
.weblite-promo-1 {
  background: linear-gradient(135deg, var(--bg-gray), var(--bg-alt));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 6vw, 56px) var(--container-padding);
  text-align: center;
  margin: var(--section-gap) 0;
}

.weblite-promo-1 h2 {
  margin-bottom: 12px;
  color: var(--ink);
}

.weblite-promo-1 p {
  color: var(--ink-light);
  font-size: 1.0625rem;
  max-width: 70ch;
  margin: 0 auto 24px;
}

.weblite-promo-1 strong {
  color: var(--primary);
  font-weight: 800;
}

.weblite-promo-2 .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.weblite-promo-2 h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.weblite-promo-2 p {
  color: var(--muted);
  font-size: 0.9375rem;
  margin: 0;
}

@media (max-width: 768px) {
  .weblite-promo-2 .container {
    flex-direction: column;
    text-align: center;
  }
}
/* ===================================================
   ===== Contact CTA - Clear & Trustworthy Redesign =====
   =================================================== */

.contact-cta {
  background: var(--bg-alt); /* רקע אפור בהיר ונקי */
  padding: clamp(48px, 8vh, 80px) 0;
  border-radius: var(--radius-lg);
  margin: clamp(40px, 8vh, 80px) 0;
  border: 1px solid var(--line);
}

.contact-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* כותרת ברורה וממוקדת */
.contact-header h2 {
  color: var(--ink);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 900;
  margin-bottom: 12px;
}

.contact-header p {
  color: var(--ink-light);
  font-size: 1.125rem;
  margin-bottom: 48px; /* מרווח גדול יותר לפני הכרטיסיות */
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

/* עיצוב חדש לכרטיסיות יצירת קשר */
.contact-methods {
  display: grid;
  gap: 24px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .contact-methods {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-method {
  background: white;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  text-align: center;
}

.contact-method:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

/* אייקונים גדולים ובולטים */
.method-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.contact-method:hover .method-icon {
    transform: scale(1.1);
}

.method-icon.whatsapp {
  background: #25D366; /* ירוק של וואטסאפ */
}

.method-content h3 {
  color: var(--ink);
  font-size: 1.25rem;
  margin-bottom: 8px;
}

/* הבלטת מספר הטלפון / הקישור */
.method-link {
  display: block;
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.method-link:hover {
  color: var(--primary-dark);
}

.method-content p {
  color: var(--muted);
  font-size: 0.9375rem;
  margin: 0;
}

/* הסתרת הכפתורים הכפולים - הכרטיסיות החדשות מחליפות אותם */
.contact-buttons {
  display: none;
}

/* עיצוב מחדש לתגי האמינות */
.contact-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 48px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: white;
  border-radius: var(--radius-full);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink-light);
  border: 1px solid var(--line);
}

.trust-badge i {
  color: var(--primary);
  font-size: 1.125rem;
}
/* ===== Floating WhatsApp Button ===== */
.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: var(--z-floating);
  animation: floatPulse 2s ease-in-out infinite;
}

.floating-cta .btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  padding: 0;
  font-size: 1.75rem;
  box-shadow: var(--shadow-lg);
  background: #25D366;
}

.floating-cta .btn:hover {
  background: #20BA5A;
  transform: scale(1.1);
}

@keyframes floatPulse {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* ===== Back to Top Button ===== */
.back-to-top-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: var(--z-floating);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--secondary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
}

.back-to-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top-btn:hover {
  background: var(--secondary-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* RTL Adjustments */
@media (min-width: 992px) {
  [dir="rtl"] .advantage-item:hover {
    transform: translateX(4px);
  }
}

/* ===== Responsive Utilities ===== */
@media (min-width: 1440px) {
  :root {
    --container-padding: 24px;
  }
}

/* ===== Footer ===== */
.site-footer {
  background: var(--secondary);
  color: rgba(255, 255, 255, 0.9);
  padding: clamp(40px, 8vh, 64px) 0 0;
  margin-top: clamp(40px, 8vh, 80px);
}

.footer-top {
  display: grid;
  gap: clamp(32px, 5vw, 48px);
  padding-bottom: clamp(32px, 5vw, 48px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 640px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-top {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  }
}

/* Footer Brand */
.footer-brand {
  grid-column: 1 / -1;
}

@media (min-width: 1024px) {
  .footer-brand {
    grid-column: auto;
  }
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: white;
  margin-bottom: 16px;
  transition: opacity var(--transition-fast);
}

.footer-logo:hover {
  opacity: 0.8;
}

.footer-logo img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-brand-name {
  font-weight: 900;
  font-size: 1.25rem;
  color: white;
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 40ch;
}

/* Footer Social */
.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: var(--radius);
  font-size: 1.125rem;
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

/* Footer Sections */
.footer-section h3.footer-title {
  color: white;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links,
.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9375rem;
  transition: all var(--transition-fast);
  display: inline-block;
}

.footer-links a:hover {
  color: white;
  transform: translateX(-4px);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9375rem;
}

.footer-contact i {
  width: 20px;
  color: var(--primary);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition-fast);
}

.footer-contact a:hover {
  color: white;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 0;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: start;
  }
}

.footer-copyright p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin: 0;
}

/* Footer Credit */
.footer-credit p {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

@media (min-width: 768px) {
  .footer-credit p {
    justify-content: flex-end;
  }
}

.credit-label {
  color: rgba(255, 255, 255, 0.5);
}

.credit-link {
  color: var(--primary);
  font-weight: 700;
  transition: color var(--transition-fast);
}

.credit-link:hover {
  color: white;
}

.credit-separator {
  color: rgba(255, 255, 255, 0.3);
}

.credit-price {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

/* Print Styles */
@media print {
  .announce-bar,
  .menu-toggle,
  .floating-cta,
  .back-to-top-btn,
  .weblite-promo-1,
  .weblite-promo-2 {
    display: none !important;
  }
}
