/* =====================================================
   הושעיה אמן בלונים — stylesheet
   RTL Hebrew · Mobile-first · 2026
   ===================================================== */

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

:root {
  --blue:         #2563EB;
  --blue-dark:    #1D4ED8;
  --blue-light:   #DBEAFE;
  --indigo:       #4338CA;
  --purple:       #7C3AED;
  --purple-dark:  #5B21B6;
  --purple-light: #EDE9FE;
  --gold:         #F59E0B;
  --wa:           #25D366;
  --wa-dark:      #1DA851;
  --fb:           #1877F2;
  --ig-start:     #E1306C;
  --ig-end:       #833AB4;

  --bg:           #FAFAF8;
  --bg-alt:       #EFF6FF;
  --white:        #FFFFFF;
  --text:         #0F172A;
  --muted:        #6B7280;
  --border:       #E5E7EB;

  --radius:       1rem;
  --radius-sm:    0.5rem;
  --radius-pill:  100px;
  --shadow:       0 4px 24px rgba(0,0,0,.08);
  --shadow-lg:    0 8px 40px rgba(0,0,0,.14);
  --transition:   0.3s cubic-bezier(.4,0,.2,1);

  --container:    1200px;
  --nav-h:        68px;
}

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

body {
  font-family: 'Heebo', 'Segoe UI', Tahoma, sans-serif;
  background:
    radial-gradient(ellipse 70% 55% at  8%  8%, rgba(37,99,235,.13)  0%, transparent 55%),
    radial-gradient(ellipse 60% 60% at 92% 15%, rgba(124,58,237,.11) 0%, transparent 55%),
    radial-gradient(ellipse 80% 50% at 50% 95%, rgba(67,56,202,.09)  0%, transparent 55%),
    radial-gradient(ellipse 55% 55% at 85% 70%, rgba(37,99,235,.07)  0%, transparent 50%),
    #F0F4FF;
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.7;
  direction: rtl;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- SCROLL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* stagger children */
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ---- UTILITY ---- */
.container {
  width: min(var(--container), 100% - 2rem);
  margin-inline: auto;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-wa {
  background: var(--wa);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
}
.btn-wa:hover, .btn-wa:focus-visible {
  background: var(--wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(37,211,102,.45);
}

.btn-sm { padding: 0.55rem 1.3rem; font-size: 0.95rem; }

.btn-ghost-hero {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border: 2px solid rgba(255,255,255,.55);
  backdrop-filter: blur(4px);
}
.btn-ghost-hero:hover, .btn-ghost-hero:focus-visible {
  background: rgba(255,255,255,.25);
  transform: translateY(-2px);
}

.btn-hero-phone {
  background: var(--white);
  color: var(--blue);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.9rem 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.btn-hero-phone:hover, .btn-hero-phone:focus-visible {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0,0,0,.28);
}

.btn-facebook {
  background: var(--fb);
  color: var(--white);
  padding: 0.65rem 1.5rem;
}
.btn-facebook:hover { filter: brightness(1.1); transform: translateY(-2px); }

.btn-instagram {
  background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF);
  color: var(--white);
  padding: 0.65rem 1.5rem;
}
.btn-instagram:hover { filter: brightness(1.1); transform: translateY(-2px); }

/* =====================================================
   NAVIGATION
   ===================================================== */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(8,12,55,.48);
  /* אין backdrop-filter כאן — כדי שתפריט הנייד (position:fixed) יכסה את כל המסך */
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.site-header.scrolled:not(.nav-open) {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(37,99,235,.12);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}
.site-header.scrolled.nav-open {
  background: rgba(255,255,255,.92);
  /* אין backdrop-filter כשהתפריט פתוח */
}
.site-header.hidden  { transform: translateY(-100%); }
.site-header.visible { transform: translateY(0); }

.nav-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  transition: color var(--transition);
  flex-shrink: 0;
}
.site-header.scrolled .nav-brand { color: var(--text); }

.nav-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--white);
  padding: 2px;
}
.nav-brand-text { display: none; }
@media (min-width: 480px) { .nav-brand-text { display: block; } }

/* hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 1100;
}
.bar {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.site-header.scrolled .bar { background: var(--text); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* mobile menu */
.nav-links {
  display: none;
  flex-direction: column;
  gap: 0;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 2rem 1.5rem;
  z-index: 1100;
  overflow-y: auto;
}
.nav-links.open { display: flex; }

