@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;600;700;800&family=Assistant:wght@300;400;500;600;700&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #e67e22;
  --primary-dark: #d35400;
  --primary-light: rgba(230, 126, 34, 0.1);
  --primary-fg: #ffffff;
  --secondary: #2980b9;
  --secondary-fg: #ffffff;
  --bg: #faf8f5;
  --bg-muted: rgba(230, 126, 34, 0.03);
  --fg: #1a1f2e;
  --fg-muted: #6b7280;
  --card-bg: #ffffff;
  --card-border: #e8e4df;
  --border: #e0dbd5;
  --destructive: #c0392b;
  --green: #25d366;
  --green-dark: #1da851;
  --radius: 0.5rem;
}

html {
  scroll-behavior: smooth;
  direction: rtl;
}

body {
  font-family: 'Heebo', 'Assistant', sans-serif;
  background-color: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-align: right;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s;
  font-family: inherit;
  white-space: nowrap;
}

.btn:hover {
  filter: brightness(1.05);
}

.btn:active {
  filter: brightness(0.95);
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-fg);
  border-color: var(--primary-dark);
}

.btn-outline {
  background: transparent;
  color: var(--fg);
  border-color: var(--border);
}

.btn-outline:hover {
  background: rgba(0,0,0,0.03);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-md {
  padding: 0.5rem 1.25rem;
  font-size: 0.9375rem;
  min-height: 2.25rem;
}

.btn-lg {
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
}

.btn-xl {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
}

.badge-secondary {
  background: rgba(0,0,0,0.05);
  color: var(--fg);
  border: 1px solid rgba(0,0,0,0.08);
}

.badge-hero {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}

.badge-primary {
  background: var(--primary);
  color: var(--primary-fg);
  border: none;
  font-weight: 700;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: visible;
}

.card-content {
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .card-content {
    padding: 2rem;
  }
}

.section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--fg);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--fg-muted);
  margin-top: 1rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.text-center {
  text-align: center;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

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

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.flex-wrap-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.icon-lg {
  width: 1.75rem;
  height: 1.75rem;
}

/* =========== HEADER =========== */
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  background: white;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  transition: all 0.3s;
  height: 120px;
}

.header.scrolled {
  height: 80px;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-logo-img {
  width: 110px;
  height: 110px;
  border-radius: var(--radius);
  object-fit: contain;
  transition: all 0.3s;
}

.header.scrolled .header-logo-img {
  width: 64px;
  height: 64px;
}

.header-logo-text h1 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
}

@media (min-width: 768px) {
  .header-logo-text h1 {
    font-size: 1.5rem;
  }
}

.header-logo-text p {
  font-size: 0.75rem;
  color: var(--fg-muted);
  display: none;
}

@media (min-width: 768px) {
  .header-logo-text p {
    display: block;
  }
}

.header-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .header-nav {
    display: flex;
  }
}

.header-nav a {
  color: var(--fg);
  opacity: 0.8;
  transition: color 0.2s;
  font-size: 0.9375rem;
}

.header-nav a:hover {
  color: var(--primary);
  opacity: 1;
}

.header-cta {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .header-cta {
    display: flex;
  }
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--fg);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.lang-switcher:hover {
  background: var(--bg-alt);
  border-color: var(--primary);
  color: var(--primary);
}

.lang-flag {
  font-size: 1rem;
  line-height: 1;
}

.lang-switcher-mobile {
  display: block;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.25rem;
  text-decoration: none;
  color: var(--fg);
  font-weight: 600;
  font-size: 0.9rem;
}

.lang-switcher-mobile:hover {
  color: var(--primary);
  background: rgba(0,0,0,0.03);
  border-color: var(--primary);
}

