/* =====================================================
   STUDYFINER — MAIN STYLESHEET
   Single source of truth for ALL pages.
   Extracted from index.html and applied site-wide.
   ===================================================== */

/* ============ 1. VARIABLES & CORE SETTINGS ============ */
:root {
  --primary-dark: #0F0F0F;
  --primary-accent: #A5D420;
  --secondary-accent: #8AB81A;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --medium-gray: #666666;
  --text-light: #cccccc;
}

/* ============ 2. BASE RESET ============ */
*, *::before, *::after { box-sizing: border-box }

body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #1a1a1a;
  overflow-x: hidden
}

/* ============ 3. SCROLLBAR ============ */
::-webkit-scrollbar { width: 6px }
::-webkit-scrollbar-track { background: #f5f5f5 }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #A5D420, #8AB81A);
  border-radius: 3px
}

/* ============ 4. CARDS ============ */
.card-clean {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 1.5rem;
  transition: all .4s cubic-bezier(.17, .55, .55, 1)
}
.card-clean:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .08);
  border-color: #e0e0e0
}

/* ============ 5. TYPOGRAPHY ============ */
.gradient-text-brand {
  background: linear-gradient(135deg, #8AB81A 0%, #A5D420 50%, #6E9315 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

/* ============ 6. DESTINATION OVERLAY ============ */
.dest-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, .85) 0%, rgba(0, 0, 0, .2) 50%, transparent 100%)
}

/* ============ 7. NAVBAR ============ */
.nav-scrolled {
  background: rgba(255, 255, 255, .95) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .06);
  border-bottom: 1px solid #f0f0f0
}

/* Nav links */
.nav-link {
  position: relative;
  color: #737373;
  transition: color .3s ease;
  font-size: .875rem;
  font-weight: 500;
  text-decoration: none
}
.nav-link:hover { color: #171717 }
.nav-link.active { color: #171717; font-weight: 600 }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: #A5D420;
  border-radius: 1px
}

/* Link hover underline */
.link-hover { position: relative }
.link-hover::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #A5D420;
  transition: width .3s ease
}
.link-hover:hover::after { width: 100% }

/* ============ 8. MOBILE MENU ============ */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s cubic-bezier(.17, .55, .55, 1)
}
.mobile-menu.open { max-height: 500px }