.nav-link {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.nav-link:hover { color: var(--blue); }
.nav-cta {
  margin-top: 1rem;
  color: var(--wa);
  border-bottom: none;
}

@media (min-width: 860px) {
  .nav-toggle { display: none; }
  .nav-links {
    display: flex !important;
    flex-direction: row;
    position: static;
    background: none;
    backdrop-filter: none;
    padding: 0;
    gap: 0.25rem;
  }
  .nav-link {
    font-size: 0.95rem;
    padding: 0.4rem 0.8rem;
    border-bottom: none;
    color: rgba(255,255,255,.9);
    border-radius: var(--radius-sm);
  }
  .site-header.scrolled .nav-link { color: var(--text); }
  .nav-link:hover { color: var(--white); background: rgba(255,255,255,.15); }
  .site-header.scrolled .nav-link:hover { color: var(--blue); background: var(--blue-light); }
  .nav-cta { color: var(--wa); margin-top: 0; }
  .site-header.scrolled .nav-cta { color: var(--wa); }
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(145deg,
    #0F1035 0%,
    #1E3A8A 28%,
    #3730A3 58%,
    #7C3AED 100%
  );
  padding-block: calc(var(--nav-h) + 3rem) 4rem;
}

/* Animated bubble decorations */
.hero-bubbles { position: absolute; inset: 0; pointer-events: none; }
.bubble {
  position: absolute;
  border-radius: 50% 50% 50% 46% / 46% 46% 54% 50%;
  opacity: 0.12;
  animation: floatUp 10s ease-in-out infinite;
}
.b1 { width: 130px; height: 155px; background: #FF6B6B; top: 15%; right: 8%;  animation-delay: 0s;   }
.b2 { width:  80px; height:  95px; background: #4ECDC4; top: 55%; left:  7%;  animation-delay: -3s;  }
.b3 { width: 110px; height: 130px; background: #FFE66D; bottom: 20%; right: 20%; animation-delay: -5s;  }
.b4 { width:  65px; height:  78px; background: #A8E6CF; top: 25%; left: 22%;  animation-delay: -1.5s;}
.b5 { width:  95px; height: 112px; background: #FF8B94; bottom: 35%; left: 15%; animation-delay: -7s;  }
.b6 { width:  75px; height:  88px; background: #C3B1E1; top: 70%; right: 30%; animation-delay: -4s;  }
.bubble::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 1.5px;
  height: 14px;
  background: rgba(255,255,255,.5);
}

@keyframes floatUp {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  33%       { transform: translateY(-18px) rotate(4deg) scale(1.03); }
  66%       { transform: translateY(-10px) rotate(-3deg) scale(0.98); }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding-inline: 1rem;
  max-width: 680px;
}

.hero-eyebrow {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: 0.75rem;
  transition-delay: 0s !important;
}

.hero-title {
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.25);
  transition-delay: 0.12s !important;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 3vw, 1.4rem);
  font-weight: 400;
  color: rgba(255,255,255,.88);
  margin-bottom: 2.5rem;
  transition-delay: 0.22s !important;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  transition-delay: 0.34s !important;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.7);
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); opacity: .7; }
  50%       { transform: translateY(10px); opacity: .3; }
}

/* =====================================================
   SECTIONS COMMON
   ===================================================== */
.section {
  padding-block: 5rem;
  background: rgba(240,244,255,.5);
}
.section-alt { background: rgba(219,234,254,.45); }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.section-line {
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--purple));
  border-radius: var(--radius-pill);
  margin-inline: auto;
  margin-top: 0.6rem;
  transition-delay: 0.1s !important;
}
.section-sub {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 1rem;
  transition-delay: 0.2s !important;
}

/* =====================================================
   ABOUT
   ===================================================== */
.about-layout {
  display: grid;
  gap: 3rem;
}
@media (min-width: 768px) {
  .about-layout { grid-template-columns: 1fr 1fr; align-items: start; }
}