.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  color: var(--fg);
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu {
  display: none;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 1rem;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-menu nav a {
  padding: 0.5rem 1rem;
  color: var(--fg);
  opacity: 0.8;
  border-radius: var(--radius);
  transition: all 0.2s;
}

.mobile-menu nav a:hover {
  color: var(--primary);
  background: rgba(0,0,0,0.03);
}

.mobile-menu-buttons {
  display: flex;
  gap: 0.5rem;
  padding-top: 0.75rem;
}

.mobile-menu-buttons .btn {
  flex: 1;
}

/* =========== HERO =========== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 120px;
}

@media (min-width: 768px) {
  .hero {
    padding-top: 0;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15,23,42,0.7), rgba(15,23,42,0.6), rgba(15,23,42,0.8));
}

.hero-overlay-side {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(15,23,42,0.5), transparent);
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 5rem 1rem 8rem;
  text-align: center;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 768px) {
  .hero-content {
    padding: 8rem 1.5rem;
  }
}

.hero-content > * + * {
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .hero-content > * + * {
    margin-top: 2rem;
  }
}

.hero h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero h2 {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero h2 {
    font-size: 4.5rem;
  }
}

.hero h2 .highlight {
  color: var(--primary);
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
  max-width: 42rem;
  margin: 1.5rem auto 0;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  padding-top: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-buttons .btn {
  width: 100%;
}

@media (min-width: 640px) {
  .hero-buttons .btn {
    width: auto;
  }
}

.btn-hero-phone {
  background: var(--primary);
  color: white;
  border-color: var(--primary-dark);
  font-size: 1.125rem;
  padding: 1rem 2rem;
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

.btn-hero-whatsapp {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  font-size: 1.125rem;
  padding: 1rem 2rem;
  backdrop-filter: blur(8px);
}

.btn-hero-whatsapp:hover {
  background: rgba(255,255,255,0.2);
}

.whatsapp-icon {
  color: #25d366;
}

.hero-shabbat {
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}

.hero-areas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding-top: 1.5rem;
}

.hero-area {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.7);
}

.hero-area-dot {
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* =========== ABOUT =========== */
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  aspect-ratio: 4/3;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  border: 4px solid white;
}

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

.about-experience {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.about-exp-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-exp-icon svg {
  color: #16a34a;
}

.about-exp-text .number {
  font-size: 1.25rem;
  font-weight: 700;
}

.about-exp-text .label {
  font-size: 0.875rem;
  color: var(--fg-muted);
}

.about-text h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .about-text h2 {
    font-size: 2.25rem;
  }
}

.about-text p {
  font-size: 1.125rem;
  color: var(--fg-muted);
  line-height: 1.8;
}

/* =========== STATS =========== */
.stats {
  padding: 3rem 0;
  background: var(--primary);
}

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

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary-fg);
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .stat-number {
    font-size: 3rem;
  }
}

.stat-label {
  color: rgba(255,255,255,0.8);
  margin-top: 0.25rem;
}

/* =========== SERVICES =========== */
.services {
  background: var(--bg-muted);
}

.service-icon-wrapper {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.service-icon-wrapper svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--fg-muted);
}

/* =========== AREAS =========== */
.area-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.area-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.area-icon-south {
  background: var(--primary);
}

.area-icon-center {
  background: var(--secondary);
}

.area-icon svg {
  color: white;
  width: 1.5rem;
  height: 1.5rem;
}

.area-title {
  font-size: 1.25rem;
  font-weight: 600;
}

.area-subtitle {
  font-size: 0.875rem;
  color: var(--fg-muted);
}

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

.areas-cta p {
  color: var(--fg-muted);
  margin-bottom: 1rem;
}

/* =========== GALLERY =========== */
.gallery-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  aspect-ratio: 4/5;
  cursor: pointer;
}

