/*
Theme Name: Quadri Educational Welfare Society
Theme URI: http://quadrieducationalwelfaresociety.com/
Author: AlQalam Arts
Author URI: http://www.AlQalamArts.com
Description: Custom WordPress Theme for Quadri Educational Welfare Society (QEWS) with full admin options and edit capabilities.
Version: 1.2.0
Text Domain: qews-theme
*/

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&family=Noto+Nastaliq+Urdu:wght@400;700&display=swap');

:root {
    /* Primary Colors */
    --navy-dark: #071527;
    --navy-blue: #0b2545;
    --navy-light: #133a68;
    --indigo-blue: #1e3a8a;
    --indigo-accent: #2563eb;
    
    /* Accent & Warm Metallic Colors */
    --gold-primary: #C2A649;
    --gold-green: #BDB76B;
    --gold-light: #F4E8C1;
    --gold-accent: #D4AF37;
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #BDB76B 50%, #9A8A34 100%);
    --emerald-accent: #10B981;
    --emerald-dark: #047857;

    /* Backgrounds & Surfaces */
    --bg-color: #F8FAF7;
    --bg-surface: #FFFFFF;
    --bg-muted: #F1F5F9;
    --card-bg: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(226, 232, 240, 0.8);
    --glass-dark: rgba(11, 37, 69, 0.92);

    /* Text Colors */
    --text-dark: #0F172A;
    --text-navy: #0b2545;
    --text-muted: #475569;
    --text-light: #94A3B8;
    --white: #FFFFFF;

    /* Shadows & Glows */
    --shadow-sm: 0 2px 8px rgba(11, 37, 69, 0.04);
    --shadow-md: 0 8px 24px rgba(11, 37, 69, 0.07);
    --shadow-lg: 0 16px 36px rgba(11, 37, 69, 0.11);
    --shadow-xl: 0 24px 50px rgba(11, 37, 69, 0.16);
    --shadow-glow: 0 10px 30px rgba(194, 166, 73, 0.25);
    --shadow-navy-glow: 0 12px 35px rgba(11, 37, 69, 0.35);

    /* Radius & Transitions */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Base Reset & Typography --- */
html {
    scroll-behavior: smooth;
    margin-top: 0 !important;
}

#wpadminbar {
    display: none !important;
}

* html body {
    margin-top: 0 !important;
}

@media screen and (max-width: 782px) {
    html {
        margin-top: 0 !important;
    }
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -0.02em;
}

.font-nastaliq {
    font-family: 'Noto Nastaliq Urdu', serif;
    line-height: 2.2;
}

/* --- Section Typography & Utilities --- */
.section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--navy-blue);
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.75rem;
    }
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto 3rem auto;
    font-weight: 400;
    line-height: 1.6;
}