.about-text { line-height: 1.85; }
.about-lead {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--indigo);
  margin-bottom: 1rem;
}
.about-text p { margin-bottom: 1rem; color: var(--muted); }
.about-text p:last-of-type { margin-bottom: 1.5rem; }
.about-tip {
  font-size: .88rem;
  color: var(--blue);
  font-weight: 500;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  transition-delay: 0.15s !important;
}
@media (min-width: 480px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-tile {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  min-height: 160px;
  padding: 0;
  background: #1e3a8a;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(37,99,235,.1);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(67,56,202,.28);
}
.service-tile-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 0.45s ease, opacity 0.3s;
}
.service-tile:hover .service-tile-img {
  transform: scale(1.07);
  opacity: 1;
}
.service-tile-body {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0.7rem 0.6rem;
  background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.08) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.service-tile-body .service-icon { font-size: 1.4rem; }
.service-tile-body span:last-child {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  text-shadow: 0 1px 6px rgba(0,0,0,.6);
}
.service-icon { font-size: 2rem; line-height: 1; }

/* =====================================================
   VIDEO
   ===================================================== */
.video-wrap {
  position: relative;
  padding-top: 56.25%; /* 16:9 */
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #000;
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-placeholder {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, #0F1035, #1E3A8A, #4338CA, #7C3AED);
  padding: 3rem 2rem;
  text-align: center;
  color: var(--white);
}
.video-placeholder-inner { margin-bottom: 2.5rem; }
.video-play-icon {
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 1rem;
  opacity: .7;
}
.video-placeholder-text { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; }
.video-placeholder-sub { font-size: 0.875rem; opacity: .75; margin-bottom: 2rem; }
.video-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* =====================================================
   GALLERY
   ===================================================== */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.gfilter {
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--white);
  border: 2px solid var(--border);
  transition: all var(--transition);
}
.gfilter:hover { border-color: var(--blue); color: var(--blue); }
.gfilter.active {
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  color: var(--white);
  border-color: var(--blue);
  box-shadow: 0 4px 14px rgba(37,99,235,.35);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 560px)  { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 860px)  { .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }
@media (min-width: 1100px) { .gallery-grid { grid-template-columns: repeat(5, 1fr); } }

.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  background: var(--blue-light);
  transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-item:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); z-index: 1; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,16,53,.75) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 0.6rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
}

.gallery-item.hidden {
  display: none;
}

.gallery-placeholder {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  padding: 3rem 1rem;
  font-size: 1.1rem;
}

.gallery-more-btn {
  display: block;
  margin: 2rem auto 0;
  padding: 0.7rem 2rem;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--blue);
  background: var(--white);
  border: 2px solid var(--blue);
  cursor: pointer;
  transition: all var(--transition);
}
.gallery-more-btn:hover {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37,99,235,.35);
}

.gallery-add-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  border: 2px dashed var(--border);
  border-radius: var(--radius-sm);
  aspect-ratio: 1/1;
}
.gallery-add-hint span:first-child { font-size: 1.75rem; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(90vw, 900px);
  max-height: 90vh;
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: var(--shadow-lg);
}
.lightbox-close {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,.3); }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials-wrap { overflow: hidden; }

.testimonials-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 100%;
  background: rgba(255,255,255,.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .testimonial-card { flex: 0 0 calc(50% - 0.625rem); }
}
@media (min-width: 1000px) {
  .testimonial-card { flex: 0 0 calc(33.333% - 0.84rem); }
}

.stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  flex: 1;
}
.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--blue-light);
  flex-shrink: 0;
  background: var(--blue-light);
}
.testimonial-avatar-initials {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
  letter-spacing: -0.02em;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--indigo);
}
.screenshot-btn {
  background: var(--blue-light);
  color: var(--blue);
  border: none;
  border-radius: var(--radius-pill);
  padding: 0.3rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: all var(--transition);
  white-space: nowrap;
}
.screenshot-btn:hover {
  background: var(--blue);
  color: var(--white);
}

.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.tnav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  color: var(--blue);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}
.tnav-btn:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }

.tdots {
  display: flex;
  gap: 0.5rem;
}
.tdot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.tdot.active {
  background: var(--blue);
  transform: scale(1.25);
}