@media (min-width: 768px) {
  .gallery-item {
    aspect-ratio: 3/4;
  }
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay p {
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
}

/* =========== TESTIMONIALS =========== */
.testimonials {
  background: var(--bg-muted);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  fill: var(--primary);
}

.testimonial-text {
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

.testimonial-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 600;
}

.testimonials .card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonials .testimonial-text {
  flex: 1;
}

.testimonial-name {
  font-weight: 600;
}

.testimonial-location {
  font-size: 0.875rem;
  color: var(--fg-muted);
}

/* =========== CONTACT =========== */
.contact-grid {
  max-width: 56rem;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.5rem;
}

.hours-row:not(:last-child) {
  border-bottom: 1px solid var(--border);
  margin-bottom: 1rem;
}

.hours-day {
  font-weight: 500;
}

.hours-time {
  font-weight: 600;
}

.hours-closed {
  color: var(--destructive);
  font-weight: 700;
}

.contact-direct {
  background: var(--primary);
  color: white;
  border: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.contact-direct h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.contact-direct p {
  color: rgba(255,255,255,0.9);
  font-size: 1.125rem;
  line-height: 1.7;
  margin: 1rem 0 2rem;
}

.contact-direct-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-icon-circle {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-contact-phone {
  width: 100%;
  background: white;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.25rem;
  padding: 0.875rem 1.5rem;
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn-contact-whatsapp {
  width: 100%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  padding: 0.875rem 1.5rem;
}

.btn-contact-whatsapp:hover {
  background: rgba(255,255,255,0.2);
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why-card {
  margin-top: 3rem;
}

.why-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.why-image {
  display: none;
}

@media (min-width: 768px) {
  .why-image {
    display: block;
  }
}

.why-image img {
  border-radius: 0.5rem;
  width: 100%;
  max-height: 300px;
  object-fit: cover;
}

.why-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .why-title {
    font-size: 1.5rem;
  }
}

.why-items {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .why-items {
    grid-template-columns: 1fr 1fr;
  }
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.why-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.why-item span {
  color: var(--fg-muted);
}

/* =========== FOOTER =========== */
.footer {
  background: #0f172a;
  color: white;
  padding: 3rem 0 4rem;
}

@media (min-width: 768px) {
  .footer {
    padding: 4rem 0;
  }
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.footer h4 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-desc {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  margin-top: 1rem;
}

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

.footer-links li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
}

.footer-contact-item svg {
  color: var(--primary);
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.footer-contact-item a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
}

/* =========== FLOATING BUTTONS =========== */
.floating-whatsapp {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 50;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #25d366;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  transition: all 0.3s;
  opacity: 0;
  transform: scale(0);
}

.floating-whatsapp.visible {
  opacity: 1;
  transform: scale(1);
}

.floating-whatsapp:hover {
  background: #1da851;
}

.floating-whatsapp svg {
  width: 1.75rem;
  height: 1.75rem;
  color: white;
}

.scroll-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s;
  opacity: 0;
  transform: scale(0);
}

.scroll-top.visible {
  opacity: 1;
  transform: scale(1);
}

.scroll-top svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--fg);
}

/* =========== MOBILE CTA BAR =========== */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 0.75rem;
  display: flex;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .mobile-cta {
    display: none;
  }
}

.mobile-cta .btn {
  flex: 1;
  padding: 0.75rem;
}

.btn-green-outline {
  background: transparent;
  color: var(--fg);
  border: 1px solid rgba(37, 211, 102, 0.3);
}

/* =========== ANIMATIONS =========== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delay for children */
.stagger > .fade-in:nth-child(1) { transition-delay: 0s; }
.stagger > .fade-in:nth-child(2) { transition-delay: 0.1s; }
.stagger > .fade-in:nth-child(3) { transition-delay: 0.2s; }
.stagger > .fade-in:nth-child(4) { transition-delay: 0.3s; }
.stagger > .fade-in:nth-child(5) { transition-delay: 0.4s; }
.stagger > .fade-in:nth-child(6) { transition-delay: 0.5s; }

/* SVG icon styling */
svg {
  display: inline-block;
  vertical-align: middle;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a1a1a1;
}

/* Section-specific padding for mobile CTA bar */
.footer {
  padding-bottom: 5rem;
}

@media (min-width: 768px) {
  .footer {
    padding-bottom: 4rem;
  }
}

.section-header-icon {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