/* Gradient Text Effect */
.gradient-text {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--indigo-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-gold {
    background: linear-gradient(135deg, #D4AF37 0%, #C2A649 50%, #9A8A34 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Hero Section H1 Text Animation Loop --- */
.hero-animated-heading {
    position: relative;
    letter-spacing: -0.03em;
}

.hero-title-prefix {
    color: var(--navy-blue);
    display: inline;
}

.hero-rotator-wrapper {
    display: inline-flex;
    align-items: baseline;
    position: relative;
    vertical-align: baseline;
}

.hero-rotator-text {
    background: linear-gradient(135deg, #0b2545 0%, #1e3a8a 35%, #D4AF37 80%, #C2A649 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-weight: 800;
    min-height: 1.15em;
    transition: opacity 0.2s ease;
}

.hero-type-cursor {
    display: inline-block;
    color: #D4AF37;
    font-weight: 300;
    margin-left: 2px;
    animation: heroCursorBlink 0.9s infinite cubic-bezier(0.4, 0, 0.6, 1);
    user-select: none;
    -webkit-user-select: none;
    vertical-align: baseline;
}

@keyframes heroCursorBlink {
    0%, 100% {
        opacity: 1;
        transform: scaleY(1);
    }
    50% {
        opacity: 0;
        transform: scaleY(0.85);
    }
}

@media (max-width: 640px) {
    .hero-rotator-wrapper {
        display: inline;
    }
    .hero-rotator-text {
        min-height: auto;
    }
}

/* --- Premium Buttons --- */
.btn-primary {
    background: linear-gradient(135deg, #C2A649 0%, #BDB76B 100%);
    color: var(--white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    padding: 0.85rem 2.25rem;
    border-radius: var(--radius-full);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 6px 20px rgba(194, 166, 73, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--navy-light) 100%);
    opacity: 0;
    z-index: -1;
    transition: var(--transition);
}

.btn-primary:hover {
    color: #F4E8C1;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(11, 37, 69, 0.35);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--navy-light) 100%);
    color: var(--white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    padding: 0.85rem 2.25rem;
    border-radius: var(--radius-full);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-navy-glow);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--indigo-blue) 0%, var(--indigo-accent) 100%);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
}

.btn-outline-gold {
    background: transparent;
    color: var(--navy-blue);
    border: 2px solid var(--gold-primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    padding: 0.8rem 2rem;
    border-radius: var(--radius-full);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-outline-gold:hover {
    background: var(--gold-primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* --- Glassmorphism & Cards --- */
.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
}

.glass-dark {
    background: rgba(11, 37, 69, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.card-hover {
    transition: var(--transition);
}

.card-hover:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

/* --- Objective Cards --- */
.objective-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 1.25rem;
    padding: 1.5rem 1rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.objective-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.objective-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 40px rgba(11, 37, 69, 0.12);
    border-color: rgba(194, 166, 73, 0.4);
}

.objective-card:hover::after {
    opacity: 1;
}

.objective-card .icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 1rem;
    background: rgba(194, 166, 73, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    transition: all 0.3s ease;
}

.objective-card:hover .icon-wrapper {
    background: var(--navy-blue);
    transform: scale(1.1) rotate(4deg);
}

.objective-card:hover .icon-wrapper i {
    color: var(--gold-primary);
}

/* --- Program Card with Image --- */
.program-card-image {
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 380px;
    border-radius: 1.5rem;
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.program-card-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 21, 39, 0.1) 0%, rgba(7, 21, 39, 0.75) 60%, rgba(7, 21, 39, 0.95) 100%);
    transition: opacity 0.4s ease;
}

.program-card-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(11, 37, 69, 0.25);
}

.program-card-image:hover::before {
    background: linear-gradient(180deg, rgba(7, 21, 39, 0.2) 0%, rgba(7, 21, 39, 0.85) 50%, rgba(7, 21, 39, 0.98) 100%);
}

.program-card-image > * {
    position: relative;
    z-index: 2;
}

/* --- Document Preview Cards --- */
.document-card {
    background: #FFFFFF;
    border: 1px solid var(--glass-border);
    border-radius: 1.25rem;
    padding: 1.5rem;
    transition: var(--transition);
}

.document-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gold-primary);
}

/* --- Animations & Triggers --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Modals --- */
.modal-container {
    transition: opacity 0.3s ease;
    pointer-events: none;
    opacity: 0;
}

.modal-container.is-visible {
    pointer-events: auto;
    opacity: 1;
}

.modal-content {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    transform: scale(0.92);
    opacity: 0;
}

.modal-container.is-visible .modal-content {
    transform: scale(1);
    opacity: 1;
}

/* --- Hero Slider --- */
.slider-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slider-item.active {
    opacity: 1;
    z-index: 2;
}

/* Badge Tags */
.badge-gold {
    background: rgba(194, 166, 73, 0.15);
    color: #8C7529;
    border: 1px solid rgba(194, 166, 73, 0.3);
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
}

.badge-navy {
    background: rgba(11, 37, 69, 0.08);
    color: var(--navy-blue);
    border: 1px solid rgba(11, 37, 69, 0.15);
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
}

.badge-emerald {
    background: rgba(16, 185, 129, 0.12);
    color: var(--emerald-dark);
    border: 1px solid rgba(16, 185, 129, 0.3);
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
}

/* Decorative Background Elements */
.bg-grid-pattern {
    background-image: radial-gradient(rgba(11, 37, 69, 0.06) 1px, transparent 1px);
    background-size: 24px 24px;
}

.bg-hero-glow {
    background: radial-gradient(circle at 50% 0%, rgba(194, 166, 73, 0.15) 0%, rgba(11, 37, 69, 0.03) 70%);
}

/* Article Typography */
.article-content h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.article-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--indigo-blue);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.article-content p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    color: #344054;
    line-height: 1.75;
}

