/* ============================================================
   PAWS & PLAY — PREMIUM CSS v4 (Complete + Social Icons)
   Font Awesome 6 | Real Icons | Mobile Perfect | Pro Level
   Pink: #E8197D | Teal: #2AADA8 | Caramel: #A0734A
   ============================================================ */

:root {
  --pink:      #E8197D;
  --pink-d:    #C4156A;
  --pink-l:    #FCE4F1;
  --teal:      #2AADA8;
  --teal-d:    #1D8A86;
  --teal-l:    #D9F2F1;
  --caramel:   #A0734A;
  --dark:      #0D0A12;
  --dark2:     #13101C;
  --light:     #FDF9FC;
  --white:     #FFFFFF;
  --text:      #2A2535;
  --muted:     #847F94;
  --r:         14px;
  --rl:        22px;
  --fh:        'Cormorant Garamond', Georgia, serif;
  --fb:        'Jost', sans-serif;
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  /* Brand social colors */
  --insta:     #E1306C;
  --tiktok-c:  #010101;
  --fb-c:      #1877F2;
  --wa-c:      #25D366;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--fb); background: var(--light); color: var(--text); overflow-x: hidden; line-height: 1.7; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
em { font-style: italic; color: var(--pink); }
img { max-width: 100%; display: block; }

/* ---- KEYFRAMES ---- */
@keyframes fadeUp    { from{opacity:0;transform:translateY(36px)} to{opacity:1;transform:translateY(0)} }
@keyframes floatY    { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(-18px) rotate(6deg)} }
@keyframes floatSlow { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-24px)} }
@keyframes marquee   { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes pulse     { 0%,100%{transform:scale(1);opacity:.6} 50%{transform:scale(1.7);opacity:0} }
@keyframes spinPaw   { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
@keyframes loaderBar { from{width:0} to{width:100%} }
@keyframes dotBlink  { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.5)} }
@keyframes instaGrad { 0%{background-position:0% 50%} 100%{background-position:100% 50%} }
@keyframes waBounce  { 0%,100%{transform:translateY(0)} 30%{transform:translateY(-6px)} 60%{transform:translateY(-3px)} }

/* ---- LOADER ---- */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--dark);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 24px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-paw { font-size: 54px; animation: spinPaw 1s linear infinite; }
.loader-bar { width: 180px; height: 3px; background: rgba(255,255,255,0.08); border-radius: 99px; overflow: hidden; }
.loader-fill { height: 100%; background: linear-gradient(90deg, var(--pink), var(--teal)); animation: loaderBar 2s var(--ease) forwards; }

/* ---- CURSOR (desktop only) ---- */
.cursor, .cursor-follower { display: none; }
@media (hover: hover) and (pointer: fine) {
  .cursor {
    width: 8px; height: 8px; background: var(--pink); border-radius: 50%;
    position: fixed; pointer-events: none; z-index: 10000;
    transform: translate(-50%,-50%); transition: transform 0.1s ease; display: block;
  }
  .cursor-follower {
    width: 30px; height: 30px;
    border: 1.5px solid rgba(232,25,125,0.45); border-radius: 50%;
    position: fixed; pointer-events: none; z-index: 9999;
    transform: translate(-50%,-50%); display: block;
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
  }
}

/* ---- FLOATING PAWS ---- */
.paw-bg { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.paw { position: absolute; font-size: 24px; opacity: 0.045; animation: floatSlow 9s ease-in-out infinite; }
.p1{top:8%;left:4%;animation-delay:0s}
.p2{top:28%;left:89%;animation-delay:2s;animation-duration:11s}
.p3{top:58%;left:11%;animation-delay:3.5s;animation-duration:10s}
.p4{top:80%;left:83%;animation-delay:1s;animation-duration:8s}
.p5{top:42%;left:54%;animation-delay:2.5s;animation-duration:13s}
.p6{top:92%;left:38%;animation-delay:4s}

/* ---- UTILITIES ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.tag {
  display: inline-block; background: var(--pink-l); color: var(--pink);
  font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 18px; border-radius: 99px; margin-bottom: 20px;
}
.teal-tag { background: var(--teal-l); color: var(--teal-d); }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 72px; }
.section-head h2 { font-family: var(--fh); font-size: clamp(32px, 5vw, 58px); font-weight: 700; line-height: 1.1; color: var(--dark); margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 16px; font-weight: 300; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.animate-up { opacity: 0; animation: fadeUp 0.9s var(--ease) both; animation-delay: var(--d, 0s); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 34px; border-radius: 99px;
  font-family: var(--fb); font-size: 15px; font-weight: 500;
  cursor: pointer; transition: all 0.35s var(--ease);
  border: 1.5px solid transparent; white-space: nowrap;
}
.btn-primary { background: var(--pink); color: var(--white); box-shadow: 0 8px 28px rgba(232,25,125,0.35); }
.btn-primary:hover { background: var(--pink-d); transform: translateY(-3px); box-shadow: 0 14px 36px rgba(232,25,125,0.45); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.35); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); transform: translateY(-3px); }
.btn-full { width: 100%; }

/* ---- NAVBAR ---- */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 16px 0; transition: all 0.4s var(--ease); }
.navbar.scrolled {
  background: rgba(13,10,18,0.97); backdrop-filter: blur(24px);
  padding: 10px 0; box-shadow: 0 4px 40px rgba(232,25,125,0.1);
}
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 28px; display: flex; align-items: center; gap: 24px; }
.logo { display: flex; align-items: center; margin-right: auto; }
.logo-img { height: 52px; width: auto; object-fit: contain; }
.logo-fallback { display: none; align-items: center; gap: 8px; font-family: var(--fh); font-size: 20px; font-weight: 700; color: var(--white); }
.logo-fallback em { color: #F4A7C3; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: rgba(255,255,255,0.72); font-size: 14px; font-weight: 400; transition: all 0.3s ease; letter-spacing: 0.3px; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1.5px; background: var(--pink); transition: width 0.3s ease; }
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { background: var(--pink) !important; color: var(--white) !important; padding: 10px 24px !important; border-radius: 99px !important; font-weight: 500 !important; box-shadow: 0 4px 16px rgba(232,25,125,0.3); }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--pink-d) !important; transform: translateY(-2px); }

