:root {
  --color-primary: #1369f2;
  --color-primary-dark: #0d59d4;
  --color-primary-light: #4A86D4;
  --color-accent: #00C4A1;
  --color-accent-warm: #F4A261;

  /* Backgrounds - Updated to New Palette */
  --bg-particle: #0a71f7;
  --bg-hero: transparent;
  --bg-main: transparent;
  --bg-section: #ffffff; /* White sections kept white */
  --bg-alt: #0a71f7;    /* Sections with particle effect */
  --bg-dark-nav: #04084a; /* New Dark Navy Navbar */
  --bg-footer: #0a71f7;   /* Updated to match page background */
  --bg-card: #ffffff;

  /* Text - Dark Contrast for White Sections */
  --text-primary: #0d2137;   /* Headings */
  --text-secondary: #1a2f4a; /* Body */
  --text-on-dark: #FFFFFF;   /* For Blue background sections */

  --border-radius: 16px;
  --border-radius-lg: 24px;
  --border-radius-pill: 100px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: all 0.3s ease;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --section-padding: clamp(60px, 10vw, 100px);
}

/* 1. MOBILE PORTRAIT FIXES & GLOBAL */
html, body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
  background-color: var(--bg-particle);
}

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

body {
  font-family: var(--font-body);
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: clamp(14px, 2vw, 16px);
  cursor: default;
}

#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background-color: var(--bg-particle);
}

main, nav, footer, .loader-overlay, .scroll-progress {
  position: relative;
  z-index: 1;
}

section {
  padding: var(--section-padding) 0;
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--text-primary);
}

p {
  color: var(--text-secondary);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}

ul {
  list-style: none;
}

/* SECTION TITLES */
.section-title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
}

.section-subtitle {
  font-size: clamp(16px, 2vw, 18px);
  text-align: center;
  margin-bottom: clamp(32px, 8vw, 64px);
  opacity: 0.8;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-particle);
}
::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: 4px;
}

/* Page Loader */
.loader-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg-particle);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-logo {
  color: #FFFFFF;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.loader-logo .teal {
  color: var(--color-accent);
}

.loader-progress-container {
  width: min(200px, 80vw);
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.loader-progress-bar {
  position: absolute;
  height: 100%;
  width: 0%;
  background: var(--color-accent);
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--color-accent);
  z-index: 1001;
}

/* Navigation - FIXED DARK BLUE */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: clamp(16px, 3vw, 24px) 0;
  z-index: 1000;
  transition: var(--transition-base);
  background-color: #04084a; /* New Palette Color */
  backdrop-filter: blur(10px);
}

nav.scrolled {
  background-color: #04084a;
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 clamp(20px, 5vw, 60px);
}

.logo {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 700;
  color: #FFFFFF;
}

.logo .diamond {
  color: var(--color-accent);
  margin: 0 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
}

.nav-link {
  color: #FFFFFF;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-accent);
}

.cta-btn-small {
  background: var(--color-accent);
  color: white;
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 500;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: var(--transition-base);
}

/* Hero Section */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px clamp(1.5rem, 5vw, 5rem) 60px;
  color: #FFFFFF; /* High readability on #0a71f7 */
}

.hero-container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-text {
  flex: 1.2;
}

.badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 500;
  margin-bottom: 24px;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
}

#hero h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  margin-bottom: 24px;
  color: #FFFFFF;
}

#hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 500px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.cta-pill-teal {
  background: var(--color-accent);
  color: white;
  padding: 16px 36px;
  border-radius: 100px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0, 196, 161, 0.2);
}

.cta-pill-outline {
  border: 2px solid white;
  color: white;
  padding: 16px 36px;
  border-radius: 100px;
  font-weight: 700;
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 15px;
}

.avatars {
  display: flex;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -12px;
}

.avatar:first-child { margin-left: 0; }

.social-proof span {
  color: #FFFFFF;
  font-size: 0.9rem;
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-img-frame {
  position: relative;
  width: clamp(280px, 40vw, 480px);
  aspect-ratio: 1 / 1.1;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: morphShape 10s ease-in-out infinite;
  background-color: rgba(255, 255, 255, 0.1);
}

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

@keyframes morphShape {
  0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  animation: bounce 2s infinite;
}

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

/* Services */
#services {
  background: var(--bg-section); /* White */
}

