:root {
  --bg: #f7f7f5;
  --surface: #ffffff;
  --text: #151515;
  --muted: #5f646d;
  --line: #e9e9e6;
  --accent: #6495ed;
  --accent-2: #dff5ed;
  --shadow: 0 10px 30px rgba(12, 18, 28, 0.06);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cg fill='%23C8A27A' fill-opacity='0.16'%3E%3Cellipse cx='70' cy='83' rx='19' ry='16'/%3E%3Ccircle cx='49' cy='60' r='8'/%3E%3Ccircle cx='64' cy='49' r='8'/%3E%3Ccircle cx='80' cy='49' r='8'/%3E%3Ccircle cx='95' cy='60' r='8'/%3E%3C/g%3E%3Cg transform='translate(85 12) rotate(-18)' fill='%23C8A27A' fill-opacity='0.11'%3E%3Cellipse cx='20' cy='32' rx='10' ry='8'/%3E%3Ccircle cx='8' cy='20' r='4'/%3E%3Ccircle cx='16' cy='14' r='4'/%3E%3Ccircle cx='24' cy='14' r='4'/%3E%3Ccircle cx='32' cy='20' r='4'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 150px 150px;
  background-position: 0 0;
}

body > * {
  position: relative;
  z-index: 1;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
}

.section.alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.95));
  border-block: 1px solid var(--line);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247, 247, 245, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(233, 233, 230, 0.85);
}

.nav-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.logo-img {
  width: 50px;
  height: auto;
  display: block;
  flex-shrink: 0;
  animation: floatLogo 3.5s ease-in-out infinite;
  will-change: transform;
}