/* NAVBAR SOCIAL ICONS */
.nav-socials { display: flex; align-items: center; gap: 6px; margin-left: 8px; }
.nav-soc {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55); font-size: 13px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
}
.nav-soc:hover { transform: translateY(-2px); }
.nav-soc:hover .fa-instagram { color: var(--insta); }
.nav-soc:hover .fa-tiktok { color: var(--white); background: var(--tiktok-c); border-radius: 4px; }
.nav-soc:hover .fa-facebook-f { color: var(--fb-c); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; margin-left: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s ease; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Hide the hamburger while the mobile menu is open to avoid duplicate X icons */
.hamburger.hidden { opacity: 0; pointer-events: none; transform: none; }

/* ---- MOBILE MENU ---- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 1002;
  background: var(--dark);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 20px;
  transform: translateX(100%); transition: transform 0.4s var(--ease);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-close { position: absolute; top: 20px; right: 24px; background: none; border: none; color: rgba(255,255,255,0.5); font-size: 24px; cursor: pointer; transition: color 0.3s ease; padding: 4px; }
.mobile-close:hover { color: var(--pink); }
.mobile-close .close-icon { font-size: 28px; line-height: 1; color: rgba(255,255,255,0.85); }
.mobile-menu > a { color: rgba(255,255,255,0.7); font-family: var(--fh); font-size: 30px; font-weight: 600; transition: color 0.3s ease; }
.mobile-menu > a:hover { color: var(--pink); }
.mobile-cta { background: var(--pink) !important; color: var(--white) !important; padding: 13px 38px !important; border-radius: 99px !important; font-size: 20px !important; margin-top: 10px; }

/* MOBILE SOCIAL ICONS */
.mobile-socials { display: flex; gap: 16px; margin-top: 16px; }
.mobile-socials a {
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; border: 1.5px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6); transition: all 0.3s ease;
}
.mobile-socials a:hover { transform: scale(1.15); }
.mobile-socials a:nth-child(1):hover { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); border-color: transparent; color: var(--white); }
.mobile-socials a:nth-child(2):hover { background: #010101; border-color: #010101; color: var(--white); }
.mobile-socials a:nth-child(3):hover { background: var(--fb-c); border-color: var(--fb-c); color: var(--white); }
.mobile-socials a:nth-child(4):hover { background: var(--wa-c); border-color: var(--wa-c); color: var(--white); }

/* ---- HERO ---- */
.hero {
  min-height: 100vh; min-height: 100svh;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
  padding: 110px 60px 180px; /* bottom = stats bar height + breathing room */
}
.hero-bg-img { position: absolute; inset: 0; background-size: cover; background-position: center 30%; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(13,10,18,0.93) 0%, rgba(13,10,18,0.76) 55%, rgba(13,10,18,0.42) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 640px; }
.hero-eyebrow { display: flex; align-items: center; gap: 10px; color: var(--pink); font-size: 12px; font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 22px; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--pink); flex-shrink: 0; animation: dotBlink 2s ease-in-out infinite; }
.hero-title { font-family: var(--fh); font-size: clamp(48px, 7vw, 90px); font-weight: 700; line-height: 1.03; color: var(--white); margin-bottom: 22px; letter-spacing: -1px; }
.hero-title em { color: #F4A7C3; }
.hero-sub { color: rgba(255,255,255,0.58); font-size: 16px; font-weight: 300; line-height: 1.9; max-width: 460px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* STATS BAR */
.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 4;
  display: flex; align-items: stretch;
  background: rgba(8,6,14,0.92); backdrop-filter: blur(28px);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.hstat { flex: 1; padding: 22px 24px; display: flex; flex-direction: column; gap: 5px; border-right: 1px solid rgba(255,255,255,0.05); }
.hstat:last-child { border-right: none; }
.hstat-num { display: flex; align-items: baseline; gap: 2px; }
.hstat strong { font-family: var(--fh); font-size: 38px; font-weight: 700; color: var(--white); line-height: 1; }
.hstat sup { font-size: 18px; color: var(--pink); font-weight: 400; }
.hstat .fa-star { color: var(--pink); font-size: 16px; margin-left: 4px; vertical-align: middle; }
.hstat span { color: rgba(255,255,255,0.35); font-size: 11px; font-weight: 400; letter-spacing: 0.5px; text-transform: uppercase; }

/* HERO SCROLL */
.hero-scroll { position: absolute; bottom: 155px; right: 52px; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.28); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; }
.scroll-wheel { width: 20px; height: 34px; border: 1px solid rgba(255,255,255,0.18); border-radius: 10px; position: relative; }
.scroll-wheel::after { content: ''; position: absolute; top: 5px; left: 50%; transform: translateX(-50%); width: 3px; height: 7px; background: var(--pink); border-radius: 2px; animation: floatY 2s ease-in-out infinite; }

/* ---- MARQUEE ---- */
.marquee-strip { background: var(--pink); overflow: hidden; padding: 13px 0; position: relative; z-index: 2; }
.marquee-track { display: flex; gap: 52px; width: max-content; animation: marquee 26s linear infinite; }
.marquee-track span { color: rgba(255,255,255,0.92); font-size: 13px; font-weight: 500; white-space: nowrap; letter-spacing: 1.5px; display: flex; align-items: center; gap: 8px; }
.marquee-track i { font-size: 12px; }

/* ---- SERVICES ---- */
.services { padding: 110px 0; background: var(--light); position: relative; z-index: 1; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-card { background: var(--white); border-radius: var(--rl); overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.05); transition: all 0.4s var(--ease); border: 1px solid rgba(232,25,125,0.05); display: flex; flex-direction: column; }
.svc-card:hover { transform: translateY(-10px); box-shadow: 0 24px 52px rgba(232,25,125,0.13); }
.svc-img { height: 195px; background-size: cover; background-position: center; position: relative; overflow: hidden; flex-shrink: 0; transition: transform 0.5s var(--ease); }
.svc-card:hover .svc-img { transform: scale(1.05); }
.svc-img-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 45%, rgba(13,10,18,0.55)); }