.nav-link-mobile {
  display: block;
  color: #525252;
  font-weight: 500;
  text-decoration: none;
  border-radius: .5rem;
  transition: all .2s ease
}
.nav-link-mobile:hover { background: #f5f5f5; color: #171717 }
.nav-link-mobile.active { background: #f3f9e6; color: #171717; font-weight: 600 }

/* ============ 9. TOAST ============ */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  padding: 1rem 1.5rem;
  border-radius: 1.25rem;
  background: #1a1a1a;
  color: #fff;
  font-size: .875rem;
  transform: translateY(120%);
  opacity: 0;
  transition: all .4s cubic-bezier(.17, .55, .55, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid #262626;
}
.toast.show { transform: translateY(0); opacity: 1 }
.toast.success { border-left: 4px solid #A5D420 }
.toast.error { border-left: 4px solid #ef4444 }
.toast.warning { border-left: 4px solid #f59e0b }

/* ============ 10. ANIMATIONS ============ */
@keyframes float {
  0%, 100% { transform: translateY(0) }
  50% { transform: translateY(-15px) }
}

@keyframes pulse-soft {
  0%, 100% { opacity: .5 }
  50% { opacity: .8 }
}

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

@keyframes shimmer {
  0% { background-position: -200% 0 }
  100% { background-position: 200% 0 }
}

.animate-float { animation: float 6s ease-in-out infinite }
.animate-pulse-soft { animation: pulse-soft 4s ease-in-out infinite }
.animate-marquee { animation: marquee 30s linear infinite }
.animate-marquee:hover { animation-play-state: paused }

/* ============ 11. SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all .8s cubic-bezier(.17, .55, .55, 1)
}
.reveal.active { opacity: 1; transform: translateY(0) }
.stagger-1 { transition-delay: .1s }
.stagger-2 { transition-delay: .2s }
.stagger-3 { transition-delay: .3s }
.stagger-4 { transition-delay: .4s }
.stagger-5 { transition-delay: .5s }
.stagger-6 { transition-delay: .6s }

/* ============ 12. FAQ ============ */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.17, .55, .55, 1), padding .4s ease
}
.faq-answer.open { max-height: 300px }
.faq-icon { transition: transform .3s ease }
.faq-icon.rotated { transform: rotate(45deg) }

/* ============ 13. SHIMMER ============ */
.shimmer-bg {
  background: linear-gradient(90deg, #f3f9e6 25%, #e6f3cc 50%, #f3f9e6 75%);
  background-size: 200% 100%;
  animation: shimmer 3s infinite
}

/* ============ 14. SECTION ============ */
.section-alt { background: #fafafa }

/* ============ 15. PROCESS CARDS ============ */
.process-card {
  position: relative;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 1.5rem;
  padding: 1.75rem;
  height: 340px;
  display: flex;
  flex-direction: column;
  transition: all .5s cubic-bezier(.17, .55, .55, 1);
  cursor: default;
  overflow: hidden
}
.process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 1.5rem 1.5rem 0 0;
  background: #e5e7eb;
  transition: background .4s ease
}
.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px -15px rgba(165, 212, 32, .15);
  border-color: #cce799
}
.process-card:hover::before { background: linear-gradient(90deg, #A5D420, #BDE04A) }
.process-card:hover .process-icon {
  background: #A5D420;
  color: #000;
  transform: scale(1.1) rotate(-5deg)
}
.process-card:hover .process-num { color: #A5D420 }

.process-icon {
  width: 52px;
  height: 52px;
  border-radius: .875rem;
  background: #f3f9e6;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .4s cubic-bezier(.17, .55, .55, 1);
  flex-shrink: 0;
  color: #A5D420
}
.process-num {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
  color: #f3f9e6;
  position: absolute;
  bottom: .75rem;
  right: 1.25rem;
  transition: color .4s ease;
  pointer-events: none;
  user-select: none
}
.step-badge {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  padding: .2rem .65rem;
  border-radius: 9999px;
  background: #f3f9e6;
  border: 1px solid #e6f3cc;
  font-size: .625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #6E9315;
  margin-bottom: .75rem;
  width: fit-content
}
.step-badge .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #A5D420
}
.process-connector {
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px
}
@media (min-width: 1024px) {
  .process-connector { display: flex }
}
.connector-arrow {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #d1d5db;
  transition: border-color .3s ease
}
.mobile-connector {
  display: flex;
  justify-content: center;
  padding: .15rem 0
}
.mobile-connector .vline {
  width: 2px;
  height: 24px;
  background: linear-gradient(180deg, #cce799, #e5e7eb);
  position: relative
}
.mobile-connector .vline::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-top: 5px solid #e5e7eb;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent
}
@media (min-width: 1024px) {
  .mobile-connector { display: none }
}


/* ============ 16. CONSULTATION MODAL ============ */
#consultationModal .modal-inner {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .15)
}

/* ============ 17. PAGE HERO BANNER (inner pages) ============ */
.page-hero-banner {
  background: #ffffff;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #f3f4f6;
  padding: 4.5rem 1.5rem 3.5rem 1.5rem;
}
.page-hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(165, 212, 32, 0.05) 0%, transparent 40%),
              radial-gradient(circle at 90% 80%, rgba(165, 212, 32, 0.03) 0%, transparent 40%);
  pointer-events: none;
}
.page-hero-banner h1 {
  color: #000000 !important;
}
.page-hero-banner p {
  color: #737373 !important;
}

/* ============ 18. APP-LIKE SMOOTH SPA ROUTER TRANSITIONS ============ */
#page-content {
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.content-fade-out {
  opacity: 0 !important;
  transform: translateY(12px) !important;
}
.content-fade-in {
  animation: contentFadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes contentFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============ 19. SPA LOADER BAR ============ */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 10000;
  pointer-events: none;
}
.loader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #A5D420, #BDE04A);
  transition: width 0.3s ease;
  box-shadow: 0 0 8px rgba(165, 212, 32, 0.6);
}

/* ============ 20. CUSTOM FILTERS SELECT DROPDOWNS (from style.css) ============ */
.custom-select {
  position: relative;
  font-family: 'Inter', sans-serif;
  width: 100%;
}
.select-selected {
  background-color: var(--white);
  color: var(--primary-dark);
  padding: 12px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  font-size: 14px;
  cursor: pointer;
  user-select: none;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.select-selected:after {
  position: absolute;
  content: "";
  top: 50%;
  right: 18px;
  width: 8px;
  height: 8px;
  border: 2px solid #6b7280;
  border-top: none;
  border-left: none;
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.3s ease;
}
.select-selected.select-arrow-active:after {
  transform: translateY(-30%) rotate(225deg);
  border-color: var(--primary-accent);
}
.select-selected.select-arrow-active {
  border-color: var(--primary-accent);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select-selected:hover {
  border-color: #A5D420;
}
.select-items {
  position: absolute;
  background-color: var(--white);
  top: 100%;
  left: 0;
  right: 0;
  z-index: 999;
  border: 1px solid #e5e7eb;
  border-top: none;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  max-height: 200px;
  overflow-y: auto;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}
.select-hide {
  display: none;
}
.select-items div {
  color: #4b5563;
  padding: 10px 16px;
  cursor: pointer;
  user-select: none;
  font-size: 13px;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.select-items div:hover,
.same-as-selected {
  background-color: #f3f9e6;
  color: var(--primary-dark);
}

/* ============ 21. FALLBACK UNIVERSITY LOGO (from style.css) ============ */
.uni-fallback-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(165, 212, 32, 0.15) 0%, rgba(138, 184, 26, 0.1) 100%);
  border: 2px dashed rgba(165, 212, 32, 0.4);
  color: #6E9315;
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: inset 0 0 10px rgba(165, 212, 32, 0.05);
  user-select: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.university-card-item:hover .uni-fallback-logo,
.partner-logo:hover .uni-fallback-logo,
.uni-details-logo:hover .uni-fallback-logo {
  transform: scale(1.05) rotate(3deg);
  border: 2px solid var(--primary-accent);
}

/* ============ 22. MODAL OVERLAY & MODAL DIALOG (from modal.css) ============ */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 15, 15, 0.85);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.modal-content {
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}
.modal-overlay.active .modal-content {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: var(--medium-gray);
  cursor: pointer;
  transition: color 0.3s ease;
}
.modal-close:hover {
  color: var(--primary-accent);
}
.modal-header {
  text-align: center;
  margin-bottom: 30px;
}
.modal-header h3 {
  font-size: 24px;
  color: var(--primary-dark);
  margin-bottom: 10px;
}
.modal-header p {
  font-size: 14px;
  color: var(--medium-gray);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 14px;
  color: var(--primary-dark);
  margin-bottom: 8px;
  font-weight: 500;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-accent);
}
.btn-block {
  width: 100%;
  text-align: center;
}
.font-hand {
  font-variant-ligatures: none !important;
}
.font-hand span.text-brand,
.font-hand span.text-brand-darker {
  margin-left: 0.05em !important;
  display: inline-block;
}

/* ============ 23. BLOG CONTENT TYPOGRAPHY ============ */
.blog-text h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #111827;
    margin-top: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.25;
    scroll-margin-top: 100px;
}
.blog-text h2 {
    font-size: 1.65rem;
    font-weight: 700;
    color: #1f2937;
    margin-top: 1.15rem;
    margin-bottom: 0.65rem;
    line-height: 1.3;
    scroll-margin-top: 100px;
}
.blog-text h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: #374151;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    scroll-margin-top: 100px;
}
.blog-text h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #4b5563;
    margin-top: 0.85rem;
    margin-bottom: 0.4rem;
    scroll-margin-top: 100px;
}
.blog-text p {
    margin-bottom: 0.75rem;
    color: #4b5563;
    font-weight: 400;
    line-height: 1.8;
}
/* Prevent pasted double spacing from empty paragraphs */
.blog-text p:empty, 
.blog-text p:has(> br:only-child) {
    margin: 0;
    height: 0;
    line-height: 0;
    display: none;
}
.blog-text strong {
    font-weight: 700;
    color: #111827;
}
.blog-text ul {
    list-style-type: disc !important;
    padding-left: 1.5rem !important;
    margin-top: 0.25rem !important;
    margin-bottom: 0.75rem !important;
}
.blog-text ol {
    list-style-type: decimal !important;
    padding-left: 1.5rem !important;
    margin-top: 0.25rem !important;
    margin-bottom: 0.75rem !important;
}
.blog-text li {
    margin-bottom: 0.5rem;
    color: #4b5563;
    list-style: inherit !important;
}
.blog-text blockquote {
    border-left: 4px solid #A5D420;
    padding-left: 1rem;
    font-style: italic;
    color: #4b5563;
    margin: 1.5rem 0;
}
.blog-text a {
    color: #8AB81A;
    text-decoration: underline;
    font-weight: 500;
}
.blog-text a:hover {
    color: #6E9315;
}
.blog-text img {
    border-radius: 12px;
    margin: 1.5rem auto;
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============ RECENT POSTS HOVER EFFECT & CARDS ============ */
.recent-posts-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.recent-post-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.recent-post-card:hover {
    transform: translateY(-4px);
    border-color: #8AB81A;
    box-shadow: 0 14px 28px -6px rgba(138, 184, 26, 0.16), 0 4px 12px -2px rgba(0, 0, 0, 0.04);
}

.recent-post-card .recent-post-img-wrapper {
    width: 100%;
    height: 140px;
    overflow: hidden;
    position: relative;
    background: #f8fafc;
}

.recent-post-card .recent-post-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.recent-post-card:hover .recent-post-img {
    transform: scale(1.06);
}

.recent-post-card .recent-post-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.recent-post-card .recent-post-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.45;
    margin: 0;
    transition: color 0.2s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recent-post-card:hover .recent-post-title {
    color: #8AB81A;
}

.recent-post-card .recent-post-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #64748b;
}