.services-grid {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.services-grid::-webkit-scrollbar {
  display: none;
}

.service-card {
  min-width: 300px;
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: var(--bg-card);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
  opacity: 1;
  visibility: visible;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}

.service-img-container {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background-image: linear-gradient(135deg, #00BFA5, #0a4f6e);
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img {
  transform: scale(1.1);
}

.service-card-content {
  padding: 32px;
}

.icon-circle {
  width: 50px;
  height: 50px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  color: white;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.learn-more {
  display: inline-block;
  margin-top: 20px;
  color: var(--color-accent);
  font-weight: 700;
}

/* About & Team */
#about {
  color: #FFFFFF; /* High readability on #0a71f7 */
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 80px);
  align-items: center;
}

.about-image {
  background: transparent;
  border-radius: 0;
  aspect-ratio: auto;
  backdrop-filter: none;
  position: relative;
  display: block;
}

.about-main-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.about-sub-img {
  width: 200px;
  height: 150px;
  border-radius: 12px;
  object-fit: cover;
  position: absolute;
  bottom: -20px;
  right: -20px;
  border: 3px solid #FFFFFF;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 32px 0 48px;
}

.feature-item {
  display: flex;
  gap: 16px;
}

.feature-item span { color: var(--color-accent); font-size: 1.2rem; }

.experience-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.experience-stats {
  display: flex;
  gap: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
}

.exp-stat {
  display: flex;
  flex-direction: column;
}

.stat-val {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-accent);
  font-family: var(--font-heading);
}

.stat-name {
  font-size: 0.85rem;
  opacity: 0.8;
  font-weight: 500;
  color: #FFFFFF;
}

.approach-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #FFFFFF;
  border-left: 3px solid var(--color-accent);
  padding-left: 20px;
}

.certifications-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cert-badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: var(--shadow);
  color: white;
}

.cert-icon {
  font-size: 1.1rem;
}

/* Stats */
#stats {
  background: var(--bg-alt);
  color: #FFFFFF;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-number {
  font-size: clamp(40px, 8vw, 72px);
  font-family: var(--font-heading);
  color: var(--color-accent);
  display: block;
  font-weight: 700;
}

.stat-label {
  font-weight: 500;
  opacity: 0.9;
  color: #FFFFFF;
}

/* Process */
#process { background: var(--bg-section); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  font-size: 80px;
  color: rgba(0, 0, 0, 0.05);
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 24px;
  color: white;
}

/* Testimonials */
#testimonials { color: #FFFFFF; }

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}

.testimonial-card {
  background: white;
  padding: 32px;
  border-radius: var(--border-radius-lg);
  flex: 0 0 100%;
  box-shadow: var(--shadow);
  color: var(--text-secondary);
}

.testimonial-stars { color: var(--color-accent-warm); margin-bottom: 16px; }

.testimonial-quote {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: 700;
}

.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid white;
  background: transparent;
  color: white;
  cursor: pointer;
}

/* Booking */
#booking { background: var(--bg-section); }

.booking-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 8vw, 80px);
}

.booking-form-container {
  background: #FFFFFF;
  padding: clamp(24px, 5vw, 48px);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
}

.form-group { margin-bottom: 20px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

input, select, textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  background: #F8FBFF;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
  color: var(--text-primary);
}

input:focus, select:focus, textarea:focus {
  border-color: var(--color-accent);
}

.btn-submit {
  width: 100%;
  padding: 18px;
  background: #04084a;
  color: white;
  border: none;
  border-radius: 100px;
  font-weight: 700;
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--transition);
}

.btn-submit:hover {
  background: #1369f2;
  transform: translateY(-2px);
}

.clinic-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  color: #000000 !important;
}

.clinic-info-text, .clinic-info-text a {
  color: #000000 !important;
}

.clinic-info-icon {
  font-size: 1.5rem;
}