/* =====================================================
   CONTACT
   ===================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 560px) {
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 860px) {
  .contact-grid { grid-template-columns: repeat(3, 1fr); }
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1.5px solid rgba(255,255,255,.85);
}
.contact-card:not(.contact-card-static):hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-light);
}
.contact-card-wa { border-color: rgba(37,211,102,.25); }
.contact-card-wa:hover { border-color: var(--wa) !important; }
.contact-card-google { border-color: rgba(251,188,5,.3); }
.contact-card-google:hover { border-color: #FBBC05 !important; }
.contact-card-google .contact-card-icon { background: rgba(251,188,5,.12); color: #EA4335; }
.contact-card-static { cursor: default; }

.contact-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}
.contact-card-wa .contact-card-icon { background: rgba(37,211,102,.12); color: var(--wa); }

.contact-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.contact-card-body strong { font-size: 0.95rem; font-weight: 700; }
.contact-card-body span   { font-size: 0.9rem; color: var(--muted); }

.contact-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid rgba(255,255,255,.85);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
}
.social-fb {
  background: var(--fb);
  color: var(--white);
}
.social-fb:hover { filter: brightness(1.12); transform: translateY(-2px); }
.social-ig {
  background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF);
  color: var(--white);
}
.social-ig:hover { filter: brightness(1.12); transform: translateY(-2px); }

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,.75);
  padding-block: 2.5rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  justify-content: center;
  text-align: center;
}
@media (min-width: 640px) {
  .footer-inner { justify-content: space-between; text-align: right; }
}

.footer-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--white);
  padding: 3px;
}
.footer-text p { font-size: 0.9rem; }
.footer-sub { font-size: 0.8rem; opacity: .6; margin-top: 0.2rem; }

.footer-links {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.footer-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.8);
  transition: all var(--transition);
}
.footer-links a:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }

/* =====================================================
   FLOATING WHATSAPP
   ===================================================== */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem 0.75rem 1rem;
  background: var(--wa);
  color: var(--white);
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 24px rgba(37,211,102,.5);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--transition);
  animation: waPulse 3s ease-in-out infinite;
}
.wa-float:hover {
  background: var(--wa-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(37,211,102,.6);
  animation: none;
}
.wa-float-label { display: none; }
@media (min-width: 480px) { .wa-float-label { display: inline; } }

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,.5); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,.8), 0 0 0 8px rgba(37,211,102,.12); }
}

/* =====================================================
   WORKS IMAGE STRIP
   ===================================================== */
.works-strip {
  overflow: hidden;
  padding-block: 2rem;
  background: rgba(15, 16, 53, 0.04);
  border-top: 1px solid rgba(37,99,235,.08);
  border-bottom: 1px solid rgba(37,99,235,.08);
  position: relative;
}

.works-strip::before,
.works-strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.works-strip::before {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}
.works-strip::after {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}

.works-strip-inner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  direction: ltr;
  gap: 1rem;
  animation: stripScroll 35s linear infinite;
  animation-play-state: paused;
  width: max-content;
}
.works-strip-inner:hover { animation-play-state: paused; }

.works-strip-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1rem;
  flex-shrink: 0;
}

.works-strip-img {
  width: 160px;
  height: 160px;
  border-radius: var(--radius);
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.works-strip-img:hover {
  transform: scale(1.06) translateY(-4px);
  box-shadow: 0 10px 32px rgba(37,99,235,.28);
}

@keyframes stripScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 600px) {
  .works-strip-img { width: 120px; height: 120px; }
}

/* =====================================================
   NAV — BALLOON LINK
   ===================================================== */
.nav-balloon {
  color: var(--gold) !important;
}
.site-header.scrolled .nav-balloon { color: #D97706 !important; }
.nav-balloon:hover { background: rgba(245,158,11,.15) !important; }

/* =====================================================
   BALLOON HERO BUTTON
   ===================================================== */
.btn-balloon-hero {
  background: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 1.75rem;
  box-shadow: 0 4px 20px rgba(245,158,11,.45);
  animation: balloonPulse 3.5s ease-in-out infinite;
}
.btn-balloon-hero:hover, .btn-balloon-hero:focus-visible {
  filter: brightness(1.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(245,158,11,.6);
  animation: none;
}

@keyframes balloonPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(245,158,11,.45); }
  50%       { box-shadow: 0 4px 30px rgba(245,158,11,.75), 0 0 0 6px rgba(245,158,11,.12); }
}

/* =====================================================
   BALLOON SERVICE CTA SECTION
   ===================================================== */
.balloon-service-section {
  background: transparent;
}

.balloon-cta-card {
  position: relative;
  background: linear-gradient(135deg,
    #0F1035 0%,
    #1E3A8A 35%,
    #3730A3 65%,
    #7C3AED 100%
  );
  border-radius: 1.5rem;
  padding: 3.5rem 2rem;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(37,99,235,.35);
}