.recent-post-card .recent-post-arrow {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #8AB81A;
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.25s ease;
    margin-top: 0.25rem;
}

.recent-post-card:hover .recent-post-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ============ SOCIAL MEDIA SHARE BAR ============ */
.social-share-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 1.75rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    margin: 2.5rem 0 1.5rem;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.04);
}

.social-share-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.social-share-title {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.social-share-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 0.75rem;
    width: 100%;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.1rem;
    border-radius: 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #1e293b;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.share-btn .iconify {
    transition: transform 0.3s ease;
}

.share-btn:hover .iconify {
    transform: scale(1.15);
}

.share-btn-facebook .iconify { color: #1877f2; }
.share-btn-facebook:hover {
    background: #1877f2 !important;
    color: #ffffff !important;
    border-color: #1877f2 !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px -4px rgba(24, 119, 242, 0.4);
}
.share-btn-facebook:hover .iconify { color: #ffffff !important; }

.share-btn-twitter .iconify { color: #0f1419; }
.share-btn-twitter:hover {
    background: #0f1419 !important;
    color: #ffffff !important;
    border-color: #0f1419 !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px -4px rgba(15, 20, 25, 0.4);
}
.share-btn-twitter:hover .iconify { color: #ffffff !important; }

.share-btn-linkedin .iconify { color: #0a66c2; }
.share-btn-linkedin:hover {
    background: #0a66c2 !important;
    color: #ffffff !important;
    border-color: #0a66c2 !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px -4px rgba(10, 102, 194, 0.4);
}
.share-btn-linkedin:hover .iconify { color: #ffffff !important; }

.share-btn-whatsapp .iconify { color: #25d366; }
.share-btn-whatsapp:hover {
    background: #25d366 !important;
    color: #ffffff !important;
    border-color: #25d366 !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px -4px rgba(37, 211, 102, 0.4);
}
.share-btn-whatsapp:hover .iconify { color: #ffffff !important; }

.share-btn-instagram .iconify { color: #e1306c; }
.share-btn-instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) !important;
    color: #ffffff !important;
    border-color: transparent !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px -4px rgba(220, 39, 67, 0.4);
}
.share-btn-instagram:hover .iconify { color: #ffffff !important; }

.share-btn-copy .iconify { color: #8AB81A; }
.share-btn-copy:hover {
    background: #8AB81A !important;
    color: #ffffff !important;
    border-color: #8AB81A !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px -4px rgba(138, 184, 26, 0.4);
}
.share-btn-copy:hover .iconify { color: #ffffff !important; }