.logo-text {
  display: block;
  line-height: 1;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.nav a {
  color: #2b2f36;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav a:hover {
  background: #fff;
  color: var(--accent);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  width: 44px;
  height: 44px;
  padding: 8px;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: #1c2027;
  margin: 6px 0;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.05rem;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  box-shadow: 0 10px 20px rgba(100, 149, 237, 0.22);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(100, 149, 237, 0.28);
}

.btn-ghost {
  background: #fff;
  color: #1a1f26;
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.btn-sm {
  padding: 0.55rem 0.85rem;
  font-size: 0.95rem;
}

.hero {
  padding-top: 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy h1 {
  margin: 0.2rem 0 1rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero-copy h1 span {
  color: var(--accent);
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.muted {
  color: var(--muted);
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.2rem 0 1rem;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social-desktop {
  display: flex;
}

.social-mobile {
  display: none;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.95rem;
  color: #2a2f37;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 18px rgba(12, 18, 28, 0.08);
}

.social-ico {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: white;
}

.social-link.ig .social-ico {
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 8%, #fd5949 35%, #d6249f 62%, #285aeb 100%);
}

.social-link.fb .social-ico {
  background: #1877f2;
}

.social-link.wa .social-ico {
  background: #25d366;
}

.hero-card {
  position: relative;
}

.hero-photo-wrapper {
  background: #fff;
  border-radius: 24px;
  padding: 0.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.hero-photo {
  border-radius: 16px;
  height: min(65vh, 520px);
  object-fit: cover;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 0.75rem 0.85rem;
  box-shadow: var(--shadow);
  animation: floatY 4.5s ease-in-out infinite;
}

.floating-card p {
  margin: 0;
  font-weight: 600;
}

.floating-card small {
  color: var(--muted);
  display: block;
  margin-top: 0.2rem;
  line-height: 1.4;
}

.card-2 {
  right: -10px;
  bottom: 22px;
  animation-delay: 0.8s;
}

.section-head {
  margin-bottom: 1.4rem;
}

.section-head h2 {
  margin: 0.3rem 0 0;
  font-size: clamp(1.5rem, 2.6vw, 2.3rem);
  letter-spacing: -0.02em;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(12, 18, 28, 0.08);
}

.service-card h3 {
  margin: 0.15rem 0 0.55rem;
  font-size: 1.05rem;
}

.service-card p {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.service-card span {
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.gallery-item {
  margin: 0;
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  isolation: isolate;
}

.gallery-item::before {
  content: "🐶";
  position: absolute;
  right: 12px;
  top: 12px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(100, 149, 237, 0.18);
  box-shadow: 0 10px 20px rgba(12, 18, 28, 0.08);
  transform: translateY(-10px) scale(0.8) rotate(-12deg);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(100, 149, 237, 0) 45%, rgba(100, 149, 237, 0.18) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.gallery-item:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 22px 34px rgba(12, 18, 28, 0.12);
  border-color: rgba(100, 149, 237, 0.22);
}

.gallery-item:hover::before {
  opacity: 1;
  transform: translateY(0) scale(1) rotate(0deg);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item img {
  aspect-ratio: 3 / 4;
  min-height: 260px;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  margin: 0;
  padding: 0.55rem 0.75rem;
  font-size: 0.94rem;
  color: #1f2630;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(233, 233, 230, 0.9);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  z-index: 1;
}

.location-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
  align-items: start;
}

.map-card {
  background: rgba(255,255,255,.76);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .8rem;
  box-shadow: var(--shadow);
  overflow: visible;
  min-height: unset;
  display: block;
}

.map {
  width: 100%;
  min-height: 360px;
  background:
    radial-gradient(circle at 20% 20%, rgba(100, 149, 237, 0.1), transparent 45%),
    radial-gradient(circle at 80% 80%, rgba(100, 149, 237, 0.08), transparent 40%),
    #f3f5f6;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 500;
  position: relative;
}

.map::before {
  content: "Map will load here";
}

.map.map-loaded::before {
  display: none;
}

.map-note {
  border-top: 1px solid var(--line);
  padding: 0.8rem 0.95rem;
  display: grid;
  gap: 0.25rem;
  font-size: 0.9rem;
  color: var(--muted);
}

code {
  background: #f1f3f4;
  border: 1px solid #e5e8ea;
  border-radius: 8px;
  padding: 0.12rem 0.35rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.85em;
}

.cta-box {
  background: linear-gradient(180deg, #ffffff, #fbfffd);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.25rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cta-box h2 {
  margin: 0.2rem 0 0.35rem;
  letter-spacing: -0.02em;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.price-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 2000;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 999px;
  padding: 0.8rem 1rem;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(12, 18, 28, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(12, 18, 28, 0.16);
}

.price-fab:active {
  transform: translateY(0);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
}

.modal.is-open {
  display: block;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(21, 21, 21, 0.45);
  backdrop-filter: blur(6px);
}

.modal__panel {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(720px, calc(100% - 2rem));
  max-height: calc(100vh - 2rem);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 22px 60px rgba(12, 18, 28, 0.18);
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
}

.modal__head {
  padding: 1rem 1rem 0.75rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
}

.modal__head h3 {
  margin: 0.2rem 0 0;
}

.modal__close {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  box-shadow: var(--shadow);
}

.modal__body {
  padding: 1rem;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.modal__foot {
  padding: 0.85rem 1rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.75);
}

.price-table {
  display: grid;
  gap: 0.65rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.price-name {
  font-weight: 600;
  color: var(--text);
}

.price-value {
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: #eef4ff;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.footer-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.22s;
}

@keyframes floatY {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes floatLogo {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-photo {
    height: 400px;
  }

  
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-block;
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 0.55rem;
    display: grid;
    gap: 0.25rem;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    padding: 0.8rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid .gallery-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
  .section {
    padding: 4rem 0;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero-actions,
  .cta-actions {
    width: 100%;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    flex: 1 1 180px;
  }

  .social-desktop {
    display: none;
  }

  .social-mobile {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
    justify-content: center;
  }

  .social-mobile .social-link {
    flex: 1 1 calc(50% - 0.5rem);
    justify-content: center;
    min-width: 140px;
  }

  .cta-box,
  .footer-wrap,
  .modal__foot {
    flex-direction: column;
    align-items: flex-start;
  }

  .card-2 {
    position: static;
    margin-top: 0.75rem;
    display: inline-block;
  }

  .floating-card {
    animation: none;
  }

  .price-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .price-value {
    white-space: normal;
  }
  
  } /* this closes the @media block */

.price-disclaimer {
  display: block;
  text-align: center;
}

.price-disclaimer .price-name {
  font-weight: 400;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}


@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal.in-view,
  .floating-card,
  .gallery-item img,
  .btn,
  .service-card,
  .gallery-item,
  .logo-img {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
}
/* ── Branch merge additions ── */

.service-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.contact-list li {
  background: #fff;
  border: 1px solid var(--border, #e8e4dc);
  border-radius: 10px;
  padding: 0.7rem 1rem;
  font-size: 0.95rem;
  color: var(--text);
}

.contact-list a {
  color: inherit;
  text-decoration: none;
}

.map-frame {
  display: block;
  width: 100%;
  min-height: 420px;
  height: 420px;
  border: 0;
  border-radius: 18px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #25d366;
  color: #fff;
  border: none;
  padding: 0.7rem 1.4rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
}

.cta-actions.left {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-start;
}

/* ── Services detail box ── */
.services-detail {
  margin-top: 2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.services-detail-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.services-detail-icon {
  font-size: 1.8rem;
  width: 54px;
  height: 54px;
  background: #eef4ff;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.services-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 0.6rem;
}

.services-detail-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.6rem 0.85rem;
  font-size: 0.93rem;
  color: var(--text);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.services-detail-list li:hover {
  border-color: rgba(100, 149, 237, 0.4);
  background: #f0f5ff;
}

.services-detail-list li span {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.services-detail-list li:last-child {
  grid-column: 1 / -1;
  max-width: 210px;
  margin-inline: auto;
}

/* ── Why Us strip ── */
.why-us {
  background: linear-gradient(135deg, #eef4ff 0%, #f7f7f5 55%, #dff5ed 100%);
  border-block: 1px solid var(--line);
}

.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.why-us-quote {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.why-us-heart {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}

.why-us-quote blockquote {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text);
}

.why-us-author {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
}

.why-us-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.why-pill {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 24px rgba(12,18,28,0.09);
}

.why-pill-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: #eef4ff;
  border-radius: 10px;
  display: grid;
  place-items: center;
}

.why-pill div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.why-pill strong {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.3;
}

.why-pill span {
  font-size: 0.8rem;
  color: var(--muted);
}

.why-us-socials {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.why-us-socials-label {
  margin: 0 0 1rem;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.why-social-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.why-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.9rem;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
  word-break: break-all;
}

.why-social-btn:hover {
  transform: translateY(-2px);
  opacity: 0.88;
}

.why-social-btn.ig {
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fd5949 35%, #d6249f 62%, #285aeb 100%);
}

.why-social-btn.fb {
  background: #1877f2;
}

@media (max-width: 980px) {
  .why-us-inner {
    grid-template-columns: 1fr 1fr;
  }
  .why-us-quote {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .why-us-inner {
    grid-template-columns: 1fr;
  }
  .why-us-pills {
    grid-template-columns: 1fr 1fr;
  }
  .services-detail-list {
    grid-template-columns: 1fr 1fr;
  }

  
}

@media (max-width: 480px) {
  .why-us-pills,
  .services-detail-list {
    grid-template-columns: 1fr;
  }

}



/* ── Hero mobile reorder ── */

/* Desktop: show desktop buttons, hide mobile buttons */
.hero-actions-mobile {
  display: none;
}

.hero-actions-desktop {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.2rem 0 1rem;
}

@media (max-width: 760px) {
  /* Hide desktop action buttons */
  .hero-actions-desktop {
    display: none;
  }

  /* Show mobile action buttons (inside hero-card, after photo) */
  .hero-actions-mobile {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
    width: 100%;
  }

  .hero-actions-mobile .btn {
    flex: 1 1 100%;
    text-align: center;
    justify-content: center;
  }

  /* Taller photo so Nataliia isn't cropped */
    .hero-photo {
    height: auto !important;
    max-height: none !important;
    width: 100%;
    object-fit: contain;
    object-position: center center;
  }

  /* Floating card stays attached below photo, not absolutely positioned */
  .hero-photo-wrapper {
    padding-bottom: 0;
  }

  .hero-card {
    position: relative;
    padding-bottom: 90px;
  }

  .card-2 {
    position: relative;
    margin-left: -15px;
    margin-top: -60px;
    z-index: 2;
    animation: floatY 4.5s ease-in-out infinite;
    animation-delay: 0.8s;
  }

  
}

/* ── Gallery social CTA ── */
.gallery-social-cta {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.gallery-social-text {
  margin: 0;
  font-size: 1.05rem;
  color: var(--muted);
  font-weight: 500;
}

.gallery-social-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery-social-app {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1.4rem;
  border-radius: 16px;
  text-decoration: none;
  color: #fff;
  min-width: 190px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 24px rgba(12, 18, 28, 0.12);
}

.gallery-social-app:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(12, 18, 28, 0.18);
}

.gallery-social-app.ig {
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fd5949 35%, #d6249f 62%, #285aeb 100%);
}

.gallery-social-app.tk {
  background: #010101;
}

.gallery-social-app-ico {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.gallery-social-app-label {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  text-align: left;
}

.gallery-social-app-label small {
  font-size: 0.75rem;
  opacity: 0.85;
  font-weight: 400;
}

.gallery-social-app-label strong {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

@media (max-width: 480px) {
  .gallery-social-app {
    width: 100%;
    min-width: unset;
  }
  .gallery-social-btns {
    width: 100%;
    flex-direction: column;
  }
}