/* "Most Popular" chip on service card */
.svc-tag-chip {
  position: absolute; top: 14px; left: 14px;
  background: var(--pink); color: var(--white);
  font-size: 10px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 99px;
  box-shadow: 0 4px 12px rgba(232,25,125,0.4);
  z-index: 1;
}

.svc-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.svc-icon-wrap {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--pink-l); color: var(--pink);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; margin-bottom: 14px;
  transition: all 0.3s ease;
}
.svc-card:hover .svc-icon-wrap { background: var(--pink); color: var(--white); }
.svc-body h3 { font-family: var(--fh); font-size: 21px; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.svc-body p { color: var(--muted); font-size: 14px; line-height: 1.75; flex: 1; margin-bottom: 18px; }
.svc-footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(232,25,125,0.07); padding-top: 14px; }
.svc-price { color: var(--teal); font-weight: 600; font-size: 15px; }
.svc-btn { color: var(--pink); font-weight: 500; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.3s ease; }
.svc-btn:hover { gap: 10px; }

/* ---- ABOUT ---- */
.about { padding: 110px 0; background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 60%, #0A1F20 100%); position: relative; z-index: 1; }
.about-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-imgs { position: relative; height: 520px; }
.ai-main { position: absolute; top: 0; left: 0; right: 80px; bottom: 80px; background-size: cover; background-position: center; border-radius: var(--rl); overflow: hidden; }
.ai-sm { position: absolute; background-size: cover; background-position: center; border-radius: var(--r); border: 4px solid var(--dark); overflow: hidden; }
.ai-sm1 { width: 185px; height: 165px; bottom: 0; right: 0; }
.ai-sm2 { width: 162px; height: 145px; top: 60px; right: 20px; }
.ai-badge { position: absolute; bottom: 90px; left: 24px; background: var(--pink); color: var(--white); padding: 16px 22px; border-radius: var(--r); text-align: center; box-shadow: 0 12px 30px rgba(232,25,125,0.4); }
.ai-badge strong { display: block; font-family: var(--fh); font-size: 40px; font-weight: 700; line-height: 1; }
.ai-badge span { font-size: 12px; opacity: 0.85; }

.about-text h2 { font-family: var(--fh); font-size: clamp(28px, 4vw, 50px); font-weight: 700; color: var(--white); margin-bottom: 20px; line-height: 1.15; }
.about-text h2 em { color: #F4A7C3; }
.about-text > p { color: rgba(255,255,255,0.52); font-size: 15px; font-weight: 300; margin-bottom: 12px; }
.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 28px 0 36px; }
.pillar { display: flex; align-items: flex-start; gap: 12px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); padding: 14px; border-radius: var(--r); transition: all 0.3s ease; }
.pillar:hover { background: rgba(232,25,125,0.08); border-color: rgba(232,25,125,0.2); }
.pillar-icon { width: 36px; height: 36px; border-radius: 10px; background: rgba(232,25,125,0.15); color: var(--pink); display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
.pillar strong { display: block; color: var(--white); font-size: 13px; font-weight: 500; margin-bottom: 2px; }
.pillar span { color: rgba(255,255,255,0.35); font-size: 11px; }

/* ---- GALLERY ---- */
.gallery { padding: 110px 0 80px; background: var(--light); position: relative; z-index: 1; }
.gallery-full { position: relative; }
.gallery-track { display: flex; gap: 18px; padding: 0 36px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; scroll-behavior: smooth; }
.gallery-track::-webkit-scrollbar { display: none; }
.gal-item { flex: 0 0 295px; scroll-snap-align: start; border-radius: var(--rl); overflow: hidden; position: relative; cursor: pointer; transition: transform 0.4s var(--ease); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.gal-item:hover { transform: scale(1.02); }
.gal-img { height: 375px; background-size: cover; background-position: center; transition: transform 0.5s var(--ease); }
.gal-item:hover .gal-img { transform: scale(1.06); }
.gal-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 48px 22px 22px; background: linear-gradient(to top, rgba(13,10,18,0.88), transparent); }
.gal-info strong { color: var(--white); font-family: var(--fh); font-size: 20px; font-weight: 600; display: block; }
.gal-info span { color: rgba(255,255,255,0.5); font-size: 13px; }
.gal-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; background: var(--white); color: var(--dark); border: none; font-size: 14px; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 18px rgba(0,0,0,0.14); transition: all 0.3s ease; z-index: 2; }
.gal-arrow:hover { background: var(--pink); color: var(--white); transform: translateY(-50%) scale(1.1); }
.gal-prev { left: 6px; }
.gal-next { right: 6px; }
.gal-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.gal-dot { width: 8px; height: 8px; border-radius: 99px; background: rgba(232,25,125,0.2); cursor: pointer; transition: all 0.3s ease; border: none; }
.gal-dot.active { width: 28px; background: var(--pink); }