.balloon-cta-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  user-select: none;
}

.bcta-b {
  position: absolute;
  font-size: 2.5rem;
  opacity: 0.18;
  animation: bctaFloat 8s ease-in-out infinite;
}
.bcta-b1 { top: 10%; right: 8%;  animation-delay: 0s;    font-size: 3rem; }
.bcta-b2 { top: 60%; right: 5%;  animation-delay: -2s;   font-size: 2rem; }
.bcta-b3 { bottom: 15%; left: 8%; animation-delay: -4s;  font-size: 3.5rem; }
.bcta-b4 { top: 20%; left: 5%;   animation-delay: -1s;   font-size: 2.2rem; }
.bcta-b5 { bottom: 30%; right: 25%; animation-delay: -6s; font-size: 2rem; }

@keyframes bctaFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-16px) rotate(8deg); }
}

.balloon-cta-body {
  position: relative;
  z-index: 1;
  max-width: 580px;
  margin-inline: auto;
}

.balloon-cta-badge {
  display: inline-block;
  background: rgba(245,158,11,.25);
  border: 1px solid rgba(245,158,11,.5);
  color: #FCD34D;
  border-radius: var(--radius-pill);
  padding: 0.3rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.balloon-cta-title {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-shadow: 0 2px 16px rgba(0,0,0,.25);
}

.balloon-cta-desc {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,.85);
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

.btn-balloon-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #F59E0B, #EF4444);
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 28px rgba(245,158,11,.5);
  transition: all var(--transition);
  border: none;
}
.btn-balloon-cta:hover, .btn-balloon-cta:focus-visible {
  filter: brightness(1.1);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 40px rgba(245,158,11,.65);
}

@media (min-width: 640px) {
  .balloon-cta-card { padding: 4.5rem 3rem; }
}

/* =====================================================
   GALLERY CATEGORY CARDS
   ===================================================== */
.gallery-cat-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 640px) {
  .gallery-cat-cards { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}
@media (min-width: 900px) {
  .gallery-cat-cards { grid-template-columns: repeat(4, 1fr); }
}

.gcat-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
  border: none;
  transition: transform var(--transition), box-shadow var(--transition);
  background: var(--blue-light);
}
.gcat-card:hover, .gcat-card:focus-visible {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-lg);
  outline: none;
}
.gcat-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--transition);
}
.gcat-card:hover .gcat-card-img,
.gcat-card:focus-visible .gcat-card-img {
  transform: scale(1.08);
}
.gcat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15,16,53,.88) 0%,
    rgba(15,16,53,.35) 48%,
    transparent 75%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  gap: 0.25rem;
}
.gcat-card-icon {
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 0.25rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.3));
}
.gcat-card-name {
  color: var(--white);
  font-weight: 800;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  text-shadow: 0 1px 6px rgba(0,0,0,.4);
}
.gcat-card-count {
  color: rgba(255,255,255,.75);
  font-size: 0.8rem;
  font-weight: 500;
}
.gcat-card-cta {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  background: rgba(37,99,235,.85);
  color: var(--white);
  border-radius: var(--radius-pill);
  padding: 0.28rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(-6px);
  transition: all var(--transition);
  backdrop-filter: blur(4px);
  font-family: inherit;
}
.gcat-card:hover .gcat-card-cta,
.gcat-card:focus-visible .gcat-card-cta {
  opacity: 1;
  transform: translateY(0);
}

/* Browse nav (back button + filters row) */
.gallery-browse-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.gallery-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.2rem;
  background: var(--white);
  border: 2px solid var(--blue-light);
  border-radius: var(--radius-pill);
  color: var(--blue);
  font-weight: 700;
  font-size: 0.88rem;
  transition: all var(--transition);
  cursor: pointer;
  font-family: inherit;
  flex-shrink: 0;
}
.gallery-back-btn:hover, .gallery-back-btn:focus-visible {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  outline: none;
}
.gallery-back-btn svg { transform: scaleX(-1); }

/* =====================================================
   FOCUS / ACCESSIBILITY
   ===================================================== */
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =====================================================
   PRINT
   ===================================================== */
@media print {
  .site-header, .wa-float, .hero-bubbles { display: none; }
  .section { padding-block: 2rem; }
}