/* Footer - MATCH PAGE BACKGROUND */
footer {
  background-color: #0a71f7;
  color: #FFFFFF;
  padding: 80px 0 40px;
  padding-left: clamp(1.5rem, 5vw, 5rem);
  padding-right: clamp(1.5rem, 5vw, 5rem);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

footer * { color: #ffffff; }
footer svg, footer svg path, footer svg circle { 
  fill: #ffffff; 
  stroke: #ffffff; 
}
footer a { color: #ffffff; }
footer a:hover { color: #A8EDEA; }
.footer-social a, .footer-social svg { 
  color: #ffffff; 
  fill: #ffffff; 
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand p {
  margin: 20px 0;
  opacity: 0.9;
  font-size: 0.95rem;
}

.footer-social { display: flex; gap: 12px; }

.social-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  transition: var(--transition-base);
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.3);
}

.footer-col h4 { margin-bottom: 24px; font-size: 1.2rem; color: #FFFFFF; }

.footer-col ul li { margin-bottom: 12px; }

.footer-col ul li a { opacity: 0.8; color: #FFFFFF; }

.footer-col ul li a:hover { opacity: 1; color: var(--color-accent); }

.footer-bottom {
  background-color: #0a71f7;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.9rem;
  opacity: 0.8;
  padding-left: clamp(1.5rem, 5vw, 5rem);
  padding-right: clamp(1.5rem, 5vw, 5rem);
}

.footer-bottom-links { display: flex; gap: 24px; }

/* MEDIA QUERIES */

@media (max-width: 1024px) {
  .hero-container, .about-grid, .booking-grid {
    flex-direction: column;
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-text, .hero-visual { width: 100%; }
  #hero p { margin: 0 auto 40px; }
  .hero-actions { justify-content: center; }
  .social-proof { justify-content: center; }
  .feature-item { text-align: left; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #04084a;
    flex-direction: column;
    justify-content: center;
    transition: 0.5s cubic-bezier(0.7, 0, 0.3, 1);
    z-index: 1000;
  }
  
  .nav-links.open { right: 0; }
  
  .nav-link { font-size: 1.5rem; }
  
  .services-grid, .process-grid, .stats-grid, .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .form-row { grid-template-columns: 1fr; }
  
  .stat-item { padding: 20px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
  .stat-item:last-child { border: none; }

  .hero-img-frame { width: 80vw; }
  
  .testimonial-card { padding: 24px; }

  .about-main-img {
    height: 250px;
  }
  
  .about-sub-img {
    width: 140px;
    height: 100px;
    right: 0;
    bottom: -10px;
    border: 3px solid #FFFFFF;
  }
  
  .experience-stats {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .approach-text {
    text-align: left;
  }
}

/* Specific Mobile Portrait Fixes (320px-430px) */
@media (max-width: 480px) {
  :root {
    --section-padding: 60px;
  }

  .container { padding: 0 20px; }
  
  #hero { padding-top: 100px; }
  
  .cta-pill-teal, .cta-pill-outline, .btn-submit {
    width: 100%;
    padding: 14px 24px;
    font-size: 1rem;
    text-align: center;
  }
  
  .hero-actions { width: 100%; }
  
  .booking-form-container { padding: 20px; }

  .footer-bottom { justify-content: center; text-align: center; }
  
  .footer-bottom-links { width: 100%; justify-content: center; }

  .hamburger { min-height: 44px; }
}


.footer-bottom-links { display: flex; gap: 24px; }

/* MEDIA QUERIES */

@media (max-width: 1024px) {
  .hero-container, .about-grid, .booking-grid {
    flex-direction: column;
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-text, .hero-visual { width: 100%; }
  #hero p { margin: 0 auto 40px; }
  .hero-actions { justify-content: center; }
  .social-proof { justify-content: center; }
  .feature-item { text-align: left; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #04084a;
    flex-direction: column;
    justify-content: center;
    transition: 0.5s cubic-bezier(0.7, 0, 0.3, 1);
    z-index: 1000;
  }
  
  .nav-links.open { right: 0; }
  
  .nav-link { font-size: 1.5rem; }
  
  .services-grid, .process-grid, .stats-grid, .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .form-row { grid-template-columns: 1fr; }
  
  .stat-item { padding: 20px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
  .stat-item:last-child { border: none; }

  .hero-img-frame { width: 80vw; }
  
  .testimonial-card { padding: 24px; }

  .about-main-img {
    height: 250px;
  }
  
  .about-sub-img {
    width: 140px;
    height: 100px;
    right: 0;
    bottom: -10px;
    border: 3px solid #FFFFFF;
  }
  
  .experience-stats {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .approach-text {
    text-align: left;
  }
}

/* Specific Mobile Portrait Fixes (320px-430px) */
@media (max-width: 480px) {
  :root {
    --section-padding: 60px;
  }

  .container { padding: 0 20px; }
  
  #hero { padding-top: 100px; }
  
  .cta-pill-teal, .cta-pill-outline, .btn-submit {
    width: 100%;
    padding: 14px 24px;
    font-size: 1rem;
    text-align: center;
  }
  
  .hero-actions { width: 100%; }
  
  .booking-form-container { padding: 20px; }

  .footer-bottom { justify-content: center; text-align: center; }
  
  .footer-bottom-links { width: 100%; justify-content: center; }

  .hamburger { min-height: 44px; }
}

/* Sticky Socials */
.sticky-socials {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
  padding-right: 15px;
}

.sticky-social-link {
  width: 45px;
  height: 45px;
  background: var(--bg-card);
  color: var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 1.2rem;
  box-shadow: var(--shadow);
  transition: var(--transition-base);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.sticky-social-link:hover {
  transform: translateX(-5px) scale(1.1);
}

.sticky-social-link.facebook:hover {
  background: #1877F2;
  color: white;
  border-color: #1877F2;
}

.sticky-social-link.instagram:hover {
  background: #E4405F;
  color: white;
  border-color: #E4405F;
}

.sticky-social-link.tiktok:hover {
  background: #000000;
  color: white;
  border-color: #000000;
}