/* ---- TESTIMONIALS ---- */
.testimonials { padding: 110px 0; background: linear-gradient(135deg, #0A1F20 0%, var(--dark) 100%); position: relative; z-index: 1; }
.testimonials .section-head h2 { color: var(--white); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--rl); padding: 32px 28px; transition: all 0.4s var(--ease); }
.testi-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-6px); border-color: rgba(232,25,125,0.2); }
.tc-pink { background: linear-gradient(135deg, rgba(232,25,125,0.1), rgba(42,173,168,0.06)); border-color: rgba(232,25,125,0.22); }
.testi-stars { color: #FFD166; font-size: 13px; letter-spacing: 1.5px; margin-bottom: 16px; }
.testi-card > p { color: rgba(255,255,255,0.62); font-size: 15px; font-weight: 300; line-height: 1.85; margin-bottom: 24px; font-style: italic; }
.testi-bottom { display: flex; align-items: center; gap: 12px; }
.testi-av { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 600; font-size: 13px; flex-shrink: 0; }
.testi-bottom > div strong { display: block; color: var(--white); font-size: 14px; font-weight: 500; }
.testi-bottom > div span { color: rgba(255,255,255,0.3); font-size: 12px; }

/* ---- BREEDS ---- */
.breeds { padding: 80px 0; background: var(--light); position: relative; z-index: 1; }
.breeds .section-head h2 { color: var(--dark); }
.breeds-grid { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.breed-chip { background: var(--white); border: 1px solid rgba(232,25,125,0.1); color: var(--text); font-size: 14px; padding: 10px 20px; border-radius: 99px; transition: all 0.3s ease; display: flex; align-items: center; gap: 7px; }
.breed-chip:hover { background: var(--pink-l); border-color: var(--pink); color: var(--pink); transform: translateY(-2px); }
.breed-chip i { font-size: 12px; }

/* ---- CONTACT ---- */
.contact { padding: 110px 0; background: var(--white); position: relative; z-index: 1; }
.contact-wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: start; }
.contact-left h2 { font-family: var(--fh); font-size: clamp(28px, 4vw, 48px); font-weight: 700; color: var(--dark); margin-bottom: 14px; line-height: 1.15; }
.contact-left > p { color: var(--muted); font-size: 15px; font-weight: 300; margin-bottom: 30px; }
.contact-cards { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.contact-card { display: flex; align-items: center; gap: 14px; padding: 14px 18px; border-radius: var(--r); background: var(--light); border: 1px solid rgba(232,25,125,0.08); transition: all 0.35s var(--ease); }
.contact-card:hover { border-color: var(--pink); background: var(--pink-l); transform: translateX(5px); }
.cc-whatsapp { background: var(--wa-c); border-color: var(--wa-c); }
.cc-whatsapp strong, .cc-whatsapp span { color: rgba(255,255,255,0.95) !important; }
.cc-whatsapp .cc-arrow { color: rgba(255,255,255,0.7); }
.cc-whatsapp:hover { background: #1ebe5d; border-color: #1ebe5d; transform: translateX(5px); }
.cc-loc { cursor: default; }
.cc-icon { font-size: 18px; width: 36px; height: 36px; border-radius: 10px; background: rgba(232,25,125,0.08); color: var(--pink); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cc-whatsapp .cc-icon { background: rgba(255,255,255,0.2); color: var(--white); }
.contact-card > div strong { display: block; color: var(--text); font-size: 14px; font-weight: 500; }
.contact-card > div span { color: var(--muted); font-size: 13px; }
.cc-arrow { margin-left: auto; font-size: 14px; color: var(--pink); transition: transform 0.3s ease; }
.contact-card:hover .cc-arrow { transform: translateX(4px); }

/* SOCIAL FOLLOW STRIP in contact */
.contact-follow p { font-size: 13px; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.follow-icons { display: flex; gap: 10px; }
.follow-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 99px;
  font-size: 13px; font-weight: 500; border: 1.5px solid;
  transition: all 0.3s ease; cursor: pointer;
}
/* Instagram — gradient brand color */
.follow-btn.insta {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: transparent; color: var(--white);
}
.follow-btn.insta:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(225,48,108,0.4); }

/* TikTok — black brand */
.follow-btn.tiktok { background: #010101; border-color: #010101; color: var(--white); }
.follow-btn.tiktok:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(1,1,1,0.3); }
.follow-btn.tiktok i { background: linear-gradient(45deg, #69C9D0, #EE1D52); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* Facebook — blue brand */
.follow-btn.fb { background: var(--fb-c); border-color: var(--fb-c); color: var(--white); }
.follow-btn.fb:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(24,119,242,0.4); }

/* CONTACT FORM */
.contact-form { background: var(--light); padding: 38px; border-radius: var(--rl); border: 1px solid rgba(232,25,125,0.08); box-shadow: 0 16px 52px rgba(232,25,125,0.07); }
.contact-form h3 { font-family: var(--fh); font-size: 26px; font-weight: 600; color: var(--dark); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label { font-size: 11px; font-weight: 600; color: var(--text); letter-spacing: 1px; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea { padding: 12px 15px; border: 1.5px solid rgba(232,25,125,0.12); border-radius: var(--r); font-size: 14px; font-family: var(--fb); color: var(--text); background: var(--white); transition: all 0.3s ease; outline: none; resize: vertical; -webkit-appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--pink); box-shadow: 0 0 0 4px rgba(232,25,125,0.07); }
.form-success { display: none; text-align: center; color: var(--teal-d); font-weight: 500; font-size: 14px; padding: 14px; background: var(--teal-l); border-radius: var(--r); margin-top: 12px; }
.form-note { text-align: center; color: var(--muted); font-size: 12px; margin-top: 12px; display: flex; align-items: center; justify-content: center; gap: 6px; }

/* ---- FOOTER ---- */
.footer { position: relative; z-index: 1; }
.footer-top { background: var(--dark); padding: 80px 0 56px; border-top: 3px solid; border-image: linear-gradient(90deg, var(--pink), var(--teal), var(--pink)) 1; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }
.footer-logo-img { height: 52px; width: auto; object-fit: contain; margin-bottom: 16px; }
.footer-logo-text { font-family: var(--fh); font-size: 24px; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.footer-logo-text em { color: #F4A7C3; }
.footer-brand > p { color: rgba(255,255,255,0.3); font-size: 14px; font-weight: 300; line-height: 1.8; margin-bottom: 24px; }

/* FOOTER SOCIAL ICONS — Real brand colors */
.footer-socials { display: flex; gap: 10px; }
.fsoc {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: all 0.35s ease;
  border: 1.5px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.04);
}
.fsoc:hover { transform: translateY(-4px); border-color: transparent; }

/* Instagram hover — real gradient */
.fsoc-insta:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(225,48,108,0.45);
}
/* TikTok hover */
.fsoc-tiktok:hover { background: #010101; color: var(--white); box-shadow: 0 6px 20px rgba(1,1,1,0.4); }
/* Facebook hover */
.fsoc-fb:hover { background: var(--fb-c); color: var(--white); box-shadow: 0 6px 20px rgba(24,119,242,0.4); }
/* WhatsApp hover */
.fsoc-wa:hover { background: var(--wa-c); color: var(--white); box-shadow: 0 6px 20px rgba(37,211,102,0.4); }

.footer-col h4 { color: rgba(255,255,255,0.4); font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; }
.footer-col a, .footer-col span { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.35); font-size: 14px; font-weight: 300; margin-bottom: 10px; transition: all 0.3s ease; }
.footer-col a:hover { color: #F4A7C3; padding-left: 6px; }
.footer-col i { font-size: 13px; }
.footer-tagline { font-style: italic; }
.footer-bottom { background: rgba(0,0,0,0.3); padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.footer-bottom p { color: rgba(255,255,255,0.18); font-size: 13px; font-weight: 300; }

/* ---- WHATSAPP FLOAT — Real icon + brand green ---- */
.wa-btn {
  position: fixed; bottom: 24px; right: 24px; z-index: 9998;
  display: flex; align-items: center; gap: 10px;
  background: var(--wa-c); color: var(--white);
  padding: 13px 20px 13px 16px; border-radius: 99px;
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
  transition: all 0.35s var(--ease);
}
.wa-btn:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(37,211,102,0.55); animation: waBounce 0.6s ease; }
.wa-ring { position: absolute; inset: 0; border-radius: 99px; background: rgba(37,211,102,0.28); animation: pulse 2.5s ease-in-out infinite; }
.wa-ico { font-size: 22px; position: relative; z-index: 1; }
.wa-label { font-size: 14px; font-weight: 500; position: relative; z-index: 1; }

/* ============================================================
   RESPONSIVE — MOBILE FIRST & PROPER
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .hero { padding: 100px 40px 175px; }
  .hero-scroll { display: none; }
  .nav-socials { display: none; }
  .hstat { padding: 20px 16px; }
  .hstat strong { font-size: 32px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-wrap { grid-template-columns: 1fr; gap: 52px; }
  .about-imgs { height: 360px; }
  .ai-main { right: 0; bottom: 0; }
  .ai-sm { display: none; }
  .ai-badge { bottom: 24px; left: 24px; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .contact-wrap { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* Mobile */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-socials { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 88px 22px 215px; }
  .hero-title { font-size: clamp(38px, 9vw, 56px); letter-spacing: -0.5px; }
  .hero-sub { font-size: 15px; max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; max-width: 280px; }

  /* Stats: 2x2 grid */
  .hero-stats { flex-wrap: wrap; }
  .hstat { flex: 0 0 50%; padding: 16px 18px; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .hstat:nth-child(even) { border-right: none; }
  .hstat:nth-child(3), .hstat:nth-child(4) { border-bottom: none; }
  .hstat strong { font-size: 28px; }

  .services-grid { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .follow-icons { flex-wrap: wrap; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 26px 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .section-head { margin-bottom: 44px; }

  /* WhatsApp — icon only on mobile */
  .wa-label { display: none; }
  .wa-btn { padding: 14px; border-radius: 50%; right: 18px; bottom: 18px; }
  .wa-ring { border-radius: 50%; }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero { padding: 82px 18px 225px; }
  .hero-title { font-size: 34px; }
  .container { padding: 0 18px; }
  .hstat strong { font-size: 26px; }
  .gal-item { flex: 0 0 256px; }
  .gal-img { height: 310px; }
  .about-imgs { height: 260px; }
  .btn { font-size: 14px; padding: 12px 26px; }
}

/* ══════════════════════════════════════
   PREMIUM ADDITIONS v4
   Trust Strip | Back-to-Top | SR-only | Fixes
══════════════════════════════════════ */

/* Screen reader only */
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

/* ---- TRUST STRIP ---- */
.trust-strip {
  padding: 52px 0;
  background: linear-gradient(135deg, var(--dark2) 0%, #0A1A20 100%);
  position: relative; z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.trust-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s ease;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: rgba(232,25,125,0.05); }
.trust-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(232,25,125,0.12);
  color: var(--pink); font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  transition: all 0.3s ease;
}
.trust-item:hover .trust-icon { background: var(--pink); color: var(--white); transform: scale(1.08); }
.trust-item strong { color: var(--white); font-size: 14px; font-weight: 600; margin-bottom: 4px; display: block; }
.trust-item span { color: rgba(255,255,255,0.35); font-size: 12px; font-weight: 300; line-height: 1.5; }

/* ---- BACK TO TOP ---- */
.back-top {
  position: fixed; bottom: 90px; right: 26px; z-index: 9997;
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(13,10,18,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6); font-size: 14px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: all 0.35s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.back-top.visible { opacity: 1; visibility: visible; }
.back-top:hover { background: var(--pink); border-color: var(--pink); color: var(--white); transform: translateY(-3px); }

/* ---- LOADER TEXT ---- */
.loader-text { color: rgba(255,255,255,0.3); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; font-family: var(--fb); }

/* ---- FOOTER LOGO IMG ---- */
.footer-logo-img { height: 48px; width: auto; object-fit: contain; margin-bottom: 16px; filter: brightness(1.1); }

/* ---- TRUST STRIP MOBILE ---- */
@media (max-width: 900px) {
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-item:nth-child(3) { border-right: none; }
  .trust-item:nth-child(4), .trust-item:nth-child(5) { border-top: 1px solid rgba(255,255,255,0.06); }
}
@media (max-width: 560px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.06); }
  .trust-item:nth-child(even) { border-right: none; }
  .trust-item { border-top: 1px solid rgba(255,255,255,0.06); }
  .trust-item:nth-child(1), .trust-item:nth-child(2) { border-top: none; }
  .back-top { right: 18px; bottom: 78px; }
}

/* ---- SAFE AREA (iPhone notch) ---- */
@supports (padding: max(0px)) {
  .navbar { padding-top: max(16px, env(safe-area-inset-top)); }
  .wa-btn { bottom: max(24px, env(safe-area-inset-bottom)); }
}

/* ---- FOCUS STYLES (accessibility) ---- */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---- PRINT STYLES ---- */
@media print {
  .navbar, .loader, .cursor, .cursor-follower, .paw-bg, .wa-btn, .back-top, .marquee-strip { display: none !important; }
  body { background: white; color: black; }
  .hero { min-height: auto; padding: 40px 20px; }
  .hero-overlay { background: rgba(0,0,0,0.3); }
}

/* Navbar auto-hide on mobile scroll down */
.navbar.nav-hidden { transform: translateY(-100%); }

/* Active nav link */
.nav-links a.active-link { color: var(--white) !important; }
.nav-links a.active-link::after { width: 100% !important; }

/* WhatsApp button — mobile circle fix */
@media (max-width: 768px) {
  .wa-btn {
    width: 54px !important;
    height: 54px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    right: 18px !important;
    bottom: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .wa-label { display: none !important; }
  .wa-ring { border-radius: 50% !important; inset: 0 !important; }
  .wa-ico { font-size: 26px !important; }
  .back-top { bottom: 82px !important; right: 18px !important; }
}

/* ══════════════════════════════════════
   GALLERY — INFINITE AUTO SCROLL
   Right to Left seamless loop
══════════════════════════════════════ */
@keyframes infiniteScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.gallery-infinite-wrap {
  position: relative;
  overflow: hidden;
  padding: 20px 0 40px;
  /* Fade edges */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

.gallery-infinite {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: infiniteScroll 32s linear infinite;
}

/* Pause on hover */
.gallery-infinite-wrap:hover .gallery-infinite {
  animation-play-state: paused;
}

.gallery-infinite .gal-item {
  flex: 0 0 300px;
  border-radius: var(--rl);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.4s var(--ease);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}
.gallery-infinite .gal-item:hover {
  transform: scale(1.04) translateY(-6px);
  box-shadow: 0 20px 48px rgba(232,25,125,0.18);
}
.gallery-infinite .gal-img {
  height: 380px;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s var(--ease);
}
.gallery-infinite .gal-item:hover .gal-img {
  transform: scale(1.06);
}
.gallery-infinite .gal-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 50px 20px 20px;
  background: linear-gradient(to top, rgba(13,10,18,0.9), transparent);
}
.gallery-infinite .gal-info strong {
  color: var(--white); font-family: var(--fh);
  font-size: 20px; font-weight: 600; display: block;
}
.gallery-infinite .gal-info span {
  color: rgba(255,255,255,0.55); font-size: 13px;
}

/* Mobile — smaller cards, faster */
@media (max-width: 768px) {
  .gallery-infinite { animation-duration: 24s; gap: 14px; }
  .gallery-infinite .gal-item { flex: 0 0 220px; }
  .gallery-infinite .gal-img { height: 280px; }
}
@media (max-width: 480px) {
  .gallery-infinite .gal-item { flex: 0 0 180px; }
  .gallery-infinite .gal-img { height: 240px; }
}

/* ══ CRITICAL FIXES ══ */

/* Hero eyebrow dot — contained properly */
.hero-eyebrow {
  position: relative;
  z-index: 2;
}
.hero-eyebrow .dot {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}

/* Custom cursor — ONLY desktop, never mobile/tablet */
@media (max-width: 1024px) {
  .cursor, .cursor-follower {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
}

/* Hide old gallery dots/arrows (now using infinite scroll) */
.gal-dots, .gal-arrow { display: none !important; }
.gallery-track { display: none !important; }

/* Stats bar dot fix — remove any stray dots */
.hstat .dot { display: none !important; }

/* ══ MOBILE RESPONSIVENESS — FINAL FIXES ══ */

/* Touch devices — remove hover effects that cause issues */
@media (hover: none) {
  .svc-card:hover { transform: none; }
  .svc-card:hover .svc-img { transform: none; }
  .breed-chip:hover { transform: none; }
  .btn:hover { transform: none; }
  .testi-card:hover { transform: none; }
  .contact-card:hover { transform: translateX(0); }
  .pillar:hover { background: rgba(255,255,255,0.04); }
  /* Keep tap highlight for UX */
  .svc-card:active { transform: scale(0.98); }
  .btn:active { transform: scale(0.97); }
}

/* iPhone safe areas */
@supports (padding: max(0px)) {
  .hero { padding-bottom: max(180px, calc(160px + env(safe-area-inset-bottom))); }
  .wa-btn { bottom: max(20px, calc(16px + env(safe-area-inset-bottom))); right: max(18px, calc(14px + env(safe-area-inset-right))); }
  .back-top { bottom: max(80px, calc(76px + env(safe-area-inset-bottom))); }
  .footer-bottom { padding-bottom: max(20px, calc(16px + env(safe-area-inset-bottom))); }
}

/* Landscape mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { min-height: auto; padding: 80px 40px 140px; }
  .hero-title { font-size: 32px; }
  .hero-sub { display: none; }
}

/* Very small screens */
@media (max-width: 360px) {
  .hero-title { font-size: 30px; }
  .hero-actions .btn { font-size: 13px; padding: 11px 22px; }
  .hstat strong { font-size: 22px; }
  .tag { font-size: 10px; padding: 5px 14px; }
}

/* Tablet portrait */
@media (min-width: 600px) and (max-width: 768px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: row; }
  .hero-actions .btn { width: auto; }
}

/* Gallery infinite — touch friendly */
@media (max-width: 768px) {
  .gallery-infinite-wrap {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
  }
}

/* ══ TOUCH CURSOR — Mobile Circle Effect ══ */
.touch-cursor {
  position: fixed;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(232, 25, 125, 0.25);
  border: 2px solid rgba(232, 25, 125, 0.6);
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.15s ease, opacity 0.3s ease;
  opacity: 0;
}
.touch-cursor.active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.touch-cursor.tap {
  transform: translate(-50%, -50%) scale(1.6);
  opacity: 0;
  background: rgba(232, 25, 125, 0.15);
}

/* ---- HERO SOCIALS (large icons) ---- */
.hero-socials.big {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
  position: relative;
  z-index: 5;
}
.hero-socials.big a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: rgba(13,10,18,0.75);
  backdrop-filter: blur(12px);
  border: 2px solid rgba(255,255,255,0.15);
  color: #ffffff;
  font-size: 34px;
  transition: all 0.3s var(--ease);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  position: relative;
}
.hero-socials.big a::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.hero-socials.big a:hover::before { opacity: 1; }
.hero-socials.big a:hover { transform: translateY(-8px) scale(1.05); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
.hero-socials.big a i { 
  color: #ffffff;
  line-height: 1; 
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Instagram gradient hover */
.hero-socials.big a:nth-child(1):hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: #E1306C;
  box-shadow: 0 16px 48px rgba(225,48,108,0.5);
}

/* TikTok hover */
.hero-socials.big a:nth-child(2):hover {
  background: linear-gradient(135deg, #000000, #69C9D0, #EE1D52);
  border-color: #69C9D0;
  box-shadow: 0 16px 48px rgba(105,201,208,0.4);
}

/* Facebook hover */
.hero-socials.big a:nth-child(3):hover {
  background: var(--fb-c);
  border-color: var(--fb-c);
  box-shadow: 0 16px 48px rgba(24,119,242,0.5);
}

/* WhatsApp hover */
.hero-socials.big a:nth-child(4):hover {
  background: var(--wa-c);
  border-color: var(--wa-c);
  box-shadow: 0 16px 48px rgba(37,211,102,0.5);
}

@media (max-width: 1024px) {
  .hero-socials.big { gap: 14px; margin: 20px 0; }
  .hero-socials.big a { width: 60px; height: 60px; font-size: 28px; }
}

@media (max-width: 768px) {
  .hero-socials.big { gap: 12px; margin: 16px 0; }
  .hero-socials.big a { width: 54px; height: 54px; font-size: 26px; border-radius: 14px; }
  .hero-socials.big a::before { border-radius: 14px; }
}

@media (max-width: 480px) {
  .hero-socials.big { gap: 10px; margin: 14px 0; }
  .hero-socials.big a { width: 48px; height: 48px; font-size: 22px; border-radius: 12px; }
  .hero-socials.big a::before { border-radius: 12px; }
}

/* ══ HERO TAGLINE ══ */
.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(232,25,125,0.12);
  border: 1px solid rgba(232,25,125,0.35);
  color: #F4A7C3;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 99px;
  margin-bottom: 20px;
}
.tagline-icon { font-size: 14px; }

@media (max-width: 480px) {
  .hero-tagline { font-size: 11px; letter-spacing: 1.5px; padding: 8px 16px; gap: 8px; }
}

/* ══ HERO BRAND NAME — Logo style script font ══ */
.hero-brand-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(56px, 10vw, 110px);
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  color: var(--white);
  letter-spacing: -1px;
  display: block;
}
.hero-brand-name em {
  color: #F4A7C3;
  font-style: italic;
}

/* Teal color for "Play" — matching logo */
.hero-brand-name .play-word {
  color: #7ECFC9;
}

@media (max-width: 768px) {
  .hero-brand-name { font-size: clamp(44px, 12vw, 72px); }
}
@media (max-width: 480px) {
  .hero-brand-name { font-size: 42px; }
}

/* ══ HERO BRAND NAME — Dancing Script (logo jaisa handwritten) ══ */
.hero-brand-name {
  font-family: 'Dancing Script', cursive !important;
  font-size: clamp(64px, 12vw, 130px) !important;
  font-weight: 700 !important;
  font-style: normal !important;
  line-height: 1 !important;
  color: var(--pink) !important;
  letter-spacing: 0px !important;
  display: block !important;
  text-shadow: 0 4px 24px rgba(232,25,125,0.3);
}
.hero-brand-name em {
  font-style: normal !important;
  color: rgba(255,255,255,0.85) !important;
  font-size: 0.6em !important;
}
.hero-brand-name .play-word {
  color: #7ECFC9 !important;
}

@media (max-width: 768px) {
  .hero-brand-name { font-size: clamp(52px, 14vw, 80px) !important; }
}
@media (max-width: 480px) {
  .hero-brand-name { font-size: 52px !important; }
}