.article-content a {
    color: var(--indigo-accent);
    text-decoration: underline;
    font-weight: 500;
}

.article-content blockquote {
    border-left: 4px solid var(--gold-primary);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.25rem;
    color: var(--text-muted);
    background: rgba(194, 166, 73, 0.05);
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-radius: 0 1rem 1rem 0;
}

.article-content ul {
    list-style-type: disc;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #F1F5F9;
}
::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--navy-blue);
}

/* =================================================================
   PREMIUM MOBILE NAVIGATION DRAWER & RESPONSIVE FIXES
   ================================================================= */
body.mobile-nav-open,
html.mobile-nav-open {
    overflow: hidden !important;
    touch-action: none;
}

.mobile-menu-toggle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 0.75rem;
    border: 1px solid rgba(11, 37, 69, 0.12);
    background: #FFFFFF;
    color: var(--navy-blue);
    transition: all 0.2s ease;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.mobile-menu-toggle-btn:hover,
.mobile-menu-toggle-btn:active {
    background: #F8FAF7;
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    transform: scale(1.05);
}

.mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(7, 21, 39, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s ease;
}

.mobile-nav-backdrop.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(90vw, 360px);
    height: 100vh;
    height: 100dvh;
    background: #071527;
    background: linear-gradient(180deg, #071527 0%, #0B2545 100%);
    border-left: 1px solid rgba(194, 166, 73, 0.25);
    box-shadow: -10px 0 45px rgba(0, 0, 0, 0.6);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    transform: translateX(105%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    will-change: transform;
}

.mobile-nav-drawer.is-active {
    transform: translateX(0);
}

.mobile-nav-header {
    padding: 1.15rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(7, 21, 39, 0.96);
}

.mobile-menu-close-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #F1F5F9;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.25s ease;
    cursor: pointer;
}

.mobile-menu-close-btn:hover,
.mobile-menu-close-btn:active {
    background: #C2A649;
    color: #071527;
    border-color: #C2A649;
    transform: rotate(90deg);
}

.mobile-nav-body {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 1.25rem 1rem;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    margin-bottom: 0.35rem;
    color: #E2E8F0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.975rem;
    font-weight: 600;
    border-radius: 0.85rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.mobile-nav-item i {
    font-size: 1.15rem;
    color: #C2A649;
    transition: transform 0.2s ease;
}

.mobile-nav-item:hover,
.mobile-nav-item:active {
    background: rgba(194, 166, 73, 0.15);
    color: #F4E8C1;
    border-color: rgba(194, 166, 73, 0.3);
    transform: translateX(4px);
}

.mobile-nav-item.is-current {
    background: linear-gradient(135deg, rgba(194, 166, 73, 0.22) 0%, rgba(194, 166, 73, 0.08) 100%);
    border-color: rgba(194, 166, 73, 0.45);
    color: #D4AF37;
}

.mobile-nav-footer {
    padding: 1.25rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(7, 21, 39, 0.98);
    padding-bottom: max(1.25rem, env(safe-area-inset-bottom, 1.25rem));
}

/* =================================================================
   SMART HIDE & SHOW HEADER ON SCROLL
   ================================================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 40;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, background-color 0.3s ease;
    will-change: transform;
}

.site-header.header-hidden {
    transform: translateY(-100%);
    box-shadow: none;
}

.site-header.header-scrolled {
    box-shadow: 0 4px 20px rgba(11, 37, 69, 0.08);
}

/* =================================================================
   COMPACT & UNIFIED FLOATING ACTION CONTROLS & SHARE FAB
   ================================================================= */
.floating-fab {
    position: fixed;
    z-index: 50;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.2s ease, box-shadow 0.25s ease, opacity 0.3s ease;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

/* Circular Floating Action Buttons (WhatsApp & Scroll-To-Top) */
.fab-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    padding: 0;
    text-decoration: none;
    cursor: pointer;
}

.fab-circle:hover {
    transform: translateY(-3px) scale(1.08);
}

.fab-circle:active {
    transform: translateY(0) scale(0.96);
}

/* WhatsApp FAB */
.fab-whatsapp {
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #25D366 0%, #1da851 100%);
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4), 0 2px 6px rgba(0, 0, 0, 0.12);
}

.fab-whatsapp:hover {
    background: linear-gradient(135deg, #28e06c 0%, #20ba59 100%);
    color: #ffffff !important;
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.5), 0 4px 10px rgba(0, 0, 0, 0.18);
}

.fab-whatsapp i {
    font-size: 22px;
    line-height: 1;
}

/* Scroll To Top FAB */
.fab-scroll-top {
    bottom: 20px;
    left: 20px;
    background: rgba(7, 21, 39, 0.94);
    color: #ffffff !important;
    border: 1px solid rgba(194, 166, 73, 0.3);
    box-shadow: 0 6px 18px rgba(7, 21, 39, 0.35), 0 2px 6px rgba(0, 0, 0, 0.12);
}

.fab-scroll-top:hover {
    background: var(--navy-blue);
    border-color: var(--gold-primary);
    color: #F4E8C1 !important;
    box-shadow: 0 10px 24px rgba(11, 37, 69, 0.45), 0 4px 10px rgba(0, 0, 0, 0.18);
}

.fab-scroll-top i {
    font-size: 19px;
    line-height: 1;
}

/* Floating Share FAB Pill (Compact matching 46px height) */
.share-fab {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    height: 46px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(7, 21, 39, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 9999px;
    padding: 0 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28), 0 2px 8px rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
    transition: box-shadow 0.3s ease, transform 0.25s ease;
}

.share-fab:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.38), 0 4px 12px rgba(0, 0, 0, 0.2);
}

.share-fab .share-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin-right: 2px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 14.5px;
    color: #fff !important;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.share-btn:hover {
    transform: translateY(-2px) scale(1.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.share-btn:active {
    transform: scale(0.94);
}

.share-btn.whatsapp { background: #25D366; }
.share-btn.facebook { background: #1877F2; }
.share-btn.twitter { background: #000000; }
.share-btn.linkedin { background: #0A66C2; }
.share-btn.copy-link { background: #475569; }
.share-btn.copy-link.copied { background: #059669 !important; }

.share-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.15);
    margin: 0 2px;
}

@media (max-width: 480px) {
    .fab-whatsapp {
        bottom: 16px;
        right: 16px;
        width: 42px;
        height: 42px;
    }
    .fab-whatsapp i {
        font-size: 20px;
    }
    .fab-scroll-top {
        bottom: 16px;
        left: 16px;
        width: 42px;
        height: 42px;
    }
    .fab-scroll-top i {
        font-size: 17px;
    }
    .share-fab {
        bottom: 16px;
        height: 42px;
        padding: 0 8px;
        gap: 5px;
        max-width: calc(100vw - 120px);
    }
    .share-fab .share-label {
        display: none;
    }
    .share-btn {
        width: 29px;
        height: 29px;
        font-size: 13px;
    }
    .share-divider {
        height: 16px;
        margin: 0 1px;
    }
}


